CrOS Settings: Cleanup non-Jelly assets for nearby share pulse animation
Jelly has launched and the light/dark mode-specific assets can be
removed in favor of the Jelly versions.
Light mode: http://screen/3FRT57PsEdnHQwf.png
Dark mode: http://screen/4LiRDmEZc6NNTMy.png
Bug: b:280659599, b:281116317, b:279623883
Test: Manually verify UI
Change-Id: I9b19948caffd43859e62a28712a5b5e317f9782b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5179621
Reviewed-by: Crisrael Lucero <crisrael@google.com>
Commit-Queue: Wes Okuhara <wesokuhara@google.com>
Cr-Commit-Position: refs/heads/main@{#1244906}
diff --git a/chrome/browser/resources/ash/settings/nearby_share_page/nearby_share_high_visibility_page.html b/chrome/browser/resources/ash/settings/nearby_share_page/nearby_share_high_visibility_page.html
index 0952fa6..c9e694b2 100644
--- a/chrome/browser/resources/ash/settings/nearby_share_page/nearby_share_high_visibility_page.html
+++ b/chrome/browser/resources/ash/settings/nearby_share_page/nearby_share_high_visibility_page.html
@@ -122,11 +122,7 @@
cancel-button-label="$i18n{cancel}"
close-only="[[getErrorTitle_(errorState_)]]">
<div id="content" slot="content">
- <!-- TODO(b/279623883): Remove dark mode handling. -->
- <iron-media-query query="(prefers-color-scheme: dark)"
- query-matches="{{isDarkModeActive_}}">
- </iron-media-query>
- <cros-lottie-renderer id="animation" asset-url="[[getAnimationUrl_(isDarkModeActive_, isJellyEnabled_)]]"
+ <cros-lottie-renderer id="animation" asset-url="[[getAnimationUrl_()]]"
autoplay dynamic aria-hidden>
</cros-lottie-renderer>
<div id="help">
diff --git a/chrome/browser/resources/ash/settings/nearby_share_page/nearby_share_high_visibility_page.ts b/chrome/browser/resources/ash/settings/nearby_share_page/nearby_share_high_visibility_page.ts
index 76bc578..30bc27ad 100644
--- a/chrome/browser/resources/ash/settings/nearby_share_page/nearby_share_high_visibility_page.ts
+++ b/chrome/browser/resources/ash/settings/nearby_share_page/nearby_share_high_visibility_page.ts
@@ -12,13 +12,11 @@
import 'chrome://resources/cros_components/lottie_renderer/lottie-renderer.js';
import 'chrome://resources/polymer/v3_0/iron-icon/iron-icon.js';
import 'chrome://resources/cr_components/localized_link/localized_link.js';
-import 'chrome://resources/polymer/v3_0/iron-media-query/iron-media-query.js';
import '/shared/nearby_page_template.js';
import '/shared/nearby_shared_icons.html.js';
import {RegisterReceiveSurfaceResult} from '/shared/nearby_share.mojom-webui.js';
import {I18nMixin} from 'chrome://resources/cr_elements/i18n_mixin.js';
-import {loadTimeData} from 'chrome://resources/js/load_time_data.js';
import {PolymerElement} from 'chrome://resources/polymer/v3_0/polymer/polymer_bundled.min.js';
import {getTemplate} from './nearby_share_high_visibility_page.html.js';
@@ -33,22 +31,10 @@
SOMETHING_WRONG = 3,
}
-// TODO(TODO(b/279623883): Remove dark mode handling.
-
/**
- * The pulse animation asset URL for light mode.
+ * The pulse animation asset URL.
*/
-const PULSE_ANIMATION_URL_LIGHT = 'nearby_share_pulse_animation_light.json';
-
-/**
- * The pulse animation asset URL for dark mode.
- */
-const PULSE_ANIMATION_URL_DARK = 'nearby_share_pulse_animation_dark.json';
-
-/**
- * The pulse animation asset URL for jelly mode.
- */
-const PULSE_ANIMATION_URL_JELLY = 'nearby_share_pulse_animation_jelly.json';
+const PULSE_ANIMATION_URL = 'nearby_share_pulse_animation.json';
const NearbyShareHighVisibilityPageElementBase = I18nMixin(PolymerElement);
@@ -113,26 +99,6 @@
'computeErrorState_(shutoffTimestamp, remainingTimeInSeconds_,' +
'registerResult, nearbyProcessStopped, startAdvertisingFailed)',
},
-
- /**
- * Whether the high visibility page is being rendered in dark mode.
- */
- isDarkModeActive_: {
- type: Boolean,
- value: false,
- },
-
- /**
- * Return true if the Jelly feature flag is enabled.
- */
- isJellyEnabled_: {
- type: Boolean,
- readOnly: true,
- value() {
- return loadTimeData.valueExists('isJellyEnabled') &&
- loadTimeData.getBoolean('isJellyEnabled');
- },
- },
};
}
@@ -142,8 +108,6 @@
shutoffTimestamp: number;
startAdvertisingFailed: boolean;
private errorState_: NearbyVisibilityErrorState|null;
- private isDarkModeActive_: boolean;
- private isJellyEnabled_: boolean;
private remainingTimeInSeconds_: number;
private remainingTimeIntervalId_: number;
@@ -287,14 +251,7 @@
* pulsing background animation.
*/
private getAnimationUrl_(): string {
- if (this.isJellyEnabled_) {
- return PULSE_ANIMATION_URL_JELLY;
- }
-
- // TODO(b/279623883): Clean up dark mode logic and duplicate assets after
- // Jelly is launched.
- return this.isDarkModeActive_ ? PULSE_ANIMATION_URL_DARK :
- PULSE_ANIMATION_URL_LIGHT;
+ return PULSE_ANIMATION_URL;
}
}
diff --git a/chrome/browser/resources/nearby_share/nearby_discovery_page.html b/chrome/browser/resources/nearby_share/nearby_discovery_page.html
index eebacce..589bdd4 100644
--- a/chrome/browser/resources/nearby_share/nearby_discovery_page.html
+++ b/chrome/browser/resources/nearby_share/nearby_discovery_page.html
@@ -229,11 +229,7 @@
cancel-button-event-name="close"
close-only="[[errorTitle_]]">
<div id="centerContent" slot="content">
- <!-- TODO(b/279623883): Remove dark mode handling. -->
- <iron-media-query query="(prefers-color-scheme: dark)"
- query-matches="{{isDarkModeActive_}}">
- </iron-media-query>
- <cros-lottie-renderer id="animation" asset-url="[[getAnimationUrl_(isDarkModeActive_, isJellyEnabled_)]]"
+ <cros-lottie-renderer id="animation" asset-url="[[getAnimationUrl_()]]"
autoplay dynamic aria-hidden>
</cros-lottie-renderer>
<div id="process-row">
diff --git a/chrome/browser/resources/nearby_share/nearby_discovery_page.ts b/chrome/browser/resources/nearby_share/nearby_discovery_page.ts
index 296fb30..4630785 100644
--- a/chrome/browser/resources/nearby_share/nearby_discovery_page.ts
+++ b/chrome/browser/resources/nearby_share/nearby_discovery_page.ts
@@ -43,26 +43,10 @@
return a.high === b.high && a.low === b.low;
}
-// TODO(TODO(b/279623883): Remove dark mode handling.
-
/**
- * The pulse animation asset URL for light mode.
+ * The pulse animation asset URL.
*/
-const PULSE_ANIMATION_URL_LIGHT: string =
- 'nearby_share_pulse_animation_light.json';
-
-/**
- * The pulse animation asset URL for dark mode.
- */
-const PULSE_ANIMATION_URL_DARK: string =
- 'nearby_share_pulse_animation_dark.json';
-
-/**
- * The pulse animation asset URL for jelly mode.
- */
-const PULSE_ANIMATION_URL_JELLY: string =
- 'nearby_share_pulse_animation_jelly.json';
-
+const PULSE_ANIMATION_URL: string = 'nearby_share_pulse_animation.json';
const NearbyDiscoveryPageElementBase = I18nMixin(PolymerElement);
@@ -160,26 +144,6 @@
},
/**
- * Whether the discovery page is being rendered in dark mode.
- */
- isDarkModeActive_: {
- type: Boolean,
- value: false,
- },
-
- /**
- * Return true if the Jelly feature flag is enabled.
- */
- isJellyEnabled_: {
- type: Boolean,
- readOnly: true,
- value() {
- return loadTimeData.valueExists('isJellyEnabled') &&
- loadTimeData.getBoolean('isJellyEnabled');
- },
- },
-
- /**
* Return true if the Nearby Share Self Share feature flag is enabled.
*/
isSelfShareEnabled: {
@@ -204,8 +168,6 @@
private nonSelfShareTargets_: ShareTarget[];
private errorTitle_: string|null;
private errorDescription_: string|null;
- private isDarkModeActive_: boolean;
- private isJellyEnabled_: boolean;
private mojoEventTarget_: ShareTargetListenerCallbackRouter|null = null;
private listenerIds_: number[]|null = null;
@@ -654,14 +616,7 @@
* pulsing background animation
*/
private getAnimationUrl_(): string {
- if (this.isJellyEnabled_) {
- return PULSE_ANIMATION_URL_JELLY;
- }
-
- // TODO(b/279623883): Clean up dark mode logic and duplicate assets after
- // Jelly is launched.
- return this.isDarkModeActive_ ? PULSE_ANIMATION_URL_DARK :
- PULSE_ANIMATION_URL_LIGHT;
+ return PULSE_ANIMATION_URL;
}
/**
diff --git a/chrome/browser/resources/nearby_share/shared/BUILD.gn b/chrome/browser/resources/nearby_share/shared/BUILD.gn
index 1cccbb6b..e356f80d 100644
--- a/chrome/browser/resources/nearby_share/shared/BUILD.gn
+++ b/chrome/browser/resources/nearby_share/shared/BUILD.gn
@@ -67,8 +67,6 @@
input_files_base_dir = rebase_path(".", "//")
input_files = [
"nearby_share_progress_bar.json",
- "nearby_share_pulse_animation_dark.json",
- "nearby_share_pulse_animation_light.json",
- "nearby_share_pulse_animation_jelly.json",
+ "nearby_share_pulse_animation.json",
]
}
diff --git a/chrome/browser/resources/nearby_share/shared/nearby_share_pulse_animation_jelly.json b/chrome/browser/resources/nearby_share/shared/nearby_share_pulse_animation.json
similarity index 100%
rename from chrome/browser/resources/nearby_share/shared/nearby_share_pulse_animation_jelly.json
rename to chrome/browser/resources/nearby_share/shared/nearby_share_pulse_animation.json
diff --git a/chrome/browser/resources/nearby_share/shared/nearby_share_pulse_animation_dark.json b/chrome/browser/resources/nearby_share/shared/nearby_share_pulse_animation_dark.json
deleted file mode 100644
index 77c1f76..0000000
--- a/chrome/browser/resources/nearby_share/shared/nearby_share_pulse_animation_dark.json
+++ /dev/null
@@ -1 +0,0 @@
-{"v":"5.7.4","fr":60,"ip":0,"op":189,"w":783,"h":257,"nm":"ripple","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Layer 2 Outlines","sr":1,"ks":{"o":{"a":0,"k":10,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[391.562,256.875,0],"ix":2,"l":2},"a":{"a":0,"k":[64,64,0],"ix":1,"l":2},"s":{"a":0,"k":[303,303,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[13.254,0],[0,-13.255],[0,0],[0,0]],"o":[[-13.255,0],[0,0],[0,0],[0,-13.255]],"v":[[0,-12],[-24,12],[2.187,12],[24,12]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.541176470588,0.705882352941,0.972549019608,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":[63.999,52],"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":1440,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Layer 1 Outlines 3","sr":1,"ks":{"o":{"a":0,"k":10,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[391.562,256.875,0],"ix":2,"l":2},"a":{"a":0,"k":[64,64,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4,0.4],"y":[1,1,1]},"o":{"x":[0.001,0.001,0.001],"y":[0,0,0]},"t":58,"s":[113,113,100]},{"t":189,"s":[352,352,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[34.518,0],[0,-34.518]],"o":[[0,-34.518],[-34.519,0],[0,0]],"v":[[62.5,31.25],[0,-31.25],[-62.5,31.25]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.541176470588,0.705882352941,0.972549019608,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.001],"y":[0]},"t":58,"s":[3]},{"t":189,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[64,32.75],"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":59,"op":1496,"st":56,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Layer 1 Outlines 2","sr":1,"ks":{"o":{"a":0,"k":10,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[391.562,256.875,0],"ix":2,"l":2},"a":{"a":0,"k":[64,64,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4,0.4],"y":[1,1,1]},"o":{"x":[0.001,0.001,0.001],"y":[0,0,0]},"t":30,"s":[113,113,100]},{"t":161,"s":[352,352,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[34.518,0],[0,-34.518]],"o":[[0,-34.518],[-34.519,0],[0,0]],"v":[[62.5,31.25],[0,-31.25],[-62.5,31.25]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.541176470588,0.705882352941,0.972549019608,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.001],"y":[0]},"t":30,"s":[3]},{"t":161,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[64,32.75],"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":31,"op":1468,"st":28,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Layer 1 Outlines","sr":1,"ks":{"o":{"a":0,"k":10,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[391.562,256.875,0],"ix":2,"l":2},"a":{"a":0,"k":[64,64,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4,0.4],"y":[1,1,1]},"o":{"x":[0.001,0.001,0.001],"y":[0,0,0]},"t":2,"s":[113,113,100]},{"t":133,"s":[352,352,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[34.518,0],[0,-34.518]],"o":[[0,-34.518],[-34.519,0],[0,0]],"v":[[62.5,31.25],[0,-31.25],[-62.5,31.25]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.541176470588,0.705882352941,0.972549019608,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.001],"y":[0]},"t":2,"s":[3]},{"t":133,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[64,32.75],"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":3,"op":1440,"st":0,"bm":0}],"markers":[]}
\ No newline at end of file
diff --git a/chrome/browser/resources/nearby_share/shared/nearby_share_pulse_animation_light.json b/chrome/browser/resources/nearby_share/shared/nearby_share_pulse_animation_light.json
deleted file mode 100644
index 0a2d4c1..0000000
--- a/chrome/browser/resources/nearby_share/shared/nearby_share_pulse_animation_light.json
+++ /dev/null
@@ -1 +0,0 @@
-{"v":"5.6.4","fr":60,"ip":0,"op":189,"w":783,"h":257,"nm":"ripple","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Layer 2 Outlines","sr":1,"ks":{"o":{"a":0,"k":10,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[391.562,256.875,0],"ix":2},"a":{"a":0,"k":[64,64,0],"ix":1},"s":{"a":0,"k":[303,303,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[13.254,0],[0,-13.255],[0,0],[0,0]],"o":[[-13.255,0],[0,0],[0,0],[0,-13.255]],"v":[[0,-12],[-24,12],[2.187,12],[24,12]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.258999992819,0.522000002394,0.957000014361,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":[63.999,52],"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":1440,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Layer 1 Outlines 3","sr":1,"ks":{"o":{"a":0,"k":10,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[391.562,256.875,0],"ix":2},"a":{"a":0,"k":[64,64,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4,0.4],"y":[1,1,1]},"o":{"x":[0.001,0.001,0.001],"y":[0,0,0]},"t":58,"s":[113,113,100]},{"t":189,"s":[352,352,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[34.518,0],[0,-34.518]],"o":[[0,-34.518],[-34.519,0],[0,0]],"v":[[62.5,31.25],[0,-31.25],[-62.5,31.25]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.258999992819,0.522000002394,0.957000014361,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.001],"y":[0]},"t":58,"s":[3]},{"t":189,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[64,32.75],"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":59,"op":1496,"st":56,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Layer 1 Outlines 2","sr":1,"ks":{"o":{"a":0,"k":10,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[391.562,256.875,0],"ix":2},"a":{"a":0,"k":[64,64,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4,0.4],"y":[1,1,1]},"o":{"x":[0.001,0.001,0.001],"y":[0,0,0]},"t":30,"s":[113,113,100]},{"t":161,"s":[352,352,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[34.518,0],[0,-34.518]],"o":[[0,-34.518],[-34.519,0],[0,0]],"v":[[62.5,31.25],[0,-31.25],[-62.5,31.25]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.258999992819,0.522000002394,0.957000014361,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.001],"y":[0]},"t":30,"s":[3]},{"t":161,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[64,32.75],"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":31,"op":1468,"st":28,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Layer 1 Outlines","sr":1,"ks":{"o":{"a":0,"k":10,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[391.562,256.875,0],"ix":2},"a":{"a":0,"k":[64,64,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.4,0.4,0.4],"y":[1,1,1]},"o":{"x":[0.001,0.001,0.001],"y":[0,0,0]},"t":2,"s":[113,113,100]},{"t":133,"s":[352,352,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[34.518,0],[0,-34.518]],"o":[[0,-34.518],[-34.519,0],[0,0]],"v":[[62.5,31.25],[0,-31.25],[-62.5,31.25]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.258999992819,0.522000002394,0.957000014361,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.4],"y":[1]},"o":{"x":[0.001],"y":[0]},"t":2,"s":[3]},{"t":133,"s":[0]}],"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[64,32.75],"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":3,"op":1440,"st":0,"bm":0}],"markers":[]}
\ No newline at end of file