diff --git a/apps/api/src/app/common/usecases/get-import-config/get-import-config.usecase.ts b/apps/api/src/app/common/usecases/get-import-config/get-import-config.usecase.ts index 3ba59d6ab..40a8ecfe5 100644 --- a/apps/api/src/app/common/usecases/get-import-config/get-import-config.usecase.ts +++ b/apps/api/src/app/common/usecases/get-import-config/get-import-config.usecase.ts @@ -20,15 +20,15 @@ export class GetImportConfig { isFeatureAvailableMap.set(code, false); }); - try { - for (const billableMetricCode of Object.keys(BILLABLEMETRIC_CODE_ENUM)) { + for (const billableMetricCode of Object.values(BILLABLEMETRIC_CODE_ENUM)) { + try { const isAvailable = await this.paymentAPIService.checkEvent({ email: userEmail, billableMetricCode: BILLABLEMETRIC_CODE_ENUM[billableMetricCode], }); isFeatureAvailableMap.set(billableMetricCode, isAvailable); - } - } catch (error) {} + } catch (error) {} + } let template: TemplateEntity; if (templateId) { diff --git a/apps/api/src/app/project/usecases/create-project/create-project.command.ts b/apps/api/src/app/project/usecases/create-project/create-project.command.ts index 188026f5c..1ff8068ec 100644 --- a/apps/api/src/app/project/usecases/create-project/create-project.command.ts +++ b/apps/api/src/app/project/usecases/create-project/create-project.command.ts @@ -9,4 +9,8 @@ export class CreateProjectCommand extends AuthenticatedCommand { @IsBoolean() @IsOptional() onboarding?: boolean; + + @IsBoolean() + @IsOptional() + autoGenerated?: boolean; } diff --git a/apps/api/src/app/review/usecases/do-review/do-review.usecase.ts b/apps/api/src/app/review/usecases/do-review/do-review.usecase.ts index 68a83c4fa..ffe0cfb5a 100644 --- a/apps/api/src/app/review/usecases/do-review/do-review.usecase.ts +++ b/apps/api/src/app/review/usecases/do-review/do-review.usecase.ts @@ -298,7 +298,6 @@ export class DoReview extends BaseReview { // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore const teamMemberEmails = environment.map((teamMember) => teamMember._userId.email); - console.log(teamMemberEmails); const emailContents = this.emailService.getEmailContent({ type: 'IMPORT_LIMIT_EXCEEDED_EMAIL', diff --git a/apps/api/src/app/review/usecases/start-process/start-process.usecase.ts b/apps/api/src/app/review/usecases/start-process/start-process.usecase.ts index cd79819b3..4f5f44c8a 100644 --- a/apps/api/src/app/review/usecases/start-process/start-process.usecase.ts +++ b/apps/api/src/app/review/usecases/start-process/start-process.usecase.ts @@ -186,7 +186,6 @@ export class StartProcess { // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore const teamMemberEmails = environment.map((teamMember) => teamMember._userId.email); - console.log(teamMemberEmails); const emailContents = this.emailService.getEmailContent({ type: 'IMPORT_LIMIT_EXCEEDED_EMAIL', diff --git a/apps/api/src/app/shared/exceptions/user-verification.exception.ts b/apps/api/src/app/shared/exceptions/user-verification.exception.ts new file mode 100644 index 000000000..d8cb97174 --- /dev/null +++ b/apps/api/src/app/shared/exceptions/user-verification.exception.ts @@ -0,0 +1,15 @@ +import { HttpException, HttpStatus } from '@nestjs/common'; +import { APIMessages } from '../constants'; + +export class InvalidVerificationCodeException extends HttpException { + constructor() { + super( + { + message: APIMessages.INVALID_VERIFICATION_CODE, + error: 'InvalidVerificationCode', + statusCode: HttpStatus.BAD_REQUEST, + }, + HttpStatus.BAD_REQUEST + ); + } +} diff --git a/apps/api/src/app/team/usecase/invite/invite.usecase.ts b/apps/api/src/app/team/usecase/invite/invite.usecase.ts index cd09612dd..94349c58b 100644 --- a/apps/api/src/app/team/usecase/invite/invite.usecase.ts +++ b/apps/api/src/app/team/usecase/invite/invite.usecase.ts @@ -17,8 +17,10 @@ export class Invite { async exec(command: InviteCommand) { try { - // const subscription = await this.paymentAPIService.fetchActiveSubscription(command.invitedBy); - // const allocated = subscription.meta.TEAM_MEMBERS; + /* + * const subscription = await this.paymentAPIService.fetchActiveSubscription(command.invitedBy); + * const allocated = subscription.meta.TEAM_MEMBERS; + */ const existingInvitationsCount = await this.projectInvitationRepository.count({ _projectId: command.projectId, diff --git a/apps/api/src/app/template/usecases/update-template-columns/update-template-columns.usecase.ts b/apps/api/src/app/template/usecases/update-template-columns/update-template-columns.usecase.ts index a9dad3a62..f7b3ead55 100644 --- a/apps/api/src/app/template/usecases/update-template-columns/update-template-columns.usecase.ts +++ b/apps/api/src/app/template/usecases/update-template-columns/update-template-columns.usecase.ts @@ -33,11 +33,11 @@ export class UpdateTemplateColumns { column.sequence = index; column.dateFormats = column.dateFormats?.map((format) => format.toUpperCase()) || []; - column.isRequired = existingUserColumns?.isRequired || false; - column.isUnique = existingUserColumns?.isUnique || false; - column.selectValues = existingUserColumns?.selectValues || []; - column.dateFormats = existingUserColumns?.dateFormats || []; - column.validations = existingUserColumns?.validations || []; + column.isRequired = existingUserColumns?.isRequired || column.isRequired || false; + column.isUnique = existingUserColumns?.isUnique || column.isUnique || false; + column.selectValues = column.selectValues || existingUserColumns?.selectValues || []; + column.dateFormats = existingUserColumns?.dateFormats || column.dateFormats || []; + column.validations = existingUserColumns?.validations || column.validations || []; }); const columns = await this.columnRepository.createMany(userColumns); await this.saveSampleFile.execute(columns, _templateId); diff --git a/apps/web/assets/icons/Forbidden.icon.tsx b/apps/web/assets/icons/Forbidden.icon.tsx index 3afc4d4c0..67cd0d113 100644 --- a/apps/web/assets/icons/Forbidden.icon.tsx +++ b/apps/web/assets/icons/Forbidden.icon.tsx @@ -14,8 +14,8 @@ export function ForbiddenIcon({ size = 'xl' }: IconType) { id="Forbid--Streamline-Tabler" > Forbid Streamline Icon: https://streamlinehq.com - - + + ); } diff --git a/apps/web/assets/icons/GiveHeart.icon.tsx b/apps/web/assets/icons/GiveHeart.icon.tsx new file mode 100644 index 000000000..8bd0cad07 --- /dev/null +++ b/apps/web/assets/icons/GiveHeart.icon.tsx @@ -0,0 +1,10 @@ +import React from 'react'; + +export const GiveHeartIcon = () => ( + + + +); diff --git a/apps/web/assets/icons/Importer.icon.tsx b/apps/web/assets/icons/Importer.icon.tsx new file mode 100644 index 000000000..3c751fbe8 --- /dev/null +++ b/apps/web/assets/icons/Importer.icon.tsx @@ -0,0 +1,20 @@ +import { IconType } from '@types'; +import { IconSizes } from 'config'; + +export const ImporterIcon = ({ size = 'xl', color = 'currentColor', className }: IconType) => { + return ( + + + + ); +}; diff --git a/apps/web/assets/icons/IntegrationStep.icon.tsx b/apps/web/assets/icons/IntegrationStep.icon.tsx new file mode 100644 index 000000000..3b5d077f3 --- /dev/null +++ b/apps/web/assets/icons/IntegrationStep.icon.tsx @@ -0,0 +1,20 @@ +import { IconType } from '@types'; +import { IconSizes } from 'config'; + +export const IntegrationStepIcon = ({ size = 'xl', color = 'currentColor', className }: IconType) => { + return ( + + + + ); +}; diff --git a/apps/web/assets/icons/ListTick.icon.tsx b/apps/web/assets/icons/ListTick.icon.tsx new file mode 100644 index 000000000..92a00934c --- /dev/null +++ b/apps/web/assets/icons/ListTick.icon.tsx @@ -0,0 +1,12 @@ +import React from 'react'; + +export const ListTickIcon = () => { + return ( + + + + ); +}; diff --git a/apps/web/assets/icons/RoundedCheck.icon.tsx b/apps/web/assets/icons/RoundedCheck.icon.tsx new file mode 100644 index 000000000..a0c929743 --- /dev/null +++ b/apps/web/assets/icons/RoundedCheck.icon.tsx @@ -0,0 +1,16 @@ +import { IconType } from '@types'; + +export function RoundedCheckIcon(props: IconType) { + return ( + + {/* eslint-disable-next-line max-len */} + + + ); +} diff --git a/apps/web/assets/icons/SetupDestination.icon.tsx b/apps/web/assets/icons/SetupDestination.icon.tsx new file mode 100644 index 000000000..20a3a0451 --- /dev/null +++ b/apps/web/assets/icons/SetupDestination.icon.tsx @@ -0,0 +1,19 @@ +import { IconType } from '@types'; +import { IconSizes } from 'config'; + +export const SetupDestinationIcon = ({ size = 'xl' }: IconType) => { + return ( + + + + ); +}; diff --git a/apps/web/assets/icons/Stocks.icon.tsx b/apps/web/assets/icons/Stocks.icon.tsx new file mode 100644 index 000000000..7b7acd37f --- /dev/null +++ b/apps/web/assets/icons/Stocks.icon.tsx @@ -0,0 +1,10 @@ +import React from 'react'; + +export const StocksIcon = () => ( + + + +); diff --git a/apps/web/assets/icons/Team.icon.tsx b/apps/web/assets/icons/Team.icon.tsx new file mode 100644 index 000000000..74cac7f3c --- /dev/null +++ b/apps/web/assets/icons/Team.icon.tsx @@ -0,0 +1,20 @@ +import { IconType } from '@types'; +import { IconSizes } from 'config'; + +export const TeamIcon = ({ size = 'xl', color = 'currentColor', className }: IconType) => { + return ( + + + + ); +}; diff --git a/apps/web/assets/icons/TimeClock.icon.tsx b/apps/web/assets/icons/TimeClock.icon.tsx new file mode 100644 index 000000000..340be1255 --- /dev/null +++ b/apps/web/assets/icons/TimeClock.icon.tsx @@ -0,0 +1,10 @@ +import React from 'react'; + +export const TimeClockIcon = () => ( + + + +); diff --git a/apps/web/assets/images/companies/Superworks.svg b/apps/web/assets/images/companies/Superworks.svg new file mode 100644 index 000000000..121b1f06e --- /dev/null +++ b/apps/web/assets/images/companies/Superworks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/web/assets/images/companies/aklamio.svg b/apps/web/assets/images/companies/aklamio.svg new file mode 100644 index 000000000..f07c7d338 --- /dev/null +++ b/apps/web/assets/images/companies/aklamio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/web/assets/images/companies/artha.svg b/apps/web/assets/images/companies/artha.svg new file mode 100644 index 000000000..a3140c692 --- /dev/null +++ b/apps/web/assets/images/companies/artha.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/web/assets/images/companies/nasscom.svg b/apps/web/assets/images/companies/nasscom.svg new file mode 100644 index 000000000..6c791192f --- /dev/null +++ b/apps/web/assets/images/companies/nasscom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/web/assets/images/companies/nirvana.svg b/apps/web/assets/images/companies/nirvana.svg new file mode 100644 index 000000000..6d2bd08c8 --- /dev/null +++ b/apps/web/assets/images/companies/nirvana.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/web/assets/images/companies/omniva.svg b/apps/web/assets/images/companies/omniva.svg new file mode 100644 index 000000000..a9067d83e --- /dev/null +++ b/apps/web/assets/images/companies/omniva.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/web/assets/images/companies/orbit.svg b/apps/web/assets/images/companies/orbit.svg new file mode 100644 index 000000000..32e718731 --- /dev/null +++ b/apps/web/assets/images/companies/orbit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/web/assets/images/companies/ratio-dev.webp b/apps/web/assets/images/companies/ratio-dev.webp new file mode 100644 index 000000000..8501b41b4 Binary files /dev/null and b/apps/web/assets/images/companies/ratio-dev.webp differ diff --git a/apps/web/assets/images/companies/shipblink.webp b/apps/web/assets/images/companies/shipblink.webp new file mode 100644 index 000000000..dcd15cf0d Binary files /dev/null and b/apps/web/assets/images/companies/shipblink.webp differ diff --git a/apps/web/assets/images/companies/ubico.svg b/apps/web/assets/images/companies/ubico.svg new file mode 100644 index 000000000..794548ba2 --- /dev/null +++ b/apps/web/assets/images/companies/ubico.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/web/components/Stepper/Stepper.styles.tsx b/apps/web/components/Stepper/Stepper.styles.tsx index 9eba8aaf0..8ee91a2fc 100644 --- a/apps/web/components/Stepper/Stepper.styles.tsx +++ b/apps/web/components/Stepper/Stepper.styles.tsx @@ -2,20 +2,19 @@ import { createStyles } from '@mantine/core'; export const useStyles = createStyles((theme) => ({ stepperContainer: { - marginBottom: theme.spacing.xl, + display: 'inline-flex', + alignItems: 'center', + justifyContent: 'center', + backgroundColor: theme.colors.dark[5], + borderRadius: theme.radius.xl, + minWidth: 50, + height: 50, }, stepText: { - color: theme.colors.gray[5], - fontSize: theme.fontSizes.sm, - fontWeight: 500, - marginBottom: theme.spacing.xs, - }, - progressBar: { - height: 4, - backgroundColor: theme.colors.dark[4], - - '& .mantine-Progress-bar': { - backgroundColor: theme.colors.blue[5], - }, + color: theme.white, + fontSize: theme.fontSizes.md, + fontWeight: 600, + lineHeight: 1, + letterSpacing: '0.5px', }, })); diff --git a/apps/web/components/Stepper/Stepper.tsx b/apps/web/components/Stepper/Stepper.tsx index 9dc357c17..3e7787912 100644 --- a/apps/web/components/Stepper/Stepper.tsx +++ b/apps/web/components/Stepper/Stepper.tsx @@ -1,4 +1,4 @@ -import { Box, Text, Progress } from '@mantine/core'; +import { Box, Text } from '@mantine/core'; import { useStyles } from './Stepper.styles'; interface StepperProps { @@ -8,14 +8,12 @@ interface StepperProps { export const Stepper = ({ currentStep, totalSteps }: StepperProps) => { const { classes } = useStyles(); - const progressValue = (currentStep / totalSteps) * 100; return ( - Step {currentStep} of {totalSteps} + {currentStep}/{totalSteps} - ); }; diff --git a/apps/web/components/UpgradePlan/Plans/PlanCard.tsx b/apps/web/components/UpgradePlan/Plans/PlanCard.tsx index 4d3f0a118..657e135e8 100644 --- a/apps/web/components/UpgradePlan/Plans/PlanCard.tsx +++ b/apps/web/components/UpgradePlan/Plans/PlanCard.tsx @@ -68,7 +68,12 @@ export function PlanCard({ plan, isYearly }: PlanCardProps) { return ( - - {(plan.code === PLANCODEENUM.GROWTH || plan.code === PLANCODEENUM.GROWTH_YEARLY) && ( - - Recommended - - )} - {plan.name} - - {plan.price === 0 ? 'Free' : `$${plan.price} / ${isYearly ? 'year' : 'month'}`} - - - - - - - {Object.entries(plan.content).map(([category, items], categoryIndex) => ( - - {category !== 'Features' && {category}} - {items.map(({ check, title, tooltipLink }, index) => ( - - ))} - {category !== 'Features' && categoryIndex < Object.keys(plan.content).length - 1 && } - - ))} - + {(plan.code === PLANCODEENUM.GROWTH || plan.code === PLANCODEENUM.GROWTH_YEARLY) && ( + + Recommended + + )} +
+ + {plan.name} + + {plan.price === 0 ? 'Free' : `$${plan.price} / ${isYearly ? 'year' : 'month'}`} + + + + + +
+ +
+ + {Object.entries(plan.content).map(([category, items], categoryIndex) => ( + + {category !== 'Features' && {category}} + {items.map(({ check, title, tooltipLink }, index) => ( + + ))} + {category !== 'Features' && categoryIndex < Object.keys(plan.content).length - 1 && } + + ))} + +
); } diff --git a/apps/web/components/UpgradePlan/Plans/PlanFeature.tsx b/apps/web/components/UpgradePlan/Plans/PlanFeature.tsx index e005315c4..0f72bfad0 100644 --- a/apps/web/components/UpgradePlan/Plans/PlanFeature.tsx +++ b/apps/web/components/UpgradePlan/Plans/PlanFeature.tsx @@ -1,7 +1,7 @@ import React from 'react'; import { Flex, Text } from '@mantine/core'; -import { CheckCircle } from '@assets/icons/CheckCircle.icon'; -import { CrossCircle } from '@assets/icons/CrossCircle.icon'; +import CrossIcon from '@assets/icons/Cross-filled.Icon'; +import { TickIcon } from '@assets/icons/Tick.icon'; import { TooltipLink } from '@components/guide-point'; interface PlanFeatureProps { @@ -13,7 +13,7 @@ interface PlanFeatureProps { export function PlanFeature({ included, value = '', tooltipLink }: PlanFeatureProps) { return ( - {included ? : } + {included ? : } {value} {tooltipLink && } diff --git a/apps/web/components/home/PlanDetails/ActiveSubscriptionDetails.tsx b/apps/web/components/home/PlanDetails/ActiveSubscriptionDetails.tsx index 86c9ec0ae..e5a5338a3 100644 --- a/apps/web/components/home/PlanDetails/ActiveSubscriptionDetails.tsx +++ b/apps/web/components/home/PlanDetails/ActiveSubscriptionDetails.tsx @@ -2,7 +2,7 @@ import React from 'react'; import Link from 'next/link'; import dayjs from 'dayjs'; import { useCustomerPortal } from 'subos-frontend'; -import { Stack, Group, Text, ActionIcon, Menu, Alert } from '@mantine/core'; +import { Stack, Group, ActionIcon, Menu, Alert } from '@mantine/core'; import { ActionsEnum, colors, DATE_FORMATS, PLANCODEENUM, SubjectsEnum } from '@config'; import { ISubscriptionData, numberFormatter } from '@impler/shared'; @@ -34,11 +34,6 @@ export function ActiveSubscriptionDetails({ const { openCustomerPortal } = useCustomerPortal(); const { openCancelPlanModal } = useCancelPlan(); - const planName = activePlanDetails?.plan?.name || 'Current Plan'; - const expiryDate = activePlanDetails?.expiryDate - ? dayjs(activePlanDetails.expiryDate).format(DATE_FORMATS.LONG) - : 'N/A'; - const teamMembersUsed = activePlanDetails?.usage?.TEAM_MEMBERS || 0; const teamMembersAllocated = activePlanDetails?.meta?.TEAM_MEMBERS ? activePlanDetails.meta.TEAM_MEMBERS - 1 : 0; @@ -53,20 +48,13 @@ export function ActiveSubscriptionDetails({ return ( - - - - Your Plan - {planName} will - - - (Expire on {expiryDate}) - - + + - + - + diff --git a/apps/web/components/imports/ImportsList.tsx b/apps/web/components/imports/ImportsList.tsx index 598598ded..041c2af90 100644 --- a/apps/web/components/imports/ImportsList.tsx +++ b/apps/web/components/imports/ImportsList.tsx @@ -15,7 +15,7 @@ export function ImportsList() { search, importsData, onPageChange, - onCreateClick, + onImportCreateClick, onLimitChange, onSearchChange, onDuplicateClick, @@ -36,7 +36,7 @@ export function ImportsList() { onChange={(e: ChangeEvent) => onSearchChange(e.currentTarget.value)} type="search" /> - diff --git a/apps/web/components/imports/destination/Destination.tsx b/apps/web/components/imports/destination/Destination.tsx index 38bb58955..462b28b24 100644 --- a/apps/web/components/imports/destination/Destination.tsx +++ b/apps/web/components/imports/destination/Destination.tsx @@ -1,12 +1,13 @@ import { Controller } from 'react-hook-form'; import { DestinationsEnum, ITemplate } from '@impler/shared'; -import { Stack, TextInput as Input, Group, Select } from '@mantine/core'; - +import { Stack, TextInput as Input, Group, Select, Flex, Badge } from '@mantine/core'; import { Button } from '@ui/button'; +import { colors, ROUTES } from '@config'; import { NumberInput } from '@ui/number-input'; import { DOCUMENTATION_REFERENCE_LINKS, REGULAR_EXPRESSIONS } from '@config'; import { useDestination } from '@hooks/useDestination'; import { DestinationItem } from './DestinationItem'; +import { LockIcon } from '@assets/icons/Lock.icon'; interface DestinationProps { template: ITemplate; @@ -30,6 +31,7 @@ export function Destination({ template }: DestinationProps) { isMapBubbleIoColumnsLoading, isSendSampleRequestLoading, bubbleIoIntegrationUnavailable, + webhookRetrySettingsUnavailable, } = useDestination({ template, }); @@ -106,44 +108,83 @@ export function Destination({ template }: DestinationProps) { /> )} /> + - ( - field.onChange(Number(value))} + error={errors.webhook?.message} + /> + )} /> - )} - /> - ( - field.onChange(Number(value))} + error={errors.webhook?.message} + /> + )} /> - )} - /> + + )} + + + + + ); +} diff --git a/apps/web/components/imports/destination/WidgetConfigurationModal/static-assets/confetti_on_transparent_background.json b/apps/web/components/imports/destination/WidgetConfigurationModal/static-assets/confetti_on_transparent_background.json new file mode 100644 index 000000000..a21d12f3a --- /dev/null +++ b/apps/web/components/imports/destination/WidgetConfigurationModal/static-assets/confetti_on_transparent_background.json @@ -0,0 +1,11788 @@ +{ + "v": "5.6.3", + "fr": 30, + "ip": 0, + "op": 112, + "w": 1242, + "h": 2688, + "nm": "Comp 1", + "ddd": 1, + "assets": [], + "layers": [ + { + "ddd": 0, + "ind": 1, + "ty": 4, + "nm": "Shape Layer 14", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [692, 1012, 0], "ix": 2 }, + "a": { "a": 0, "k": [71, -332, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [-48, 204], + [72.555, 109.763], + [-9.41, 53.993], + [11.376, 60.133], + [-20.778, 48.214], + [-43.71, 34.149], + [-28, 80] + ], + "o": [ + [48, -204], + [-46.308, -70.056], + [6.44, -36.951], + [-18.438, -97.46], + [10.775, -25.002], + [128, -100], + [28, -80] + ], + "v": [ + [71, -332], + [151, -620], + [209.484, -736.613], + [141, -856], + [199.096, -959.097], + [193, -1114], + [371, -1280] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.996078431372549, 0.7686274509803922, 0.33725490196078434, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 14.077, "s": [0] }, + { "t": 46.384765625, "s": [100] } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 11.923, "s": [0] }, + { "t": 42.0771484375, "s": [100] } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "m": 1, + "ix": 2, + "nm": "Trim In Out Path", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 2, + "op": 112, + "st": 2, + "bm": 0 + }, + { + "ddd": 0, + "ind": 2, + "ty": 4, + "nm": "Shape Layer 13", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [648, 1040, 0], "ix": 2 }, + "a": { "a": 0, "k": [27, -304, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [28, 112], + [154, -50], + [122, 52], + [60, 164] + ], + "o": [ + [0, 0], + [-24, -96], + [-150.386, 48.827], + [-141.68, -60.388], + [-60, -164] + ], + "v": [ + [27, -304], + [-107, -530], + [-249, -720], + [-335, -908], + [-537, -1284] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.6078431372549019, 0.6078431372549019, 0.6078431372549019, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 3.308, "s": [0] }, + { "t": 35.615234375, "s": [100] } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -1, "s": [0] }, + { "t": 27, "s": [100] } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "m": 1, + "ix": 2, + "nm": "Trim In Out Path", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -5, + "bm": 0 + }, + { + "ddd": 0, + "ind": 3, + "ty": 4, + "nm": "Shape Layer 12", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [674, 1228, 0], "ix": 2 }, + "a": { "a": 0, "k": [53, -116, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [-34, -98], + [21, -81], + [-20, -38], + [-18, -48], + [-8, -34], + [-62, -38], + [-24, -36], + [-62, -30], + [-84, -22] + ], + "o": [ + [34, 98], + [-11.008, 42.46], + [12.721, 24.17], + [18, 48], + [9.222, 39.192], + [62, 38], + [24, 36], + [62, 30], + [84, 22] + ], + "v": [ + [53, -116], + [134, 25], + [94, 107], + [181, 157], + [150, 265], + [237, 323], + [250, 463], + [383, 540], + [480, 694] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.2901960784313726, 0.7647058823529411, 0.2980392156862745, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 22.692, "s": [0] }, + { "t": 55, "s": [100] } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 20.538, "s": [0] }, + { "t": 50.6923828125, "s": [100] } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "m": 1, + "ix": 2, + "nm": "Trim In Out Path", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 6, + "op": 112, + "st": 6, + "bm": 0 + }, + { + "ddd": 0, + "ind": 4, + "ty": 4, + "nm": "Shape Layer 11", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [704, 1180, 0], "ix": 2 }, + "a": { "a": 0, "k": [83, -164, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [-38, -60], + [-40.126, 23.279], + [42.5, -0.5], + [-35, 2.5], + [-47.28, -26.863], + [-20, -30], + [-21.113, -24.13], + [-34, -42], + [-16, -40] + ], + "o": [ + [38, 60], + [65.5, -38], + [-20.024, 0.236], + [41.06, -2.933], + [44, 25], + [20, 30], + [14, 16], + [34, 42], + [16, 40] + ], + "v": [ + [83, -164], + [166.5, -75], + [217.5, -41.5], + [222.5, -81.5], + [377, -77], + [378, 1], + [458, 17], + [478, 91], + [616, 178] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.9411764705882353, 0.35294117647058826, 0.17647058823529413, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 7.615, "s": [0] }, + { "t": 39.9228515625, "s": [100] } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 3.308, "s": [0] }, + { "t": 31.3076171875, "s": [100] } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "m": 1, + "ix": 2, + "nm": "Trim In Out Path", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -3, + "bm": 0 + }, + { + "ddd": 0, + "ind": 5, + "ty": 4, + "nm": "Shape Layer 10", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [730, 1100, 0], "ix": 2 }, + "a": { "a": 0, "k": [109, -244, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [-72, -10], + [-51, 10], + [13, -16], + [-24.905, -7.729], + [-10, 10] + ], + "o": [ + [72, 10], + [51, -10], + [-10.168, 12.514], + [29, 9], + [10, -10] + ], + "v": [ + [109, -244], + [483, -178], + [533, -129], + [556, -83], + [618, -93] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 16.23, "s": [0] }, + { "t": 48.5380859375, "s": [100] } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 14.077, "s": [0] }, + { "t": 44.23046875, "s": [100] } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "m": 1, + "ix": 2, + "nm": "Trim In Out Path", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 3, + "op": 112, + "st": 3, + "bm": 0 + }, + { + "ddd": 0, + "ind": 6, + "ty": 4, + "nm": "Shape Layer 9", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [678, 1086, 0], "ix": 2 }, + "a": { "a": 0, "k": [57, -258, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [-106, 94], + [-78, 82], + [-2, 37], + [-15, 15], + [-27.82, 25.594], + [-23, 24], + [-38.877, 17.279], + [-24, -14] + ], + "o": [ + [106, -94], + [78, -82], + [2.405, -44.488], + [18.028, -18.028], + [25, -23], + [19.594, -20.446], + [36, -16], + [24, 14] + ], + "v": [ + [57, -258], + [204, -404], + [337, -493], + [346, -597], + [426, -624], + [454, -699], + [542, -728], + [611, -805] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 7.615, "s": [0] }, + { "t": 39.9228515625, "s": [100] } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 3.308, "s": [0] }, + { "t": 31.3076171875, "s": [100] } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "m": 1, + "ix": 2, + "nm": "Trim In Out Path", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -3, + "bm": 0 + }, + { + "ddd": 0, + "ind": 7, + "ty": 4, + "nm": "Shape Layer 8", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [640, 1170, 0], "ix": 2 }, + "a": { "a": 0, "k": [19, -174, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [92, -22], + [38, -38], + [78, -8], + [38, -10], + [10, -20] + ], + "o": [ + [-92, 22], + [-38, 38], + [-78, 8], + [-38, 10], + [-10, 20] + ], + "v": [ + [19, -174], + [-115, -120], + [-283, -46], + [-423, -50], + [-517, 32] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 7.615, "s": [0] }, + { "t": 39.9228515625, "s": [100] } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 5.462, "s": [0] }, + { "t": 35.615234375, "s": [100] } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "m": 1, + "ix": 2, + "nm": "Trim In Out Path", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 0, + "ind": 8, + "ty": 4, + "nm": "Shape Layer 7", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [661, 1191, 0], "ix": 2 }, + "a": { "a": 0, "k": [40, -153, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [16.398, -37.618], + [29.992, -37.49], + [41, -30], + [60.195, -37.77], + [80.591, 1.465], + [-31.635, -5.678], + [109.189, 24.816], + [22, -30] + ], + "o": [ + [-34, 78], + [-44, 55], + [-59.359, 43.434], + [-51, 32], + [-55, -1], + [39, 7], + [-132, -30], + [-22, 30] + ], + "v": [ + [40, -153], + [-41, -58], + [-104, 84], + [-253, 140], + [-359, 228], + [-381, 175], + [-459, 204], + [-652, 321] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 18.385, "s": [0] }, + { "t": 50.6923828125, "s": [100] } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 14.077, "s": [0] }, + { "t": 42.0771484375, "s": [100] } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "m": 1, + "ix": 2, + "nm": "Trim In Out Path", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 2, + "op": 112, + "st": 2, + "bm": 0 + }, + { + "ddd": 0, + "ind": 9, + "ty": 4, + "nm": "Shape Layer 6", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [646, 1126, 0], "ix": 2 }, + "a": { "a": 0, "k": [25, -218, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [90, 52], + [20, -18], + [44, 46], + [60, -36], + [34, 64], + [-46, -10], + [34, -50], + [52, 12], + [28, 10] + ], + "o": [ + [-90, -52], + [-20, 18], + [-44, -46], + [-60, 36], + [-34, -64], + [46, 10], + [-34, 50], + [-52, -12], + [-28, -10] + ], + "v": [ + [25, -218], + [-175, -248], + [-271, -286], + [-379, -328], + [-487, -310], + [-535, -444], + [-469, -396], + [-547, -342], + [-627, -366] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 5.462, "s": [0] }, + { "t": 37.76953125, "s": [100] } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 3.308, "s": [0] }, + { "t": 35.615234375, "s": [100] } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "m": 1, + "ix": 2, + "nm": "Trim In Out Path", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 0, + "ind": 10, + "ty": 3, + "nm": "Null 1", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 0, "ix": 11 }, + "r": { "a": 0, "k": 184, "ix": 10 }, + "p": { "a": 0, "k": [633, 1188, 0], "ix": 2 }, + "a": { "a": 0, "k": [12, -198, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "ip": 0, + "op": 112, + "st": 0, + "bm": 0 + }, + { + "ddd": 1, + "ind": 11, + "ty": 4, + "nm": "Shape Layer 41", + "parent": 10, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -11, "s": [0] }, + { "t": 87.9189453125, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10, "x": "var $bm_rt;\n$bm_rt = transform.rotation;" }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0.179, + "s": [6.395, -188.007, 0], + "to": [3.99, -626.075, 396.962], + "ti": [-3.99, 626.075, -396.962] + }, + { "t": 34.7802734375, "s": [30.337, -3944.458, 2381.774] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [56.08, -285.558, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [7, -27], + [35, 7], + [-41.906, 32.862], + [0, 0] + ], + "o": [ + [-7, 27], + [32, 27], + [23.167, -18.167], + [0, 0] + ], + "v": [ + [72, -317], + [4, -279], + [91, -263.167], + [107.167, -289.667] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.345, 0.381, 0.671, 0.5, 0.491, 0.265, 0.624, 1, 0.638, 0.15, 0.577], "ix": 9 } + }, + "s": { "a": 0, "k": [0, 0], "ix": 5 }, + "e": { "a": 0, "k": [100, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 12, + "ty": 4, + "nm": "Shape Layer 40", + "parent": 10, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -2.293, "s": [0] }, + { "t": 80.50390625, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0.179, + "s": [6.395, -188.007, 0], + "to": [172.235, -647.46, 153.434], + "ti": [-172.235, 647.46, -153.434] + }, + { "t": 80, "s": [1039.806, -4072.764, 920.605] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-262, -435, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [46, 54], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.969, 0.18, 0.404, 0.5, 0.97, 0.346, 0.318, 1, 0.972, 0.512, 0.233], "ix": 9 } + }, + "s": { "a": 0, "k": [-49, 0], "ix": 5 }, + "e": { "a": 0, "k": [68, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-262, -435], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 13, + "ty": 4, + "nm": "Shape Layer 39", + "parent": 10, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 0.179, "s": [0] }, + { "t": 91.6259765625, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0.179, + "s": [6.395, -188.007, 0], + "to": [140.553, -166.199, -42.398], + "ti": [-140.553, 166.199, 42.398] + }, + { "t": 15.0078125, "s": [849.715, -1185.203, -254.39] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [14.5, -433, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [27, 96], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.7411764705882353, 0.4588235294117647, 0.9333333333333333, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [14.5, -433], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 0, + "ind": 14, + "ty": 3, + "nm": "Null 2", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 0, "ix": 11 }, + "r": { "a": 0, "k": -49, "ix": 10 }, + "p": { "a": 0, "k": [621, 1344, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "ip": 0, + "op": 112, + "st": -4, + "bm": 0 + }, + { + "ddd": 0, + "ind": 15, + "ty": 3, + "nm": "Null 3", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 0, "ix": 11 }, + "r": { "a": 0, "k": 82, "ix": 10 }, + "p": { "a": 0, "k": [621, 1344, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "ip": 0, + "op": 112, + "st": -4, + "bm": 0 + }, + { + "ddd": 1, + "ind": 16, + "ty": 4, + "nm": "Shape Layer 105", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -11, "s": [0] }, + { "t": 87.6826171875, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10, "x": "var $bm_rt;\n$bm_rt = transform.rotation;" }, + "or": { "a": 0, "k": [0, 0, 135], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-112.965, -122.431, 0], + "to": [727.321, 51.433, 435.455], + "ti": [-727.321, -51.433, -435.455] + }, + { "t": 34.544921875, "s": [4250.962, 186.167, 2612.729] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [56.08, -285.558, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [7, -27], + [35, 7], + [-41.906, 32.862], + [0, 0] + ], + "o": [ + [-7, 27], + [32, 27], + [23.167, -18.167], + [0, 0] + ], + "v": [ + [72, -317], + [4, -279], + [91, -263.167], + [107.167, -289.667] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.345, 0.381, 0.671, 0.5, 0.491, 0.265, 0.624, 1, 0.638, 0.15, 0.577], "ix": 9 } + }, + "s": { "a": 0, "k": [0, 0], "ix": 5 }, + "e": { "a": 0, "k": [100, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 17, + "ty": 4, + "nm": "Shape Layer 104", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -2.293, "s": [0] }, + { "t": 80.50390625, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 135], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-112.965, -122.431, 0], + "to": [527.848, 55.985, 153.434], + "ti": [-527.848, -55.985, -153.434] + }, + { "t": 54.552734375, "s": [3054.124, 213.477, 920.605] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-262, -435, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [46, 54], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.969, 0.18, 0.404, 0.5, 0.97, 0.346, 0.318, 1, 0.972, 0.512, 0.233], "ix": 9 } + }, + "s": { "a": 0, "k": [-49, 0], "ix": 5 }, + "e": { "a": 0, "k": [68, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-262, -435], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 18, + "ty": 4, + "nm": "Shape Layer 103", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 0, "s": [0] }, + { "t": 91.6259765625, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 135], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-112.965, -122.431, 0], + "to": [4.145, 138.496, -42.398], + "ti": [-4.145, -138.496, 42.398] + }, + { "t": 15.0078125, "s": [-88.093, 708.543, -254.39] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [14.5, -433, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [27, 96], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.7411764705882353, 0.4588235294117647, 0.9333333333333333, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [14.5, -433], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 19, + "ty": 4, + "nm": "Shape Layer 102", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -3.528, "s": [0] }, + { "t": 94.09765625, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 135], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": -0.179, + "s": [-112.965, -122.431, 0], + "to": [-61.615, 187.567, 26.907], + "ti": [61.615, -187.567, -26.907] + }, + { "t": 31.0732421875, "s": [-482.654, 1002.974, 161.442] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-180.917, -577, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [36, 32], + [26, -104] + ], + "o": [ + [0, 0], + [-36, -32], + [-11.157, 44.627] + ], + "v": [ + [-161, -650], + [-193, -562], + [-165, -504] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.996078431372549, 0.7686274509803922, 0.33725490196078434, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 20, + "ty": 4, + "nm": "Shape Layer 101", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -1.057, "s": [0] }, + { "t": 84.2109375, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 135], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.824 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-112.965, -122.431, 0], + "to": [-90.863, 90.863, 0], + "ti": [88.083, -357.903, -768.642] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.164 }, + "t": 17.479, + "s": [-658.144, 422.748, 0], + "to": [-84.157, 341.951, 734.383], + "ti": [-714.89, -84.078, -197.259] + }, + { "t": 86.6826171875, "s": [3631.196, 927.217, 1183.551] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-45, -602, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [40, 40], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-45, -602], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 21, + "ty": 4, + "nm": "Shape Layer 100", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -2.293, "s": [0] }, + { "t": 100.2763671875, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 135], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.796 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-112.965, -122.431, 0], + "to": [-134.704, 42.073, 0], + "ti": [7.203, -205.415, 0] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.157 }, + "t": 28, + "s": [-921.188, 130.006, 0], + "to": [-19.567, 558.035, 0], + "ti": [-540.328, -229.432, 0] + }, + { "t": 116, "s": [2320.778, 1506.598, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [232.5, -595.5, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [11, 67], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [232.5, -595.5], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 22, + "ty": 4, + "nm": "Shape Layer 99", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 0, "s": [0] }, + { "t": 86.6826171875, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 135], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.775 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-112.965, -122.431, 0], + "to": [-115.257, 9.245, 0], + "ti": [52.068, -163.912, -53.249] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.155 }, + "t": 19.951, + "s": [-804.504, -66.963, 0], + "to": [-48.777, 153.551, 49.883], + "ti": [-156.371, -109.917, -25.485] + }, + { "t": 91, "s": [2733.865, 1051.661, 319.492] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [120, -142, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [32, 44], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.4980392156862745, 0.8156862745098039, 0.30980392156862746, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [120, -142], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 23, + "ty": 4, + "nm": "Shape Layer 98", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -2.293, "s": [0] }, + { "t": 146, "s": [1440] } + ], + "ix": 8 + }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -2.293, "s": [0] }, + { "t": 146, "s": [1440] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 135], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.855 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-112.965, -122.431, 0], + "to": [-138.996, -53.461, 0], + "ti": [-421.763, 15.031, 16.673] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.174 }, + "t": 21.187, + "s": [-946.942, -443.198, 0], + "to": [421.763, -15.031, -16.673], + "ti": [-560.76, -38.43, 16.673] + }, + { "t": 100.2763671875, "s": [2417.616, -212.616, -100.037] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [116, -254, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [26, 56], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.996078431372549, 0.5490196078431373, 0.00392156862745098, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [116, -254], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 24, + "ty": 4, + "nm": "Shape Layer 97", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 0, "s": [0] }, + { "t": 144.7646484375, "s": [1080] } + ], + "ix": 8 + }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 0, "s": [0] }, + { "t": 144.7646484375, "s": [59] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 311], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.673 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-137.695, -128.17, 0], + "to": [-87.16, 25.736, -45.544], + "ti": [-273.542, -218.754, 122.377] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.14 }, + "t": 31.073, + "s": [-660.653, 26.246, -273.265], + "to": [129.994, 103.957, -58.156], + "ti": [-320.287, -255.677, -112.981] + }, + { "t": 111.3984375, "s": [3683.402, 989.215, 1150.251] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [56.08, -285.558, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [3.444, 9.757] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-4.941, -14] + ], + "v": [ + [72, -317], + [4, -279], + [24.151, -217.936], + [88.307, -269.617] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.345, 0.381, 0.671, 0.5, 0.491, 0.265, 0.624, 1, 0.638, 0.15, 0.577], "ix": 9 } + }, + "s": { "a": 0, "k": [0, 0], "ix": 5 }, + "e": { "a": 0, "k": [100, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 25, + "ty": 4, + "nm": "Shape Layer 96", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -9, "s": [0] }, + { "t": 89.154296875, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 311], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.853 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-89.038, -0.153, 0], + "to": [-552.568, -84.135, -9.152], + "ti": [-1514.035, -462.134, 43.281] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.183 }, + "t": 38, + "s": [95.207, -392.324, -54.91], + "to": [684.779, 209.018, -19.576], + "ti": [-315.276, -115.122, 160.297] + }, + { "t": 97, "s": [1986.864, 298.408, -1016.689] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-262, -435, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [46, 54], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.969, 0.18, 0.404, 0.5, 0.97, 0.346, 0.318, 1, 0.972, 0.512, 0.233], "ix": 9 } + }, + "s": { "a": 0, "k": [-49, 0], "ix": 5 }, + "e": { "a": 0, "k": [68, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-262, -435], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 26, + "ty": 4, + "nm": "Shape Layer 95", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -14, "s": [0] }, + { "t": 81.740234375, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 311], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.774 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-137.695, -128.17, 0], + "to": [-110.347, -144.949, -65.532], + "ti": [-365.662, -268.839, -214.28] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.147 }, + "t": 26, + "s": [-799.777, -997.863, -393.192], + "to": [365.662, 268.839, 214.28], + "ti": [-476.009, -413.788, -279.812] + }, + { "t": 76.796875, "s": [2056.275, 1484.866, 1285.683] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [14.5, -433, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [27, 96], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.7411764705882353, 0.4588235294117647, 0.9333333333333333, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [14.5, -433], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 27, + "ty": 4, + "nm": "Shape Layer 94", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -9, "s": [0] }, + { "t": 100.2763671875, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 311], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-137.695, -128.17, 0], + "to": [-90.481, -247.593, 46.629], + "ti": [90.481, 247.593, -46.629] + }, + { "t": 44, "s": [-680.583, -1613.73, 279.773] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-180.917, -577, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [36, 32], + [26, -104] + ], + "o": [ + [0, 0], + [-36, -32], + [-11.157, 44.627] + ], + "v": [ + [-161, -650], + [-193, -562], + [-165, -504] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.996078431372549, 0.7686274509803922, 0.33725490196078434, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 28, + "ty": 4, + "nm": "Shape Layer 93", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -3.528, "s": [0] }, + { "t": 91.6259765625, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 311], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-137.695, -128.17, 0], + "to": [69.003, -110.281, -16.168], + "ti": [-69.003, 110.281, 16.168] + }, + { "t": 32, "s": [276.323, -789.855, -97.005] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-45, -602, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [40, 40], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-45, -602], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 29, + "ty": 4, + "nm": "Shape Layer 92", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -10, "s": [0] }, + { "t": 81.740234375, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 311], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-137.695, -128.17, 0], + "to": [305.417, 119.743, 41.862], + "ti": [-305.417, -119.743, -41.862] + }, + { "t": 27, "s": [1694.805, 590.289, 251.17] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [232.5, -595.5, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [11, 67], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [232.5, -595.5], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 30, + "ty": 4, + "nm": "Shape Layer 91", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -2.293, "s": [0] }, + { "t": 86.6826171875, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 311], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-137.695, -128.17, 0], + "to": [318.521, 75.426, -43.518], + "ti": [-318.521, -75.426, 43.518] + }, + { "t": 24, "s": [1773.433, 324.385, -261.107] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [120, -142, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [32, 44], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.4980392156862745, 0.8156862745098039, 0.30980392156862746, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [120, -142], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 31, + "ty": 4, + "nm": "Shape Layer 90", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -4.765, "s": [0] }, + { "t": 89.154296875, "s": [1080] } + ], + "ix": 8 + }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 0, "s": [0] }, + { "t": 89.154296875, "s": [1800] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 311], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-137.695, -128.17, 0], + "to": [77.354, 134.863, -215.584], + "ti": [-77.354, -134.863, 215.584] + }, + { "t": 27.3662109375, "s": [326.43, 681.005, -1293.506] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [116, -254, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [26, 56], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.996078431372549, 0.5490196078431373, 0.00392156862745098, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [116, -254], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 32, + "ty": 4, + "nm": "Shape Layer 89", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -1.057, "s": [0] }, + { "t": 102.748046875, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10, "x": "var $bm_rt;\n$bm_rt = transform.rotation;" }, + "or": { "a": 0, "k": [0, 0, 135], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-112.965, -122.431, 0], + "to": [301.698, 164.851, -47.459], + "ti": [-301.698, -164.851, 47.459] + }, + { "t": 103.9833984375, "s": [1697.223, 866.674, -284.755] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [56.08, -285.558, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [84.659, -333.362], + [4, -279], + [45.665, -243.617], + [119.735, -297.935] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.345, 0.381, 0.671, 0.5, 0.491, 0.265, 0.624, 1, 0.638, 0.15, 0.577], "ix": 9 } + }, + "s": { "a": 0, "k": [0, 0], "ix": 5 }, + "e": { "a": 0, "k": [100, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 33, + "ty": 4, + "nm": "Shape Layer 88", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -17, "s": [0] }, + { "t": 95.3330078125, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 135], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-112.965, -122.431, 0], + "to": [159.503, 223.195, -0.572], + "ti": [-159.503, -223.195, 0.572] + }, + { "t": 37.251953125, "s": [844.051, 1216.741, -3.43] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-262, -435, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [46, 54], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.969, 0.18, 0.404, 0.5, 0.97, 0.346, 0.318, 1, 0.972, 0.512, 0.233], "ix": 9 } + }, + "s": { "a": 0, "k": [-49, 0], "ix": 5 }, + "e": { "a": 0, "k": [68, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-262, -435], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 34, + "ty": 4, + "nm": "Shape Layer 87", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -11, "s": [0] }, + { "t": 101.51171875, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 135], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-112.965, -122.431, 0], + "to": [33.76, 196.346, -7.096], + "ti": [-33.76, -196.346, 7.096] + }, + { "t": 40.958984375, "s": [89.594, 1055.648, -42.576] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [14.5, -433, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [27, 96], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.7411764705882353, 0.4588235294117647, 0.9333333333333333, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [14.5, -433], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 35, + "ty": 4, + "nm": "Shape Layer 86", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -11, "s": [0] }, + { "t": 85.447265625, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 135], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-112.965, -122.431, 0], + "to": [-16.649, 163.663, 0], + "ti": [16.649, -163.663, 0] + }, + { "t": 24.89453125, "s": [-212.861, 859.547, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-180.917, -577, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [36, 32], + [26, -104] + ], + "o": [ + [0, 0], + [-36, -32], + [-11.157, 44.627] + ], + "v": [ + [-161, -650], + [-193, -562], + [-165, -504] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.996078431372549, 0.7686274509803922, 0.33725490196078434, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 36, + "ty": 4, + "nm": "Shape Layer 85", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -3.528, "s": [0] }, + { "t": 101.51171875, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 135], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-112.965, -122.431, 0], + "to": [-71.747, 128.05, 0], + "ti": [71.747, -128.05, 0] + }, + { "t": 49.609375, "s": [-543.449, 645.87, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-45, -602, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [40, 40], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-45, -602], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 37, + "ty": 4, + "nm": "Shape Layer 84", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -4.765, "s": [0] }, + { "t": 112.6337890625, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 135], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.728 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-112.965, -122.431, 0], + "to": [-81.837, 27.324, 33.544], + "ti": [-153.275, -262.436, -33.544] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.131 }, + "t": 21, + "s": [-603.986, 41.512, 201.262], + "to": [153.275, 262.436, 33.544], + "ti": [-235.112, -235.112, 0] + }, + { "t": 50.845703125, "s": [806.688, 1452.185, 201.262] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [232.5, -595.5, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [11, 67], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [232.5, -595.5], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 38, + "ty": 4, + "nm": "Shape Layer 83", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -6, "s": [0] }, + { "t": 85.447265625, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 135], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.652 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-112.965, -122.431, 0], + "to": [-171.831, 20.57, 3.486], + "ti": [602.026, -193.886, -848.553] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.142 }, + "t": 35, + "s": [-1143.953, 0.988, 20.917], + "to": [-778.519, 946.911, 884.934], + "ti": [-1189.71, -488.979, -884.978] + }, + { "t": 139, "s": [5994.306, 2934.863, 5330.786] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [120, -142, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [32, 44], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.4980392156862745, 0.8156862745098039, 0.30980392156862746, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [120, -142], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 39, + "ty": 4, + "nm": "Shape Layer 82", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -23, "s": [0] }, + { "t": 97.8046875, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 135], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.883 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-112.965, -122.431, 0], + "to": [-120.682, -96.313, 17.582], + "ti": [57.484, -266.769, 15.802] + }, + { + "i": { "x": 0.833, "y": 0.817 }, + "o": { "x": 0.167, "y": 0.198 }, + "t": 15.008, + "s": [-837.059, -700.31, 105.493], + "to": [-25.433, 118.027, -6.991], + "ti": [-511.749, -461.825, 46.841] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.143 }, + "t": 54.553, + "s": [271.713, 386.113, 403.89], + "to": [308.693, 278.579, -28.255], + "ti": [-142.63, -100.689, 10.833] + }, + { "t": 76.796875, "s": [1060.877, 1065.009, -67.253] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [116, -254, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [26, 56], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.996078431372549, 0.5490196078431373, 0.00392156862745098, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [116, -254], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 40, + "ty": 4, + "nm": "Shape Layer 81", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -12, "s": [0] }, + { "t": 102.748046875, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 311], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-137.695, -128.17, 0], + "to": [135.751, -389.001, 217.62], + "ti": [-135.751, 389.001, -217.62] + }, + { "t": 27, "s": [676.808, -2462.175, 1305.721] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [56.08, -285.558, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [7, -27], + [35, 7], + [-41.906, 32.862], + [0, 0] + ], + "o": [ + [-7, 27], + [32, 27], + [23.167, -18.167], + [0, 0] + ], + "v": [ + [72, -317], + [4, -279], + [91, -263.167], + [107.167, -289.667] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.345, 0.381, 0.671, 0.5, 0.491, 0.265, 0.624, 1, 0.638, 0.15, 0.577], "ix": 9 } + }, + "s": { "a": 0, "k": [0, 0], "ix": 5 }, + "e": { "a": 0, "k": [100, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 41, + "ty": 4, + "nm": "Shape Layer 80", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -25, "s": [0] }, + { "t": 81.740234375, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 311], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.849 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-137.695, -128.17, 0], + "to": [-70.649, 26.407, 0], + "ti": [-291.085, -122.356, 90.248] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.171 }, + "t": 16, + "s": [-561.59, 30.269, 0], + "to": [291.085, 122.356, -90.248], + "ti": [-361.735, -95.95, 90.248] + }, + { "t": 82.9755859375, "s": [1608.818, 605.966, -541.488] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-262, -435, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [46, 54], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.969, 0.18, 0.404, 0.5, 0.97, 0.346, 0.318, 1, 0.972, 0.512, 0.233], "ix": 9 } + }, + "s": { "a": 0, "k": [-49, 0], "ix": 5 }, + "e": { "a": 0, "k": [68, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-262, -435], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 42, + "ty": 4, + "nm": "Shape Layer 79", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 0, "s": [0] }, + { "t": 95.3330078125, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 311], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.704 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-137.695, -128.17, 0], + "to": [-49.159, -63.557, 4.223], + "ti": [-0.005, 148.838, -20.562] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.144 }, + "t": 24, + "s": [-432.65, -509.511, 25.34], + "to": [0.017, -477.286, 65.936], + "ti": [-415.767, 197.78, -61.713] + }, + { "t": 91.6259765625, "s": [2061.954, -1696.192, 395.618] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [14.5, -433, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [27, 96], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.7411764705882353, 0.4588235294117647, 0.9333333333333333, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [14.5, -433], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 43, + "ty": 4, + "nm": "Shape Layer 78", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -20, "s": [0] }, + { "t": 87.9189453125, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 311], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-137.695, -128.17, 0], + "to": [33.977, -166.361, 22.596], + "ti": [-33.977, 166.361, -22.596] + }, + { "t": 30, "s": [66.167, -1126.338, 135.575] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-180.917, -577, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [36, 32], + [26, -104] + ], + "o": [ + [0, 0], + [-36, -32], + [-11.157, 44.627] + ], + "v": [ + [-161, -650], + [-193, -562], + [-165, -504] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.996078431372549, 0.7686274509803922, 0.33725490196078434, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 44, + "ty": 4, + "nm": "Shape Layer 77", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -16, "s": [0] }, + { "t": 99.041015625, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 311], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-137.695, -128.17, 0], + "to": [345.992, -256.663, 189.679], + "ti": [-345.992, 256.663, -189.679] + }, + { "t": 27, "s": [1938.258, -1668.151, 1138.074] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-45, -602, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [40, 40], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-45, -602], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 45, + "ty": 4, + "nm": "Shape Layer 76", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -2.293, "s": [0] }, + { "t": 45.90234375, "s": [1080] } + ], + "ix": 8 + }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -3.528, "s": [0] }, + { "t": 105.2197265625, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 311], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.826 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-137.695, -128.17, 0], + "to": [120.875, -60.552, 0], + "ti": [-340.061, 254.939, 0] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.163 }, + "t": 27.366, + "s": [587.554, -491.48, 0], + "to": [340.061, -254.939, 0], + "ti": [-219.187, 194.387, 0] + }, + { "t": 82.9755859375, "s": [1902.674, -1657.802, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [232.5, -595.5, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [11, 67], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [232.5, -595.5], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 46, + "ty": 4, + "nm": "Shape Layer 75", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -18, "s": [0] }, + { "t": 86.6826171875, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 311], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.926 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-137.695, -128.17, 0], + "to": [208.471, -17.277, 73.2], + "ti": [-257.939, 74.184, 269.358] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.228 }, + "t": 15.897, + "s": [1113.129, -231.834, 439.203], + "to": [257.939, -74.184, -269.358], + "ti": [-49.469, 56.907, 342.559] + }, + { "t": 90, "s": [1409.942, -573.277, -1616.149] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [120, -142, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [32, 44], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.4980392156862745, 0.8156862745098039, 0.30980392156862746, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [120, -142], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 47, + "ty": 4, + "nm": "Shape Layer 74", + "parent": 15, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -24, "s": [0] }, + { "t": 94.09765625, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 311], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [-137.695, -128.17, 0], + "to": [308.185, 154.066, 17.938], + "ti": [-308.185, -154.066, -17.938] + }, + { "t": 24.89453125, "s": [1711.415, 796.226, 107.63] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [116, -254, 0], "ix": 1 }, + "s": { "a": 0, "k": [51, 51, 51], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [26, 56], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.996078431372549, 0.5490196078431373, 0.00392156862745098, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [116, -254], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 48, + "ty": 4, + "nm": "Shape Layer 73", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -11, "s": [0] }, + { "t": 87.9189453125, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10, "x": "var $bm_rt;\n$bm_rt = transform.rotation;" }, + "or": { "a": 0, "k": [0, 0, 184], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [18.288, -165.578, 0], + "to": [-47.653, 624.272, 396.962], + "ti": [47.653, -624.272, -396.962] + }, + { "t": 34.7802734375, "s": [-267.632, 3580.053, 2381.774] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [56.08, -285.558, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [7, -27], + [35, 7], + [-41.906, 32.862], + [0, 0] + ], + "o": [ + [-7, 27], + [32, 27], + [23.167, -18.167], + [0, 0] + ], + "v": [ + [72, -317], + [4, -279], + [91, -263.167], + [107.167, -289.667] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.345, 0.381, 0.671, 0.5, 0.491, 0.265, 0.624, 1, 0.638, 0.15, 0.577], "ix": 9 } + }, + "s": { "a": 0, "k": [0, 0], "ix": 5 }, + "e": { "a": 0, "k": [100, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 49, + "ty": 4, + "nm": "Shape Layer 72", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -2.293, "s": [0] }, + { "t": 80.50390625, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 184], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [18.288, -165.578, 0], + "to": [-143.363, 403.815, 153.434], + "ti": [143.363, -403.815, -153.434] + }, + { "t": 54.552734375, "s": [-841.892, 2257.314, 920.605] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-262, -435, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [46, 54], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.969, 0.18, 0.404, 0.5, 0.97, 0.346, 0.318, 1, 0.972, 0.512, 0.233], "ix": 9 } + }, + "s": { "a": 0, "k": [-49, 0], "ix": 5 }, + "e": { "a": 0, "k": [68, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-262, -435], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 50, + "ty": 4, + "nm": "Shape Layer 71", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 0, "s": [0] }, + { "t": 91.6259765625, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 184], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [18.288, -165.578, 0], + "to": [-196.222, 199.787, -42.398], + "ti": [196.222, -199.787, 42.398] + }, + { "t": 32.30859375, "s": [-1159.042, 1033.147, -254.39] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [14.5, -433, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [27, 96], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.7411764705882353, 0.4588235294117647, 0.9333333333333333, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [14.5, -433], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 51, + "ty": 4, + "nm": "Shape Layer 70", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -3.528, "s": [0] }, + { "t": 94.09765625, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 184], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.868 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [18.288, -165.578, 0], + "to": [-181.982, 76.554, 26.907], + "ti": [353.39, -64.568, -26.907] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.207 }, + "t": 31.073, + "s": [-1073.604, 293.746, 161.442], + "to": [-353.39, 64.568, 26.907], + "ti": [171.408, 11.986, 0] + }, + { "t": 73.08984375, "s": [-2102.054, 221.83, 161.442] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-180.917, -577, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [36, 32], + [26, -104] + ], + "o": [ + [0, 0], + [-36, -32], + [-11.157, 44.627] + ], + "v": [ + [-161, -650], + [-193, -562], + [-165, -504] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.996078431372549, 0.7686274509803922, 0.33725490196078434, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 52, + "ty": 4, + "nm": "Shape Layer 69", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -1.057, "s": [0] }, + { "t": 84.2109375, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 184], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [18.288, -165.578, 0], + "to": [-128.187, -8.964, 0], + "ti": [128.187, 8.964, 0] + }, + { "t": 33, "s": [-750.834, -219.36, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-45, -602, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [40, 40], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-45, -602], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 53, + "ty": 4, + "nm": "Shape Layer 68", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -2.293, "s": [0] }, + { "t": 100.2763671875, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 184], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [18.288, -165.578, 0], + "to": [-120.126, -74.06, 0], + "ti": [120.126, 74.06, 0] + }, + { "t": 39, "s": [-702.471, -609.938, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [232.5, -595.5, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [11, 67], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [232.5, -595.5], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 54, + "ty": 4, + "nm": "Shape Layer 67", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 0, "s": [0] }, + { "t": 86.6826171875, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 184], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.723 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [18.288, -165.578, 0], + "to": [-82.592, -80.92, 0], + "ti": [157.866, -68.24, -53.249] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.139 }, + "t": 27, + "s": [-477.265, -651.099, 0], + "to": [-147.887, 63.926, 49.883], + "ti": [-19.633, -190.127, -25.485] + }, + { "t": 80.50390625, "s": [-147.831, 2175.133, 319.492] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [120, -142, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [32, 44], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.4980392156862745, 0.8156862745098039, 0.30980392156862746, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [120, -142], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 55, + "ty": 4, + "nm": "Shape Layer 66", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -2.293, "s": [0] }, + { "t": 146, "s": [1440] } + ], + "ix": 8 + }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -2.293, "s": [0] }, + { "t": 146, "s": [1440] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 184], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.749 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [18.288, -165.578, 0], + "to": [-50.842, -139.975, 0], + "ti": [92.088, -447.218, 16.673] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.14 }, + "t": 36, + "s": [-286.764, -1005.43, 0], + "to": [-92.088, 447.218, -16.673], + "ti": [41.246, -587.193, 16.673] + }, + { "t": 100.2763671875, "s": [-534.238, 2517.728, -100.037] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [116, -254, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [26, 56], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.996078431372549, 0.5490196078431373, 0.00392156862745098, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [116, -254], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 56, + "ty": 4, + "nm": "Shape Layer 65", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 0, "s": [0] }, + { "t": 144.7646484375, "s": [1080] } + ], + "ix": 8 + }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 0, "s": [0] }, + { "t": 144.7646484375, "s": [59] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.767 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [-6.333, -132.667, 0], + "ti": [83.687, 200.398, -334.198] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.153 }, + "t": 26, + "s": [-31.605, -984.007, 0], + "to": [-63.434, -151.901, 253.321], + "ti": [-17.165, -409.463, -112.981] + }, + { "t": 111.3984375, "s": [283.153, 3184.715, 1150.251] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [56.08, -285.558, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [3.444, 9.757] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-4.941, -14] + ], + "v": [ + [72, -317], + [4, -279], + [24.151, -217.936], + [88.307, -269.617] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.671, 0.345, 0.345, 0.5, 0.655, 0.247, 0.461, 1, 0.638, 0.15, 0.577], "ix": 9 } + }, + "s": { "a": 0, "k": [0, 0], "ix": 5 }, + "e": { "a": 0, "k": [100, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 57, + "ty": 4, + "nm": "Shape Layer 64", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -9, "s": [0] }, + { "t": 89.154296875, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.836 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [64.5, -169.594, -9.152], + "ti": [-113.79, -117.061, 113.731] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.168 }, + "t": 27, + "s": [393.395, -1205.571, -54.91], + "to": [155.887, 160.368, -155.806], + "ti": [28, -314.6, 160.297] + }, + { "t": 79, "s": [225.395, 682.029, -1016.689] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-262, -435, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [46, 54], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.969, 0.18, 0.404, 0.5, 0.97, 0.346, 0.318, 1, 0.972, 0.512, 0.233], "ix": 9 } + }, + "s": { "a": 0, "k": [-49, 0], "ix": 5 }, + "e": { "a": 0, "k": [68, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-262, -435], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 58, + "ty": 4, + "nm": "Shape Layer 63", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -14, "s": [0] }, + { "t": 81.740234375, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.787 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [37, -178.375, -65.532], + "ti": [-37, -452.343, -214.28] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.151 }, + "t": 28, + "s": [228.395, -1258.256, -393.192], + "to": [37, 452.343, 214.28], + "ti": [0, -630.718, -279.812] + }, + { "t": 88, "s": [228.395, 2526.051, 1285.683] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [14.5, -433, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [27, 96], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.7411764705882353, 0.4588235294117647, 0.9333333333333333, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [14.5, -433], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 59, + "ty": 4, + "nm": "Shape Layer 62", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -9, "s": [0] }, + { "t": 100.2763671875, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [127.5, -230.723, 46.629], + "ti": [-127.5, 230.723, -46.629] + }, + { "t": 38, "s": [771.395, -1572.344, 279.773] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-180.917, -577, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [36, 32], + [26, -104] + ], + "o": [ + [0, 0], + [-36, -32], + [-11.157, 44.627] + ], + "v": [ + [-161, -650], + [-193, -562], + [-165, -504] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.996078431372549, 0.7686274509803922, 0.33725490196078434, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 60, + "ty": 4, + "nm": "Shape Layer 61", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -3.528, "s": [0] }, + { "t": 91.6259765625, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [259.979, -20.273, -16.168], + "ti": [-259.979, 20.273, 16.168] + }, + { "t": 19, "s": [1566.267, -309.648, -97.005] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-45, -602, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [40, 40], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-45, -602], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 61, + "ty": 4, + "nm": "Shape Layer 60", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -10, "s": [0] }, + { "t": 81.740234375, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [110, 309.06, 41.862], + "ti": [-110, -309.06, -41.862] + }, + { "t": 31, "s": [666.395, 1666.35, 251.17] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [232.5, -595.5, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [11, 67], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [232.5, -595.5], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 62, + "ty": 4, + "nm": "Shape Layer 59", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -2.293, "s": [0] }, + { "t": 86.6826171875, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [111, 205.897, -43.518], + "ti": [-111, -205.897, 43.518] + }, + { "t": 33, "s": [672.395, 1047.376, -261.107] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [120, -142, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [32, 44], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.4980392156862745, 0.8156862745098039, 0.30980392156862746, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [120, -142], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 63, + "ty": 4, + "nm": "Shape Layer 58", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -4.765, "s": [0] }, + { "t": 89.154296875, "s": [1080] } + ], + "ix": 8 + }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 0, "s": [0] }, + { "t": 89.154296875, "s": [1800] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [14.845, 244.879, -215.584], + "ti": [-14.845, -244.879, 215.584] + }, + { "t": 27.3662109375, "s": [95.463, 1281.264, -1293.506] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [116, -254, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [26, 56], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.996078431372549, 0.5490196078431373, 0.00392156862745098, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [116, -254], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 64, + "ty": 4, + "nm": "Shape Layer 57", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -1.057, "s": [0] }, + { "t": 102.748046875, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10, "x": "var $bm_rt;\n$bm_rt = transform.rotation;" }, + "or": { "a": 0, "k": [0, 0, 184], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [18.288, -165.578, 0], + "to": [44.909, 224.342, -47.459], + "ti": [-44.909, -224.342, 47.459] + }, + { "t": 58.259765625, "s": [287.74, 1180.472, -284.755] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [56.08, -285.558, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [84.659, -333.362], + [4, -279], + [45.665, -243.617], + [119.735, -297.935] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.345, 0.381, 0.671, 0.5, 0.491, 0.265, 0.624, 1, 0.638, 0.15, 0.577], "ix": 9 } + }, + "s": { "a": 0, "k": [0, 0], "ix": 5 }, + "e": { "a": 0, "k": [100, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 65, + "ty": 4, + "nm": "Shape Layer 56", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -17, "s": [0] }, + { "t": 95.3330078125, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 184], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [18.288, -165.578, 0], + "to": [-63.805, 266.808, -0.572], + "ti": [63.805, -266.808, 0.572] + }, + { "t": 51, "s": [-364.539, 1435.268, -3.43] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-262, -435, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [46, 54], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.969, 0.18, 0.404, 0.5, 0.97, 0.346, 0.318, 1, 0.972, 0.512, 0.233], "ix": 9 } + }, + "s": { "a": 0, "k": [-49, 0], "ix": 5 }, + "e": { "a": 0, "k": [68, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-262, -435], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 66, + "ty": 4, + "nm": "Shape Layer 55", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -11, "s": [0] }, + { "t": 101.51171875, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 184], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.877 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [18.288, -165.578, 0], + "to": [-126.036, 154.294, -7.096], + "ti": [142.905, -395.535, 7.096] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.203 }, + "t": 39, + "s": [-737.928, 760.184, -42.576], + "to": [-142.905, 395.535, -7.096], + "ti": [16.869, -241.241, 0] + }, + { "t": 117, "s": [-839.144, 2207.633, -42.576] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [14.5, -433, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [27, 96], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.7411764705882353, 0.4588235294117647, 0.9333333333333333, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [14.5, -433], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 67, + "ty": 4, + "nm": "Shape Layer 54", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -11, "s": [0] }, + { "t": 85.447265625, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 184], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [18.288, -165.578, 0], + "to": [-233.472, 311.697, -17.966], + "ti": [233.472, -311.697, 17.966] + }, + { "t": 24, "s": [-1382.547, 1704.606, -107.798] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-180.917, -577, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [36, 32], + [26, -104] + ], + "o": [ + [0, 0], + [-36, -32], + [-11.157, 44.627] + ], + "v": [ + [-161, -650], + [-193, -562], + [-165, -504] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.996078431372549, 0.7686274509803922, 0.33725490196078434, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 68, + "ty": 4, + "nm": "Shape Layer 53", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -3.528, "s": [0] }, + { "t": 101.51171875, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 184], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.762 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [18.288, -165.578, 0], + "to": [-130.292, 21.146, 0], + "ti": [485.802, -51.233, 12.363] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.14 }, + "t": 22, + "s": [-763.467, -38.702, 0], + "to": [-485.802, 51.233, -12.363], + "ti": [355.509, -30.087, 12.363] + }, + { "t": 57, "s": [-2896.522, 141.82, -74.176] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-45, -602, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [40, 40], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-45, -602], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 69, + "ty": 4, + "nm": "Shape Layer 52", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -4.765, "s": [0] }, + { "t": 112.6337890625, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 184], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.78 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [18.288, -165.578, 0], + "to": [-74.311, -43.837, 33.544], + "ti": [97.505, -287.852, -33.544] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.149 }, + "t": 34, + "s": [-427.58, -428.6, 201.262], + "to": [-97.505, 287.852, 33.544], + "ti": [23.194, -331.689, 0] + }, + { "t": 102, "s": [-566.743, 1561.534, 201.262] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [232.5, -595.5, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [11, 67], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [232.5, -595.5], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 70, + "ty": 4, + "nm": "Shape Layer 51", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -6, "s": [0] }, + { "t": 85.447265625, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 184], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [18.288, -165.578, 0], + "to": [-124.762, -149.834, 3.486], + "ti": [124.762, 149.834, -3.486] + }, + { "t": 26, "s": [-730.286, -1064.579, 20.917] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [120, -142, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [32, 44], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.4980392156862745, 0.8156862745098039, 0.30980392156862746, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [120, -142], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 71, + "ty": 4, + "nm": "Shape Layer 50", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -23, "s": [0] }, + { "t": 97.8046875, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 184], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.77 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [18.288, -165.578, 0], + "to": [-6.486, -154.267, 17.582], + "ti": [239.046, -131.632, 15.802] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.142 }, + "t": 30, + "s": [-20.629, -1091.18, 105.493], + "to": [-105.762, 58.238, -6.991], + "ti": [-17.583, -173.702, 10.833] + }, + { "t": 76.796875, "s": [-107.774, 1499.363, -67.253] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [116, -254, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [26, 56], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.996078431372549, 0.5490196078431373, 0.00392156862745098, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [116, -254], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 72, + "ty": 4, + "nm": "Shape Layer 49", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -12, "s": [0] }, + { "t": 102.748046875, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [382.643, -152.755, 217.62], + "ti": [-382.643, 152.755, -217.62] + }, + { "t": 33, "s": [2302.253, -1104.538, 1305.721] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [56.08, -285.558, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [7, -27], + [35, 7], + [-41.906, 32.862], + [0, 0] + ], + "o": [ + [-7, 27], + [32, 27], + [23.167, -18.167], + [0, 0] + ], + "v": [ + [72, -317], + [4, -279], + [91, -263.167], + [107.167, -289.667] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.345, 0.381, 0.671, 0.5, 0.491, 0.265, 0.624, 1, 0.638, 0.15, 0.577], "ix": 9 } + }, + "s": { "a": 0, "k": [0, 0], "ix": 5 }, + "e": { "a": 0, "k": [100, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 73, + "ty": 4, + "nm": "Shape Layer 48", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -25, "s": [0] }, + { "t": 81.740234375, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.831 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [64.5, -93.5, 0], + "ti": [-64.5, -194.5, 90.248] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.166 }, + "t": 25, + "s": [393.395, -749.007, 0], + "to": [64.5, 194.5, -90.248], + "ti": [0, -288, 90.248] + }, + { "t": 82.9755859375, "s": [393.395, 978.993, -541.488] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-262, -435, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [46, 54], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.969, 0.18, 0.404, 0.5, 0.97, 0.346, 0.318, 1, 0.972, 0.512, 0.233], "ix": 9 } + }, + "s": { "a": 0, "k": [-49, 0], "ix": 5 }, + "e": { "a": 0, "k": [68, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-262, -435], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 74, + "ty": 4, + "nm": "Shape Layer 47", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 0, "s": [0] }, + { "t": 95.3330078125, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.885 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [65.626, -110, 4.223], + "ti": [-147.468, -10.238, -26.905] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.19 }, + "t": 20, + "s": [400.149, -848.007, 25.34], + "to": [361.407, 25.09, 65.936], + "ti": [-121.292, -241.908, -61.713] + }, + { "t": 91.6259765625, "s": [1127.898, 603.439, 395.618] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [14.5, -433, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [27, 96], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.7411764705882353, 0.4588235294117647, 0.9333333333333333, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [14.5, -433], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 75, + "ty": 4, + "nm": "Shape Layer 46", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -20, "s": [0] }, + { "t": 87.9189453125, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.816 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [147.845, -83.5, 22.596], + "ti": [-263.557, -41.975, 24.609] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.159 }, + "t": 24, + "s": [893.467, -689.007, 135.575], + "to": [408.719, 65.094, -38.164], + "ti": [88.693, -68.281, 27.128] + }, + { "t": 74, "s": [-447.485, 1243.193, -405.659] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-180.917, -577, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [36, 32], + [26, -104] + ], + "o": [ + [0, 0], + [-36, -32], + [-11.157, 44.627] + ], + "v": [ + [-161, -650], + [-193, -562], + [-165, -504] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.996078431372549, 0.7686274509803922, 0.33725490196078434, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 76, + "ty": 4, + "nm": "Shape Layer 45", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -16, "s": [0] }, + { "t": 99.041015625, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.875 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [217.737, 24, 189.679], + "ti": [-563.841, -88.203, -189.679] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.201 }, + "t": 26, + "s": [1312.816, -44.007, 1138.074], + "to": [563.841, 88.203, 189.679], + "ti": [-346.104, -64.203, 0] + }, + { "t": 76.796875, "s": [3389.44, 341.208, 1138.074] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-45, -602, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [40, 40], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-45, -602], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 77, + "ty": 4, + "nm": "Shape Layer 44", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -2.293, "s": [0] }, + { "t": 45.90234375, "s": [1080] } + ], + "ix": 8 + }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -3.528, "s": [0] }, + { "t": 105.2197265625, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.866 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [125, 51.5, 0], + "ti": [-125, -69.882, 151.388] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.196 }, + "t": 27.366, + "s": [756.395, 120.993, 0], + "to": [125, 69.882, -151.388], + "ti": [0, -18.382, 151.388] + }, + { "t": 72, "s": [756.395, 231.284, -908.328] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [232.5, -595.5, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [11, 67], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [232.5, -595.5], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 78, + "ty": 4, + "nm": "Shape Layer 43", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -18, "s": [0] }, + { "t": 86.6826171875, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [149.808, 146, 73.2], + "ti": [-149.808, -146, -73.2] + }, + { "t": 26, "s": [905.246, 687.993, 439.203] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [120, -142, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [32, 44], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.4980392156862745, 0.8156862745098039, 0.30980392156862746, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [120, -142], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 79, + "ty": 4, + "nm": "Shape Layer 42", + "parent": 14, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -24, "s": [0] }, + { "t": 94.09765625, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [85.912, 333.667, 17.938], + "ti": [-85.912, -333.667, -17.938] + }, + { "t": 24.89453125, "s": [521.87, 1813.993, 107.63] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [116, -254, 0], "ix": 1 }, + "s": { "a": 0, "k": [64, 64, 64], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [26, 56], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.996078431372549, 0.5490196078431373, 0.00392156862745098, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [116, -254], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 80, + "ty": 4, + "nm": "Shape Layer 38", + "parent": 10, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -3.528, "s": [0] }, + { "t": 94.09765625, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [176.199, -89.062, 26.907], + "ti": [-176.199, 89.062, -26.907] + }, + { "t": 31.0732421875, "s": [1063.587, -722.379, 161.442] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-180.917, -577, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [36, 32], + [26, -104] + ], + "o": [ + [0, 0], + [-36, -32], + [-11.157, 44.627] + ], + "v": [ + [-161, -650], + [-193, -562], + [-165, -504] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.996078431372549, 0.7686274509803922, 0.33725490196078434, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 81, + "ty": 4, + "nm": "Shape Layer 37", + "parent": 10, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -1.057, "s": [0] }, + { "t": 84.2109375, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [128.5, 0, 0], + "ti": [-128.5, 0, 0] + }, + { "t": 30, "s": [777.395, -188.007, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-45, -602, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [40, 40], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-45, -602], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 82, + "ty": 4, + "nm": "Shape Layer 36", + "parent": 10, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -2.293, "s": [0] }, + { "t": 100.2763671875, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [125, 65.5, 0], + "ti": [-125, -65.5, 0] + }, + { "t": 22, "s": [756.395, 204.993, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [232.5, -595.5, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [11, 67], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [232.5, -595.5], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 83, + "ty": 4, + "nm": "Shape Layer 35", + "parent": 10, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 0, "s": [0] }, + { "t": 86.6826171875, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.782 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [88.036, 74.962, 0], + "ti": [-235.276, 83.183, -29.696] + }, + { + "i": { "x": 0.833, "y": 0.693 }, + "o": { "x": 0.167, "y": 0.155 }, + "t": 30, + "s": [534.609, 261.763, 0], + "to": [283.126, -100.101, 35.736], + "ti": [32.848, 188.294, -25.485] + }, + { "t": 123, "s": [-62.525, -2846.235, 319.492] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [120, -142, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [32, 44], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.4980392156862745, 0.8156862745098039, 0.30980392156862746, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [120, -142], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 84, + "ty": 4, + "nm": "Shape Layer 33", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 454.311, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 0, "s": [0] }, + { "t": 144.7646484375, "s": [59] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.737 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [627.395, 1155.993, 0], + "to": [42.167, -122.667, 0], + "ti": [-345.153, 74.903, -198.64] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.151 }, + "t": 28, + "s": [880.395, 419.993, 0], + "to": [432.939, -93.953, 249.162], + "ti": [-17.165, -409.463, -112.981] + }, + { "t": 127, "s": [1064.167, 5582.141, 1150.251] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [56.08, -285.558, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [3.444, 9.757] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [-4.941, -14] + ], + "v": [ + [72, -317], + [4, -279], + [24.151, -217.936], + [88.307, -269.617] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.7411764705882353, 0.4588235294117647, 0.9333333333333333, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 85, + "ty": 4, + "nm": "Shape Layer 32", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -9, "s": [0] }, + { "t": 89.154296875, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.841 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [627.395, 1155.993, 0], + "to": [21.5, -126.594, -9.152], + "ti": [-109.46, -148.367, 74.781] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.169 }, + "t": 25, + "s": [756.395, 396.429, -54.91], + "to": [113.887, 154.368, -77.806], + "ti": [7.464, -520.935, -7.703] + }, + { "t": 124, "s": [711.613, 3522.04, -8.689] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-262, -435, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [46, 54], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.969, 0.18, 0.404, 0.5, 0.97, 0.346, 0.318, 1, 0.972, 0.512, 0.233], "ix": 9 } + }, + "s": { "a": 0, "k": [-49, 0], "ix": 5 }, + "e": { "a": 0, "k": [68, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-262, -435], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 86, + "ty": 4, + "nm": "Shape Layer 31", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -14, "s": [0] }, + { "t": 81.740234375, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.843 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [627.395, 1155.993, 0], + "to": [37, -178.375, -65.532], + "ti": [-48.635, -750.211, -214.28] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.169 }, + "t": 29, + "s": [849.395, 85.744, -393.192], + "to": [48.635, 750.211, 214.28], + "ti": [-11.635, -928.586, -279.812] + }, + { "t": 145, "s": [919.208, 5657.262, 1285.683] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [14.5, -433, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [27, 96], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.7411764705882353, 0.4588235294117647, 0.9333333333333333, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [14.5, -433], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 87, + "ty": 4, + "nm": "Shape Layer 30", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -9, "s": [0] }, + { "t": 100.2763671875, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [627.395, 1155.993, 0], + "to": [127.5, -230.723, 46.629], + "ti": [-127.5, 230.723, -46.629] + }, + { "t": 25, "s": [1392.395, -228.344, 279.773] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-180.917, -577, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [36, 32], + [26, -104] + ], + "o": [ + [0, 0], + [-36, -32], + [-11.157, 44.627] + ], + "v": [ + [-161, -650], + [-193, -562], + [-165, -504] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.996078431372549, 0.7686274509803922, 0.33725490196078434, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 88, + "ty": 4, + "nm": "Shape Layer 29", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -3.528, "s": [0] }, + { "t": 91.6259765625, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [627.395, 1155.993, 0], + "to": [128.5, -20.273, -16.168], + "ti": [-128.5, 20.273, 16.168] + }, + { "t": 44, "s": [1398.395, 1034.352, -97.005] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-45, -602, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [40, 40], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-45, -602], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 89, + "ty": 4, + "nm": "Shape Layer 28", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -10, "s": [0] }, + { "t": 81.740234375, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [627.395, 1155.993, 0], + "to": [110, 309.06, 41.862], + "ti": [-110, -309.06, -41.862] + }, + { "t": 41, "s": [1287.395, 3010.35, 251.17] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [232.5, -595.5, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [11, 67], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [232.5, -595.5], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 90, + "ty": 4, + "nm": "Shape Layer 27", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -2.293, "s": [0] }, + { "t": 86.6826171875, "s": [1080] } + ], + "ix": 8 + }, + "ry": { "a": 0, "k": 0, "ix": 9 }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [627.395, 1155.993, 0], + "to": [111, 205.897, -43.518], + "ti": [-111, -205.897, 43.518] + }, + { "t": 31, "s": [1293.395, 2391.376, -261.107] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [120, -142, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [32, 44], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.4980392156862745, 0.8156862745098039, 0.30980392156862746, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [120, -142], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 91, + "ty": 4, + "nm": "Shape Layer 26", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -4.765, "s": [0] }, + { "t": 89.154296875, "s": [1080] } + ], + "ix": 8 + }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 0, "s": [0] }, + { "t": 89.154296875, "s": [1800] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [627.395, 1155.993, 0], + "to": [1, 335.659, -215.584], + "ti": [-1, -335.659, 215.584] + }, + { "t": 58, "s": [633.395, 3169.948, -1293.506] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [116, -254, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [26, 56], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.996078431372549, 0.5490196078431373, 0.00392156862745098, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [116, -254], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 92, + "ty": 4, + "nm": "Shape Layer 25", + "parent": 10, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -1.057, "s": [0] }, + { "t": 102.748046875, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10, "x": "var $bm_rt;\n$bm_rt = transform.rotation;" }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [-147.439, -471.248, -47.459], + "ti": [147.439, 471.248, 47.459] + }, + { "t": 137.349609375, "s": [-878.24, -3015.497, -284.755] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [56.08, -285.558, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [84.659, -333.362], + [4, -279], + [45.665, -243.617], + [119.735, -297.935] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.345, 0.381, 0.671, 0.5, 0.491, 0.265, 0.624, 1, 0.638, 0.15, 0.577], "ix": 9 } + }, + "s": { "a": 0, "k": [0, 0], "ix": 5 }, + "e": { "a": 0, "k": [100, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 93, + "ty": 4, + "nm": "Shape Layer 24", + "parent": 10, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -17, "s": [0] }, + { "t": 95.3330078125, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [53.803, -474.312, -0.572], + "ti": [-53.803, 474.312, 0.572] + }, + { "t": 71, "s": [329.216, -3033.882, -3.43] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-262, -435, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [46, 54], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.969, 0.18, 0.404, 0.5, 0.97, 0.346, 0.318, 1, 0.972, 0.512, 0.233], "ix": 9 } + }, + "s": { "a": 0, "k": [-49, 0], "ix": 5 }, + "e": { "a": 0, "k": [68, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-262, -435], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 0, + "ind": 94, + "ty": 4, + "nm": "Shape Layer 23", + "parent": 10, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [436.949, -283.973, 0], + "ti": [-436.949, 283.973, 0] + }, + { "t": 71, "s": [2628.09, -1891.843, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [14.5, -433, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [27, 96], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.7411764705882353, 0.4588235294117647, 0.9333333333333333, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [14.5, -433], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 95, + "ty": 4, + "nm": "Shape Layer 22", + "parent": 10, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -11, "s": [0] }, + { "t": 85.447265625, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [127.5, -103.954, 0], + "ti": [-127.5, 103.954, 0] + }, + { "t": 34, "s": [771.395, -811.733, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-180.917, -577, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [36, 32], + [26, -104] + ], + "o": [ + [0, 0], + [-36, -32], + [-11.157, 44.627] + ], + "v": [ + [-161, -650], + [-193, -562], + [-165, -504] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.996078431372549, 0.7686274509803922, 0.33725490196078434, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 96, + "ty": 4, + "nm": "Shape Layer 21", + "parent": 10, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -3.528, "s": [0] }, + { "t": 101.51171875, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [128.5, -30.183, 0], + "ti": [-128.5, 30.183, 0] + }, + { "t": 26, "s": [777.395, -369.106, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-45, -602, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [40, 40], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-45, -602], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 97, + "ty": 4, + "nm": "Shape Layer 20", + "parent": 10, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -4.765, "s": [0] }, + { "t": 112.6337890625, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.716 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [77.188, 38.547, 33.544], + "ti": [-71.564, 470.424, -33.544] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.136 }, + "t": 35, + "s": [469.524, 43.272, 201.262], + "to": [71.564, -470.424, 33.544], + "ti": [5.624, 508.971, 0] + }, + { "t": 100, "s": [435.782, -3010.554, 201.262] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [232.5, -595.5, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [11, 67], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [232.5, -595.5], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 98, + "ty": 4, + "nm": "Shape Layer 19", + "parent": 10, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -6, "s": [0] }, + { "t": 85.447265625, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [134.91, 140.766, 3.486], + "ti": [-134.91, -140.766, -3.486] + }, + { "t": 21, "s": [815.857, 656.587, 20.917] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [120, -142, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [32, 44], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.4980392156862745, 0.8156862745098039, 0.30980392156862746, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [120, -142], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 99, + "ty": 4, + "nm": "Shape Layer 18", + "parent": 10, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -23, "s": [0] }, + { "t": 97.8046875, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.828 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [6.395, -188.007, 0], + "to": [17.232, 153.439, 17.582], + "ti": [-229.282, 147.986, 15.802] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.165 }, + "t": 21, + "s": [109.785, 732.626, 105.493], + "to": [101.442, -65.474, -6.991], + "ti": [29.657, 172.052, 10.833] + }, + { "t": 76.796875, "s": [76.884, -1982.01, -729.705] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [116, -254, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [26, 56], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.996078431372549, 0.5490196078431373, 0.00392156862745098, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [116, -254], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 100, + "ty": 4, + "nm": "Shape Layer 17", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -12, "s": [0] }, + { "t": 102.748046875, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [627.395, 1155.993, 0], + "to": [382.643, -152.755, 217.62], + "ti": [-382.643, 152.755, -217.62] + }, + { "t": 25, "s": [2923.253, 239.462, 1305.721] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [56.08, -285.558, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [7, -27], + [35, 7], + [-41.906, 32.862], + [0, 0] + ], + "o": [ + [-7, 27], + [32, 27], + [23.167, -18.167], + [0, 0] + ], + "v": [ + [72, -317], + [4, -279], + [91, -263.167], + [107.167, -289.667] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.345, 0.381, 0.671, 0.5, 0.491, 0.265, 0.624, 1, 0.638, 0.15, 0.577], "ix": 9 } + }, + "s": { "a": 0, "k": [0, 0], "ix": 5 }, + "e": { "a": 0, "k": [100, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 101, + "ty": 4, + "nm": "Shape Layer 16", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -25, "s": [0] }, + { "t": 81.740234375, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.829 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [627.395, 1155.993, 0], + "to": [64.5, -93.5, 0], + "ti": [-78.679, -339.952, 90.248] + }, + { + "i": { "x": 0.833, "y": 0.714 }, + "o": { "x": 0.167, "y": 0.165 }, + "t": 30, + "s": [1014.395, 594.993, 0], + "to": [78.679, 339.952, -90.248], + "ti": [-14.179, -433.452, 90.248] + }, + { "t": 121, "s": [1099.471, 3195.705, -541.488] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-262, -435, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [46, 54], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "gf", + "o": { "a": 0, "k": 100, "ix": 10 }, + "r": 1, + "bm": 0, + "g": { + "p": 3, + "k": { "a": 0, "k": [0, 0.969, 0.18, 0.404, 0.5, 0.97, 0.346, 0.318, 1, 0.972, 0.512, 0.233], "ix": 9 } + }, + "s": { "a": 0, "k": [-49, 0], "ix": 5 }, + "e": { "a": 0, "k": [68, 0], "ix": 6 }, + "t": 1, + "nm": "Gradient Fill 1", + "mn": "ADBE Vector Graphic - G-Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-262, -435], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 102, + "ty": 4, + "nm": "Shape Layer 15", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.822] }, "o": { "x": [0.167], "y": [0.167] }, "t": 0, "s": [0] }, + { "t": 102, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.828 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [627.395, 1155.993, 0], + "to": [65.626, -110, 4.223], + "ti": [-147.468, -10.238, -26.905] + }, + { + "i": { "x": 0.833, "y": 0.887 }, + "o": { "x": 0.167, "y": 0.163 }, + "t": 28, + "s": [1021.149, 495.993, 25.34], + "to": [361.407, 25.09, 65.936], + "ti": [-126.131, -151.254, -61.713] + }, + { "t": 71, "s": [1777.936, 1403.514, 395.618] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [14.5, -433, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [27, 96], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0.25882352941176473, 0.25882352941176473, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.7411764705882353, 0.4588235294117647, 0.9333333333333333, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [14.5, -433], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 103, + "ty": 4, + "nm": "Shape Layer 5", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -20, "s": [0] }, + { "t": 87.9189453125, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [627.395, 1155.993, 0], + "to": [147.845, -83.5, 22.596], + "ti": [-147.845, 83.5, -22.596] + }, + { "t": 19, "s": [1514.467, 654.993, 135.575] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-180.917, -577, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [36, 32], + [26, -104] + ], + "o": [ + [0, 0], + [-36, -32], + [-11.157, 44.627] + ], + "v": [ + [-161, -650], + [-193, -562], + [-165, -504] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.996078431372549, 0.7686274509803922, 0.33725490196078434, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 14, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 104, + "ty": 4, + "nm": "Shape Layer 4", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -16, "s": [0] }, + { "t": 99.041015625, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [627.395, 1155.993, 0], + "to": [393.671, 83.751, 189.679], + "ti": [-393.671, -83.751, -189.679] + }, + { "t": 58, "s": [2989.419, 1658.499, 1138.074] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [-45, -602, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [40, 40], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-45, -602], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 105, + "ty": 4, + "nm": "Shape Layer 3", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -2.293, "s": [0] }, + { "t": 45.90234375, "s": [1080] } + ], + "ix": 8 + }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -3.528, "s": [0] }, + { "t": 105.2197265625, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [627.395, 1155.993, 0], + "to": [249, 109.5, 0], + "ti": [-249, -109.5, 0] + }, + { "t": 68, "s": [2121.395, 1812.993, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [232.5, -595.5, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [11, 67], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.20392156862745098, 0.592156862745098, 0.9921568627450981, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [232.5, -595.5], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 106, + "ty": 4, + "nm": "Shape Layer 2", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -18, "s": [0] }, + { "t": 86.6826171875, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [627.395, 1155.993, 0], + "to": [499.008, 399.431, 73.2], + "ti": [-499.008, -399.431, -73.2] + }, + { "t": 96, "s": [3621.445, 3552.58, 439.203] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [120, -142, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [32, 44], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.4980392156862745, 0.8156862745098039, 0.30980392156862746, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [120, -142], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 1, + "ind": 107, + "ty": 4, + "nm": "Shape Layer 1", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "rx": { "a": 0, "k": 0, "ix": 8 }, + "ry": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": -24, "s": [0] }, + { "t": 94.09765625, "s": [1080] } + ], + "ix": 9 + }, + "rz": { "a": 0, "k": 0, "ix": 10 }, + "or": { "a": 0, "k": [0, 0, 0], "ix": 7 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 0, + "s": [627.395, 1155.993, 0], + "to": [535.305, 103.127, 17.938], + "ti": [-535.305, -103.127, -17.938] + }, + { "t": 82, "s": [3839.226, 1774.756, 107.63] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [116, -254, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [26, 56], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 4 }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.687843053481, 0.678132001091, 0.678132001091, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 0, "ix": 5 }, + "lc": 2, + "lj": 1, + "ml": 4, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.996078431372549, 0.5490196078431373, 0.00392156862745098, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [116, -254], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 112, + "st": -1, + "bm": 0 + }, + { + "ddd": 0, + "ind": 108, + "ty": 1, + "nm": "Medium Gray-Blue Solid 1", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [621, 1344, 0], "ix": 2 }, + "a": { "a": 0, "k": [621, 1344, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "sw": 1242, + "sh": 2688, + "sc": "#272d41", + "ip": 112, + "op": 112, + "st": 0, + "bm": 0, + "hidden": 0 + } + ], + "markers": [] +} diff --git a/apps/web/components/imports/destination/WidgetConfigurationModal/static-assets/success_confetti.json b/apps/web/components/imports/destination/WidgetConfigurationModal/static-assets/success_confetti.json new file mode 100644 index 000000000..0e3940b9c --- /dev/null +++ b/apps/web/components/imports/destination/WidgetConfigurationModal/static-assets/success_confetti.json @@ -0,0 +1,1938 @@ +{ + "v": "5.7.3", + "fr": 60, + "ip": 0, + "op": 180, + "w": 1920, + "h": 1920, + "nm": "animation", + "ddd": 0, + "assets": [], + "layers": [ + { + "ddd": 0, + "ind": 1, + "ty": 4, + "nm": "Tick", + "parent": 4, + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 0, "s": [0] }, + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 3.115, "s": [100] }, + { "t": 20.796875, "s": [100] } + ], + "ix": 11 + }, + "r": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 12, "s": [-165] }, + { "t": 39, "s": [0] } + ], + "ix": 10 + }, + "p": { "a": 0, "k": [346.916, 346.917, 0], "ix": 2 }, + "a": { "a": 0, "k": [278.033, 227.218, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] }, + "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] }, + "t": 19.533, + "s": [20, 20, 100] + }, + { "t": 38.48046875, "s": [100, 100, 100] } + ], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-153.033, 0.588], + [-51.404, 102.218], + [153.032, -102.218] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 55, "ix": 5 }, + "lc": 2, + "lj": 2, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [278.033, 227.218], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "tm", + "s": { "a": 0, "k": 0, "ix": 1 }, + "e": { + "a": 1, + "k": [ + { "i": { "x": [0.33], "y": [1] }, "o": { "x": [0.67], "y": [0] }, "t": 20.164, "s": [0] }, + { "t": 38.48046875, "s": [100] } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 0, + "op": 1800, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 2, + "ty": 4, + "nm": "Glow Mask", + "td": 1, + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 0, "s": [0] }, + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 3.115, "s": [100] }, + { "t": 20.796875, "s": [100] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.783, "y": 0.48 }, + "o": { "x": 0.506, "y": 0 }, + "t": 0, + "s": [1099.01, 1187.835, 0], + "to": [-51.058, -20.951, 0], + "ti": [23.519, 29.424, 0] + }, + { + "i": { "x": 0.576, "y": 1 }, + "o": { "x": 0.337, "y": 0.496 }, + "t": 19.533, + "s": [989.155, 1114.015, 0], + "to": [-26.997, -33.775, 0], + "ti": [3.563, 56.649, 0] + }, + { "t": 32.1640625, "s": [947.01, 981.835, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [346.917, 346.917, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] }, + "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] }, + "t": 19.533, + "s": [20, 20, 100] + }, + { + "i": { "x": [0.833, 0.833, 0.833], "y": [1, 1, 1] }, + "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] }, + "t": 38.48, + "s": [110, 110, 100] + }, + { + "i": { "x": [0.833, 0.833, 0.833], "y": [1, 1, 1] }, + "o": { "x": [0.167, 0.167, 0.167], "y": [0, 0, 0] }, + "t": 51.109, + "s": [95, 95, 100] + }, + { + "i": { "x": [0.833, 0.833, 0.833], "y": [1, 1, 1] }, + "o": { "x": [0.167, 0.167, 0.167], "y": [0, 0, 0] }, + "t": 58.688, + "s": [102, 102, 100] + }, + { + "i": { "x": [0.833, 0.833, 0.833], "y": [1, 1, 1] }, + "o": { "x": [0.167, 0.167, 0.167], "y": [0, 0, 0] }, + "t": 63.74, + "s": [98, 98, 100] + }, + { "t": 70.0546875, "s": [100, 100, 100] } + ], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, -191.459], + [191.459, 0], + [0, 191.458], + [-191.458, 0] + ], + "o": [ + [0, 191.458], + [-191.458, 0], + [0, -191.459], + [191.459, 0] + ], + "v": [ + [346.667, 0], + [0, 346.667], + [-346.667, 0], + [0, -346.666] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.118000000598, 0.442999985639, 0.929000016755, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [346.916, 346.917], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 1800, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 3, + "ty": 4, + "nm": "Glow", + "tt": 1, + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 0, "s": [0] }, + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 3.115, "s": [100] }, + { "i": { "x": [0.833], "y": [0.643] }, "o": { "x": [0.72], "y": [0] }, "t": 70.055, "s": [100] }, + { "t": 89, "s": [0] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.788 }, + "o": { "x": 0.72, "y": 0 }, + "t": 59.951, + "s": [56, 440, 0], + "to": [226.667, 131.333, 0], + "ti": [-226.667, -131.333, 0] + }, + { "t": 89, "s": [1416, 1228, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [348.655, 1.947], + [0, 0], + [35.647, 880.072] + ], + "o": [ + [0, 0], + [-8.868, -0.049], + [0, 0], + [-3.819, -94.283] + ], + "v": [ + [211.999, -440], + [-480, 280], + [-136, 648], + [483.999, -312] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.76862745098, 0.823067997951, 1, 1], "ix": 4 }, + "o": { "a": 0, "k": 30, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 1800, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 4, + "ty": 4, + "nm": "Background Circle (Blue)", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 0, "s": [0] }, + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 8, "s": [100] }, + { "t": 20.796875, "s": [100] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [960, 960, 0], "ix": 2 }, + "a": { "a": 0, "k": [346.917, 346.917, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] }, + "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] }, + "t": 19.533, + "s": [20, 20, 100] + }, + { + "i": { "x": [0.833, 0.833, 0.833], "y": [1, 1, 1] }, + "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] }, + "t": 39, + "s": [110, 110, 100] + }, + { + "i": { "x": [0.833, 0.833, 0.833], "y": [1, 1, 1] }, + "o": { "x": [0.167, 0.167, 0.167], "y": [0, 0, 0] }, + "t": 51.109, + "s": [95, 95, 100] + }, + { + "i": { "x": [0.833, 0.833, 0.833], "y": [1, 1, 1] }, + "o": { "x": [0.167, 0.167, 0.167], "y": [0, 0, 0] }, + "t": 58.688, + "s": [102, 102, 100] + }, + { + "i": { "x": [0.833, 0.833, 0.833], "y": [1, 1, 1] }, + "o": { "x": [0.167, 0.167, 0.167], "y": [0, 0, 0] }, + "t": 63.74, + "s": [98, 98, 100] + }, + { "t": 70.0546875, "s": [100, 100, 100] } + ], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, -191.459], + [191.459, 0], + [0, 191.458], + [-191.458, 0] + ], + "o": [ + [0, 191.458], + [-191.458, 0], + [0, -191.459], + [191.459, 0] + ], + "v": [ + [346.667, 0], + [0, 346.667], + [-346.667, 0], + [0, -346.666] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.313725490196, 0.81568627451, 0.360784313725, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [346.916, 346.917], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 1800, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 6, + "ty": 4, + "nm": "Element 11", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 10.793, "s": [0] }, + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 12.871, "s": [100] }, + { "i": { "x": [0.833], "y": [0.601] }, "o": { "x": [0.72], "y": [0] }, "t": 27.42, "s": [100] }, + { "t": 56, "s": [0] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.33, "y": 1 }, + "o": { "x": 0.174, "y": 0 }, + "t": 15.99, + "s": [957.368, 957.581, 0], + "to": [-154.333, 61, 0], + "ti": [34.333, -69, 0] + }, + { "t": 32.615234375, "s": [774.545, 1455.048, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [88.379, 84.132, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [-17.539, 13.457], + [-12.743, -16.607], + [0, 0] + ], + "o": [ + [-12.743, -16.608], + [17.539, -13.458], + [0, 0], + [0, 0] + ], + "v": [ + [-25.635, 34.132], + [-16.894, -20.673], + [38.306, -14.931], + [38.379, -14.837] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.255000005984, 0.685999971278, 0.501999978458, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 20, "ix": 5 }, + "lc": 2, + "lj": 2, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [88.378, 84.131], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 15, + "op": 1815, + "st": 15, + "bm": 0 + }, + { + "ddd": 0, + "ind": 7, + "ty": 4, + "nm": "Element 10", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 10.793, "s": [0] }, + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 12.871, "s": [100] }, + { "i": { "x": [0.833], "y": [0.601] }, "o": { "x": [0.72], "y": [0] }, "t": 27.42, "s": [100] }, + { "t": 56, "s": [0] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.33, "y": 1 }, + "o": { "x": 0.229, "y": 0 }, + "t": 15.99, + "s": [960, 960, 0], + "to": [59.019, 77.842, 0], + "ti": [-71.667, -48, 0] + }, + { "t": 34.6953125, "s": [1314.113, 1427.051, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [33.514, 41.664, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [3.281, -1.895], + [0, 0], + [1.894, 3.281], + [0, 0], + [-3.281, 1.894], + [0, 0], + [-1.894, -3.282], + [0, 0] + ], + "o": [ + [0, 0], + [-3.281, 1.894], + [0, 0], + [-1.894, -3.283], + [0, 0], + [3.281, -1.895], + [0, 0], + [1.894, 3.281] + ], + "v": [ + [28.859, 29.055], + [10.732, 39.52], + [1.361, 37.009], + [-31.37, -19.681], + [-28.859, -29.053], + [-10.732, -39.519], + [-1.361, -37.008], + [31.37, 19.683] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.275, 0.513999968884, 0.961000031116, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [33.514, 41.664], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 15, + "op": 1815, + "st": 15, + "bm": 0 + }, + { + "ddd": 0, + "ind": 8, + "ty": 4, + "nm": "Element 9", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 10.793, "s": [0] }, + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 12.871, "s": [100] }, + { "i": { "x": [0.833], "y": [0.601] }, "o": { "x": [0.72], "y": [0] }, "t": 27.42, "s": [100] }, + { "t": 56, "s": [0] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.33, "y": 1 }, + "o": { "x": 0.189, "y": 0 }, + "t": 15.99, + "s": [961.262, 961.213, 0], + "to": [70.333, -5.667, 0], + "ti": [-62.333, -30.333, 0] + }, + { "t": 33.134765625, "s": [1420.768, 1239.936, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [60.548, 78.82, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [2.886, -21.917], + [20.753, 2.734], + [0.039, 0.005] + ], + "o": [ + [20.754, 2.733], + [-2.886, 21.918], + [-0.04, -0.005], + [0, 0] + ], + "v": [ + [-12.409, -41.32], + [20.162, 3.615], + [-22.93, 38.586], + [-23.048, 38.571] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.972549019608, 0.149019607843, 0.505882352941, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 15, "ix": 5 }, + "lc": 2, + "lj": 2, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [60.548, 78.82], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 15, + "op": 1815, + "st": 15, + "bm": 0 + }, + { + "ddd": 0, + "ind": 9, + "ty": 4, + "nm": "Element 8", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 10.793, "s": [0] }, + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 12.871, "s": [100] }, + { "i": { "x": [0.833], "y": [0.601] }, "o": { "x": [0.72], "y": [0] }, "t": 27.42, "s": [100] }, + { "t": 56, "s": [0] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.33, "y": 1 }, + "o": { "x": 0.263, "y": 0 }, + "t": 15.99, + "s": [959.692, 959.692, 0], + "to": [46.333, -81.667, 0], + "ti": [-98.333, 51.667, 0] + }, + { "t": 46.126953125, "s": [1397.413, 873.271, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [47.326, 47.325, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [-11.644, -3.948], + [0, 0], + [-3.912, 2.92], + [0, 0], + [0.157, -12.294], + [0, 0], + [-3.985, -2.819], + [0, 0], + [11.74, -3.65], + [0, 0], + [1.449, -4.662], + [0, 0], + [7.098, 10.038], + [0, 0], + [4.882, -0.063], + [0, 0], + [-7.354, 9.853], + [0, 0], + [1.569, 4.624], + [0, 0] + ], + "o": [ + [0, 0], + [4.623, 1.568], + [0, 0], + [9.854, -7.353], + [0, 0], + [-0.062, 4.882], + [0, 0], + [10.038, 7.099], + [0, 0], + [-4.662, 1.449], + [0, 0], + [-3.649, 11.74], + [0, 0], + [-2.82, -3.986], + [0, 0], + [-12.293, 0.156], + [0, 0], + [2.92, -3.913], + [0, 0], + [-3.948, -11.644] + ], + "v": [ + [-17.558, -36.37], + [-13.481, -34.987], + [0.154, -37.147], + [3.606, -39.722], + [27.31, -27.644], + [27.255, -23.339], + [33.522, -11.038], + [37.038, -8.552], + [32.877, 17.724], + [28.763, 19.002], + [19.003, 28.764], + [17.724, 32.876], + [-8.551, 37.037], + [-11.037, 33.522], + [-23.338, 27.255], + [-27.644, 27.31], + [-39.721, 3.606], + [-37.146, 0.155], + [-34.987, -13.481], + [-36.37, -17.558] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [1, 0.736999990426, 0.195999998205, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [47.325, 47.325], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 15, + "op": 1815, + "st": 15, + "bm": 0 + }, + { + "ddd": 0, + "ind": 10, + "ty": 4, + "nm": "Element 7", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 10.793, "s": [0] }, + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 12.871, "s": [100] }, + { "i": { "x": [0.833], "y": [0.601] }, "o": { "x": [0.72], "y": [0] }, "t": 27.42, "s": [100] }, + { "t": 56, "s": [0] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.33, "y": 1 }, + "o": { "x": 0.229, "y": 0 }, + "t": 15.99, + "s": [958.09, 958.244, 0], + "to": [18.333, -110, 0], + "ti": [-64.333, 76, 0] + }, + { "t": 34.6953125, "s": [1316.148, 645.839, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [77.856, 74.774, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, 0], + [-12.731, 9.768], + [-9.249, -12.055], + [-0.018, -0.022] + ], + "o": [ + [-9.249, -12.055], + [12.73, -9.768], + [0.018, 0.023], + [0, 0] + ], + "v": [ + [-18.607, 24.774], + [-12.262, -15.006], + [27.805, -10.838], + [27.857, -10.77] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.972549019608, 0.149019607843, 0.505882352941, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 20, "ix": 5 }, + "lc": 2, + "lj": 2, + "bm": 0, + "nm": "Stroke 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [77.856, 74.774], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 15, + "op": 1815, + "st": 15, + "bm": 0 + }, + { + "ddd": 0, + "ind": 11, + "ty": 4, + "nm": "Element 6", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 10.793, "s": [0] }, + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 12.871, "s": [100] }, + { "i": { "x": [0.833], "y": [0.601] }, "o": { "x": [0.72], "y": [0] }, "t": 27.42, "s": [100] }, + { "t": 56, "s": [0] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.33, "y": 1 }, + "o": { "x": 0.189, "y": 0 }, + "t": 15.99, + "s": [959.693, 959.693, 0], + "to": [-138, 24.333, 0], + "ti": [110, -64.333, 0] + }, + { "t": 33.134765625, "s": [529.471, 1363.811, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [47.326, 47.325, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [-11.644, -3.948], + [0, 0], + [-3.913, 2.92], + [0, 0], + [0.157, -12.294], + [0, 0], + [-3.986, -2.819], + [0, 0], + [11.74, -3.65], + [0, 0], + [1.449, -4.662], + [0, 0], + [7.099, 10.038], + [0, 0], + [4.881, -0.062], + [0, 0], + [-7.353, 9.853], + [0, 0], + [1.568, 4.624], + [0, 0] + ], + "o": [ + [0, 0], + [4.623, 1.567], + [0, 0], + [9.853, -7.352], + [0, 0], + [-0.063, 4.882], + [0, 0], + [10.038, 7.1], + [0, 0], + [-4.662, 1.449], + [0, 0], + [-3.649, 11.741], + [0, 0], + [-2.819, -3.987], + [0, 0], + [-12.293, 0.157], + [0, 0], + [2.92, -3.913], + [0, 0], + [-3.948, -11.644] + ], + "v": [ + [-17.558, -36.37], + [-13.481, -34.987], + [0.154, -37.147], + [3.605, -39.723], + [27.31, -27.644], + [27.255, -23.339], + [33.521, -11.038], + [37.037, -8.553], + [32.875, 17.724], + [28.763, 19.002], + [19.003, 28.764], + [17.724, 32.875], + [-8.552, 37.037], + [-11.039, 33.522], + [-23.339, 27.254], + [-27.645, 27.31], + [-39.722, 3.606], + [-37.146, 0.154], + [-34.987, -13.481], + [-36.37, -17.558] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [1, 0.737254901961, 0.196078446332, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [47.325, 47.325], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 15, + "op": 1815, + "st": 15, + "bm": 0 + }, + { + "ddd": 0, + "ind": 12, + "ty": 4, + "nm": "Element 5", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 10.793, "s": [0] }, + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 12.871, "s": [100] }, + { "i": { "x": [0.833], "y": [0.601] }, "o": { "x": [0.72], "y": [0] }, "t": 27.42, "s": [100] }, + { "t": 56, "s": [0] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.33, "y": 1 }, + "o": { "x": 0.283, "y": 0 }, + "t": 15.99, + "s": [960, 960, 0], + "to": [-178.333, 3, 0], + "ti": [124.333, -150, 0] + }, + { "t": 47.166015625, "s": [517.297, 1177.159, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [30.771, 30.771, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, -16.856], + [16.856, 0], + [0, 16.856], + [-16.857, 0] + ], + "o": [ + [0, 16.856], + [-16.857, 0], + [0, -16.856], + [16.856, 0] + ], + "v": [ + [30.521, 0], + [0, 30.521], + [-30.521, 0], + [0, -30.521] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.972549019608, 0.149019607843, 0.505882352941, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [30.771, 30.771], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 15, + "op": 1815, + "st": 15, + "bm": 0 + }, + { + "ddd": 0, + "ind": 13, + "ty": 4, + "nm": "Element 4", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 10.793, "s": [0] }, + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 12.871, "s": [100] }, + { "i": { "x": [0.833], "y": [0.601] }, "o": { "x": [0.72], "y": [0] }, "t": 27.42, "s": [100] }, + { "t": 56, "s": [0] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.33, "y": 1 }, + "o": { "x": 0.273, "y": 0 }, + "t": 15.99, + "s": [960, 960, 0], + "to": [-94.667, -86.667, 0], + "ti": [140.667, 20.667, 0] + }, + { "t": 46.64453125, "s": [446.624, 934.727, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [42, 25.144, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [-0.829, -3.697], + [0, 0], + [3.698, -0.828], + [0, 0], + [0.83, 3.697], + [0, 0], + [-3.697, 0.828], + [0, 0] + ], + "o": [ + [0, 0], + [0.829, 3.697], + [0, 0], + [-3.697, 0.828], + [0, 0], + [-0.828, -3.697], + [0, 0], + [3.697, -0.828] + ], + "v": [ + [36.343, -18.872], + [40.921, 1.552], + [35.727, 9.747], + [-28.148, 24.066], + [-36.344, 18.872], + [-40.922, -1.553], + [-35.728, -9.747], + [28.148, -24.066] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.313725490196, 0.81568627451, 0.360784313725, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [42, 25.144], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 15, + "op": 1815, + "st": 15, + "bm": 0 + }, + { + "ddd": 0, + "ind": 14, + "ty": 4, + "nm": "Element 3", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 10.793, "s": [0] }, + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 12.871, "s": [100] }, + { "i": { "x": [0.833], "y": [0.601] }, "o": { "x": [0.72], "y": [0] }, "t": 27.42, "s": [100] }, + { "t": 56, "s": [0] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.33, "y": 1 }, + "o": { "x": 0.174, "y": 0 }, + "t": 15.99, + "s": [959.693, 959.692, 0], + "to": [-113.667, -146, 0], + "ti": [119.667, 22.5, 0] + }, + { "t": 42.48828125, "s": [529.471, 736.071, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [47.326, 47.325, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [-11.644, -3.948], + [0, 0], + [-3.913, 2.92], + [0, 0], + [0.157, -12.294], + [0, 0], + [-3.986, -2.819], + [0, 0], + [11.74, -3.65], + [0, 0], + [1.449, -4.662], + [0, 0], + [7.099, 10.038], + [0, 0], + [4.881, -0.063], + [0, 0], + [-7.353, 9.854], + [0, 0], + [1.568, 4.624], + [0, 0] + ], + "o": [ + [0, 0], + [4.623, 1.568], + [0, 0], + [9.853, -7.353], + [0, 0], + [-0.063, 4.882], + [0, 0], + [10.038, 7.099], + [0, 0], + [-4.662, 1.449], + [0, 0], + [-3.649, 11.74], + [0, 0], + [-2.819, -3.986], + [0, 0], + [-12.293, 0.157], + [0, 0], + [2.92, -3.912], + [0, 0], + [-3.948, -11.644] + ], + "v": [ + [-17.558, -36.37], + [-13.481, -34.987], + [0.154, -37.147], + [3.605, -39.722], + [27.31, -27.644], + [27.255, -23.339], + [33.521, -11.038], + [37.037, -8.552], + [32.875, 17.724], + [28.763, 19.002], + [19.003, 28.764], + [17.724, 32.876], + [-8.552, 37.037], + [-11.039, 33.522], + [-23.339, 27.255], + [-27.645, 27.309], + [-39.722, 3.605], + [-37.146, 0.154], + [-34.987, -13.481], + [-36.37, -17.558] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.274509803922, 0.513725490196, 0.960784313725, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [47.325, 47.325], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 15, + "op": 1815, + "st": 15, + "bm": 0 + }, + { + "ddd": 0, + "ind": 15, + "ty": 4, + "nm": "Element 2", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 10.793, "s": [0] }, + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 12.871, "s": [100] }, + { "i": { "x": [0.833], "y": [0.601] }, "o": { "x": [0.72], "y": [0] }, "t": 27.42, "s": [100] }, + { "t": 56, "s": [0] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.33, "y": 1 }, + "o": { "x": 0.292, "y": 0 }, + "t": 15.99, + "s": [960, 960, 0], + "to": [-95.667, -127, 0], + "ti": [3.667, 95, 0] + }, + { "t": 47.6875, "s": [788.638, 547.457, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [33.515, 41.664, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [3.281, -1.895], + [0, 0], + [1.895, 3.281], + [0, 0], + [-3.281, 1.894], + [0, 0], + [-1.895, -3.281], + [0, 0] + ], + "o": [ + [0, 0], + [-3.282, 1.895], + [0, 0], + [-1.895, -3.281], + [0, 0], + [3.281, -1.894], + [0, 0], + [1.895, 3.282] + ], + "v": [ + [28.859, 29.054], + [10.733, 39.519], + [1.36, 37.008], + [-31.37, -19.683], + [-28.859, -29.054], + [-10.732, -39.52], + [-1.36, -37.009], + [31.37, 19.682] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.274509803922, 0.513725490196, 0.960784313725, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [33.515, 41.664], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 15, + "op": 1815, + "st": 15, + "bm": 0 + }, + { + "ddd": 0, + "ind": 16, + "ty": 4, + "nm": "Element 1", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 10.793, "s": [0] }, + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 12.871, "s": [100] }, + { "i": { "x": [0.833], "y": [0.833] }, "o": { "x": [0.167], "y": [0.167] }, "t": 27.42, "s": [100] }, + { "t": 56, "s": [0] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.33, "y": 1 }, + "o": { "x": 0.252, "y": 0 }, + "t": 15.99, + "s": [960, 960, 0], + "to": [22, -151.667, 0], + "ti": [40, 75.667, 0] + }, + { "t": 45.607421875, "s": [1027.199, 504.507, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [30.771, 30.771, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 0, + "k": { + "i": [ + [0, -16.856], + [16.856, 0], + [0, 16.857], + [-16.857, 0] + ], + "o": [ + [0, 16.857], + [-16.857, 0], + [0, -16.856], + [16.856, 0] + ], + "v": [ + [30.522, -0.001], + [0, 30.522], + [-30.522, -0.001], + [0, -30.522] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.255000005984, 0.685999971278, 0.501999978458, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [30.771, 30.772], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Group 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 15, + "op": 1815, + "st": 15, + "bm": 0 + } + ], + "markers": [] +} diff --git a/apps/web/components/imports/forms/ColumnForm.tsx b/apps/web/components/imports/forms/ColumnForm.tsx index 6928830b7..58293542a 100644 --- a/apps/web/components/imports/forms/ColumnForm.tsx +++ b/apps/web/components/imports/forms/ColumnForm.tsx @@ -46,8 +46,12 @@ export function ColumnForm({ onSubmit, data, isLoading }: ColumnFormProps) { uniqueValidationUnavailable, defaultValueUnavailable, dateFormatUnavailable, - alternateColumnKeysUnavailable, + rangeValidationUnavailable, + // alternateColumnKeysUnavailable, multiSelectValuesUnavailable, + lengthValidationUnavailable, + digitsValidationUnavailable, + multipleColumnsCombinationUniqueValidationUnavailable, } = useSubscriptionMetaDataInformation(); const { watch, @@ -222,58 +226,31 @@ export function ColumnForm({ onSubmit, data, isLoading }: ColumnFormProps) { /> )} - {alternateColumnKeysUnavailable ? ( - - - - Feature unavailable on current plan -
- -

- Fallback identifiers for column matching -

-
-
+ ( + `+ ${query}`} + data={Array.isArray(value) ? value : []} + onCreate={(newItem) => { + onChange([...(Array.isArray(value) ? value : []), newItem]); - -
- ) : ( - ( - `+ ${query}`} - data={Array.isArray(value) ? value : []} - onCreate={(newItem) => { - onChange([...(Array.isArray(value) ? value : []), newItem]); + return newItem; + }} + /> + )} + /> - return newItem; - }} - /> - )} - /> - )} {dateFormatUnavailable ? ( - field.validate === ValidationTypesEnum.RANGE)} - onCheckToggle={(status, index) => { - if (status) { - append({ validate: ValidationTypesEnum.RANGE }); - } else { - remove(index); - } - }} - /> + {rangeValidationUnavailable ? ( + + + + Feature unavailable on current plan +
+ +

+ Set min/max bounds for valid input values +

+
+
+ +
+ ) : ( + field.validate === ValidationTypesEnum.RANGE)} + onCheckToggle={(status, index) => { + if (status) { + append({ validate: ValidationTypesEnum.RANGE }); + } else { + remove(index); + } + }} + /> + )}
+ - field.validate === ValidationTypesEnum.UNIQUE_WITH)} - onCheckToggle={(status, index) => { - if (status) { - append({ validate: ValidationTypesEnum.UNIQUE_WITH, uniqueKey: '' }); - } else { - remove(index); - } - }} - /> + {multipleColumnsCombinationUniqueValidationUnavailable ? ( + + + + Feature unavailable on current plan +
+ +

+ Enforce unique combinations across specified columns +

+
+
+ +
+ ) : ( + field.validate === ValidationTypesEnum.UNIQUE_WITH)} + onCheckToggle={(status, index) => { + if (status) { + append({ validate: ValidationTypesEnum.UNIQUE_WITH, uniqueKey: '' }); + } else { + remove(index); + } + }} + /> + )} diff --git a/apps/web/components/signin/index.tsx b/apps/web/components/signin/index.tsx index 003128269..09dd86320 100644 --- a/apps/web/components/signin/index.tsx +++ b/apps/web/components/signin/index.tsx @@ -1,5 +1,5 @@ import Link from 'next/link'; -import { Title, Text, Stack, Divider, Box, Alert, TextInput as Input, Container } from '@mantine/core'; +import { Title, Text, Stack, Divider, Box, Alert, TextInput as Input } from '@mantine/core'; import { Button } from '@ui/button'; import { useSignin } from '@hooks/auth/useSignin'; @@ -16,15 +16,18 @@ export const Signin = ({ API_URL, error }: SigninProps) => { const { register, isLoginLoading, login, errorMessage } = useSignin(); return ( - + Let's Continue - + + Get your free trial — explore every feature for 14 days, then keep building on our free plan. + + {error && error === CONSTANTS.AUTHENTICATION_ERROR_CODE && ( Some error occured while signin, please try again later. @@ -40,7 +43,7 @@ export const Signin = ({ API_URL, error }: SigninProps) => { w="100%" />
- + {errorMessage && errorMessage.message ? ( {errorMessage.message} @@ -74,6 +77,6 @@ export const Signin = ({ API_URL, error }: SigninProps) => { -
+ ); }; diff --git a/apps/web/config/constants.config.ts b/apps/web/config/constants.config.ts index 9c01d51cf..eb946f172 100644 --- a/apps/web/config/constants.config.ts +++ b/apps/web/config/constants.config.ts @@ -3,8 +3,16 @@ import { ReactIcon } from '@assets/icons/React.icon'; import { BubbleIcon } from '@assets/icons/Bubble.icon'; import { AngularIcon } from '@assets/icons/Angular.icon'; import { JavaScriptIcon } from '@assets/icons/Javascript.icon'; -import { UserRolesEnum, IntegrationEnum, ColumnTypesEnum } from '@impler/shared'; +import { UserRolesEnum, IntegrationEnum, ColumnTypesEnum, IColumn } from '@impler/shared'; import { Plan } from '@components/UpgradePlan/Plans'; +import SuperworksLogo from '@assets/images/companies/Superworks.svg'; +import AklamioLogo from '@assets/images/companies/aklamio.svg'; +import ArthaLogo from '@assets/images/companies/artha.svg'; +import NasscomLogo from '@assets/images/companies/nasscom.svg'; +import NirvanaLogo from '@assets/images/companies/nirvana.svg'; +import OmnivaLogo from '@assets/images/companies/omniva.svg'; +import OrbitLogo from '@assets/images/companies/orbit.svg'; +import UbicoLogo from '@assets/images/companies/ubico.svg'; export const CONSTANTS = { IMPLER_DOCUMENTATION: 'https://docs.impler.io', @@ -30,6 +38,7 @@ export const CONSTANTS = { `Your subscription is cancelled. Your current subscription will continue till ${expiryDate}. You won't be charged again.`, SAMPLE_IMPORT_NAME: 'Product Data Import', SIDEBAR_COLLAPSED_KEY: 'SIDE_BAR_COLLAPSED', + SHOW_WELCOME_IMPORTER_STORAGE_KEY: 'SHOW_WELCOME_IMPORTER_STORAGE_KEY', }; export enum CancellationModeEnum { @@ -74,6 +83,8 @@ export const MODAL_KEYS = { CONFIRM_REMOVE_TEAM_MEMBER: 'CONFIRM_REMOVE_TEAM_MEMBER', VIEW_IMPORT_HISTORY: 'VIEW_IMPORT_HISTORY', + WELCOME_IMPORTER: 'WELCOME_IMPORTER', + WELCOME_CONFIGURE_STEP: 'WELCOME_CONFIGURE_STEP', }; interface IntegrateOption { @@ -506,23 +517,34 @@ export const plans: { monthly: Plan[]; yearly: Plan[] } = { sellingPriceOf5KRecordsImport: null, content: { 'Rows Included': [{ check: true, title: '2.5K' }], - 'Team Members': [{ check: false, title: '0', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.teamMembers }], + 'Team Members': [{ check: false, title: '0', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.teamMembers' }], + Support: [{ check: true, title: 'Chat' }], Features: [ + // Available Features + { check: true, title: 'Unlimited Imports' }, + { check: true, title: 'Unlimited Sheets' }, + { check: true, title: 'Column Warning' }, + { check: true, title: 'Column Description' }, + // Unavailable Features { check: false, title: 'Theming' }, - { check: true, title: 'Custom Validation', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.customValidation }, - { - check: true, - title: 'Output Customization', - tooltipLink: DOCUMENTATION_REFERENCE_LINKS.outputCustomization, - }, - { - check: false, - title: 'Advanced Validations', - tooltipLink: DOCUMENTATION_REFERENCE_LINKS.advancedValidations, - }, { check: false, title: 'Remove Branding' }, - { check: false, title: 'Auto Import', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.autoImport }, - { check: false, title: 'Image Import', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.imageImport }, + { check: false, title: 'Freeze Column' }, + { check: false, title: 'Direct Data Entry' }, + { check: false, title: 'Required Validations' }, + { check: false, title: 'Unique Validations' }, + { check: false, title: 'Multi Select Validations' }, + { check: false, title: 'Runtime Schema' }, + { check: false, title: 'Custom Validation', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.customValidation' }, + { check: false, title: 'Length Validation' }, + { check: false, title: 'Range Validation' }, + { check: false, title: 'Widget Customizations' }, + { check: false, title: 'Default Value in Column' }, + { check: false, title: 'Sample File Download' }, + { check: false, title: 'Bubble Integration' }, + { check: false, title: 'Auto Imports (RSS)', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.autoImport' }, + { check: false, title: 'Webhook Retry' }, + { check: false, title: 'Find and Replace' }, + { check: false, title: 'Image Imports', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.imageImport' }, ], }, }, @@ -531,7 +553,7 @@ export const plans: { monthly: Plan[]; yearly: Plan[] } = { code: 'GROWTH-MONTHLY', price: 42, rowsIncluded: 50000, - extraChargeOverheadTenThusandRecords: 12.6, + extraChargeOverheadTenThusandRecords: 0.7, removeBranding: true, recordsImportedPerDollar: 1190, costPerRecordImport: 0.00084, @@ -539,23 +561,34 @@ export const plans: { monthly: Plan[]; yearly: Plan[] } = { sellingPriceOf5KRecordsImport: 64, content: { 'Rows Included': [{ check: true, title: '50K' }], - 'Team Members': [{ check: true, title: '4', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.teamMembers }], + 'Team Members': [{ check: true, title: '4', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.teamMembers' }], + Support: [{ check: true, title: 'Chat + Mail' }], Features: [ + // Available Features { check: true, title: 'Theming' }, - { check: true, title: 'Custom Validation', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.customValidation }, - { - check: true, - title: 'Output Customization', - tooltipLink: DOCUMENTATION_REFERENCE_LINKS.outputCustomization, - }, - { - check: true, - title: 'Advanced Validations', - tooltipLink: DOCUMENTATION_REFERENCE_LINKS.advancedValidations, - }, + { check: true, title: 'Unlimited Imports' }, + { check: true, title: 'Unlimited Sheets' }, + { check: true, title: 'Freeze Column' }, + { check: true, title: 'Direct Data Entry' }, + { check: true, title: 'Column Warning' }, + { check: true, title: 'Column Description' }, + { check: true, title: 'Required Validations' }, + { check: true, title: 'Unique Validations' }, + { check: true, title: 'Multi Select Validations' }, + { check: true, title: 'Runtime Schema' }, + { check: true, title: 'Custom Validation', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.customValidation' }, + { check: true, title: 'Widget Customizations' }, + { check: true, title: 'Default Value in Column' }, + { check: true, title: 'Sample File Download' }, + { check: true, title: 'Bubble Integration' }, + { check: true, title: 'Find and Replace' }, + // Unavailable Features { check: false, title: 'Remove Branding' }, - { check: false, title: 'Auto Import', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.autoImport }, - { check: false, title: 'Image Import', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.imageImport }, + { check: false, title: 'Length Validation' }, + { check: false, title: 'Range Validation' }, + { check: false, title: 'Auto Imports (RSS)', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.autoImport' }, + { check: false, title: 'Webhook Retry' }, + { check: false, title: 'Image Imports', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.imageImport' }, ], }, }, @@ -564,7 +597,7 @@ export const plans: { monthly: Plan[]; yearly: Plan[] } = { code: 'SCALE-MONTHLY', price: 90, rowsIncluded: 150000, - extraChargeOverheadTenThusandRecords: 9, + extraChargeOverheadTenThusandRecords: 0.5, removeBranding: true, recordsImportedPerDollar: 1667, costPerRecordImport: 0.0006, @@ -572,23 +605,33 @@ export const plans: { monthly: Plan[]; yearly: Plan[] } = { sellingPriceOf5KRecordsImport: 64, content: { 'Rows Included': [{ check: true, title: '150K' }], - 'Team Members': [{ check: true, title: '10', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.teamMembers }], + 'Team Members': [{ check: true, title: '10', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.teamMembers' }], + Support: [{ check: true, title: 'Chat + Mail + Meet' }], Features: [ + // All Available Features { check: true, title: 'Theming' }, - { check: true, title: 'Custom Validation', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.customValidation }, - { - check: true, - title: 'Output Customization', - tooltipLink: DOCUMENTATION_REFERENCE_LINKS.outputCustomization, - }, { check: true, title: 'Remove Branding' }, - { - check: true, - title: 'Advanced Validations', - tooltipLink: DOCUMENTATION_REFERENCE_LINKS.advancedValidations, - }, - { check: true, title: 'Auto Import', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.autoImport }, - { check: true, title: 'Image Import', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.imageImport }, + { check: true, title: 'Unlimited Imports' }, + { check: true, title: 'Unlimited Sheets' }, + { check: true, title: 'Freeze Column' }, + { check: true, title: 'Direct Data Entry' }, + { check: true, title: 'Column Warning' }, + { check: true, title: 'Column Description' }, + { check: true, title: 'Required Validations' }, + { check: true, title: 'Unique Validations' }, + { check: true, title: 'Multi Select Validations' }, + { check: true, title: 'Runtime Schema' }, + { check: true, title: 'Custom Validation', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.customValidation' }, + { check: true, title: 'Length Validation' }, + { check: true, title: 'Range Validation' }, + { check: true, title: 'Widget Customizations' }, + { check: true, title: 'Default Value in Column' }, + { check: true, title: 'Sample File Download' }, + { check: true, title: 'Bubble Integration' }, + { check: true, title: 'Auto Imports (RSS)', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.autoImport' }, + { check: true, title: 'Webhook Retry' }, + { check: true, title: 'Find and Replace' }, + { check: true, title: 'Image Imports', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.imageImport' }, ], }, }, @@ -607,23 +650,34 @@ export const plans: { monthly: Plan[]; yearly: Plan[] } = { sellingPriceOf5KRecordsImport: null, content: { 'Rows Included': [{ check: true, title: '2.5K' }], - 'Team Members': [{ check: false, title: '0', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.teamMembers }], + 'Team Members': [{ check: false, title: '0', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.teamMembers' }], + Support: [{ check: true, title: 'Chat' }], Features: [ + // Available Features + { check: true, title: 'Unlimited Imports' }, + { check: true, title: 'Unlimited Sheets' }, + { check: true, title: 'Column Warning' }, + { check: true, title: 'Column Description' }, + // Unavailable Features { check: false, title: 'Theming' }, - { check: true, title: 'Custom Validation', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.customValidation }, - { - check: true, - title: 'Output Customization', - tooltipLink: DOCUMENTATION_REFERENCE_LINKS.outputCustomization, - }, - { - check: false, - title: 'Advanced Validations', - tooltipLink: DOCUMENTATION_REFERENCE_LINKS.advancedValidations, - }, { check: false, title: 'Remove Branding' }, - { check: false, title: 'Auto Import', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.autoImport }, - { check: false, title: 'Image Import', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.imageImport }, + { check: false, title: 'Freeze Column' }, + { check: false, title: 'Direct Data Entry' }, + { check: false, title: 'Required Validations' }, + { check: false, title: 'Unique Validations' }, + { check: false, title: 'Multi Select Validations' }, + { check: false, title: 'Runtime Schema' }, + { check: false, title: 'Custom Validation', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.customValidation' }, + { check: false, title: 'Length Validation' }, + { check: false, title: 'Range Validation' }, + { check: false, title: 'Widget Customizations' }, + { check: false, title: 'Default Value in Column' }, + { check: false, title: 'Sample File Download' }, + { check: false, title: 'Bubble Integration' }, + { check: false, title: 'Auto Imports (RSS)', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.autoImport' }, + { check: false, title: 'Webhook Retry' }, + { check: false, title: 'Find and Replace' }, + { check: false, title: 'Image Imports', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.imageImport' }, ], }, }, @@ -632,7 +686,7 @@ export const plans: { monthly: Plan[]; yearly: Plan[] } = { code: 'GROWTH-YEARLY', price: 420, rowsIncluded: 50000, - extraChargeOverheadTenThusandRecords: 126, + extraChargeOverheadTenThusandRecords: 7, removeBranding: true, recordsImportedPerDollar: 1190, costPerRecordImport: 0.0084, @@ -640,23 +694,34 @@ export const plans: { monthly: Plan[]; yearly: Plan[] } = { sellingPriceOf5KRecordsImport: null, content: { 'Rows Included': [{ check: true, title: '50K' }], - 'Team Members': [{ check: true, title: '4', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.teamMembers }], + 'Team Members': [{ check: true, title: '4', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.teamMembers' }], + Support: [{ check: true, title: 'Chat + Mail' }], Features: [ + // Available Features { check: true, title: 'Theming' }, - { check: true, title: 'Custom Validation', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.customValidation }, - { - check: true, - title: 'Output Customization', - tooltipLink: DOCUMENTATION_REFERENCE_LINKS.outputCustomization, - }, - { - check: true, - title: 'Advanced Validations', - tooltipLink: DOCUMENTATION_REFERENCE_LINKS.advancedValidations, - }, + { check: true, title: 'Unlimited Imports' }, + { check: true, title: 'Unlimited Sheets' }, + { check: true, title: 'Freeze Column' }, + { check: true, title: 'Direct Data Entry' }, + { check: true, title: 'Column Warning' }, + { check: true, title: 'Column Description' }, + { check: true, title: 'Required Validations' }, + { check: true, title: 'Unique Validations' }, + { check: true, title: 'Multi Select Validations' }, + { check: true, title: 'Runtime Schema' }, + { check: true, title: 'Custom Validation', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.customValidation' }, + { check: true, title: 'Widget Customizations' }, + { check: true, title: 'Default Value in Column' }, + { check: true, title: 'Sample File Download' }, + { check: true, title: 'Bubble Integration' }, + { check: true, title: 'Find and Replace' }, + // Unavailable Features { check: false, title: 'Remove Branding' }, - { check: false, title: 'Auto Import', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.autoImport }, - { check: false, title: 'Image Import', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.imageImport }, + { check: false, title: 'Length Validation' }, + { check: false, title: 'Range Validation' }, + { check: false, title: 'Auto Imports (RSS)', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.autoImport' }, + { check: false, title: 'Webhook Retry' }, + { check: false, title: 'Image Imports', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.imageImport' }, ], }, }, @@ -665,7 +730,7 @@ export const plans: { monthly: Plan[]; yearly: Plan[] } = { code: 'SCALE-YEARLY', price: 900, rowsIncluded: 150000, - extraChargeOverheadTenThusandRecords: 90, + extraChargeOverheadTenThusandRecords: 5, removeBranding: true, recordsImportedPerDollar: 1667, costPerRecordImport: 0.006, @@ -673,30 +738,40 @@ export const plans: { monthly: Plan[]; yearly: Plan[] } = { sellingPriceOf5KRecordsImport: null, content: { 'Rows Included': [{ check: true, title: '150K' }], - 'Team Members': [{ check: true, title: '10', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.teamMembers }], + 'Team Members': [{ check: true, title: '10', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.teamMembers' }], + Support: [{ check: true, title: 'Chat + Mail + Meet' }], Features: [ + // All Available Features { check: true, title: 'Theming' }, - { check: true, title: 'Custom Validation', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.customValidation }, - { - check: true, - title: 'Output Customization', - tooltipLink: DOCUMENTATION_REFERENCE_LINKS.outputCustomization, - }, { check: true, title: 'Remove Branding' }, - { - check: true, - title: 'Advanced Validations', - tooltipLink: DOCUMENTATION_REFERENCE_LINKS.advancedValidations, - }, - { check: true, title: 'Auto Import', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.autoImport }, - { check: true, title: 'Image Import', tooltipLink: DOCUMENTATION_REFERENCE_LINKS.imageImport }, + { check: true, title: 'Unlimited Imports' }, + { check: true, title: 'Unlimited Sheets' }, + { check: true, title: 'Freeze Column' }, + { check: true, title: 'Direct Data Entry' }, + { check: true, title: 'Column Warning' }, + { check: true, title: 'Column Description' }, + { check: true, title: 'Required Validations' }, + { check: true, title: 'Unique Validations' }, + { check: true, title: 'Multi Select Validations' }, + { check: true, title: 'Runtime Schema' }, + { check: true, title: 'Custom Validation', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.customValidation' }, + { check: true, title: 'Length Validation' }, + { check: true, title: 'Range Validation' }, + { check: true, title: 'Widget Customizations' }, + { check: true, title: 'Default Value in Column' }, + { check: true, title: 'Sample File Download' }, + { check: true, title: 'Bubble Integration' }, + { check: true, title: 'Auto Imports (RSS)', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.autoImport' }, + { check: true, title: 'Webhook Retry' }, + { check: true, title: 'Find and Replace' }, + { check: true, title: 'Image Imports', tooltipLink: 'DOCUMENTATION_REFERENCE_LINKS.imageImport' }, ], }, }, ], }; -export const sampleColumns = [ +export const sampleColumns: Partial[] = [ { name: 'Product Name/ID', key: 'Product Name/ID *', @@ -734,11 +809,22 @@ export const sampleColumns = [ key: 'Category', description: 'The category of the product', type: ColumnTypesEnum.SELECT, + selectValues: ['Electronics', 'Furniture', 'Appliances', 'Office'], isRequired: false, isUnique: false, }, ]; +export const companyLogos = [ + { id: 'superworks', src: SuperworksLogo, alt: 'Superworks' }, + { id: 'aklamio', src: AklamioLogo, alt: 'Aklamio' }, + { id: 'artha', src: ArthaLogo, alt: 'Artha' }, + { id: 'nasscom', src: NasscomLogo, alt: 'Nasscom' }, + { id: 'nirvana', src: NirvanaLogo, alt: 'Nirvana' }, + { id: 'omniva', src: OmnivaLogo, alt: 'Omniva' }, + { id: 'orbit', src: OrbitLogo, alt: 'Orbit' }, + { id: 'ubico', src: UbicoLogo, alt: 'Ubico' }, +]; export const defaultWidgetAppereanceThemeYellow = { widget: { backgroundColor: '#1c1917', diff --git a/apps/web/design-system/validation/Validation.tsx b/apps/web/design-system/validation/Validation.tsx index 551b9d935..f2c66cb99 100644 --- a/apps/web/design-system/validation/Validation.tsx +++ b/apps/web/design-system/validation/Validation.tsx @@ -71,7 +71,7 @@ export function Validation({ {description ?

{description}

: null} - -1 && type === ValidationTypesEnum.DIGITS}> + -1 && type === ValidationTypesEnum.DIGITS && !unavailable}> {type === ValidationTypesEnum.DIGITS ? ( )} - -1 && type === ValidationTypesEnum.UNIQUE_WITH}> + -1 && type === ValidationTypesEnum.UNIQUE_WITH && !unavailable}> -1 && (type === ValidationTypesEnum.LENGTH || type === ValidationTypesEnum.RANGE)} + isVisible={ + index > -1 && (type === ValidationTypesEnum.LENGTH || type === ValidationTypesEnum.RANGE) && !unavailable + } > (); @@ -241,6 +241,7 @@ export function useDestination({ template }: UseDestinationProps) { isSendSampleRequestLoading, isSendSampleRequestPending, bubbleIoIntegrationUnavailable, + webhookRetrySettingsUnavailable, mapBubbleIoColumns, mapBubbleIoColumnsClick, isMapBubbleIoColumnsLoading, diff --git a/apps/web/hooks/useImports.tsx b/apps/web/hooks/useImports.tsx index 9ac8f4aff..7fa771152 100644 --- a/apps/web/hooks/useImports.tsx +++ b/apps/web/hooks/useImports.tsx @@ -1,4 +1,4 @@ -import { useEffect, useState } from 'react'; +import { useCallback, useEffect, useState } from 'react'; import { useRouter } from 'next/router'; import { modals } from '@mantine/modals'; import { useDebouncedState, useLocalStorage } from '@mantine/hooks'; @@ -8,13 +8,22 @@ import { commonApi } from '@libs/api'; import { notify } from '@libs/notify'; import { track } from '@libs/amplitude'; import { useAppState } from 'store/app.context'; -import { API_KEYS, MODAL_KEYS, MODAL_TITLES, NOTIFICATION_KEYS, VARIABLES } from '@config'; +import { API_KEYS, CONSTANTS, MODAL_KEYS, MODAL_TITLES, NOTIFICATION_KEYS, VARIABLES } from '@config'; import { IErrorObject, ITemplate, IImport, IPaginationData, IProjectPayload } from '@impler/shared'; import { CreateImportForm } from '@components/imports/forms/CreateImportForm'; import { DuplicateImportForm } from '@components/imports/forms/DuplicateImportForm'; export function useImports() { + const [showWelcome, setShowWelcome] = useState( + localStorage.getItem(CONSTANTS.SHOW_WELCOME_IMPORTER_STORAGE_KEY) === 'true' + ); + + const clearWelcomeFlag = useCallback(() => { + localStorage.removeItem(CONSTANTS.SHOW_WELCOME_IMPORTER_STORAGE_KEY); + setShowWelcome(false); + }, []); + const { push } = useRouter(); const queryClient = useQueryClient(); const { profileInfo } = useAppState(); @@ -124,7 +133,7 @@ export function useImports() { }); } } - function onCreateClick() { + function onImportCreateClick() { modals.open({ modalId: MODAL_KEYS.IMPORT_CREATE, title: MODAL_TITLES.IMPORT_CREATE, @@ -148,6 +157,17 @@ export function useImports() { }); } + function handleDownloadSample() { + try { + const link = document.createElement('a'); + link.href = '/sample-excel-file.csv'; + link.download = 'sample-import-file.csv'; + document.body.appendChild(link); + link.click(); + document.body.removeChild(link); + } catch (error) {} + } + useEffect(() => { if (importsData && page && importsData.data.length < page) { setPage(importsData.totalPages); @@ -158,9 +178,12 @@ export function useImports() { page, limit, search, + showWelcome, + clearWelcomeFlag, importsData, onSearchChange, - onCreateClick, + onImportCreateClick, + handleDownloadSample, onLimitChange, onDuplicateClick, isImportsLoading, diff --git a/apps/web/hooks/useSubOSIntegration.tsx b/apps/web/hooks/useSubOSIntegration.tsx index ece0534b1..3bfd1d60e 100644 --- a/apps/web/hooks/useSubOSIntegration.tsx +++ b/apps/web/hooks/useSubOSIntegration.tsx @@ -34,19 +34,10 @@ export const useSubOSIntegration = () => { try { setLoading(true); setError(null); - console.log({ - apiEndpoint: publicRuntimeConfig.NEXT_PUBLIC_PAYMENT_GATEWAY_URL, - projectId: publicRuntimeConfig.NEXT_PUBLIC_SUBOS_PROJECT_ID, - appName: publicRuntimeConfig.NEXT_PUBLIC_APP_NAME || DEFAULT_APP_NAME, - appEnvironment: process.env.NODE_ENV, - appVersion: publicRuntimeConfig.NEXT_PUBLIC_APP_VERSION || DEFAULT_APP_VERSION, - debug: process.env.NODE_ENV === 'development', - }); // Configure/Initialize SubOS configureSubOS({ apiEndpoint: publicRuntimeConfig.NEXT_PUBLIC_PAYMENT_GATEWAY_URL, - projectId: publicRuntimeConfig.NEXT_PUBLIC_SUBOS_PROJECT_ID, appName: publicRuntimeConfig.NEXT_PUBLIC_APP_NAME || DEFAULT_APP_NAME, appEnvironment: process.env.NODE_ENV, appVersion: publicRuntimeConfig.NEXT_PUBLIC_APP_VERSION || DEFAULT_APP_VERSION, diff --git a/apps/web/hooks/useSubscriptionMetaDataInformation.ts b/apps/web/hooks/useSubscriptionMetaDataInformation.ts index b6d5d37a3..0198398a9 100644 --- a/apps/web/hooks/useSubscriptionMetaDataInformation.ts +++ b/apps/web/hooks/useSubscriptionMetaDataInformation.ts @@ -33,7 +33,13 @@ export function useSubscriptionMetaDataInformation() { defaultValueUnavailable: !meta?.DEFAULT_VALUES, dateFormatUnavailable: !meta?.DATE_FORMATS, bubbleIoIntegrationUnavailable: !meta?.BUBBLE_INTEGRATION, - alternateColumnKeysUnavailable: !meta?.ALTERNATE_COLUMN_KEYS, + webhookRetrySettingsUnavailable: !meta?.WEBHOOK_RETRY_SETTINGS, multiSelectValuesUnavailable: !meta?.MULTI_SELECT_VALUES, + customValidatatorCodeUnavailable: !meta?.CUSTOM_CODE_VALIDATOR, + lengthValidationUnavailable: !meta?.LENGTH_VALIDATION, + digitsValidationUnavailable: !meta?.DIGITS_VALIDATION, + rangeValidationUnavailable: !meta?.RANGE_VALIDATION, + multipleColumnsCombinationUniqueValidationUnavailable: !meta?.MULTIPLE_COLUMNS_COMBINATION_UNIQUE_VALIDATION, + // alternateColumnKeysUnavailable: !meta?.ALTERNATE_COLUMN_KEYS, }; } diff --git a/apps/web/hooks/useTemplateSchema.tsx b/apps/web/hooks/useTemplateSchema.tsx index 23e61a777..f3b556ebc 100644 --- a/apps/web/hooks/useTemplateSchema.tsx +++ b/apps/web/hooks/useTemplateSchema.tsx @@ -15,6 +15,7 @@ export function useTemplateSchema({ setError }: UseTemplateSchemaProps) { const [templateSchema, setTemplateSchema] = useState(); const { profileInfo } = useAppState(); const { push } = useRouter(); + // eslint-disable-next-line no-unused-vars, @typescript-eslint/no-unused-vars const { data: templateSampleData, @@ -66,7 +67,7 @@ export function useTemplateSchema({ setError }: UseTemplateSchemaProps) { { onSuccess: (templateData) => { if (templateData && templateData._id && profileInfo) { - push(`${ROUTES.IMPORTS}/${templateData._id}?showWidget=true`); + push(`${ROUTES.IMPORTS}/${templateData._id}`); } }, } diff --git a/apps/web/layouts/OnboardLayout/LeftSideContent.style.tsx b/apps/web/layouts/OnboardLayout/LeftSideContent.style.tsx new file mode 100644 index 000000000..6864caaf3 --- /dev/null +++ b/apps/web/layouts/OnboardLayout/LeftSideContent.style.tsx @@ -0,0 +1,108 @@ +import { keyframes } from '@emotion/react'; +import { createStyles, MantineTheme } from '@mantine/core'; + +const subtleGradientShift = keyframes({ + '0%, 100%': { + backgroundPosition: '0% 50%', + }, + '50%': { + backgroundPosition: '100% 50%', + }, +}); + +const softGlow = keyframes({ + '0%, 100%': { + opacity: 0.15, + }, + '50%': { + opacity: 0.25, + }, +}); + +export const useStyles = createStyles((theme: MantineTheme) => ({ + splitContainer: { + minHeight: '100vh', + position: 'relative', + display: 'grid', + gridTemplateColumns: '100%', + [theme.fn.largerThan('md')]: { + display: 'grid', + gridTemplateColumns: '60% 40%', + }, + [theme.fn.smallerThan('md')]: { + background: + 'linear-gradient(135deg, #6b2323ff 0%, #4A2C42 20%, #2D2F5A 40%, #1A2847 60%, #0F1B3D 80%, #0A0F2C 100%)', + animation: `${subtleGradientShift} 20s ease-in-out infinite`, + }, + }, + leftSide: { + display: 'none', + position: 'relative', + overflow: 'hidden', + [theme.fn.largerThan('md')]: { + display: 'flex', + flexDirection: 'column', + padding: theme.spacing.xl, + background: + 'linear-gradient(135deg, #6b2323ff 0%, #4A2C42 20%, #2D2F5A 40%, #1A2847 60%, #0F1B3D 80%, #0A0F2C 100%)', + backgroundSize: '200% 200%', + animation: `${subtleGradientShift} 20s ease-in-out infinite`, + color: 'white', + }, + '&::before': { + content: '""', + position: 'absolute', + top: 0, + left: 0, + right: 0, + bottom: 0, + background: 'radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.08) 0%, transparent 50%)', + animation: `${softGlow} 8s ease-in-out infinite`, + pointerEvents: 'none', + }, + '&::after': { + content: '""', + position: 'absolute', + top: 0, + left: 0, + right: 0, + bottom: 0, + background: 'radial-gradient(circle at 80% 50%, rgba(0, 188, 212, 0.12) 0%, transparent 50%)', + animation: `${softGlow} 10s ease-in-out infinite reverse`, + pointerEvents: 'none', + }, + }, + rightSide: { + display: 'flex', + flexDirection: 'column', + padding: theme.spacing.xl, + [theme.fn.largerThan('md')]: { + padding: theme.spacing.xl, + }, + }, + logoContainer: { + display: 'flex', + justifyContent: 'space-between', + alignItems: 'center', + padding: theme.spacing.xs, + position: 'relative', + zIndex: 1, + }, + content: { + flex: 1, + display: 'flex', + flexDirection: 'column', + justifyContent: 'center', + maxWidth: '100%', + position: 'relative', + zIndex: 1, + [theme.fn.largerThan('sm')]: { + maxWidth: '400px', + margin: '0 auto', + }, + }, + leftContent: { + position: 'relative', + zIndex: 1, + }, +})); diff --git a/apps/web/layouts/OnboardLayout/LeftSideContent.tsx b/apps/web/layouts/OnboardLayout/LeftSideContent.tsx new file mode 100644 index 000000000..51cea2d95 --- /dev/null +++ b/apps/web/layouts/OnboardLayout/LeftSideContent.tsx @@ -0,0 +1,140 @@ +import React, { ReactNode } from 'react'; +import { Box, Text, Title, Stack, Group, useMantineTheme, Divider, Container } from '@mantine/core'; +import Image from 'next/image'; +import FullLogo from '@assets/images/full-logo-light.png'; +import { StocksIcon } from '@assets/icons/Stocks.icon'; +import { TimeClockIcon } from '@assets/icons/TimeClock.icon'; +import { GiveHeartIcon } from '@assets/icons/GiveHeart.icon'; +import { ListTickIcon } from '@assets/icons/ListTick.icon'; +import { colors, companyLogos } from '@config'; + +interface Feature { + title: string; + description: ReactNode; + icon: ReactNode; +} +export function LeftSideContent() { + const theme = useMantineTheme(); + + const ONBOARD_FEATURES: Feature[] = [ + { + title: 'Integrate in Minutes', + description: ( + + Drop a few lines of code or use our Bubble plugin — start importing data
+ instantly. +
+ ), + icon: , + }, + { + title: 'Smart, Reliable Validation', + description: Hybrid validation engine catches errors before they break your data., + icon: , + }, + { + title: 'Fully Yours', + description: ( + + Add your branding, colors, and language — your users won't even know it's
Impler. +
+ ), + icon: , + }, + { + title: 'Scalable & Safe', + description: Handle millions of rows with chunked uploads and zero data loss., + icon: , + }, + ]; + + return ( + + + + + + Impler Logo + + + + Launch Imports That Scale ⚡ + + + Impler helps you add a powerful, customizable CSV & Excel importer + + to your app in minutes — no heavy lifting, no maintenance. + + + + + + {ONBOARD_FEATURES.map((feature: Feature, index: number) => ( + + {feature.icon} + + + {feature.title} + + + {feature.description} + + + + ))} + + + + + Developers and Teams Love Us, You will too. + + } + labelPosition="center" + styles={{ + label: { + fontSize: theme.fontSizes.sm, + }, + }} + sx={{ + '&::before, &::after': { + borderTopColor: `${theme.colors.gray[3]} !important`, + borderTopWidth: '1px !important', + }, + }} + mb="lg" + /> + + + {/* First row: 6 logos */} + + {companyLogos.slice(0, 6).map((company: any) => ( + + {company.alt} + + ))} + + + {/* Second row: 2 logos (centered) */} + + {companyLogos.slice(6, 8).map((company: any) => ( + + {company.alt} + + ))} + + + + + + + ); +} diff --git a/apps/web/layouts/OnboardLayout/OnboardLayout.styles.ts b/apps/web/layouts/OnboardLayout/OnboardLayout.styles.ts new file mode 100644 index 000000000..1db2340a4 --- /dev/null +++ b/apps/web/layouts/OnboardLayout/OnboardLayout.styles.ts @@ -0,0 +1,100 @@ +import { MantineTheme, createStyles, keyframes } from '@mantine/core'; + +const subtleGradientShift = keyframes({ + '0%, 100%': { + backgroundPosition: '0% 50%', + }, + '50%': { + backgroundPosition: '100% 50%', + }, +}); + +const softGlow = keyframes({ + '0%, 100%': { + opacity: 0.15, + }, + '50%': { + opacity: 0.25, + }, +}); + +export default createStyles((theme: MantineTheme) => ({ + splitContainer: { + minHeight: '100vh', + position: 'relative', + [theme.fn.largerThan('md')]: { + display: 'grid', + gridTemplateColumns: '60% 40%', + }, + }, + leftSide: { + display: 'none', + position: 'relative', + overflow: 'hidden', + [theme.fn.largerThan('md')]: { + display: 'flex', + flexDirection: 'column', + padding: theme.spacing.xl, + background: + 'linear-gradient(135deg, #6B4423 0%, #4A2C42 20%, #2D2F5A 40%, #1A2847 60%, #0F1B3D 80%, #0A0F2C 100%)', + backgroundSize: '200% 200%', + animation: `${subtleGradientShift} 20s ease-in-out infinite`, + color: 'white', + }, + '&::before': { + content: '""', + position: 'absolute', + top: 0, + left: 0, + right: 0, + bottom: 0, + background: 'radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.08) 0%, transparent 50%)', + animation: `${softGlow} 8s ease-in-out infinite`, + pointerEvents: 'none', + }, + '&::after': { + content: '""', + position: 'absolute', + top: 0, + left: 0, + right: 0, + bottom: 0, + background: 'radial-gradient(circle at 80% 50%, rgba(0, 188, 212, 0.12) 0%, transparent 50%)', + animation: `${softGlow} 10s ease-in-out infinite reverse`, + pointerEvents: 'none', + }, + }, + rightSide: { + display: 'flex', + flexDirection: 'column', + padding: theme.spacing.xl, + [theme.fn.largerThan('md')]: { + padding: theme.spacing.xl, + }, + }, + logoContainer: { + display: 'flex', + justifyContent: 'space-between', + alignItems: 'center', + padding: theme.spacing.xs, + position: 'relative', + zIndex: 1, + }, + content: { + flex: 1, + display: 'flex', + flexDirection: 'column', + justifyContent: 'center', + maxWidth: '100%', + position: 'relative', + zIndex: 1, + [theme.fn.largerThan('sm')]: { + maxWidth: '400px', + margin: '0 auto', + }, + }, + leftContent: { + position: 'relative', + zIndex: 1, + }, +})); diff --git a/apps/web/layouts/OnboardLayout/OnboardLayout.tsx b/apps/web/layouts/OnboardLayout/OnboardLayout.tsx index 23f99e0ac..81902d01f 100644 --- a/apps/web/layouts/OnboardLayout/OnboardLayout.tsx +++ b/apps/web/layouts/OnboardLayout/OnboardLayout.tsx @@ -1,4 +1,4 @@ -import { Flex, Paper, Anchor } from '@mantine/core'; +import { Flex, Anchor, Box } from '@mantine/core'; import { PropsWithChildren } from 'react'; import Link from 'next/link'; import Head from 'next/head'; @@ -11,7 +11,10 @@ import { API_KEYS, colors, CONSTANTS, TEXTS } from '@config'; import { IErrorObject } from '@impler/shared'; import DarkLogo from '@assets/images/logo-dark.png'; +import { LeftSideContent } from './LeftSideContent'; + import { useAppState } from 'store/app.context'; +import { useStyles } from './LeftSideContent.style'; const Support = dynamic(() => import('components/common/Support').then((mod) => mod.Support), { ssr: false, @@ -20,7 +23,9 @@ const Support = dynamic(() => import('components/common/Support').then((mod) => type OnboardLayoutProps = PropsWithChildren; export function OnboardLayout({ children }: OnboardLayoutProps) { + const { classes } = useStyles(); const { setProfileInfo } = useAppState(); + useQuery( [API_KEYS.ME], () => commonApi(API_KEYS.ME as any, {}), @@ -41,41 +46,36 @@ export function OnboardLayout({ children }: OnboardLayoutProps) { - -
- - {/* Header with logo and help links */} - - Impler Logo +
+ {/* Left side with gradient background */} +
+ +
+
+ + Impler Logo - - Need Help ? + + Need Help? - - + Get in Touch - + - - - {children} - - - + + {/* */} + {children} + {/* */} + +
diff --git a/apps/web/next.config.js b/apps/web/next.config.js index 1282f0c23..e2f7d81e8 100644 --- a/apps/web/next.config.js +++ b/apps/web/next.config.js @@ -4,6 +4,7 @@ const { withSentryConfig } = require('@sentry/nextjs'); const nextConfig = { reactStrictMode: true, publicRuntimeConfig: { + NEXT_PUBLIC_APP_FRONT_BASE_URL: process.env.NEXT_PUBLIC_APP_FRONT_BASE_URL, NEXT_PUBLIC_SENTRY_DSN: process.env.NEXT_PUBLIC_SENTRY_DSN, NEXT_PUBLIC_API_BASE_URL: process.env.NEXT_PUBLIC_API_BASE_URL, NEXT_PUBLIC_EMBED_URL: process.env.NEXT_PUBLIC_EMBED_URL, diff --git a/apps/web/package.json b/apps/web/package.json index 1ec5fa198..388a5bf4f 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -53,7 +53,7 @@ "react-hook-form": "^7.39.1", "sharp": "^0.32.6", "typescript": "4.9.5", - "subos-frontend": "^1.0.50" + "subos-frontend": "^1.0.81" }, "devDependencies": { "@storybook/builder-webpack5": "^6.5.16", diff --git a/apps/web/pages/auth/onboarding/CreateImportForm.tsx b/apps/web/pages/auth/onboarding/CreateImportForm.tsx index 8d5f8dff4..6d03be0d9 100644 --- a/apps/web/pages/auth/onboarding/CreateImportForm.tsx +++ b/apps/web/pages/auth/onboarding/CreateImportForm.tsx @@ -1,5 +1,5 @@ import { Controller, useForm, Control, UseFormSetError, FieldErrors, UseFormResetField } from 'react-hook-form'; -import { Title, Stack, TextInput, Radio, Flex, Box, FocusTrap } from '@mantine/core'; +import { Title, Stack, TextInput, Radio, Flex, Box, FocusTrap, Text } from '@mantine/core'; import { Button } from '@ui/button'; import { colors, PLACEHOLDERS } from '@config'; import { IntegrationEnum } from '@impler/shared'; @@ -26,13 +26,26 @@ export default function CreateImportForm({ }: CreateImportFormProps) { return ( <> - Get Your First Import - + + + + Get Your First Import + + + + + + + + You're 1 step away from seeing Impler in action. Upload a file or use a sample to generate columns + automatically. +
( ( diff --git a/apps/web/pages/auth/onboarding/OnboardImportForm.tsx b/apps/web/pages/auth/onboarding/OnboardImportForm.tsx index 9592d538c..125f97948 100644 --- a/apps/web/pages/auth/onboarding/OnboardImportForm.tsx +++ b/apps/web/pages/auth/onboarding/OnboardImportForm.tsx @@ -4,8 +4,15 @@ import { useForm } from 'react-hook-form'; import { useTemplateSchema } from '@hooks/useTemplateSchema'; import { useAppState } from 'store/app.context'; import { CONSTANTS, sampleColumns } from '@config'; +import { useLocalStorage } from '@mantine/hooks'; export default function OnboardImportForm() { + // eslint-disable-next-line no-unused-vars, @typescript-eslint/no-unused-vars + const [_, setShowWelcome] = useLocalStorage({ + key: CONSTANTS.SHOW_WELCOME_IMPORTER_STORAGE_KEY, + defaultValue: true, + }); + const { profileInfo } = useAppState(); const { @@ -16,6 +23,7 @@ export default function OnboardImportForm() { resetField, } = useForm({ defaultValues: { + importName: 'Product Import', importIntegration: IntegrationEnum.REACT, onboardCreateTemplateMode: OnboardCreateTemplateModeEnum.FILE_MAP_COLUMN, }, @@ -27,10 +35,11 @@ export default function OnboardImportForm() { const handleCreateImportFormSubmit = async (createImportFormData: CreateOnboardImportFormData) => { if (createImportFormData.onboardCreateTemplateMode === OnboardCreateTemplateModeEnum.SAMPLE_COLUMN) { createOnboardTemplateSample({ - name: CONSTANTS.SAMPLE_IMPORT_NAME, + name: createImportFormData.importName || CONSTANTS.SAMPLE_IMPORT_NAME, _projectId: profileInfo!._projectId, columns: sampleColumns as IColumn[], }); + setShowWelcome(true); } if (createImportFormData.onboardCreateTemplateMode === OnboardCreateTemplateModeEnum.FILE_MAP_COLUMN) { const templateSchemaColumns = await getTemplateFileSchema(createImportFormData.file || null); @@ -39,6 +48,7 @@ export default function OnboardImportForm() { _projectId: profileInfo!._projectId, columns: templateSchemaColumns?.length ? templateSchemaColumns.map((item) => ({ ...item })) : [], }); + setShowWelcome(true); } }; diff --git a/apps/web/pages/auth/onboarding/OnboardProjectForm.tsx b/apps/web/pages/auth/onboarding/OnboardProjectForm.tsx index 085803235..303e44df9 100644 --- a/apps/web/pages/auth/onboarding/OnboardProjectForm.tsx +++ b/apps/web/pages/auth/onboarding/OnboardProjectForm.tsx @@ -1,21 +1,25 @@ +import { useEffect, useRef } from 'react'; import { useOnboardUserProjectForm } from '@hooks/useOnboardUserProjectForm'; -import ProjectOnboardForm from './ProjectOnboardForm'; - -interface ProjectOnboardFormData { - projectName: string; - companySize: string; - role: string; - source: string; -} +import { useAppState } from 'store/app.context'; +import { capitalizeFirstLetter } from '@shared/utils'; export default function OnboardProjectForm() { - const { onboardUser, isUserOnboardLoading } = useOnboardUserProjectForm({}); + const { profileInfo } = useAppState(); + const { onboardUser } = useOnboardUserProjectForm({}); + const hasSubmitted = useRef(false); - const handleProjectOnboardFormSubmit = async (data: ProjectOnboardFormData) => { - try { - onboardUser(data); - } catch (error) {} - }; + useEffect(() => { + if (!hasSubmitted.current && profileInfo?.firstName) { + hasSubmitted.current = true; + const defaultValues = { + projectName: `${capitalizeFirstLetter(profileInfo.firstName)}'s Project`, + companySize: '1-10', + role: 'developer', + source: 'search', + }; + onboardUser(defaultValues); + } + }, [onboardUser, profileInfo?.firstName]); - return ; + return null; } diff --git a/apps/web/pages/auth/onboarding/ProjectOnboardForm.tsx b/apps/web/pages/auth/onboarding/ProjectOnboardForm.tsx index 352785341..b46069b61 100644 --- a/apps/web/pages/auth/onboarding/ProjectOnboardForm.tsx +++ b/apps/web/pages/auth/onboarding/ProjectOnboardForm.tsx @@ -5,6 +5,7 @@ import { Button } from '@ui/button'; import { useAppState } from 'store/app.context'; import { colors, COMPANY_SIZES, HOW_HEARD_ABOUT_US, PLACEHOLDERS, ROLES } from '@config'; import { Stepper } from '@components/Stepper/Stepper'; +import { capitalizeFirstLetter } from '@shared/utils'; interface ProjectOnboardFormData { projectName: string; @@ -27,7 +28,11 @@ export default function ProjectOnboardForm({ onSubmit, isLoading }: ProjectOnboa handleSubmit, formState: { errors }, control, - } = useForm(); + } = useForm({ + defaultValues: { + projectName: `${capitalizeFirstLetter(profileInfo?.firstName ?? '')}'s Project`, + }, + }); return ( <> @@ -48,7 +53,7 @@ export default function ProjectOnboardForm({ onSubmit, isLoading }: ProjectOnboa name="projectName" control={control} rules={{ - required: 'Project name is required', + // required: 'Project name is required', validate: { noSpaces: (value) => value.trim().length > 0 || 'Project name cannot be empty or contain only spaces', }, diff --git a/apps/web/pages/auth/signup.tsx b/apps/web/pages/auth/signup.tsx index 896a0eb20..bfb53b6c2 100644 --- a/apps/web/pages/auth/signup.tsx +++ b/apps/web/pages/auth/signup.tsx @@ -1,4 +1,4 @@ -import { Container } from '@mantine/core'; +import { Container, Flex } from '@mantine/core'; import { Stepper } from '@components/Stepper/Stepper'; import { Button } from '@ui/button'; import Link from 'next/link'; @@ -15,10 +15,22 @@ export default function SignupPage() { return ( - - Get Started - - + + + Get Started + + + + + + + Get your free trial — explore every feature for 14 days, then keep building on our free plan. + + + No credit card required • 2,500 free records/month • Cancel anytime + + + {/* */} @@ -38,11 +50,12 @@ export default function SignupPage() { import('@components/imports/editor').then((mod) => mod.OutputEditor), { ssr: false, @@ -31,9 +37,12 @@ const Validator = dynamic(() => import('@components/imports/validator').then((mo }); function ImportDetails() { + const { customValidatatorCodeUnavailable } = useSubscriptionMetaDataInformation(); + const router = useRouter(); + const { onImportCreateClick, showWelcome, clearWelcomeFlag } = useImports(); const [activeTab, setActiveTab] = useState<'schema' | 'destination' | 'snippet' | 'validator' | 'output'>(); - const [webhookConfig, setWebhookConfig] = useState<{ authHeaderValue?: string; extra?: string }>({}); + const { meta, columns, @@ -49,48 +58,84 @@ function ImportDetails() { templateId: router.query.id as string, }); + const handleActionClick = useCallback( + async (action: WelcomeConfigureStepModalActionEnum) => { + modals.closeAll(); + switch (action) { + case WelcomeConfigureStepModalActionEnum.SetupDestination: + setActiveTab('destination'); + break; + case WelcomeConfigureStepModalActionEnum.CreateImporter: + onImportCreateClick(); + router.push(ROUTES.IMPORTS); + break; + case WelcomeConfigureStepModalActionEnum.EmbedIntoYourApplication: + onIntegrationClick(); + break; + case WelcomeConfigureStepModalActionEnum.TalkWithTeam: + window.open(CONSTANTS.IMPLER_CAL_QUICK_MEETING, '_blank'); + break; + default: + break; + } + }, + [onImportCreateClick, setActiveTab, router, onIntegrationClick] + ); + const { showWidget, isImplerInitiated } = useImpler({ primaryColor: colors.faintYellow, templateId: templateData?._id, projectId: templateData?._projectId, accessToken: profileInfo?.accessToken, - onUploadComplete: onSpreadsheetImported, - authHeaderValue: webhookConfig.authHeaderValue || '', - extra: webhookConfig.extra || '', appearance: defaultWidgetAppereance, + onUploadComplete: (data) => { + onSpreadsheetImported(); + if (data && localStorage.getItem(CONSTANTS.SHOW_WELCOME_IMPORTER_STORAGE_KEY)) { + clearWelcomeFlag(); + modals.open({ + id: MODAL_KEYS.WELCOME_CONFIGURE_STEP, + children: ( + { + handleActionClick(action); + }} + /> + ), + withCloseButton: true, + closeOnClickOutside: true, + trapFocus: true, + centered: true, + size: 'xl', + }); + } + }, }); - const onImportClick = () => { - track({ - name: 'IMPORT CLICK', - properties: {}, - }); - modals.open({ - title: 'Configure Import Webhook', - children: ( - { - setWebhookConfig(config); - modals.closeAll(); - showWidget({ - extra: config.extra || '', - }); - setTimeout(() => {}, 100); - }} - /> - ), - withCloseButton: true, - centered: true, - size: 'xl', - }); - }; + const onImportClick = useCallback(() => { + track({ name: 'IMPORT CLICK', properties: {} }); + setTimeout(() => showWidget({}), 150); + }, [showWidget]); + + const onWelcomeImportClick = useCallback(() => { + track({ name: 'IMPORT CLICK', properties: {} }); + modals.close(MODAL_KEYS.WELCOME_IMPORTER); + setTimeout(() => { + showWidget({}); + }, 200); + }, [showWidget]); useEffect(() => { - if (isImplerInitiated && router.query.showWidget) { - onImportClick(); + if (showWelcome) { + modals.open({ + id: MODAL_KEYS.WELCOME_IMPORTER, + children: , + withCloseButton: false, + closeOnClickOutside: true, + centered: true, + size: 'xl', + }); } - }, [isImplerInitiated]); + }, [showWelcome, onWelcomeImportClick]); return ( @@ -159,7 +204,7 @@ function ImportDetails() { value: 'validator', title: 'Validator', icon: , - disabled: true, + disabled: customValidatatorCodeUnavailable, content: , }, { diff --git a/apps/web/pages/index.tsx b/apps/web/pages/index.tsx index 2c705567b..d2b9940fb 100644 --- a/apps/web/pages/index.tsx +++ b/apps/web/pages/index.tsx @@ -27,6 +27,7 @@ export default function Home() { Home {publicRuntimeConfig.NEXT_PUBLIC_PAYMENT_GATEWAY_URL && } + {/* */} ); diff --git a/apps/web/public/sample-excel-file.csv b/apps/web/public/sample-excel-file.csv new file mode 100644 index 000000000..8445499fd --- /dev/null +++ b/apps/web/public/sample-excel-file.csv @@ -0,0 +1,1001 @@ +Product Name/ID,Quantity,Unit Price,Total Price,Category +Refrigerator 001,4,25,100,Home Appliances +Filing Cabinet 002,1,114,114,Furniture +Filing Cabinet 003,10,804,8040,Furniture +Wireless Mouse 004,2,756,1512,Electronics +Projector 005,6,97,582,Office +Whiteboard 006,10,612,6120,Home Appliances +Headphones 007,4,441,1764,Electronics +Wireless Mouse 008,2,274,548,Electronics +Scanner 009,5,512,2560,Home Appliances +Filing Cabinet 010,9,503,4527,Furniture +Office Chair 011,5,421,2105,Furniture +Refrigerator 012,7,175,1225,Appliances +Gaming Keyboard 013,10,855,8550,Electronics +Scanner 014,5,340,1700,Office +Filing Cabinet 015,8,612,4896,Home Appliances +Bookshelf 016,9,998,8982,Furniture +Desk Lamp 017,3,808,2424,Furniture +Blender 018,7,277,1939,Appliances +Desk 019,6,92,552,Furniture +Laptop 020,8,756,6048,Electronics +Scanner 021,7,349,2443,Office +Whiteboard 022,8,318,2544,Office +Whiteboard 023,6,886,5316,Office +Office Chair 024,2,334,668,Furniture +Gaming Keyboard 025,8,329,2632,Electronics +Scanner 026,7,572,4004,Office +Scanner 027,5,859,4295,Office +Microwave 028,7,998,6986,Appliances +Desk Lamp 029,6,849,5094,Furniture +Scanner 030,8,888,7104,Office +Refrigerator 031,7,954,6678,Appliances +Refrigerator 032,7,186,1302,Appliances +Gaming Keyboard 033,9,717,6453,Electronics +Toaster 034,4,391,1564,Appliances +Laptop 035,5,498,2490,Electronics +Printer 036,6,392,2352,Office +Blender 037,7,510,3570,Appliances +Laptop 038,5,825,4125,Electronics +Wireless Mouse 039,1,720,720,Electronics +Whiteboard 040,9,953,8577,Office +Toaster 041,3,963,2889,Appliances +Headphones 042,6,557,3342,Electronics +Printer 043,3,433,1299,Office +Bookshelf 044,1,949,949,Furniture +Blender 045,3,71,213,Appliances +Projector 046,4,966,3864,Office +Bookshelf 047,8,613,4904,Furniture +Refrigerator 048,5,410,2050,Appliances +Whiteboard 049,8,463,3704,Office +Scanner 050,6,903,5418,Office +Refrigerator 051,10,275,2750,Appliances +Microwave 052,8,404,3232,Appliances +Desk Lamp 053,6,813,4878,Furniture +Headphones 054,2,222,444,Electronics +Gaming Keyboard 055,2,188,376,Electronics +Blender 056,8,841,6728,Appliances +Office Chair 057,3,54,162,Furniture +Tablet 058,1,611,611,Electronics +Microwave 059,3,522,1566,Appliances +Office Chair 060,5,95,475,Furniture +Microwave 061,10,682,6820,Appliances +LED Monitor 062,2,353,706,Electronics +Smartphone 063,2,428,856,Electronics +Projector 064,4,566,2264,Office +Tablet 065,1,914,914,Electronics +Projector 066,7,152,1064,Office +Desk 067,3,955,2865,Furniture +Refrigerator 068,9,168,1512,Appliances +Laptop 069,9,856,7704,Electronics +Filing Cabinet 070,1,731,731,Furniture +Blender 071,10,814,8140,Appliances +Office Chair 072,3,411,1233,Furniture +Scanner 073,1,280,280,Office +Blender 074,6,341,2046,Appliances +Bookshelf 075,2,859,1718,Furniture +Printer 076,2,139,278,Office +Filing Cabinet 077,6,190,1140,Furniture +Office Chair 078,6,833,4998,Furniture +Coffee Maker 079,7,919,6433,Appliances +Smartphone 080,1,419,419,Electronics +Keyboard 081,5,265,1325,Electronics +Desk Lamp 082,3,818,2454,Furniture +Gaming Keyboard 083,1,144,144,Electronics +Bookshelf 084,5,58,290,Furniture +Printer 085,10,458,4580,Office +Whiteboard 086,4,453,1812,Office +Projector 087,2,776,1552,Office +Microwave 088,1,221,221,Appliances +Coffee Maker 089,7,238,1666,Appliances +Headphones 090,7,59,413,Electronics +Office Chair 091,2,324,648,Furniture +Coffee Maker 092,9,890,8010,Appliances +Microwave 093,9,343,3087,Appliances +Scanner 094,5,665,3325,Office +Microwave 095,3,509,1527,Appliances +Blender 096,4,152,608,Appliances +Desk Lamp 097,1,698,698,Furniture +Bookshelf 098,1,366,366,Furniture +Bookshelf 099,5,362,1810,Furniture +Refrigerator 100,4,908,3632,Appliances +Smartphone 101,10,955,9550,Electronics +Office Chair 102,5,446,2230,Furniture +Whiteboard 103,5,974,4870,Office +Desk 104,5,139,695,Furniture +Microwave 105,4,392,1568,Appliances +Projector 106,7,713,4991,Office +Printer 107,2,231,462,Office +Projector 108,9,852,7668,Office +Wireless Mouse 109,7,503,3521,Electronics +Microwave 110,3,511,1533,Appliances +Projector 111,1,270,270,Office +Projector 112,6,79,474,Office +Desk 113,9,337,3033,Furniture +Smartphone 114,2,784,1568,Electronics +Projector 115,4,685,2740,Office +Tablet 116,9,540,4860,Electronics +Microwave 117,6,76,456,Appliances +Refrigerator 118,1,233,233,Appliances +Whiteboard 119,3,222,666,Office +Blender 120,5,957,4785,Appliances +Microwave 121,4,611,2444,Appliances +Blender 122,10,673,6730,Appliances +Toaster 123,10,864,8640,Appliances +Projector 124,4,491,1964,Office +Toaster 125,10,816,8160,Appliances +Blender 126,6,545,3270,Appliances +LED Monitor 127,4,771,3084,Electronics +Projector 128,8,153,1224,Office +Whiteboard 129,9,729,6561,Office +Whiteboard 130,2,156,312,Office +Tablet 131,4,939,3756,Electronics +Desk 132,10,658,6580,Furniture +Whiteboard 133,4,74,296,Office +Microwave 134,5,375,1875,Appliances +Microwave 135,8,932,7456,Appliances +Office Chair 136,2,963,1926,Furniture +Refrigerator 137,6,489,2934,Appliances +Smartphone 138,7,380,2660,Electronics +Laptop 139,6,224,1344,Electronics +Filing Cabinet 140,4,989,3956,Furniture +Printer 141,3,498,1494,Office +Filing Cabinet 142,3,514,1542,Furniture +Office Chair 143,7,465,3255,Furniture +Coffee Maker 144,2,78,156,Appliances +Projector 145,9,930,8370,Office +Desk 146,4,865,3460,Furniture +Filing Cabinet 147,6,905,5430,Furniture +Headphones 148,2,588,1176,Electronics +Office Chair 149,5,366,1830,Furniture +Scanner 150,9,260,2340,Office +Whiteboard 151,2,942,1884,Office +Whiteboard 152,5,391,1955,Office +Blender 153,7,73,511,Appliances +Desk 154,1,55,55,Furniture +Blender 155,4,406,1624,Appliances +Tablet 156,5,308,1540,Electronics +Desk Lamp 157,7,299,2093,Furniture +Blender 158,7,117,819,Appliances +Gaming Keyboard 159,7,283,1981,Electronics +Office Chair 160,3,885,2655,Furniture +Filing Cabinet 161,8,1016,8128,Furniture +Keyboard 162,1,763,763,Electronics +Tablet 163,5,963,4815,Electronics +Desk Lamp 164,8,387,3096,Furniture +Scanner 165,6,734,4404,Office +Refrigerator 166,1,215,215,Appliances +LED Monitor 167,10,193,1930,Electronics +Blender 168,7,64,448,Appliances +Desk Lamp 169,6,802,4812,Furniture +LED Monitor 170,5,32,160,Electronics +Toaster 171,2,43,86,Appliances +Toaster 172,4,360,1440,Appliances +Desk Lamp 173,9,1000,9000,Furniture +Desk 174,2,693,1386,Furniture +Filing Cabinet 175,10,973,9730,Furniture +Wireless Mouse 176,3,341,1023,Electronics +Filing Cabinet 177,3,749,2247,Furniture +Scanner 178,5,187,935,Office +Refrigerator 179,3,597,1791,Appliances +Scanner 180,3,130,390,Office +Scanner 181,6,726,4356,Office +Filing Cabinet 182,9,329,2961,Furniture +Printer 183,3,648,1944,Office +Toaster 184,6,239,1434,Appliances +Coffee Maker 185,9,202,1818,Appliances +Coffee Maker 186,5,508,2540,Appliances +Refrigerator 187,6,400,2400,Appliances +Printer 188,10,99,990,Office +Scanner 189,6,232,1392,Office +Whiteboard 190,4,786,3144,Office +Office Chair 191,6,326,1956,Furniture +Wireless Mouse 192,8,417,3336,Electronics +Headphones 193,6,504,3024,Electronics +Desk 194,7,314,2198,Furniture +LED Monitor 195,5,672,3360,Electronics +Smartphone 196,4,425,1700,Electronics +Office Chair 197,8,291,2328,Furniture +Bookshelf 198,8,553,4424,Furniture +Coffee Maker 199,5,710,3550,Appliances +Bookshelf 200,1,691,691,Furniture +Whiteboard 201,3,819,2457,Office +Filing Cabinet 202,5,246,1230,Furniture +Scanner 203,1,485,485,Office +Laptop 204,1,845,845,Electronics +Whiteboard 205,8,913,7304,Office +Desk Lamp 206,7,720,5040,Furniture +Desk Lamp 207,1,26,26,Furniture +Headphones 208,9,622,5598,Electronics +Printer 209,1,21,21,Office +Desk 210,1,255,255,Furniture +Projector 211,3,160,480,Office +Whiteboard 212,3,650,1950,Office +Smartphone 213,10,585,5850,Electronics +Refrigerator 214,2,271,542,Appliances +Whiteboard 215,10,405,4050,Office +Desk 216,6,290,1740,Furniture +Microwave 217,4,939,3756,Appliances +Wireless Mouse 218,7,721,5047,Electronics +LED Monitor 219,9,459,4131,Electronics +Scanner 220,5,438,2190,Office +Whiteboard 221,9,643,5787,Office +Projector 222,4,278,1112,Office +Scanner 223,10,439,4390,Office +LED Monitor 224,6,176,1056,Electronics +Smartphone 225,6,903,5418,Electronics +Refrigerator 226,5,191,955,Appliances +Desk Lamp 227,7,769,5383,Furniture +Whiteboard 228,2,520,1040,Office +Laptop 229,7,187,1309,Electronics +Gaming Keyboard 230,2,398,796,Electronics +Desk 231,1,242,242,Furniture +Refrigerator 232,1,814,814,Appliances +Projector 233,3,551,1653,Office +Keyboard 234,9,346,3114,Electronics +Laptop 235,4,91,364,Electronics +LED Monitor 236,3,206,618,Electronics +Tablet 237,8,697,5576,Electronics +Filing Cabinet 238,2,349,698,Furniture +Printer 239,5,564,2820,Office +Gaming Keyboard 240,4,613,2452,Electronics +Desk Lamp 241,5,1014,5070,Furniture +Blender 242,8,641,5128,Appliances +Filing Cabinet 243,8,646,5168,Furniture +Projector 244,1,711,711,Office +Headphones 245,3,266,798,Electronics +Whiteboard 246,10,354,3540,Office +Gaming Keyboard 247,9,382,3438,Electronics +Keyboard 248,8,647,5176,Electronics +Keyboard 249,1,211,211,Electronics +Microwave 250,7,759,5313,Appliances +Toaster 251,5,367,1835,Appliances +Blender 252,1,993,993,Appliances +Printer 253,5,785,3925,Office +Blender 254,1,204,204,Appliances +Toaster 255,4,884,3536,Appliances +Keyboard 256,10,61,610,Electronics +Desk Lamp 257,4,853,3412,Furniture +Keyboard 258,8,869,6952,Electronics +Smartphone 259,3,265,795,Electronics +Laptop 260,10,966,9660,Electronics +Keyboard 261,3,490,1470,Electronics +Microwave 262,5,961,4805,Appliances +Desk 263,10,426,4260,Furniture +Scanner 264,4,62,248,Office +Laptop 265,8,756,6048,Electronics +Refrigerator 266,4,618,2472,Appliances +Printer 267,9,89,801,Office +Printer 268,9,359,3231,Office +Laptop 269,1,208,208,Electronics +Desk Lamp 270,4,930,3720,Furniture +Headphones 271,10,409,4090,Electronics +Headphones 272,7,943,6601,Electronics +Microwave 273,5,554,2770,Appliances +Refrigerator 274,3,536,1608,Appliances +Gaming Keyboard 275,2,928,1856,Electronics +Desk Lamp 276,3,811,2433,Furniture +Toaster 277,3,702,2106,Appliances +Coffee Maker 278,7,703,4921,Appliances +Scanner 279,3,270,810,Office +Desk 280,3,642,1926,Furniture +Tablet 281,9,942,8478,Electronics +Whiteboard 282,8,865,6920,Office +Projector 283,7,354,2478,Office +Wireless Mouse 284,2,98,196,Electronics +Scanner 285,10,878,8780,Office +Filing Cabinet 286,7,939,6573,Furniture +Projector 287,4,228,912,Office +Gaming Keyboard 288,10,347,3470,Electronics +Blender 289,5,624,3120,Appliances +Toaster 290,9,516,4644,Appliances +LED Monitor 291,6,695,4170,Electronics +Coffee Maker 292,8,310,2480,Appliances +Desk 293,3,720,2160,Furniture +Projector 294,6,945,5670,Office +Coffee Maker 295,3,400,1200,Appliances +Office Chair 296,9,350,3150,Furniture +Refrigerator 297,4,53,212,Appliances +Gaming Keyboard 298,2,540,1080,Electronics +LED Monitor 299,7,126,882,Electronics +Refrigerator 300,9,173,1557,Appliances +Toaster 301,9,967,8703,Appliances +Toaster 302,3,45,135,Appliances +Coffee Maker 303,8,527,4216,Appliances +Office Chair 304,3,881,2643,Furniture +Blender 305,3,23,69,Appliances +Gaming Keyboard 306,10,687,6870,Electronics +Scanner 307,5,700,3500,Office +Projector 308,10,996,9960,Office +Tablet 309,1,740,740,Electronics +Coffee Maker 310,8,514,4112,Appliances +Projector 311,3,247,741,Office +Desk Lamp 312,10,89,890,Furniture +Wireless Mouse 313,7,365,2555,Electronics +Gaming Keyboard 314,4,797,3188,Electronics +Desk Lamp 315,3,497,1491,Furniture +Tablet 316,2,705,1410,Electronics +Wireless Mouse 317,10,773,7730,Electronics +Microwave 318,4,664,2656,Appliances +Scanner 319,2,447,894,Office +Coffee Maker 320,8,278,2224,Appliances +Projector 321,10,740,7400,Office +Gaming Keyboard 322,8,686,5488,Electronics +Desk 323,2,452,904,Furniture +Office Chair 324,9,299,2691,Furniture +Coffee Maker 325,2,280,560,Appliances +Keyboard 326,7,86,602,Electronics +Desk 327,8,783,6264,Furniture +Smartphone 328,4,106,424,Electronics +Bookshelf 329,10,870,8700,Furniture +Toaster 330,5,454,2270,Appliances +Projector 331,5,992,4960,Office +Headphones 332,4,950,3800,Electronics +Whiteboard 333,2,962,1924,Office +Scanner 334,5,761,3805,Office +Headphones 335,10,193,1930,Electronics +Filing Cabinet 336,10,822,8220,Furniture +Filing Cabinet 337,9,485,4365,Furniture +Coffee Maker 338,6,631,3786,Appliances +LED Monitor 339,10,467,4670,Electronics +Refrigerator 340,10,747,7470,Appliances +Wireless Mouse 341,7,501,3507,Electronics +Bookshelf 342,5,897,4485,Furniture +Filing Cabinet 343,6,783,4698,Furniture +Laptop 344,7,957,6699,Electronics +Desk Lamp 345,10,749,7490,Furniture +Printer 346,2,689,1378,Office +Tablet 347,6,399,2394,Electronics +Headphones 348,10,492,4920,Electronics +Microwave 349,3,400,1200,Appliances +Desk Lamp 350,8,633,5064,Furniture +Filing Cabinet 351,9,716,6444,Furniture +LED Monitor 352,1,590,590,Electronics +Laptop 353,2,212,424,Electronics +Blender 354,8,895,7160,Appliances +Scanner 355,9,330,2970,Office +Bookshelf 356,6,954,5724,Furniture +Microwave 357,2,847,1694,Appliances +Wireless Mouse 358,1,862,862,Electronics +Headphones 359,5,287,1435,Electronics +Office Chair 360,5,567,2835,Furniture +Printer 361,7,491,3437,Office +Toaster 362,6,672,4032,Appliances +Whiteboard 363,10,213,2130,Office +Laptop 364,9,812,7308,Electronics +Whiteboard 365,10,205,2050,Office +Desk 366,2,370,740,Furniture +Printer 367,8,627,5016,Office +Coffee Maker 368,1,658,658,Appliances +Microwave 369,4,691,2764,Appliances +Tablet 370,9,949,8541,Electronics +Laptop 371,2,724,1448,Electronics +Desk Lamp 372,5,528,2640,Furniture +LED Monitor 373,9,413,3717,Electronics +Gaming Keyboard 374,9,45,405,Electronics +Laptop 375,1,661,661,Electronics +Scanner 376,1,365,365,Office +Whiteboard 377,3,242,726,Office +Projector 378,9,801,7209,Office +Microwave 379,8,767,6136,Appliances +Coffee Maker 380,5,827,4135,Appliances +Toaster 381,9,353,3177,Appliances +Laptop 382,8,509,4072,Electronics +Toaster 383,4,422,1688,Appliances +Tablet 384,9,459,4131,Electronics +Blender 385,6,463,2778,Appliances +Laptop 386,9,906,8154,Electronics +Desk 387,5,783,3915,Furniture +Toaster 388,2,223,446,Appliances +Coffee Maker 389,4,876,3504,Appliances +Projector 390,3,966,2898,Office +Office Chair 391,7,167,1169,Furniture +Smartphone 392,2,848,1696,Electronics +Microwave 393,6,502,3012,Appliances +Projector 394,7,576,4032,Office +Wireless Mouse 395,9,170,1530,Electronics +Gaming Keyboard 396,8,393,3144,Electronics +Desk Lamp 397,8,227,1816,Furniture +Wireless Mouse 398,4,654,2616,Electronics +Blender 399,3,998,2994,Appliances +Tablet 400,7,440,3080,Electronics +Gaming Keyboard 401,1,504,504,Electronics +Filing Cabinet 402,9,371,3339,Furniture +Bookshelf 403,10,977,9770,Furniture +Keyboard 404,6,192,1152,Electronics +Projector 405,5,783,3915,Office +Refrigerator 406,2,50,100,Appliances +Refrigerator 407,1,566,566,Appliances +Coffee Maker 408,3,778,2334,Appliances +Coffee Maker 409,3,800,2400,Appliances +Coffee Maker 410,9,956,8604,Appliances +Wireless Mouse 411,10,802,8020,Electronics +LED Monitor 412,5,403,2015,Electronics +Coffee Maker 413,9,519,4671,Appliances +Toaster 414,9,305,2745,Appliances +Projector 415,5,325,1625,Office +Blender 416,7,979,6853,Appliances +Office Chair 417,2,210,420,Furniture +Refrigerator 418,7,134,938,Appliances +Tablet 419,9,119,1071,Electronics +Headphones 420,5,675,3375,Electronics +Toaster 421,10,395,3950,Appliances +Wireless Mouse 422,8,304,2432,Electronics +Filing Cabinet 423,6,733,4398,Furniture +Keyboard 424,3,675,2025,Electronics +Filing Cabinet 425,5,801,4005,Furniture +Projector 426,9,793,7137,Office +Desk Lamp 427,3,628,1884,Furniture +Office Chair 428,5,730,3650,Furniture +Projector 429,5,396,1980,Office +Desk Lamp 430,7,20,140,Furniture +Gaming Keyboard 431,9,1013,9117,Electronics +Refrigerator 432,7,135,945,Appliances +Desk Lamp 433,8,557,4456,Furniture +LED Monitor 434,1,618,618,Electronics +Blender 435,1,813,813,Appliances +Scanner 436,9,872,7848,Office +Refrigerator 437,8,488,3904,Appliances +Desk 438,5,216,1080,Furniture +Printer 439,2,52,104,Office +Keyboard 440,3,174,522,Electronics +Laptop 441,10,510,5100,Electronics +Blender 442,3,167,501,Appliances +Filing Cabinet 443,5,247,1235,Furniture +Bookshelf 444,4,83,332,Furniture +Bookshelf 445,1,885,885,Furniture +Blender 446,1,287,287,Appliances +Blender 447,9,537,4833,Appliances +Scanner 448,2,102,204,Office +Coffee Maker 449,6,479,2874,Appliances +Desk 450,9,809,7281,Furniture +Toaster 451,10,223,2230,Appliances +Blender 452,6,324,1944,Appliances +Laptop 453,6,625,3750,Electronics +Microwave 454,8,704,5632,Appliances +Tablet 455,7,484,3388,Electronics +Headphones 456,3,817,2451,Electronics +Smartphone 457,4,335,1340,Electronics +Refrigerator 458,9,438,3942,Appliances +Office Chair 459,1,884,884,Furniture +Bookshelf 460,2,615,1230,Furniture +Laptop 461,4,140,560,Electronics +Office Chair 462,3,688,2064,Furniture +Refrigerator 463,1,981,981,Appliances +Scanner 464,10,126,1260,Office +Printer 465,8,795,6360,Office +Whiteboard 466,4,989,3956,Office +Toaster 467,7,185,1295,Appliances +Filing Cabinet 468,9,412,3708,Furniture +Bookshelf 469,7,732,5124,Furniture +Desk Lamp 470,10,648,6480,Furniture +LED Monitor 471,8,495,3960,Electronics +Coffee Maker 472,10,200,2000,Appliances +Desk 473,5,142,710,Furniture +Desk Lamp 474,9,972,8748,Furniture +Bookshelf 475,9,98,882,Furniture +Projector 476,10,129,1290,Office +Desk 477,2,888,1776,Furniture +Blender 478,9,742,6678,Appliances +Scanner 479,6,564,3384,Office +Wireless Mouse 480,3,321,963,Electronics +Printer 481,8,326,2608,Office +Whiteboard 482,4,587,2348,Office +Office Chair 483,7,690,4830,Furniture +Blender 484,10,933,9330,Appliances +Toaster 485,2,336,672,Appliances +Tablet 486,6,725,4350,Electronics +Laptop 487,6,679,4074,Electronics +Coffee Maker 488,6,218,1308,Appliances +Whiteboard 489,10,599,5990,Office +Toaster 490,4,486,1944,Appliances +Projector 491,2,295,590,Office +Wireless Mouse 492,9,990,8910,Electronics +Blender 493,8,195,1560,Appliances +Gaming Keyboard 494,6,285,1710,Electronics +Tablet 495,10,320,3200,Electronics +Bookshelf 496,4,705,2820,Furniture +Refrigerator 497,3,316,948,Appliances +Microwave 498,7,192,1344,Appliances +Office Chair 499,10,400,4000,Furniture +Wireless Mouse 500,5,790,3950,Electronics +Office Chair 501,3,147,441,Furniture +Filing Cabinet 502,5,709,3545,Furniture +Desk 503,9,71,639,Furniture +Filing Cabinet 504,2,300,600,Furniture +Tablet 505,4,433,1732,Electronics +Desk Lamp 506,10,269,2690,Furniture +Coffee Maker 507,2,300,600,Appliances +Desk Lamp 508,10,901,9010,Furniture +Coffee Maker 509,3,887,2661,Appliances +Projector 510,8,34,272,Office +Coffee Maker 511,2,142,284,Appliances +Bookshelf 512,8,617,4936,Furniture +Refrigerator 513,10,856,8560,Appliances +Toaster 514,4,891,3564,Appliances +Whiteboard 515,6,635,3810,Office +LED Monitor 516,7,97,679,Electronics +Keyboard 517,6,555,3330,Electronics +Coffee Maker 518,4,280,1120,Appliances +Whiteboard 519,1,282,282,Office +Scanner 520,3,511,1533,Office +Coffee Maker 521,10,604,6040,Appliances +Coffee Maker 522,9,288,2592,Appliances +Bookshelf 523,4,749,2996,Furniture +Scanner 524,1,472,472,Office +Blender 525,7,962,6734,Appliances +Coffee Maker 526,4,358,1432,Appliances +Microwave 527,4,280,1120,Appliances +Bookshelf 528,9,623,5607,Furniture +Printer 529,9,156,1404,Office +Desk Lamp 530,2,207,414,Furniture +LED Monitor 531,2,323,646,Electronics +Tablet 532,7,514,3598,Electronics +Whiteboard 533,4,164,656,Office +Office Chair 534,6,86,516,Furniture +Bookshelf 535,10,655,6550,Furniture +Toaster 536,9,296,2664,Appliances +Gaming Keyboard 537,2,58,116,Electronics +Filing Cabinet 538,10,877,8770,Furniture +Projector 539,1,785,785,Office +Blender 540,1,782,782,Appliances +Desk 541,9,602,5418,Furniture +Coffee Maker 542,3,417,1251,Appliances +Coffee Maker 543,2,965,1930,Appliances +Office Chair 544,4,109,436,Furniture +Bookshelf 545,9,915,8235,Furniture +Smartphone 546,5,23,115,Electronics +Projector 547,6,761,4566,Office +Bookshelf 548,5,577,2885,Furniture +Whiteboard 549,2,1003,2006,Office +Desk Lamp 550,4,896,3584,Furniture +Smartphone 551,3,176,528,Electronics +LED Monitor 552,3,95,285,Electronics +Wireless Mouse 553,6,453,2718,Electronics +Gaming Keyboard 554,1,43,43,Electronics +Projector 555,6,264,1584,Office +Printer 556,6,35,210,Office +Toaster 557,7,842,5894,Appliances +Printer 558,9,942,8478,Office +Refrigerator 559,1,831,831,Appliances +Printer 560,9,572,5148,Office +Microwave 561,1,104,104,Appliances +Printer 562,1,139,139,Office +Coffee Maker 563,3,1003,3009,Appliances +Printer 564,4,43,172,Office +Refrigerator 565,3,612,1836,Appliances +Desk 566,5,914,4570,Furniture +Bookshelf 567,5,180,900,Furniture +Bookshelf 568,1,156,156,Furniture +Office Chair 569,10,740,7400,Furniture +Scanner 570,9,629,5661,Office +Projector 571,9,99,891,Office +Refrigerator 572,4,749,2996,Appliances +Bookshelf 573,1,622,622,Furniture +Projector 574,6,182,1092,Office +Blender 575,1,655,655,Appliances +Desk Lamp 576,10,762,7620,Furniture +Projector 577,3,627,1881,Office +Wireless Mouse 578,10,207,2070,Electronics +Refrigerator 579,9,917,8253,Appliances +Projector 580,4,726,2904,Office +Blender 581,2,936,1872,Appliances +Tablet 582,8,82,656,Electronics +Desk 583,4,220,880,Furniture +Wireless Mouse 584,4,126,504,Electronics +LED Monitor 585,10,644,6440,Electronics +Bookshelf 586,6,234,1404,Furniture +Desk 587,10,73,730,Furniture +Scanner 588,10,852,8520,Office +Laptop 589,5,316,1580,Electronics +Desk 590,9,170,1530,Furniture +Refrigerator 591,5,904,4520,Appliances +Blender 592,4,639,2556,Appliances +Printer 593,7,407,2849,Office +Office Chair 594,2,771,1542,Furniture +Keyboard 595,9,961,8649,Electronics +Bookshelf 596,7,358,2506,Furniture +Desk 597,1,204,204,Furniture +Desk Lamp 598,10,680,6800,Furniture +Toaster 599,9,241,2169,Appliances +Refrigerator 600,5,632,3160,Appliances +Blender 601,4,914,3656,Appliances +Printer 602,7,117,819,Office +Keyboard 603,1,157,157,Electronics +Laptop 604,1,59,59,Electronics +Scanner 605,4,359,1436,Office +Desk Lamp 606,2,791,1582,Furniture +Coffee Maker 607,3,614,1842,Appliances +Laptop 608,2,784,1568,Electronics +Laptop 609,6,491,2946,Electronics +Refrigerator 610,3,828,2484,Appliances +Projector 611,3,184,552,Office +Gaming Keyboard 612,8,32,256,Electronics +Toaster 613,2,334,668,Appliances +Filing Cabinet 614,1,603,603,Furniture +Coffee Maker 615,5,611,3055,Appliances +Scanner 616,1,487,487,Office +Whiteboard 617,2,754,1508,Office +Toaster 618,2,334,668,Appliances +Printer 619,10,196,1960,Office +Desk Lamp 620,2,482,964,Furniture +Tablet 621,6,196,1176,Electronics +Headphones 622,3,801,2403,Electronics +Office Chair 623,5,72,360,Furniture +Laptop 624,5,365,1825,Electronics +Projector 625,6,86,516,Office +Headphones 626,4,976,3904,Electronics +Projector 627,9,496,4464,Office +Toaster 628,1,606,606,Appliances +Microwave 629,5,661,3305,Appliances +Bookshelf 630,1,176,176,Furniture +Gaming Keyboard 631,1,75,75,Electronics +Wireless Mouse 632,2,686,1372,Electronics +Scanner 633,10,978,9780,Office +Blender 634,7,626,4382,Appliances +Smartphone 635,4,768,3072,Electronics +Refrigerator 636,3,809,2427,Appliances +Desk Lamp 637,10,926,9260,Furniture +Keyboard 638,2,115,230,Electronics +LED Monitor 639,8,641,5128,Electronics +Blender 640,8,67,536,Appliances +Filing Cabinet 641,6,616,3696,Furniture +Tablet 642,7,177,1239,Electronics +Gaming Keyboard 643,6,109,654,Electronics +Bookshelf 644,10,826,8260,Furniture +Filing Cabinet 645,4,397,1588,Furniture +Coffee Maker 646,10,245,2450,Appliances +LED Monitor 647,2,529,1058,Electronics +Desk Lamp 648,9,804,7236,Furniture +Gaming Keyboard 649,3,887,2661,Electronics +Whiteboard 650,8,561,4488,Office +Bookshelf 651,2,931,1862,Furniture +Scanner 652,9,885,7965,Office +Scanner 653,1,290,290,Office +Microwave 654,10,290,2900,Appliances +Microwave 655,9,344,3096,Appliances +Projector 656,3,315,945,Office +Desk 657,10,227,2270,Furniture +Toaster 658,2,735,1470,Appliances +Filing Cabinet 659,9,185,1665,Furniture +Desk Lamp 660,5,916,4580,Furniture +LED Monitor 661,6,64,384,Electronics +Office Chair 662,2,869,1738,Furniture +Wireless Mouse 663,9,460,4140,Electronics +Toaster 664,7,558,3906,Appliances +Blender 665,3,234,702,Appliances +Gaming Keyboard 666,5,91,455,Electronics +Whiteboard 667,4,908,3632,Office +Toaster 668,3,45,135,Appliances +Laptop 669,10,536,5360,Electronics +Printer 670,2,955,1910,Office +Blender 671,4,129,516,Appliances +Coffee Maker 672,4,884,3536,Appliances +Keyboard 673,3,761,2283,Electronics +Projector 674,3,83,249,Office +Toaster 675,5,542,2710,Appliances +Office Chair 676,4,745,2980,Furniture +Toaster 677,1,448,448,Appliances +Scanner 678,8,491,3928,Office +Headphones 679,8,327,2616,Electronics +Blender 680,6,915,5490,Appliances +Toaster 681,7,491,3437,Appliances +Whiteboard 682,3,237,711,Office +Bookshelf 683,9,946,8514,Furniture +Projector 684,4,45,180,Office +Headphones 685,7,549,3843,Electronics +Blender 686,9,319,2871,Appliances +Keyboard 687,4,780,3120,Electronics +Whiteboard 688,7,693,4851,Office +Scanner 689,6,292,1752,Office +Projector 690,6,783,4698,Office +Keyboard 691,2,447,894,Electronics +LED Monitor 692,8,186,1488,Electronics +Desk Lamp 693,5,202,1010,Furniture +Projector 694,5,711,3555,Office +Whiteboard 695,1,489,489,Office +Coffee Maker 696,7,800,5600,Appliances +Projector 697,5,742,3710,Office +Gaming Keyboard 698,2,139,278,Electronics +Toaster 699,7,655,4585,Appliances +Office Chair 700,5,712,3560,Furniture +Scanner 701,7,339,2373,Office +Toaster 702,3,611,1833,Appliances +Blender 703,7,391,2737,Appliances +Tablet 704,6,23,138,Electronics +Printer 705,10,829,8290,Office +Blender 706,3,615,1845,Appliances +Printer 707,4,606,2424,Office +Headphones 708,4,204,816,Electronics +Bookshelf 709,5,642,3210,Furniture +Scanner 710,6,657,3942,Office +Desk Lamp 711,8,290,2320,Furniture +Desk Lamp 712,1,311,311,Furniture +Laptop 713,8,296,2368,Electronics +Filing Cabinet 714,8,964,7712,Furniture +Whiteboard 715,1,92,92,Office +Scanner 716,9,625,5625,Office +Scanner 717,7,445,3115,Office +Gaming Keyboard 718,2,275,550,Electronics +Coffee Maker 719,6,826,4956,Appliances +Keyboard 720,10,374,3740,Electronics +Whiteboard 721,8,509,4072,Office +Toaster 722,5,36,180,Appliances +LED Monitor 723,6,229,1374,Electronics +Microwave 724,3,356,1068,Appliances +Keyboard 725,4,426,1704,Electronics +Coffee Maker 726,8,742,5936,Appliances +Filing Cabinet 727,1,837,837,Furniture +Smartphone 728,1,551,551,Electronics +Office Chair 729,10,210,2100,Furniture +Whiteboard 730,9,137,1233,Office +Office Chair 731,4,65,260,Furniture +LED Monitor 732,7,744,5208,Electronics +Toaster 733,8,71,568,Appliances +Filing Cabinet 734,6,423,2538,Furniture +Headphones 735,9,647,5823,Electronics +Microwave 736,4,54,216,Appliances +Coffee Maker 737,1,844,844,Appliances +Printer 738,10,758,7580,Office +Office Chair 739,1,847,847,Furniture +Tablet 740,10,603,6030,Electronics +Microwave 741,5,518,2590,Appliances +Printer 742,10,292,2920,Office +Scanner 743,4,893,3572,Office +Bookshelf 744,5,595,2975,Furniture +Coffee Maker 745,6,956,5736,Appliances +Printer 746,6,572,3432,Office +Bookshelf 747,3,478,1434,Furniture +Coffee Maker 748,9,964,8676,Appliances +Toaster 749,2,921,1842,Appliances +Headphones 750,8,607,4856,Electronics +Projector 751,1,43,43,Office +Scanner 752,3,480,1440,Office +Desk 753,4,642,2568,Furniture +Projector 754,3,468,1404,Office +Desk Lamp 755,1,68,68,Furniture +Refrigerator 756,4,301,1204,Appliances +Microwave 757,3,38,114,Appliances +Desk 758,3,414,1242,Furniture +LED Monitor 759,4,907,3628,Electronics +Headphones 760,9,90,810,Electronics +Filing Cabinet 761,5,721,3605,Furniture +Projector 762,3,290,870,Office +Desk Lamp 763,4,489,1956,Furniture +Toaster 764,4,229,916,Appliances +Scanner 765,8,162,1296,Office +Printer 766,6,659,3954,Office +Wireless Mouse 767,3,938,2814,Electronics +Toaster 768,1,514,514,Appliances +Smartphone 769,3,104,312,Electronics +Filing Cabinet 770,10,849,8490,Furniture +Tablet 771,9,854,7686,Electronics +Wireless Mouse 772,7,746,5222,Electronics +Projector 773,8,224,1792,Office +Smartphone 774,3,504,1512,Electronics +Headphones 775,10,817,8170,Electronics +Coffee Maker 776,4,448,1792,Appliances +Scanner 777,4,1009,4036,Office +Projector 778,8,274,2192,Office +LED Monitor 779,9,351,3159,Electronics +Desk 780,3,372,1116,Furniture +Printer 781,10,599,5990,Office +Desk Lamp 782,3,849,2547,Furniture +Office Chair 783,4,79,316,Furniture +Coffee Maker 784,7,222,1554,Appliances +Whiteboard 785,9,672,6048,Office +Whiteboard 786,7,855,5985,Office +Coffee Maker 787,3,783,2349,Appliances +Office Chair 788,4,176,704,Furniture +Smartphone 789,1,532,532,Electronics +Desk Lamp 790,3,574,1722,Furniture +Coffee Maker 791,1,1017,1017,Appliances +Bookshelf 792,2,472,944,Furniture +Projector 793,10,356,3560,Office +Office Chair 794,7,527,3689,Furniture +Filing Cabinet 795,10,148,1480,Furniture +Desk Lamp 796,3,315,945,Furniture +Whiteboard 797,3,554,1662,Office +Desk 798,1,875,875,Furniture +Coffee Maker 799,7,225,1575,Appliances +Headphones 800,2,190,380,Electronics +Laptop 801,7,298,2086,Electronics +Desk 802,5,786,3930,Furniture +LED Monitor 803,2,71,142,Electronics +Bookshelf 804,8,785,6280,Furniture +Desk 805,9,94,846,Furniture +Keyboard 806,4,61,244,Electronics +Refrigerator 807,2,514,1028,Appliances +Blender 808,1,376,376,Appliances +Laptop 809,8,856,6848,Electronics +Smartphone 810,9,191,1719,Electronics +Printer 811,3,426,1278,Office +Refrigerator 812,5,583,2915,Appliances +Filing Cabinet 813,1,1014,1014,Furniture +Office Chair 814,4,172,688,Furniture +Scanner 815,8,535,4280,Office +Filing Cabinet 816,4,825,3300,Furniture +Toaster 817,1,377,377,Appliances +Desk 818,10,325,3250,Furniture +Coffee Maker 819,8,897,7176,Appliances +Gaming Keyboard 820,8,838,6704,Electronics +Filing Cabinet 821,3,29,87,Furniture +Office Chair 822,7,511,3577,Furniture +Headphones 823,10,799,7990,Electronics +Office Chair 824,2,951,1902,Furniture +Laptop 825,1,580,580,Electronics +Gaming Keyboard 826,3,420,1260,Electronics +Office Chair 827,2,801,1602,Furniture +Keyboard 828,5,715,3575,Electronics +Coffee Maker 829,8,83,664,Appliances +Microwave 830,7,636,4452,Appliances +Laptop 831,5,295,1475,Electronics +Keyboard 832,2,541,1082,Electronics +Office Chair 833,5,701,3505,Furniture +Laptop 834,10,879,8790,Electronics +Toaster 835,10,620,6200,Appliances +Headphones 836,8,660,5280,Electronics +Toaster 837,7,431,3017,Appliances +Scanner 838,4,400,1600,Office +Filing Cabinet 839,6,295,1770,Furniture +Desk 840,6,959,5754,Furniture +Filing Cabinet 841,6,885,5310,Furniture +Refrigerator 842,4,302,1208,Appliances +Microwave 843,1,576,576,Appliances +Tablet 844,5,844,4220,Electronics +Whiteboard 845,4,737,2948,Office +Desk 846,1,236,236,Furniture +Desk 847,7,900,6300,Furniture +Projector 848,7,113,791,Office +Desk 849,1,820,820,Furniture +Blender 850,6,205,1230,Appliances +Blender 851,6,542,3252,Appliances +Office Chair 852,7,447,3129,Furniture +Coffee Maker 853,1,394,394,Appliances +Smartphone 854,3,534,1602,Electronics +Projector 855,10,650,6500,Office +Blender 856,3,707,2121,Appliances +Tablet 857,9,997,8973,Electronics +Wireless Mouse 858,7,936,6552,Electronics +Desk Lamp 859,8,297,2376,Furniture +Coffee Maker 860,8,311,2488,Appliances +Desk 861,8,1007,8056,Furniture +Scanner 862,3,887,2661,Office +Bookshelf 863,7,301,2107,Furniture +Refrigerator 864,9,895,8055,Appliances +Printer 865,2,975,1950,Office +Whiteboard 866,10,819,8190,Office +Printer 867,10,240,2400,Office +Refrigerator 868,5,809,4045,Appliances +Blender 869,3,680,2040,Appliances +Projector 870,1,321,321,Office +LED Monitor 871,8,702,5616,Electronics +Printer 872,10,472,4720,Office +Smartphone 873,10,454,4540,Electronics +Desk 874,8,835,6680,Furniture +Refrigerator 875,3,870,2610,Appliances +Bookshelf 876,6,121,726,Furniture +Toaster 877,4,587,2348,Appliances +Tablet 878,8,955,7640,Electronics +Bookshelf 879,6,481,2886,Furniture +Microwave 880,3,450,1350,Appliances +Coffee Maker 881,2,395,790,Appliances +Toaster 882,5,276,1380,Appliances +Office Chair 883,10,110,1100,Furniture +Laptop 884,4,587,2348,Electronics +Wireless Mouse 885,4,418,1672,Electronics +Office Chair 886,5,488,2440,Furniture +Coffee Maker 887,8,55,440,Appliances +Gaming Keyboard 888,9,424,3816,Electronics +Headphones 889,2,653,1306,Electronics +Projector 890,1,981,981,Office +Microwave 891,1,150,150,Appliances +Whiteboard 892,3,972,2916,Office +Bookshelf 893,1,30,30,Furniture +Bookshelf 894,6,294,1764,Furniture +Whiteboard 895,5,188,940,Office +Wireless Mouse 896,7,667,4669,Electronics +Wireless Mouse 897,7,889,6223,Electronics +Office Chair 898,2,836,1672,Furniture +Filing Cabinet 899,1,382,382,Furniture +Refrigerator 900,10,725,7250,Appliances +Coffee Maker 901,1,189,189,Appliances +Keyboard 902,6,128,768,Electronics +Desk 903,8,478,3824,Furniture +Projector 904,1,75,75,Office +Headphones 905,1,825,825,Electronics +Toaster 906,3,73,219,Appliances +Projector 907,2,820,1640,Office +Whiteboard 908,5,289,1445,Office +Smartphone 909,5,994,4970,Electronics +LED Monitor 910,3,363,1089,Electronics +Toaster 911,10,168,1680,Appliances +Coffee Maker 912,6,338,2028,Appliances +Desk 913,6,306,1836,Furniture +LED Monitor 914,7,894,6258,Electronics +Filing Cabinet 915,8,812,6496,Furniture +Projector 916,4,608,2432,Office +Blender 917,2,104,208,Appliances +Bookshelf 918,2,245,490,Furniture +Laptop 919,4,675,2700,Electronics +Bookshelf 920,1,312,312,Furniture +Refrigerator 921,6,650,3900,Appliances +Whiteboard 922,8,620,4960,Office +Headphones 923,1,363,363,Electronics +Office Chair 924,7,688,4816,Furniture +Desk 925,6,75,450,Furniture +LED Monitor 926,10,325,3250,Electronics +Coffee Maker 927,8,572,4576,Appliances +Keyboard 928,5,534,2670,Electronics +Laptop 929,1,265,265,Electronics +Coffee Maker 930,1,940,940,Appliances +Tablet 931,3,199,597,Electronics +Printer 932,1,297,297,Office +Smartphone 933,9,596,5364,Electronics +Wireless Mouse 934,5,300,1500,Electronics +Projector 935,6,678,4068,Office +Headphones 936,3,174,522,Electronics +Printer 937,9,103,927,Office +Desk 938,9,897,8073,Furniture +Keyboard 939,2,230,460,Electronics +LED Monitor 940,7,424,2968,Electronics +Filing Cabinet 941,6,89,534,Furniture +Printer 942,6,422,2532,Office +Filing Cabinet 943,5,530,2650,Furniture +Keyboard 944,4,256,1024,Electronics +Microwave 945,6,762,4572,Appliances +Tablet 946,9,182,1638,Electronics +Desk 947,4,890,3560,Furniture +Office Chair 948,1,262,262,Furniture +Tablet 949,9,260,2340,Electronics +LED Monitor 950,3,219,657,Electronics +Blender 951,10,616,6160,Appliances +Headphones 952,9,806,7254,Electronics +Refrigerator 953,8,903,7224,Appliances +Printer 954,9,61,549,Office +LED Monitor 955,9,764,6876,Electronics +Tablet 956,6,642,3852,Electronics +Smartphone 957,3,952,2856,Electronics +Coffee Maker 958,8,850,6800,Appliances +Laptop 959,1,604,604,Electronics +Scanner 960,6,309,1854,Office +Coffee Maker 961,9,401,3609,Appliances +Printer 962,10,978,9780,Office +Filing Cabinet 963,6,1013,6078,Furniture +Refrigerator 964,9,940,8460,Appliances +Toaster 965,9,540,4860,Appliances +LED Monitor 966,10,966,9660,Electronics +Laptop 967,1,605,605,Electronics +Desk 968,9,50,450,Furniture +Desk 969,9,975,8775,Furniture +Keyboard 970,4,837,3348,Electronics +Scanner 971,4,621,2484,Office +Keyboard 972,9,594,5346,Electronics +Desk 973,4,447,1788,Furniture +Printer 974,1,897,897,Office +Whiteboard 975,5,380,1900,Office +Headphones 976,2,65,130,Electronics +Coffee Maker 977,4,433,1732,Appliances +LED Monitor 978,4,259,1036,Electronics +Microwave 979,4,112,448,Appliances +Bookshelf 980,1,691,691,Furniture +Filing Cabinet 981,4,631,2524,Furniture +Refrigerator 982,1,840,840,Appliances +Gaming Keyboard 983,2,560,1120,Electronics +Scanner 984,1,423,423,Office +Whiteboard 985,6,422,2532,Office +Projector 986,5,403,2015,Office +Printer 987,9,509,4581,Office +LED Monitor 988,1,707,707,Electronics +Bookshelf 989,7,527,3689,Furniture +Refrigerator 990,3,624,1872,Appliances +Printer 991,1,340,340,Office +Toaster 992,6,224,1344,Appliances +Desk 993,5,87,435,Furniture +Whiteboard 994,9,579,5211,Office +Blender 995,7,803,5621,Appliances +Headphones 996,9,195,1755,Electronics +Wireless Mouse 997,7,362,2534,Electronics +LED Monitor 998,3,693,2079,Electronics +Microwave 999,5,921,4605,Appliances +Coffee Maker 1000,6,24,144,Appliances \ No newline at end of file diff --git a/apps/web/types/store.types.ts b/apps/web/types/store.types.ts index 565f2d1de..9a901e47a 100644 --- a/apps/web/types/store.types.ts +++ b/apps/web/types/store.types.ts @@ -28,6 +28,12 @@ export interface IPlanMeta { ALTERNATE_COLUMN_KEYS?: boolean; DATA_SEEDING?: boolean; MULTI_SELECT_VALUES?: boolean; + CUSTOM_CODE_VALIDATOR?: boolean; + LENGTH_VALIDATION?: boolean; + RANGE_VALIDATION?: boolean; + DIGITS_VALIDATION?: boolean; + MULTIPLE_COLUMNS_COMBINATION_UNIQUE_VALIDATION?: boolean; + WEBHOOK_RETRY_SETTINGS?: boolean; } export interface IPlanMetaContext { diff --git a/apps/widget/public/full-logo-light.png b/apps/widget/public/full-logo-light.png new file mode 100644 index 000000000..3838cea4a Binary files /dev/null and b/apps/widget/public/full-logo-light.png differ diff --git a/apps/widget/src/components/Common/Footer/Footer.tsx b/apps/widget/src/components/Common/Footer/Footer.tsx index 8850de555..c5ab9232b 100644 --- a/apps/widget/src/components/Common/Footer/Footer.tsx +++ b/apps/widget/src/components/Common/Footer/Footer.tsx @@ -153,7 +153,7 @@ export function Footer({ {importConfig && importConfig.showBranding === true ? ( - Powered by + Powered by Impler ) : ( diff --git a/apps/widget/src/components/Common/Footer/Styles.tsx b/apps/widget/src/components/Common/Footer/Styles.tsx index 7e85bfed7..5ae961788 100644 --- a/apps/widget/src/components/Common/Footer/Styles.tsx +++ b/apps/widget/src/components/Common/Footer/Styles.tsx @@ -1,5 +1,4 @@ /* eslint-disable @typescript-eslint/no-unused-vars, no-unused-vars */ -import { colors } from '@config'; import { createStyles, MantineTheme } from '@mantine/core'; export const getWrapperStyles = (theme: MantineTheme): React.CSSProperties => ({ @@ -11,15 +10,17 @@ export const getWrapperStyles = (theme: MantineTheme): React.CSSProperties => ({ }); export const getPoweredByLinkStyles = (theme: MantineTheme): React.CSSProperties => ({ - color: colors.black, textDecoration: 'none', + display: 'flex', + alignItems: 'center', + gap: theme.spacing.xs, }); export const getImplerImageStyles = (theme: MantineTheme): React.CSSProperties => ({ display: 'inline', - marginLeft: 2, height: 17, - marginTop: 1, + filter: 'var(--logo-filter, invert(0.5) brightness(1.5))', + transition: 'filter 0.2s ease', }); export default createStyles((theme: MantineTheme): Record => { diff --git a/apps/widget/src/components/widget/Phases/Phase1/DirectEntryView/DirectEntryView.tsx b/apps/widget/src/components/widget/Phases/Phase1/DirectEntryView/DirectEntryView.tsx index 03720a907..e7359ebfa 100644 --- a/apps/widget/src/components/widget/Phases/Phase1/DirectEntryView/DirectEntryView.tsx +++ b/apps/widget/src/components/widget/Phases/Phase1/DirectEntryView/DirectEntryView.tsx @@ -67,7 +67,7 @@ export function DirectEntryView({ {columns?.map((column) => ( - + {column.name} ))} diff --git a/apps/widget/src/components/widget/Phases/Phase3/Phase3.tsx b/apps/widget/src/components/widget/Phases/Phase3/Phase3.tsx index 59aecf7dc..0c64375ac 100644 --- a/apps/widget/src/components/widget/Phases/Phase3/Phase3.tsx +++ b/apps/widget/src/components/widget/Phases/Phase3/Phase3.tsx @@ -119,23 +119,21 @@ export function Phase3(props: IPhase3Props) { ]} /> - {isFindAndReplaceAvailable - ? null // Render nothing if available - : !hideFindAndReplaceButton && ( - - - - )} + {!hideFindAndReplaceButton && ( + + + + )} {!hideDeleteButton && (