勋章权限
This commit is contained in:
102
schoolNewsServ/.bin/mysql/sql/initAchievementData.sql
Normal file
102
schoolNewsServ/.bin/mysql/sql/initAchievementData.sql
Normal file
@@ -0,0 +1,102 @@
|
||||
-- =====================================================
|
||||
-- 初始化资源权限数据
|
||||
-- =====================================================
|
||||
|
||||
-- 等级成就
|
||||
-- V1段:初学者 (0-10小时,每2小时一级)
|
||||
INSERT INTO `tb_achievement` (`id`, `achievement_id`, `name`,`icon`, `description`, `type`, `level`, `condition_type`, `condition_value`, `points`, `order_num`, `deleted`) VALUES
|
||||
('ACH001', 'learning_time_l1_1', '初学者 I', 'v1-icon.svg', '开始学习之旅', 2, 1.1, 1, 0, 5, 1, 0),
|
||||
('ACH002', 'learning_time_l1_2', '初学者 II', 'v1-icon.svg', '累计学习时长达到2小时', 2, 1.2, 1, 2*60*60, 10, 2, 0),
|
||||
('ACH003', 'learning_time_l1_3', '初学者 III', 'v1-icon.svg', '累计学习时长达到4小时', 2, 1.3, 1, 4*60*60, 15, 3, 0),
|
||||
('ACH004', 'learning_time_l1_4', '初学者 IV', 'v1-icon.svg', '累计学习时长达到6小时', 2, 1.4, 1, 6*60*60, 20, 4, 0),
|
||||
('ACH005', 'learning_time_l1_5', '初学者 V', 'v1-icon.svg', '累计学习时长达到10小时', 2, 1.5, 1, 10*60*60, 25, 5, 0),
|
||||
|
||||
-- V2段:勤学者 (10-30小时,每4小时一级)
|
||||
('ACH006', 'learning_time_l2_1', '勤学者 I', 'v2-icon.svg', '累计学习时长达到14小时', 2, 2.1, 1, 14*60*60, 30, 6, 0),
|
||||
('ACH007', 'learning_time_l2_2', '勤学者 II', 'v2-icon.svg', '累计学习时长达到18小时', 2, 2.2, 1, 18*60*60, 35, 7, 0),
|
||||
('ACH008', 'learning_time_l2_3', '勤学者 III', 'v2-icon.svg', '累计学习时长达到22小时', 2, 2.3, 1, 22*60*60, 40, 8, 0),
|
||||
('ACH009', 'learning_time_l2_4', '勤学者 IV', 'v2-icon.svg', '累计学习时长达到26小时', 2, 2.4, 1, 26*60*60, 45, 9, 0),
|
||||
('ACH010', 'learning_time_l2_5', '勤学者 V', 'v2-icon.svg', '累计学习时长达到30小时', 2, 2.5, 1, 30*60*60, 50, 10, 0),
|
||||
|
||||
-- V3段:学习达人 (30-100小时,每14小时一级)
|
||||
('ACH011', 'learning_time_l3_1', '学习达人 I', 'v3-icon.svg', '累计学习时长达到44小时', 2, 3.1, 1, 44*60*60, 60, 11, 0),
|
||||
('ACH012', 'learning_time_l3_2', '学习达人 II', 'v3-icon.svg', '累计学习时长达到58小时', 2, 3.2, 1, 58*60*60, 70, 12, 0),
|
||||
('ACH013', 'learning_time_l3_3', '学习达人 III', 'v3-icon.svg', '累计学习时长达到72小时', 2, 3.3, 1, 72*60*60, 80, 13, 0),
|
||||
('ACH014', 'learning_time_l3_4', '学习达人 IV', 'v3-icon.svg', '累计学习时长达到86小时', 2, 3.4, 1, 86*60*60, 90, 14, 0),
|
||||
('ACH015', 'learning_time_l3_5', '学习达人 V', 'v3-icon.svg', '累计学习时长达到100小时', 2, 3.5, 1, 100*60*60, 100, 15, 0),
|
||||
|
||||
-- V4段:学习狂人 (100-300小时,每40小时一级)
|
||||
('ACH016', 'learning_time_l4_1', '学习狂人 I', 'v4-icon.svg', '累计学习时长达到140小时', 2, 4.1, 1, 140*60*60, 120, 16, 0),
|
||||
('ACH017', 'learning_time_l4_2', '学习狂人 II', 'v4-icon.svg', '累计学习时长达到180小时', 2, 4.2, 1, 180*60*60, 140, 17, 0),
|
||||
('ACH018', 'learning_time_l4_3', '学习狂人 III', 'v4-icon.svg', '累计学习时长达到220小时', 2, 4.3, 1, 220*60*60, 160, 18, 0),
|
||||
('ACH019', 'learning_time_l4_4', '学习狂人 IV', 'v4-icon.svg', '累计学习时长达到260小时', 2, 4.4, 1, 260*60*60, 180, 19, 0),
|
||||
('ACH020', 'learning_time_l4_5', '学习狂人 V', 'v4-icon.svg', '累计学习时长达到300小时', 2, 4.5, 1, 300*60*60, 200, 20, 0),
|
||||
|
||||
-- V5段:学习大师 (300-1000小时,每140小时一级)
|
||||
('ACH021', 'learning_time_l5_1', '学习大师 I', 'v5-icon.svg', '累计学习时长达到440小时', 2, 5.1, 1, 440*60*60, 250, 21, 0),
|
||||
('ACH022', 'learning_time_l5_2', '学习大师 II', 'v5-icon.svg', '累计学习时长达到580小时', 2, 5.2, 1, 580*60*60, 300, 22, 0),
|
||||
('ACH023', 'learning_time_l5_3', '学习大师 III', 'v5-icon.svg', '累计学习时长达到720小时', 2, 5.3, 1, 720*60*60, 350, 23, 0),
|
||||
('ACH024', 'learning_time_l5_4', '学习大师 IV', 'v5-icon.svg', '累计学习时长达到860小时', 2, 5.4, 1, 860*60*60, 400, 24, 0),
|
||||
('ACH025', 'learning_time_l5_5', '学习大师 V', 'v5-icon.svg', '累计学习时长达到1000小时', 2, 5.5, 1, 1000*60*60, 500, 25, 0),
|
||||
|
||||
-- V6段:学习宗师 (1000-2000小时,每200小时一级)
|
||||
('ACH026', 'learning_time_l6_1', '学习宗师 I', 'v6-icon.svg', '累计学习时长达到1200小时', 2, 6.1, 1, 1200*60*60, 600, 26, 0),
|
||||
('ACH027', 'learning_time_l6_2', '学习宗师 II', 'v6-icon.svg', '累计学习时长达到1400小时', 2, 6.2, 1, 1400*60*60, 700, 27, 0),
|
||||
('ACH028', 'learning_time_l6_3', '学习宗师 III', 'v6-icon.svg', '累计学习时长达到1600小时', 2, 6.3, 1, 1600*60*60, 800, 28, 0),
|
||||
('ACH029', 'learning_time_l6_4', '学习宗师 IV', 'v6-icon.svg', '累计学习时长达到1800小时', 2, 6.4, 1, 1800*60*60, 900, 29, 0),
|
||||
('ACH030', 'learning_time_l6_5', '学习宗师 V', 'v6-icon.svg', '累计学习时长达到2000小时', 2, 6.5, 1, 2000*60*60, 1000, 30, 0);
|
||||
|
||||
-- 为所有成就创建资源权限
|
||||
INSERT INTO `tb_resource_permission` (id, resource_type, resource_id, dept_id, role_id, can_read, can_write, can_execute, creator, create_time) VALUES
|
||||
-- V1段权限
|
||||
('perm_achievement_001', 6, 'learning_time_l1_1', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_002', 6, 'learning_time_l1_2', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_003', 6, 'learning_time_l1_3', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_004', 6, 'learning_time_l1_4', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_005', 6, 'learning_time_l1_5', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
-- V2段权限
|
||||
('perm_achievement_006', 6, 'learning_time_l2_1', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_007', 6, 'learning_time_l2_2', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_008', 6, 'learning_time_l2_3', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_009', 6, 'learning_time_l2_4', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_010', 6, 'learning_time_l2_5', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
-- V3段权限
|
||||
('perm_achievement_011', 6, 'learning_time_l3_1', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_012', 6, 'learning_time_l3_2', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_013', 6, 'learning_time_l3_3', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_014', 6, 'learning_time_l3_4', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_015', 6, 'learning_time_l3_5', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
-- V4段权限
|
||||
('perm_achievement_016', 6, 'learning_time_l4_1', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_017', 6, 'learning_time_l4_2', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_018', 6, 'learning_time_l4_3', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_019', 6, 'learning_time_l4_4', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_020', 6, 'learning_time_l4_5', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
-- V5段权限
|
||||
('perm_achievement_021', 6, 'learning_time_l5_1', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_022', 6, 'learning_time_l5_2', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_023', 6, 'learning_time_l5_3', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_024', 6, 'learning_time_l5_4', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_025', 6, 'learning_time_l5_5', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
-- V6段权限
|
||||
('perm_achievement_026', 6, 'learning_time_l6_1', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_027', 6, 'learning_time_l6_2', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_028', 6, 'learning_time_l6_3', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_029', 6, 'learning_time_l6_4', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_030', 6, 'learning_time_l6_5', NULL, NULL, 1, 0, 0, '1', now());
|
||||
|
||||
|
||||
-- 勋章成就
|
||||
INSERT INTO `tb_achievement` (`id`, `achievement_id`, `name`,`icon`, `description`, `type`, `level`, `condition_type`, `condition_value`, `points`, `order_num`, `deleted`) VALUES
|
||||
('ACH101', 'time_1', '启蒙笃行', 'time-1.svg', '开始学习之旅', 1, 1, 1, 30*60, 1, 1, 0),
|
||||
('ACH102', 'time_2', '深耕不辍', 'time-2.svg', '', 1, 2, 1, 5*60*60, 2, 2, 0),
|
||||
('ACH103', 'time_3', '笃信致远', 'time-3.svg', '', 1, 3, 1, 20*60*60, 3, 3, 0),
|
||||
('ACH104', 'time_4', '厚德博学', 'time-4.svg', '', 1, 4, 1, 50*60*60, 4, 4, 0),
|
||||
('ACH105', 'time_5', '信仰领航', 'time-5.svg', '', 1, 5, 1, 100*60*60, 5, 5, 0);
|
||||
|
||||
INSERT INTO `tb_resource_permission` (id, resource_type, resource_id, dept_id, role_id, can_read, can_write, can_execute, creator, create_time) VALUES
|
||||
('perm_achievement_101', 6, 'ACH101', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_102', 6, 'ACH102', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_103', 6, 'ACH103', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_104', 6, 'ACH104', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_105', 6, 'ACH105', NULL, NULL, 1, 0, 0, '1', now());
|
||||
@@ -55,6 +55,9 @@ SOURCE initConfigData.sql;
|
||||
SOURCE initAllData.sql;
|
||||
|
||||
SOURCE initCrontabMetaData.sql
|
||||
|
||||
SOURCE initAchievementData.sql;
|
||||
|
||||
-- -- 13. 插入资源相关初始数据
|
||||
-- SOURCE initResourceData.sql;
|
||||
|
||||
|
||||
@@ -24,95 +24,6 @@ INSERT INTO `tb_tag` (id, tag_id, name, color, description, tag_type, creator, c
|
||||
('tag204', 'tag_task_004', '实践任务', '#f7b731', '实践类学习任务', 3, '1', now()),
|
||||
('tag205', 'tag_task_005', '阶段任务', '#2d98da', '阶段性学习任务', 3, '1', now());
|
||||
|
||||
-- 注意:默认superadmin用户已在 initMenuData.sql 中创建,此处无需重复创建
|
||||
|
||||
-- =====================================================
|
||||
-- 初始化资源权限数据
|
||||
-- =====================================================
|
||||
|
||||
|
||||
-- V1段:初学者 (0-10小时,每2小时一级)
|
||||
INSERT INTO `tb_achievement` (`id`, `achievement_id`, `name`,`icon`, `description`, `type`, `level`, `condition_type`, `condition_value`, `points`, `order_num`, `deleted`) VALUES
|
||||
('ACH001', 'learning_time_l1_1', '初学者 I', 'v1-icon.svg', '开始学习之旅', 2, 1.1, 1, 0, 5, 1, 0),
|
||||
('ACH002', 'learning_time_l1_2', '初学者 II', 'v1-icon.svg', '累计学习时长达到2小时', 2, 1.2, 1, 2*60*60, 10, 2, 0),
|
||||
('ACH003', 'learning_time_l1_3', '初学者 III', 'v1-icon.svg', '累计学习时长达到4小时', 2, 1.3, 1, 4*60*60, 15, 3, 0),
|
||||
('ACH004', 'learning_time_l1_4', '初学者 IV', 'v1-icon.svg', '累计学习时长达到6小时', 2, 1.4, 1, 6*60*60, 20, 4, 0),
|
||||
('ACH005', 'learning_time_l1_5', '初学者 V', 'v1-icon.svg', '累计学习时长达到10小时', 2, 1.5, 1, 10*60*60, 25, 5, 0),
|
||||
|
||||
-- V2段:勤学者 (10-30小时,每4小时一级)
|
||||
('ACH006', 'learning_time_l2_1', '勤学者 I', 'v2-icon.svg', '累计学习时长达到14小时', 2, 2.1, 1, 14*60*60, 30, 6, 0),
|
||||
('ACH007', 'learning_time_l2_2', '勤学者 II', 'v2-icon.svg', '累计学习时长达到18小时', 2, 2.2, 1, 18*60*60, 35, 7, 0),
|
||||
('ACH008', 'learning_time_l2_3', '勤学者 III', 'v2-icon.svg', '累计学习时长达到22小时', 2, 2.3, 1, 22*60*60, 40, 8, 0),
|
||||
('ACH009', 'learning_time_l2_4', '勤学者 IV', 'v2-icon.svg', '累计学习时长达到26小时', 2, 2.4, 1, 26*60*60, 45, 9, 0),
|
||||
('ACH010', 'learning_time_l2_5', '勤学者 V', 'v2-icon.svg', '累计学习时长达到30小时', 2, 2.5, 1, 30*60*60, 50, 10, 0),
|
||||
|
||||
-- V3段:学习达人 (30-100小时,每14小时一级)
|
||||
('ACH011', 'learning_time_l3_1', '学习达人 I', 'v3-icon.svg', '累计学习时长达到44小时', 2, 3.1, 1, 44*60*60, 60, 11, 0),
|
||||
('ACH012', 'learning_time_l3_2', '学习达人 II', 'v3-icon.svg', '累计学习时长达到58小时', 2, 3.2, 1, 58*60*60, 70, 12, 0),
|
||||
('ACH013', 'learning_time_l3_3', '学习达人 III', 'v3-icon.svg', '累计学习时长达到72小时', 2, 3.3, 1, 72*60*60, 80, 13, 0),
|
||||
('ACH014', 'learning_time_l3_4', '学习达人 IV', 'v3-icon.svg', '累计学习时长达到86小时', 2, 3.4, 1, 86*60*60, 90, 14, 0),
|
||||
('ACH015', 'learning_time_l3_5', '学习达人 V', 'v3-icon.svg', '累计学习时长达到100小时', 2, 3.5, 1, 100*60*60, 100, 15, 0),
|
||||
|
||||
-- V4段:学习狂人 (100-300小时,每40小时一级)
|
||||
('ACH016', 'learning_time_l4_1', '学习狂人 I', 'v4-icon.svg', '累计学习时长达到140小时', 2, 4.1, 1, 140*60*60, 120, 16, 0),
|
||||
('ACH017', 'learning_time_l4_2', '学习狂人 II', 'v4-icon.svg', '累计学习时长达到180小时', 2, 4.2, 1, 180*60*60, 140, 17, 0),
|
||||
('ACH018', 'learning_time_l4_3', '学习狂人 III', 'v4-icon.svg', '累计学习时长达到220小时', 2, 4.3, 1, 220*60*60, 160, 18, 0),
|
||||
('ACH019', 'learning_time_l4_4', '学习狂人 IV', 'v4-icon.svg', '累计学习时长达到260小时', 2, 4.4, 1, 260*60*60, 180, 19, 0),
|
||||
('ACH020', 'learning_time_l4_5', '学习狂人 V', 'v4-icon.svg', '累计学习时长达到300小时', 2, 4.5, 1, 300*60*60, 200, 20, 0),
|
||||
|
||||
-- V5段:学习大师 (300-1000小时,每140小时一级)
|
||||
('ACH021', 'learning_time_l5_1', '学习大师 I', 'v5-icon.svg', '累计学习时长达到440小时', 2, 5.1, 1, 440*60*60, 250, 21, 0),
|
||||
('ACH022', 'learning_time_l5_2', '学习大师 II', 'v5-icon.svg', '累计学习时长达到580小时', 2, 5.2, 1, 580*60*60, 300, 22, 0),
|
||||
('ACH023', 'learning_time_l5_3', '学习大师 III', 'v5-icon.svg', '累计学习时长达到720小时', 2, 5.3, 1, 720*60*60, 350, 23, 0),
|
||||
('ACH024', 'learning_time_l5_4', '学习大师 IV', 'v5-icon.svg', '累计学习时长达到860小时', 2, 5.4, 1, 860*60*60, 400, 24, 0),
|
||||
('ACH025', 'learning_time_l5_5', '学习大师 V', 'v5-icon.svg', '累计学习时长达到1000小时', 2, 5.5, 1, 1000*60*60, 500, 25, 0),
|
||||
|
||||
-- V6段:学习宗师 (1000-2000小时,每200小时一级)
|
||||
('ACH026', 'learning_time_l6_1', '学习宗师 I', 'v6-icon.svg', '累计学习时长达到1200小时', 2, 6.1, 1, 1200*60*60, 600, 26, 0),
|
||||
('ACH027', 'learning_time_l6_2', '学习宗师 II', 'v6-icon.svg', '累计学习时长达到1400小时', 2, 6.2, 1, 1400*60*60, 700, 27, 0),
|
||||
('ACH028', 'learning_time_l6_3', '学习宗师 III', 'v6-icon.svg', '累计学习时长达到1600小时', 2, 6.3, 1, 1600*60*60, 800, 28, 0),
|
||||
('ACH029', 'learning_time_l6_4', '学习宗师 IV', 'v6-icon.svg', '累计学习时长达到1800小时', 2, 6.4, 1, 1800*60*60, 900, 29, 0),
|
||||
('ACH030', 'learning_time_l6_5', '学习宗师 V', 'v6-icon.svg', '累计学习时长达到2000小时', 2, 6.5, 1, 2000*60*60, 1000, 30, 0);
|
||||
|
||||
-- 为所有成就创建资源权限
|
||||
INSERT INTO `tb_resource_permission` (id, resource_type, resource_id, dept_id, role_id, can_read, can_write, can_execute, creator, create_time) VALUES
|
||||
-- V1段权限
|
||||
('perm_achievement_001', 6, 'learning_time_l1_1', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_002', 6, 'learning_time_l1_2', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_003', 6, 'learning_time_l1_3', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_004', 6, 'learning_time_l1_4', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_005', 6, 'learning_time_l1_5', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
-- V2段权限
|
||||
('perm_achievement_006', 6, 'learning_time_l2_1', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_007', 6, 'learning_time_l2_2', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_008', 6, 'learning_time_l2_3', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_009', 6, 'learning_time_l2_4', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_010', 6, 'learning_time_l2_5', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
-- V3段权限
|
||||
('perm_achievement_011', 6, 'learning_time_l3_1', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_012', 6, 'learning_time_l3_2', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_013', 6, 'learning_time_l3_3', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_014', 6, 'learning_time_l3_4', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_015', 6, 'learning_time_l3_5', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
-- V4段权限
|
||||
('perm_achievement_016', 6, 'learning_time_l4_1', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_017', 6, 'learning_time_l4_2', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_018', 6, 'learning_time_l4_3', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_019', 6, 'learning_time_l4_4', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_020', 6, 'learning_time_l4_5', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
-- V5段权限
|
||||
('perm_achievement_021', 6, 'learning_time_l5_1', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_022', 6, 'learning_time_l5_2', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_023', 6, 'learning_time_l5_3', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_024', 6, 'learning_time_l5_4', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_025', 6, 'learning_time_l5_5', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
-- V6段权限
|
||||
('perm_achievement_026', 6, 'learning_time_l6_1', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_027', 6, 'learning_time_l6_2', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_028', 6, 'learning_time_l6_3', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_029', 6, 'learning_time_l6_4', NULL, NULL, 1, 0, 0, '1', now()),
|
||||
('perm_achievement_030', 6, 'learning_time_l6_5', NULL, NULL, 1, 0, 0, '1', now());
|
||||
|
||||
-- 为默认标签创建超级管理员权限(文章标签)
|
||||
INSERT INTO `tb_resource_permission` (id, resource_type, resource_id, dept_id, role_id, can_read, can_write, can_execute, creator, create_time) VALUES
|
||||
-- 文章标签权限(resource_type=9,TAG)
|
||||
|
||||
196
schoolNewsWeb/public/img/achievement/time-1.svg
Normal file
196
schoolNewsWeb/public/img/achievement/time-1.svg
Normal file
@@ -0,0 +1,196 @@
|
||||
<svg width="151" height="159" viewBox="0 0 151 159" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M76.3059 3.34279L21.0865 33.3816C16.9481 35.6328 14.3721 39.9667 14.3721 44.6777L14.3721 113.54C14.3721 118.251 16.9481 122.585 21.0864 124.836L76.3059 154.875C80.1374 156.959 84.7643 156.959 88.5958 154.875L143.815 124.836C147.954 122.585 150.53 118.251 150.53 113.54L150.53 44.6777C150.53 39.9667 147.954 35.6328 143.815 33.3816L88.5958 3.34279C84.7643 1.25848 80.1374 1.25848 76.3059 3.34279Z" fill="url(#paint0_linear_905_12593)"/>
|
||||
<path d="M76.2481 15.3117L31.4098 39.7032C27.2871 41.9459 24.7207 46.2635 24.7207 50.9568L24.7207 106.985C24.7207 111.678 27.2871 115.996 31.4098 118.239L76.2481 142.63C80.0652 144.707 84.6746 144.707 88.4917 142.63L133.33 118.239C137.453 115.996 140.019 111.678 140.019 106.985L140.019 50.9568C140.019 46.2635 137.453 41.9459 133.33 39.7032L88.4917 15.3117C84.6746 13.2352 80.0652 13.2352 76.2481 15.3117Z" fill="url(#paint1_linear_905_12593)"/>
|
||||
<g filter="url(#filter0_f_905_12593)">
|
||||
<path d="M76.2481 15.3117L31.4098 39.7032C27.2871 41.9459 24.7207 46.2635 24.7207 50.9568L24.7207 106.985C24.7207 111.678 27.2871 115.996 31.4098 118.239L76.2481 142.63C80.0652 144.707 84.6746 144.707 88.4917 142.63L133.33 118.239C137.453 115.996 140.019 111.678 140.019 106.985L140.019 50.9568C140.019 46.2635 137.453 41.9459 133.33 39.7032L88.4917 15.3117C84.6746 13.2352 80.0652 13.2352 76.2481 15.3117Z" stroke="url(#paint2_linear_905_12593)" stroke-width="0.756431"/>
|
||||
</g>
|
||||
<g opacity="0.5">
|
||||
<mask id="mask0_905_12593" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="29" y="19" width="107" height="121">
|
||||
<path d="M76.9043 20.5905L35.9889 42.828C32.065 44.9606 29.6221 49.0688 29.6221 53.5348L29.6221 104.62C29.6221 109.086 32.065 113.194 35.9889 115.326L76.9043 137.564C80.5331 139.536 84.9139 139.536 88.5427 137.564L129.458 115.326C133.382 113.194 135.825 109.086 135.825 104.62L135.825 53.5348C135.825 49.0688 133.382 44.9606 129.458 42.828L88.5427 20.5905C84.9139 18.6182 80.5331 18.6182 76.9043 20.5905Z" fill="#A6D3DE"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_905_12593)">
|
||||
<path d="M76.9043 20.5905L35.9889 42.828C32.065 44.9606 29.6221 49.0688 29.6221 53.5348L29.6221 104.62C29.6221 109.086 32.065 113.194 35.9889 115.326L76.9043 137.564C80.5331 139.536 84.9139 139.536 88.5427 137.564L129.458 115.326C133.382 113.194 135.825 109.086 135.825 104.62L135.825 53.5348C135.825 49.0688 133.382 44.9606 129.458 42.828L88.5427 20.5905C84.9139 18.6182 80.5331 18.6182 76.9043 20.5905Z" fill="url(#paint3_radial_905_12593)"/>
|
||||
<path opacity="0.5" d="M73.8467 143.161L71.7373 14.9854H93.7103L91.6009 143.161H73.8467Z" fill="url(#paint4_linear_905_12593)"/>
|
||||
<path opacity="0.5" d="M73.5641 142.025L7.64941 32.0762L26.6786 21.0897L88.9397 133.148L73.5641 142.025Z" fill="url(#paint5_linear_905_12593)"/>
|
||||
<path opacity="0.5" d="M71.733 133.147L133.994 21.0889L153.023 32.0754L87.1086 142.024L71.733 133.147Z" fill="url(#paint6_linear_905_12593)"/>
|
||||
<rect x="29.6221" y="71.749" width="106.203" height="68.9708" fill="url(#paint7_linear_905_12593)"/>
|
||||
<g filter="url(#filter1_i_905_12593)">
|
||||
<path d="M76.9043 20.5905L35.9889 42.828C32.065 44.9606 29.6221 49.0688 29.6221 53.5348L29.6221 104.62C29.6221 109.086 32.065 113.194 35.9889 115.326L76.9043 137.564C80.5331 139.536 84.9139 139.536 88.5427 137.564L129.458 115.326C133.382 113.194 135.825 109.086 135.825 104.62L135.825 53.5348C135.825 49.0688 133.382 44.9606 129.458 42.828L88.5427 20.5905C84.9139 18.6182 80.5331 18.6182 76.9043 20.5905Z" fill="#6052B4" fill-opacity="0.01"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g filter="url(#filter2_d_905_12593)">
|
||||
<rect x="48.1396" y="63.3945" width="68.6234" height="43.0515" rx="2.69746" fill="url(#paint8_linear_905_12593)"/>
|
||||
<rect x="48.1396" y="61.1279" width="68.6234" height="44.5071" rx="2.69746" fill="url(#paint9_linear_905_12593)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.981 62.3308H49.9221C49.5939 62.3308 49.3279 62.6001 49.3279 62.9323V103.831C49.3279 104.163 49.5939 104.432 49.9221 104.432H114.981C115.309 104.432 115.575 104.163 115.575 103.831V62.9323C115.575 62.6001 115.309 62.3308 114.981 62.3308ZM49.9221 61.1279C48.9377 61.1279 48.1396 61.9358 48.1396 62.9323V103.831C48.1396 104.827 48.9377 105.635 49.9221 105.635H114.981C115.965 105.635 116.763 104.827 116.763 103.831V62.9323C116.763 61.9358 115.965 61.1279 114.981 61.1279H49.9221Z" fill="url(#paint10_linear_905_12593)"/>
|
||||
<g filter="url(#filter3_d_905_12593)">
|
||||
<path d="M54.2898 56.2725L52.3477 58.9994V101.914H82.4513V56.2725C72.8738 49.8807 66.9074 52.1483 54.2898 56.2725Z" fill="url(#paint11_linear_905_12593)"/>
|
||||
<path d="M66.2666 88.9658L54.2898 99.3241L52.3477 101.914L82.4513 102.075V93.9831L80.0236 90.5843L66.2666 88.9658Z" fill="url(#paint12_linear_905_12593)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M110.613 56.2725L112.556 58.9994V101.914L110.452 101.132C97.8341 97.0074 92.0295 95.5217 82.452 101.914V56.2725C92.0295 49.8807 97.996 52.1483 110.613 56.2725Z" fill="url(#paint13_linear_905_12593)"/>
|
||||
<path d="M98.6368 88.9658L110.613 99.3241L112.556 101.914L82.452 102.075V93.9831L84.8797 90.5843L98.6368 88.9658Z" fill="url(#paint14_linear_905_12593)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M54.4052 56.6519L54.29 56.6906V99.324L54.4052 99.2853C66.6293 97.1118 73.2362 96.0139 82.4515 99.324V56.6906C73.1933 50.3405 66.6022 52.5546 54.4052 56.6519Z" fill="url(#paint15_linear_905_12593)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M110.498 56.6519L110.613 56.6906V99.324L110.498 99.2853C98.252 97.3903 91.6469 95.7962 82.4518 99.324V56.6906C91.71 50.3405 98.3011 52.5546 110.498 56.6519Z" fill="url(#paint16_linear_905_12593)"/>
|
||||
<g opacity="0.4" filter="url(#filter4_f_905_12593)">
|
||||
<path d="M95.3447 53.2021C91.1862 52.941 87.3724 53.9087 82.9014 56.9287V98.4844C87.3093 95.6245 91.1838 94.6736 95.4014 94.9385C99.6869 95.2077 104.312 96.7339 110.164 98.6992V57.0137C104.141 54.9905 99.5582 53.4668 95.3447 53.2021Z" stroke="white" stroke-opacity="0.1" stroke-width="0.899153"/>
|
||||
</g>
|
||||
<g opacity="0.3" filter="url(#filter5_f_905_12593)">
|
||||
<rect x="82.29" y="56.5967" width="0.323695" height="42.7278" fill="#DEE4F3"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path d="M82.4893 75.127H70.5449L82.4893 87.077V75.127Z" fill="url(#paint17_linear_905_12593)"/>
|
||||
<path d="M82.4893 75.1268V63.1768L94.4337 75.1268H82.4893Z" fill="url(#paint18_linear_905_12593)"/>
|
||||
<path d="M82.4893 75.1261V87.0762L94.4337 75.1261H82.4893Z" fill="url(#paint19_linear_905_12593)"/>
|
||||
<path d="M82.4893 75.2762V63.3262L70.5449 75.2762H82.4893Z" fill="url(#paint20_linear_905_12593)"/>
|
||||
<rect width="8.44797" height="8.44797" transform="matrix(0.706939 -0.707275 0.706939 0.707275 76.5176 75.127)" fill="url(#paint21_radial_905_12593)"/>
|
||||
<g filter="url(#filter6_f_905_12593)">
|
||||
<rect width="8.44797" height="8.44797" transform="matrix(0.706939 -0.707275 0.706939 0.707275 76.5176 75.127)" stroke="white" stroke-width="0.105806"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_f_905_12593" x="24.1158" y="13.149" width="116.509" height="131.643" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.113465" result="effect1_foregroundBlur_905_12593"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_905_12593" x="29.6221" y="19.1113" width="106.203" height="119.932" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="5.08634"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.297222 0 0 0 0 0.329917 0 0 0 0 0.445833 0 0 0 1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_905_12593"/>
|
||||
</filter>
|
||||
<filter id="filter2_d_905_12593" x="42.0882" y="49.2585" width="80.7259" height="66.265" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="3.02572"/>
|
||||
<feGaussianBlur stdDeviation="3.02572"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.504687 0 0 0 0 0.517969 0 0 0 0 0.6375 0 0 0 1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12593"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12593" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter3_d_905_12593" x="49.6502" y="50.9354" width="65.6029" height="55.1859" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.34873"/>
|
||||
<feGaussianBlur stdDeviation="1.34873"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.426562 0 0 0 0 0.464625 0 0 0 0 0.5625 0 0 0 0.71 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12593"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12593" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter4_f_905_12593" x="81.553" y="51.8128" width="29.9594" height="48.4106" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.449577" result="effect1_foregroundBlur_905_12593"/>
|
||||
</filter>
|
||||
<filter id="filter5_f_905_12593" x="81.8405" y="56.1471" width="1.2224" height="43.6267" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.224788" result="effect1_foregroundBlur_905_12593"/>
|
||||
</filter>
|
||||
<filter id="filter6_f_905_12593" x="75.737" y="68.3718" width="13.5055" height="13.5104" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.352688" result="effect1_foregroundBlur_905_12593"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_905_12593" x1="53.8577" y1="19.0621" x2="115.129" y2="140.787" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FAFAFA"/>
|
||||
<stop offset="1" stop-color="#C2C4CD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_905_12593" x1="53.3138" y1="29.1373" x2="106.143" y2="126.626" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CDCFD6"/>
|
||||
<stop offset="1" stop-color="#EFEFF1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_905_12593" x1="59.0324" y1="25.5972" x2="115.946" y2="127.988" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DDDFE2"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint3_radial_905_12593" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(82.7235 79.0772) rotate(90) scale(61.6495 53.1014)">
|
||||
<stop stop-color="#F5F7FF"/>
|
||||
<stop offset="1" stop-color="#B3B5C5"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="paint4_linear_905_12593" x1="82.7238" y1="14.9854" x2="82.7238" y2="143.161" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#F2EDED" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_905_12593" x1="17.164" y1="26.5829" x2="81.2519" y2="137.586" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#F2EDED" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_905_12593" x1="143.509" y1="26.5821" x2="79.4208" y2="137.586" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#F2EDED" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_905_12593" x1="82.7235" y1="101.657" x2="82.4031" y2="136.447" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#D0DBFF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_905_12593" x1="48.1396" y1="104.41" x2="116.763" y2="104.258" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F7F7F8"/>
|
||||
<stop offset="0.0201542" stop-color="#CDCFD7"/>
|
||||
<stop offset="0.977524" stop-color="#C5C7CF"/>
|
||||
<stop offset="1" stop-color="#E8EAEC"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear_905_12593" x1="52.5957" y1="66.992" x2="102.604" y2="101.602" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#D7D9DF"/>
|
||||
<stop offset="1" stop-color="#C8CAD3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear_905_12593" x1="50.0706" y1="61.1279" x2="111.58" y2="101.932" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F8F9F9"/>
|
||||
<stop offset="1" stop-color="#C2C4CD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint11_linear_905_12593" x1="57.2031" y1="96.5726" x2="54.1965" y2="63.0975" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EDEEF1"/>
|
||||
<stop offset="1" stop-color="#EDEEF1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint12_linear_905_12593" x1="58.4979" y1="98.1911" x2="81.6421" y2="102.237" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0442192" stop-color="#C2C4CD"/>
|
||||
<stop offset="0.65381" stop-color="#CFD0D7"/>
|
||||
<stop offset="0.991391" stop-color="#C2C4CD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint13_linear_905_12593" x1="100.741" y1="54.0067" x2="109.966" y2="90.4224" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2C4CD"/>
|
||||
<stop offset="0.371361" stop-color="#C2C4CD"/>
|
||||
<stop offset="1" stop-color="#B1B3BD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint14_linear_905_12593" x1="106.405" y1="98.1911" x2="83.2612" y2="102.237" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0442192" stop-color="#BDBFC8"/>
|
||||
<stop offset="0.65381" stop-color="#D4D6DF"/>
|
||||
<stop offset="0.991391" stop-color="#C2C4CD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint15_linear_905_12593" x1="82.4515" y1="70.5152" x2="54.2896" y2="70.0562" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2C4CD"/>
|
||||
<stop offset="0.0890549" stop-color="#C2C4CD"/>
|
||||
<stop offset="0.46547" stop-color="#E5E7EB"/>
|
||||
<stop offset="1" stop-color="#FAFAFA"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint16_linear_905_12593" x1="82.4518" y1="70.5152" x2="110.614" y2="70.0562" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2C4CD"/>
|
||||
<stop offset="0.214912" stop-color="#FAFAFA"/>
|
||||
<stop offset="0.510885" stop-color="#E7E8EC"/>
|
||||
<stop offset="0.901932" stop-color="#C2C4CD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint17_linear_905_12593" x1="84.6476" y1="87.2459" x2="66.9356" y2="82.9575" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F9F9F9"/>
|
||||
<stop offset="1" stop-color="#D4D6DC"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint18_linear_905_12593" x1="94.6024" y1="77.2861" x2="90.3084" y2="59.5676" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E9EAED"/>
|
||||
<stop offset="1" stop-color="#C5C7CF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint19_linear_905_12593" x1="93.4929" y1="74.2144" x2="89.4118" y2="90.5475" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C5C7D0"/>
|
||||
<stop offset="1" stop-color="#CFD0D7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint20_linear_905_12593" x1="71.4856" y1="76.188" x2="75.5667" y2="59.8548" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E6E7EA"/>
|
||||
<stop offset="1" stop-color="#F3F3F4"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint21_radial_905_12593" cx="0" cy="0" r="1" gradientTransform="matrix(2.13175 5.25574 -5.69716 3.75381 3.51734 1.95723)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#D7D8DE"/>
|
||||
<stop offset="1" stop-color="#F3F3F4"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
345
schoolNewsWeb/public/img/achievement/time-2.svg
Normal file
345
schoolNewsWeb/public/img/achievement/time-2.svg
Normal file
@@ -0,0 +1,345 @@
|
||||
<svg width="240" height="252" viewBox="0 0 240 252" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_dd_905_11965)">
|
||||
<g filter="url(#filter1_d_905_11965)">
|
||||
<path d="M113.284 47.7825L57.9147 77.9028C53.6938 80.1989 51.0664 84.6192 51.0664 89.4242L51.0664 158.484C51.0664 163.289 53.6938 167.709 57.9147 170.005L113.284 200.126C117.192 202.252 121.911 202.252 125.819 200.126L181.188 170.005C185.409 167.709 188.037 163.289 188.037 158.484L188.037 89.4242C188.037 84.6192 185.409 80.1989 181.188 77.9028L125.819 47.7825C121.911 45.6566 117.192 45.6566 113.284 47.7825Z" fill="url(#paint0_linear_905_11965)"/>
|
||||
<path d="M113.226 59.8234L68.2991 84.2631C64.0941 86.5506 61.4766 90.9542 61.4766 95.7411L61.4766 151.891C61.4766 156.678 64.0941 161.082 68.299 163.369L113.226 187.809C117.119 189.927 121.821 189.927 125.714 187.809L170.641 163.369C174.846 161.082 177.463 156.678 177.463 151.891L177.463 95.7411C177.463 90.9543 174.846 86.5506 170.641 84.2631L125.714 59.8234C121.821 57.7055 117.119 57.7055 113.226 59.8234Z" fill="url(#paint1_linear_905_11965)"/>
|
||||
<g filter="url(#filter2_f_905_11965)">
|
||||
<path d="M113.226 59.8234L68.2991 84.2631C64.0941 86.5506 61.4766 90.9542 61.4766 95.7411L61.4766 151.891C61.4766 156.678 64.0941 161.082 68.299 163.369L113.226 187.809C117.119 189.927 121.821 189.927 125.714 187.809L170.641 163.369C174.846 161.082 177.463 156.678 177.463 151.891L177.463 95.7411C177.463 90.9543 174.846 86.5506 170.641 84.2631L125.714 59.8234C121.821 57.7055 117.119 57.7055 113.226 59.8234Z" stroke="url(#paint2_linear_905_11965)" stroke-width="0.771514"/>
|
||||
</g>
|
||||
<g opacity="0.5">
|
||||
<mask id="mask0_905_11965" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="66" y="63" width="108" height="122">
|
||||
<path d="M113.89 65.1311L72.901 87.4088C68.8989 89.584 66.4072 93.7741 66.4072 98.3291L66.4072 149.516C66.4072 154.071 68.8989 158.261 72.901 160.437L113.89 182.714C117.592 184.726 122.06 184.726 125.761 182.714L166.75 160.437C170.752 158.261 173.244 154.071 173.244 149.516L173.244 98.3291C173.244 93.7741 170.752 89.584 166.75 87.4088L125.761 65.1311C122.06 63.1195 117.592 63.1195 113.89 65.1311Z" fill="#A6D3DE"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_905_11965)">
|
||||
<path d="M113.89 65.1311L72.901 87.4088C68.8989 89.584 66.4072 93.7741 66.4072 98.3291L66.4072 149.516C66.4072 154.071 68.8989 158.261 72.901 160.437L113.89 182.714C117.592 184.726 122.06 184.726 125.761 182.714L166.75 160.437C170.752 158.261 173.244 154.071 173.244 149.516L173.244 98.3291C173.244 93.7741 170.752 89.584 166.75 87.4088L125.761 65.1311C122.06 63.1195 117.592 63.1195 113.89 65.1311Z" fill="url(#paint3_radial_905_11965)"/>
|
||||
<path opacity="0.5" d="M110.895 188.39L108.773 59.4492H130.878L128.756 188.39H110.895Z" fill="url(#paint4_linear_905_11965)"/>
|
||||
<path opacity="0.5" d="M110.611 187.247L44.3027 76.6416L63.4455 65.5895L126.078 178.317L110.611 187.247Z" fill="url(#paint5_linear_905_11965)"/>
|
||||
<path opacity="0.5" d="M108.769 178.316L171.401 65.5889L190.544 76.6409L124.236 187.246L108.769 178.316Z" fill="url(#paint6_linear_905_11965)"/>
|
||||
<rect x="66.4072" y="116.552" width="106.837" height="69.3825" fill="url(#paint7_linear_905_11965)"/>
|
||||
<g filter="url(#filter3_i_905_11965)">
|
||||
<path d="M113.89 65.1311L72.901 87.4088C68.8989 89.584 66.4072 93.7741 66.4072 98.3291L66.4072 149.516C66.4072 154.071 68.8989 158.261 72.901 160.437L113.89 182.714C117.592 184.726 122.06 184.726 125.761 182.714L166.75 160.437C170.752 158.261 173.244 154.071 173.244 149.516L173.244 98.3291C173.244 93.7741 170.752 89.584 166.75 87.4088L125.761 65.1311C122.06 63.1195 117.592 63.1195 113.89 65.1311Z" fill="#6052B4" fill-opacity="0.01"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g filter="url(#filter4_d_905_11965)">
|
||||
<rect x="85.0352" y="108.146" width="69.033" height="43.3084" rx="2.75125" fill="url(#paint8_linear_905_11965)"/>
|
||||
<rect x="85.0352" y="105.866" width="69.033" height="44.7727" rx="2.75125" fill="url(#paint9_linear_905_11965)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M152.275 107.076H86.8282C86.4981 107.076 86.2305 107.347 86.2305 107.681V148.824C86.2305 149.158 86.4981 149.429 86.8282 149.429H152.275C152.605 149.429 152.873 149.158 152.873 148.824V107.681C152.873 107.347 152.605 107.076 152.275 107.076ZM86.8282 105.866C85.8379 105.866 85.0352 106.679 85.0352 107.681V148.824C85.0352 149.826 85.8379 150.639 86.8282 150.639H152.275C153.265 150.639 154.068 149.826 154.068 148.824V107.681C154.068 106.679 153.265 105.866 152.275 105.866H86.8282Z" fill="url(#paint10_linear_905_11965)"/>
|
||||
<g filter="url(#filter5_d_905_11965)">
|
||||
<path d="M91.2213 100.982L89.2676 103.725V146.895H119.551V100.982C109.916 94.5519 103.914 96.8331 91.2213 100.982Z" fill="url(#paint11_linear_905_11965)"/>
|
||||
<path d="M103.27 133.87L91.2213 144.29L89.2676 146.895L119.551 147.058V138.917L117.109 135.498L103.27 133.87Z" fill="url(#paint12_linear_905_11965)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M147.881 100.982L149.835 103.725V146.895L147.718 146.109C135.026 141.96 129.186 140.465 119.552 146.895V100.982C129.186 94.5519 135.188 96.8331 147.881 100.982Z" fill="url(#paint13_linear_905_11965)"/>
|
||||
<path d="M135.833 133.87L147.881 144.29L149.835 146.895L119.552 147.058V138.917L121.994 135.498L135.833 133.87Z" fill="url(#paint14_linear_905_11965)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M91.3375 101.364L91.2217 101.403V144.291L91.3375 144.252C103.635 142.065 110.281 140.961 119.551 144.291V101.403C110.238 95.0148 103.607 97.2422 91.3375 101.364Z" fill="url(#paint15_linear_905_11965)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M147.765 101.364L147.881 101.403V144.291L147.765 144.252C135.446 142.345 128.801 140.742 119.551 144.291V101.403C128.865 95.0148 135.495 97.2422 147.765 101.364Z" fill="url(#paint16_linear_905_11965)"/>
|
||||
<g opacity="0.4" filter="url(#filter6_f_905_11965)">
|
||||
<path d="M132.521 97.8994C128.34 97.6369 124.505 98.6104 120.01 101.646V143.434C124.441 140.561 128.337 139.606 132.578 139.872C136.888 140.143 141.539 141.678 147.422 143.653V101.732C141.365 99.698 136.757 98.1655 132.521 97.8994Z" stroke="white" stroke-opacity="0.1" stroke-width="0.917083"/>
|
||||
</g>
|
||||
<g opacity="0.3" filter="url(#filter7_f_905_11965)">
|
||||
<rect x="119.388" y="101.308" width="0.325627" height="42.9828" fill="#DEE4F3"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g filter="url(#filter8_f_905_11965)">
|
||||
<path d="M155.575 146.072L177.442 172.299L189.222 151.896L155.575 146.072Z" fill="url(#paint17_linear_905_11965)"/>
|
||||
</g>
|
||||
<mask id="mask1_905_11965" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="165" y="151" width="29" height="25">
|
||||
<path d="M190.759 166.221C190.759 166.221 190.759 166.221 190.759 166.221L193.147 152.169C193.229 151.69 192.852 151.255 192.365 151.269L166.098 151.983C166.097 151.983 166.097 151.982 166.096 151.982L166.091 151.979C166.09 151.978 166.088 151.98 166.089 151.981C166.089 151.982 166.089 151.983 166.088 151.983L166.005 151.985C165.954 151.987 165.937 152.054 165.981 152.079L166.186 152.196C166.205 152.207 166.22 152.223 166.23 152.242L178.612 175.09C178.844 175.517 179.409 175.626 179.783 175.316L190.759 166.222C190.759 166.222 190.759 166.221 190.759 166.221Z" fill="url(#paint18_linear_905_11965)"/>
|
||||
</mask>
|
||||
<g mask="url(#mask1_905_11965)">
|
||||
<path d="M191.236 166.586L179.154 175.915L163.51 150.447L191.236 166.586Z" fill="url(#paint19_linear_905_11965)"/>
|
||||
<path d="M191.236 166.586L193.274 151.458L164.159 150.953L191.236 166.586Z" fill="url(#paint20_linear_905_11965)"/>
|
||||
</g>
|
||||
<g filter="url(#filter9_f_905_11965)">
|
||||
<path d="M120.099 83.2727L108.319 51.2217H131.878L120.099 83.2727Z" fill="url(#paint21_linear_905_11965)"/>
|
||||
</g>
|
||||
<mask id="mask2_905_11965" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="106" y="43" width="28" height="29">
|
||||
<path d="M120.111 43.2051C120.111 43.2051 120.11 43.2051 120.11 43.2052L107.627 47.836C106.715 48.1742 106.34 49.2612 106.849 50.0899L120.11 71.6923C120.11 71.6923 120.11 71.6924 120.11 71.6925C120.11 71.693 120.111 71.6932 120.111 71.6928L133.373 50.0899C133.882 49.2612 133.506 48.1742 132.595 47.836L120.112 43.2052C120.111 43.2051 120.111 43.2051 120.111 43.2051Z" fill="url(#paint22_linear_905_11965)"/>
|
||||
</mask>
|
||||
<g mask="url(#mask2_905_11965)">
|
||||
<path d="M120.188 42.6084L134.308 48.4076L120.188 73.8738L120.188 42.6084Z" fill="url(#paint23_linear_905_11965)"/>
|
||||
<path d="M120.188 42.6094L106.068 48.4086L120.188 73.8747L120.188 42.6094Z" fill="url(#paint24_linear_905_11965)"/>
|
||||
</g>
|
||||
<g filter="url(#filter10_f_905_11965)">
|
||||
<path d="M83.6163 146.072L61.749 172.299L49.9696 151.896L83.6163 146.072Z" fill="url(#paint25_linear_905_11965)"/>
|
||||
</g>
|
||||
<mask id="mask3_905_11965" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="46" y="151" width="28" height="25">
|
||||
<path d="M46.3128 153.293C46.1499 152.334 46.9035 151.465 47.8756 151.492L73.0975 152.171C73.1242 152.171 73.1506 152.165 73.1737 152.151C73.3003 152.078 73.4432 152.218 73.3724 152.346L61.1435 174.483C60.6758 175.33 59.5532 175.542 58.8083 174.925L48.5448 166.42C48.5446 166.42 48.5444 166.42 48.5442 166.419C48.544 166.419 48.5439 166.419 48.5439 166.418L46.3128 153.293Z" fill="url(#paint26_linear_905_11965)"/>
|
||||
</mask>
|
||||
<g mask="url(#mask3_905_11965)">
|
||||
<path d="M48.2051 167.024L60.051 176.17L74.7523 151.697L48.2051 167.024Z" fill="url(#paint27_linear_905_11965)"/>
|
||||
<path d="M48.2845 167.398L46.0302 151.656L73.7663 152.256L48.2845 167.398Z" fill="url(#paint28_linear_905_11965)"/>
|
||||
</g>
|
||||
<g filter="url(#filter11_d_905_11965)">
|
||||
<path d="M119.825 120.877H106.95L119.825 133.758V120.877Z" fill="url(#paint29_linear_905_11965)"/>
|
||||
<path d="M119.825 120.876V107.995L132.7 120.876H119.825Z" fill="url(#paint30_linear_905_11965)"/>
|
||||
<path d="M119.825 120.877V133.758L132.7 120.877H119.825Z" fill="url(#paint31_linear_905_11965)"/>
|
||||
<path d="M119.825 120.877H106.95L119.825 107.996V120.877Z" fill="url(#paint32_linear_905_11965)"/>
|
||||
<rect width="9.10629" height="9.10629" transform="matrix(0.706939 -0.707274 0.706939 0.707274 113.389 120.877)" fill="url(#paint33_linear_905_11965)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M113.198 120.877L119.826 114.246L126.454 120.877L119.826 127.508L113.198 120.877ZM113.579 120.877L119.826 127.127L126.073 120.877L119.826 114.627L113.579 120.877Z" fill="url(#paint34_linear_905_11965)"/>
|
||||
<path d="M113.885 126.712C110.384 124.894 108.835 122.268 108.027 120.922H107.018L108.364 122.268L118.059 132.03V131.761C117.035 129.122 118.687 127.542 119.607 127.116L118.395 125.904C118.44 126.824 117.413 128.544 113.885 126.712Z" fill="#93E8FF"/>
|
||||
<path opacity="0.2" d="M131.961 120.08C130.732 123.251 127.655 125.5 124.051 125.5C121.849 125.5 119.844 124.661 118.336 123.286L117.801 122.752C116.415 121.242 115.568 119.229 115.568 117.018C115.568 113.413 117.817 110.335 120.987 109.106L131.961 120.08Z" fill="#74E4FF"/>
|
||||
<path d="M121.762 116.21L120.012 114.459C123.448 114.988 121.341 110.5 119.891 108.063L125.532 113.651L131.12 119.306L125.869 116.075C120.644 112.897 120.977 114.818 121.762 116.21Z" fill="url(#paint35_linear_905_11965)"/>
|
||||
<g filter="url(#filter12_f_905_11965)">
|
||||
<path d="M119.877 111.767L120.025 114.311L122.57 114.46L120.025 114.608L119.877 117.153L119.728 114.608L117.184 114.46L119.728 114.311L119.877 111.767Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M119.877 111.767L120.025 114.311L122.57 114.46L120.025 114.608L119.877 117.153L119.728 114.608L117.184 114.46L119.728 114.311L119.877 111.767Z" fill="white"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_dd_905_11965" x="0.000148773" y="0.000268936" width="239.449" height="251.096" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="7.71514"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.558594 0 0 0 0 0.710156 0 0 0 0 0.9375 0 0 0 1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_11965"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="3.08606"/>
|
||||
<feGaussianBlur stdDeviation="23.1454"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.670833 0 0 0 0 0.8025 0 0 0 0 1 0 0 0 0.6 0"/>
|
||||
<feBlend mode="normal" in2="effect1_dropShadow_905_11965" result="effect2_dropShadow_905_11965"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_905_11965" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d_905_11965" x="43.3513" y="38.4733" width="152.4" height="170.962" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="3.85757"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.407812 0 0 0 0 0.414 0 0 0 0 0.5625 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_11965"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_11965" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter2_f_905_11965" x="60.8594" y="57.6182" width="117.221" height="132.397" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.115727" result="effect1_foregroundBlur_905_11965"/>
|
||||
</filter>
|
||||
<filter id="filter3_i_905_11965" x="66.4072" y="63.6221" width="106.837" height="120.601" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="5.18777"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.297222 0 0 0 0 0.329917 0 0 0 0 0.445833 0 0 0 1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_905_11965"/>
|
||||
</filter>
|
||||
<filter id="filter4_d_905_11965" x="78.863" y="93.8837" width="81.3774" height="66.8296" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="3.08606"/>
|
||||
<feGaussianBlur stdDeviation="3.08606"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.504687 0 0 0 0 0.517969 0 0 0 0 0.6375 0 0 0 1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_11965"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_11965" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter5_d_905_11965" x="86.5163" y="95.5941" width="66.0699" height="55.5904" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.37562"/>
|
||||
<feGaussianBlur stdDeviation="1.37562"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.426562 0 0 0 0 0.464625 0 0 0 0 0.5625 0 0 0 0.71 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_11965"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_11965" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter6_f_905_11965" x="118.635" y="96.4833" width="30.1633" height="48.7248" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.458542" result="effect1_foregroundBlur_905_11965"/>
|
||||
</filter>
|
||||
<filter id="filter7_f_905_11965" x="118.929" y="100.849" width="1.24228" height="43.8995" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.229271" result="effect1_foregroundBlur_905_11965"/>
|
||||
</filter>
|
||||
<filter id="filter8_f_905_11965" x="152.489" y="142.986" width="39.8186" height="32.3987" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="1.54303" result="effect1_foregroundBlur_905_11965"/>
|
||||
</filter>
|
||||
<filter id="filter9_f_905_11965" x="105.233" y="48.1356" width="29.7307" height="38.2229" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="1.54303" result="effect1_foregroundBlur_905_11965"/>
|
||||
</filter>
|
||||
<filter id="filter10_f_905_11965" x="46.8837" y="142.986" width="39.8186" height="32.3987" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="1.54303" result="effect1_foregroundBlur_905_11965"/>
|
||||
</filter>
|
||||
<filter id="filter11_d_905_11965" x="102.321" y="106.386" width="35.0082" height="35.0883" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="3.08606"/>
|
||||
<feGaussianBlur stdDeviation="2.31454"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.300885 0 0 0 0 0.402137 0 0 0 0 0.6625 0 0 0 0.85 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_11965"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_11965" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter12_f_905_11965" x="116.425" y="111.008" width="6.90261" height="6.90261" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.379218" result="effect1_foregroundBlur_905_11965"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_905_11965" x1="90.7878" y1="63.5489" x2="152.424" y2="186" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FAFAFA"/>
|
||||
<stop offset="1" stop-color="#C2C4CD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_905_11965" x1="90.2403" y1="73.685" x2="143.385" y2="171.756" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CDCFD6"/>
|
||||
<stop offset="1" stop-color="#EFEFF1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_905_11965" x1="95.993" y1="70.1238" x2="153.247" y2="173.125" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DDDFE2"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint3_radial_905_11965" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(119.826 123.923) rotate(90) scale(62.0174 53.4184)">
|
||||
<stop stop-color="#F5F7FF"/>
|
||||
<stop offset="1" stop-color="#B3B5C5"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="paint4_linear_905_11965" x1="119.826" y1="59.4492" x2="119.826" y2="188.39" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#F2EDED" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_905_11965" x1="53.8741" y1="71.1156" x2="118.345" y2="182.782" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#F2EDED" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_905_11965" x1="180.973" y1="71.1149" x2="116.502" y2="182.781" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#F2EDED" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_905_11965" x1="119.826" y1="146.638" x2="119.503" y2="181.635" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#D0DBFF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_905_11965" x1="85.0352" y1="149.407" x2="154.068" y2="149.254" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F7F7F8"/>
|
||||
<stop offset="0.0201542" stop-color="#CDCFD7"/>
|
||||
<stop offset="0.977524" stop-color="#C5C7CF"/>
|
||||
<stop offset="1" stop-color="#E8EAEC"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear_905_11965" x1="89.5178" y1="111.765" x2="139.825" y2="146.582" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#D7D9DF"/>
|
||||
<stop offset="1" stop-color="#C8CAD3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear_905_11965" x1="86.9776" y1="105.866" x2="148.854" y2="146.914" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F8F9F9"/>
|
||||
<stop offset="1" stop-color="#C2C4CD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint11_linear_905_11965" x1="94.152" y1="141.522" x2="91.1275" y2="107.848" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EDEEF1"/>
|
||||
<stop offset="1" stop-color="#EDEEF1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint12_linear_905_11965" x1="95.4545" y1="143.15" x2="118.737" y2="147.221" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0442192" stop-color="#C2C4CD"/>
|
||||
<stop offset="0.65381" stop-color="#CFD0D7"/>
|
||||
<stop offset="0.991391" stop-color="#C2C4CD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint13_linear_905_11965" x1="137.95" y1="98.7025" x2="147.23" y2="135.336" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2C4CD"/>
|
||||
<stop offset="0.371361" stop-color="#C2C4CD"/>
|
||||
<stop offset="1" stop-color="#B1B3BD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint14_linear_905_11965" x1="143.648" y1="143.15" x2="120.366" y2="147.221" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0442192" stop-color="#BDBFC8"/>
|
||||
<stop offset="0.65381" stop-color="#D4D6DF"/>
|
||||
<stop offset="0.991391" stop-color="#C2C4CD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint15_linear_905_11965" x1="119.551" y1="115.31" x2="91.2212" y2="114.848" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2C4CD"/>
|
||||
<stop offset="0.0890549" stop-color="#C2C4CD"/>
|
||||
<stop offset="0.46547" stop-color="#E5E7EB"/>
|
||||
<stop offset="1" stop-color="#FAFAFA"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint16_linear_905_11965" x1="119.551" y1="115.31" x2="147.881" y2="114.848" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2C4CD"/>
|
||||
<stop offset="0.214912" stop-color="#FAFAFA"/>
|
||||
<stop offset="0.510885" stop-color="#E7E8EC"/>
|
||||
<stop offset="0.901932" stop-color="#C2C4CD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint17_linear_905_11965" x1="183.569" y1="162.235" x2="164.59" y2="151.277" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#585B77" stop-opacity="0.75"/>
|
||||
<stop offset="1" stop-color="#525787" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint18_linear_905_11965" x1="172.04" y1="157.009" x2="188.553" y2="155.648" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#D5D7D9"/>
|
||||
<stop offset="1" stop-color="#E2E3E7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint19_linear_905_11965" x1="188.372" y1="163.477" x2="179.393" y2="176.827" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CCCFDD"/>
|
||||
<stop offset="0.259135" stop-color="#D9DBE4"/>
|
||||
<stop offset="0.878536" stop-color="#E2E3E7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint20_linear_905_11965" x1="174.694" y1="146.726" x2="166.754" y2="156.454" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F4F5F8"/>
|
||||
<stop offset="1" stop-color="#F5F6F7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint21_linear_905_11965" x1="120.099" y1="50.9477" x2="120.099" y2="72.863" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#585B77" stop-opacity="0.75"/>
|
||||
<stop offset="1" stop-color="#525787" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint22_linear_905_11965" x1="121.454" y1="63.9555" x2="111.971" y2="50.5954" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#D5D7D9"/>
|
||||
<stop offset="1" stop-color="#E2E3E7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint23_linear_905_11965" x1="120.346" y1="57.5305" x2="134.215" y2="60.8775" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DBDCE1"/>
|
||||
<stop offset="1" stop-color="#F2F3F8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint24_linear_905_11965" x1="111.261" y1="66.8648" x2="123.655" y2="68.8769" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F4F5F8"/>
|
||||
<stop offset="1" stop-color="#F5F6F7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint25_linear_905_11965" x1="55.6221" y1="162.235" x2="74.6012" y2="151.277" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#585B77" stop-opacity="0.75"/>
|
||||
<stop offset="1" stop-color="#525787" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint26_linear_905_11965" x1="67.266" y1="157.171" x2="50.9084" y2="155.606" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#D5D7D9"/>
|
||||
<stop offset="1" stop-color="#E2E3E7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint27_linear_905_11965" x1="51.0125" y1="163.975" x2="54.0988" y2="183.078" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CDD0DD"/>
|
||||
<stop offset="0.878536" stop-color="#DBDDE7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint28_linear_905_11965" x1="64.6109" y1="146.924" x2="72.5506" y2="156.652" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F4F5F8"/>
|
||||
<stop offset="1" stop-color="#F5F6F7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint29_linear_905_11965" x1="119.203" y1="124.827" x2="115.529" y2="129.026" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#65B5FF"/>
|
||||
<stop offset="1" stop-color="#64E4FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint30_linear_905_11965" x1="136.438" y1="124.153" x2="130.74" y2="107.471" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.14601" stop-color="#8EECFF"/>
|
||||
<stop offset="1" stop-color="#A8EFFF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint31_linear_905_11965" x1="131.686" y1="119.894" x2="127.287" y2="137.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#2E3DB0"/>
|
||||
<stop offset="1" stop-color="#55C1F2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint32_linear_905_11965" x1="122.152" y1="107.814" x2="106.499" y2="111.269" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#2354C0"/>
|
||||
<stop offset="1" stop-color="#A3E9FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint33_linear_905_11965" x1="-1.96463" y1="3.71496" x2="11.2907" y2="3.10576" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0203454" stop-color="#2A67C4"/>
|
||||
<stop offset="0.349209" stop-color="#2E3AB0"/>
|
||||
<stop offset="1" stop-color="#79E8FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint34_linear_905_11965" x1="119.877" y1="114.189" x2="119.883" y2="126.51" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#D7F8FF"/>
|
||||
<stop offset="0.176669" stop-color="#9EEDFF"/>
|
||||
<stop offset="0.432173" stop-color="#66E3FF"/>
|
||||
<stop offset="0.685688" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint35_linear_905_11965" x1="125.128" y1="115.2" x2="119.877" y2="114.392" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#D3F6FF"/>
|
||||
<stop offset="0.603219" stop-color="#D3F6FF"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 27 KiB |
556
schoolNewsWeb/public/img/achievement/time-3.svg
Normal file
556
schoolNewsWeb/public/img/achievement/time-3.svg
Normal file
@@ -0,0 +1,556 @@
|
||||
<svg width="300" height="281" viewBox="0 0 300 281" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M149.311 221.862C203.829 221.862 248.025 177.666 248.025 123.148C248.025 68.6292 203.829 24.4334 149.311 24.4334C94.7923 24.4334 50.5964 68.6292 50.5964 123.148C50.5964 177.666 94.7923 221.862 149.311 221.862ZM149.311 224.131C205.082 224.131 250.294 178.919 250.294 123.148C250.294 67.3759 205.082 22.1641 149.311 22.1641C93.539 22.1641 48.3271 67.3759 48.3271 123.148C48.3271 178.919 93.539 224.131 149.311 224.131Z" fill="url(#paint0_linear_905_12026)"/>
|
||||
<path d="M136.115 95.7241L132.198 7.03516H163.533L159.616 95.7241H136.115Z" fill="url(#paint1_linear_905_12026)"/>
|
||||
<path d="M172.765 121.078L251.53 162.03L235.863 189.167L161.014 141.431L172.765 121.078Z" fill="url(#paint2_linear_905_12026)"/>
|
||||
<path d="M159.056 143.006L162.973 231.695H131.638L135.555 143.006H159.056Z" fill="url(#paint3_linear_905_12026)"/>
|
||||
<path d="M134.304 141.713L59.4561 189.449L43.7886 162.312L122.554 121.36L134.304 141.713Z" fill="url(#paint4_linear_905_12026)"/>
|
||||
<path d="M172.765 117.791L251.53 76.8389L235.863 49.7021L161.014 97.4386L172.765 117.791Z" fill="url(#paint5_linear_905_12026)"/>
|
||||
<path d="M134.304 97.1574L59.4561 49.4209L43.7886 76.5577L122.554 117.51L134.304 97.1574Z" fill="url(#paint6_linear_905_12026)"/>
|
||||
<g filter="url(#filter0_dd_905_12026)">
|
||||
<path d="M121.306 102.861H177.029V229.222C177.029 230.602 175.491 231.426 174.343 230.66L149.886 214.356C149.451 214.065 148.884 214.065 148.449 214.356L123.992 230.66C122.844 231.426 121.306 230.602 121.306 229.222V102.861Z" fill="url(#paint7_linear_905_12026)"/>
|
||||
<path d="M157.591 219.491L149.887 214.355C149.451 214.065 148.884 214.065 148.448 214.355L140.744 219.491V102.861H157.591V219.491Z" fill="url(#paint8_linear_905_12026)"/>
|
||||
<path d="M138.584 220.932L136.856 222.083V102.861H138.584V220.932Z" fill="url(#paint9_linear_905_12026)"/>
|
||||
<path d="M161.479 222.083L159.751 220.932V102.861H161.479V222.083Z" fill="url(#paint10_linear_905_12026)"/>
|
||||
<path d="M148.448 211.07C148.884 210.78 149.451 210.78 149.887 211.07L174.343 227.375C175.491 228.14 177.029 227.317 177.029 225.938V229.393C177.029 230.773 175.491 231.596 174.343 230.83L149.887 214.526C149.451 214.236 148.884 214.236 148.448 214.526L123.992 230.83C122.844 231.596 121.306 230.773 121.306 229.393V225.938C121.306 227.317 122.844 228.14 123.992 227.375L148.448 211.07Z" fill="#1D2462" fill-opacity="0.2"/>
|
||||
<g opacity="0.8" filter="url(#filter1_f_905_12026)">
|
||||
<path d="M149.34 205.658L177.078 189.353V183.239H121.306V189.353L149.34 205.658Z" fill="#1A375E" fill-opacity="0.68"/>
|
||||
</g>
|
||||
<path d="M144.751 43.4906L85.6973 75.615C82.7059 77.2423 80.8438 80.3751 80.8438 83.7805L80.8438 157.214C80.8438 160.619 82.7059 163.752 85.6973 165.379L144.751 197.503C147.52 199.01 150.865 199.01 153.635 197.503L212.688 165.379C215.679 163.752 217.542 160.619 217.542 157.214L217.542 83.7805C217.542 80.3751 215.679 77.2423 212.688 75.615L153.635 43.4906C150.865 41.9839 147.52 41.9839 144.751 43.4906Z" fill="url(#paint11_linear_905_12026)"/>
|
||||
<path d="M144.686 55.5108L96.0687 81.9582C93.0885 83.5793 91.2334 86.7003 91.2334 90.0929L91.2334 150.625C91.2334 154.017 93.0885 157.138 96.0687 158.759L144.686 185.207C147.445 186.708 150.777 186.708 153.537 185.207L202.154 158.759C205.134 157.138 206.989 154.017 206.989 150.625L206.989 90.0929C206.989 86.7003 205.134 83.5793 202.154 81.9582L153.537 55.5108C150.777 54.0098 147.445 54.0098 144.686 55.5108Z" fill="url(#paint12_linear_905_12026)"/>
|
||||
<g filter="url(#filter2_f_905_12026)">
|
||||
<path d="M144.686 55.5108L96.0687 81.9582C93.0885 83.5793 91.2334 86.7003 91.2334 90.0929L91.2334 150.625C91.2334 154.017 93.0885 157.138 96.0687 158.759L144.686 185.207C147.445 186.708 150.777 186.708 153.537 185.207L202.154 158.759C205.134 157.138 206.989 154.017 206.989 150.625L206.989 90.0929C206.989 86.7003 205.134 83.5793 202.154 81.9582L153.537 55.5108C150.777 54.0098 147.445 54.0098 144.686 55.5108Z" stroke="url(#paint13_linear_905_12026)" stroke-width="0.546791"/>
|
||||
</g>
|
||||
<g opacity="0.5">
|
||||
<mask id="mask0_905_12026" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="96" y="59" width="107" height="123">
|
||||
<path d="M145.26 60.8575L100.757 85.0451C97.9202 86.5867 96.1543 89.5563 96.1543 92.7846L96.1543 148.146C96.1543 151.374 97.9202 154.344 100.757 155.886L145.26 180.073C147.883 181.499 151.05 181.499 153.673 180.073L198.176 155.886C201.013 154.344 202.779 151.374 202.779 148.146L202.779 92.7846C202.779 89.5563 201.013 86.5867 198.176 85.0451L153.673 60.8575C151.05 59.4318 147.883 59.4318 145.26 60.8575Z" fill="#A6D3DE"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_905_12026)">
|
||||
<path d="M145.26 60.8575L100.757 85.0451C97.9202 86.5867 96.1543 89.5563 96.1543 92.7846L96.1543 148.146C96.1543 151.374 97.9202 154.344 100.757 155.886L145.26 180.073C147.883 181.499 151.05 181.499 153.673 180.073L198.176 155.886C201.013 154.344 202.779 151.374 202.779 148.146L202.779 92.7846C202.779 89.5563 201.013 86.5867 198.176 85.0451L153.673 60.8575C151.05 59.4318 147.883 59.4318 145.26 60.8575Z" fill="url(#paint14_radial_905_12026)"/>
|
||||
<path opacity="0.5" d="M140.555 184.805L138.438 56.1201H160.498L158.38 184.805H140.555Z" fill="url(#paint15_linear_905_12026)"/>
|
||||
<path opacity="0.5" d="M140.271 183.662L74.0947 73.2773L93.1994 62.2472L155.708 174.75L140.271 183.662Z" fill="url(#paint16_linear_905_12026)"/>
|
||||
<path opacity="0.5" d="M138.432 174.751L200.94 62.248L220.045 73.2781L153.869 183.663L138.432 174.751Z" fill="url(#paint17_linear_905_12026)"/>
|
||||
<rect x="96.1553" y="113.108" width="106.624" height="69.2445" fill="url(#paint18_linear_905_12026)"/>
|
||||
<g filter="url(#filter3_i_905_12026)">
|
||||
<path d="M145.26 60.8575L100.757 85.0451C97.9202 86.5867 96.1543 89.5563 96.1543 92.7846L96.1543 148.146C96.1543 151.374 97.9202 154.344 100.757 155.886L145.26 180.073C147.883 181.499 151.05 181.499 153.673 180.073L198.176 155.886C201.013 154.344 202.779 151.374 202.779 148.146L202.779 92.7846C202.779 89.5563 201.013 86.5867 198.176 85.0451L153.673 60.8575C151.05 59.4318 147.883 59.4318 145.26 60.8575Z" fill="#6052B4" fill-opacity="0.01"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g filter="url(#filter4_d_905_12026)">
|
||||
<rect x="114.745" y="104.72" width="68.8957" height="43.2223" rx="1.94988" fill="url(#paint19_linear_905_12026)"/>
|
||||
<rect x="114.745" y="102.445" width="68.8957" height="44.6837" rx="1.94988" fill="url(#paint20_linear_905_12026)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M181.851 103.653H116.535C116.205 103.653 115.938 103.923 115.938 104.257V145.317C115.938 145.651 116.205 145.921 116.535 145.921H181.851C182.181 145.921 182.448 145.651 182.448 145.317V104.257C182.448 103.923 182.181 103.653 181.851 103.653ZM116.535 102.445C115.546 102.445 114.745 103.256 114.745 104.257V145.317C114.745 146.318 115.546 147.129 116.535 147.129H181.851C182.84 147.129 183.641 146.318 183.641 145.317V104.257C183.641 103.256 182.84 102.445 181.851 102.445H116.535Z" fill="url(#paint21_linear_905_12026)"/>
|
||||
<g filter="url(#filter5_d_905_12026)">
|
||||
<path d="M120.921 97.5706L118.971 100.308V143.393H149.194V97.5706C139.578 91.1534 133.588 93.43 120.921 97.5706Z" fill="url(#paint22_linear_905_12026)"/>
|
||||
<path d="M132.944 130.394L120.92 140.793L118.97 143.393L149.193 143.555V135.431L146.755 132.018L132.944 130.394Z" fill="url(#paint23_linear_905_12026)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M177.466 97.5706L179.416 100.308V143.393L177.304 142.608C164.636 138.467 158.808 136.976 149.193 143.393V97.5706C158.808 91.1534 164.799 93.43 177.466 97.5706Z" fill="url(#paint24_linear_905_12026)"/>
|
||||
<path d="M165.442 130.394L177.466 140.793L179.416 143.393L149.193 143.555V135.431L151.63 132.018L165.442 130.394Z" fill="url(#paint25_linear_905_12026)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M121.036 97.9517L120.92 97.9905V140.793L121.036 140.754C133.308 138.572 139.941 137.47 149.193 140.793V97.9905C139.898 91.6153 133.281 93.8382 121.036 97.9517Z" fill="url(#paint26_linear_905_12026)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M177.351 97.9517L177.467 97.9905V140.793L177.351 140.754C165.056 138.852 158.425 137.251 149.194 140.793V97.9905C158.489 91.6153 165.106 93.8382 177.351 97.9517Z" fill="url(#paint27_linear_905_12026)"/>
|
||||
<g opacity="0.4" filter="url(#filter6_f_905_12026)">
|
||||
<path d="M162.146 94.3623C157.922 94.0971 154.052 95.0874 149.519 98.1631V140.184C154.005 137.226 157.92 136.249 162.187 136.517C166.51 136.788 171.183 138.339 177.142 140.341V98.2236C171.057 96.1799 166.416 94.6305 162.146 94.3623Z" stroke="white" stroke-opacity="0.1" stroke-width="0.649959"/>
|
||||
</g>
|
||||
<g opacity="0.3" filter="url(#filter7_f_905_12026)">
|
||||
<rect x="149.03" y="97.8965" width="0.32498" height="42.8973" fill="#DEE4F3"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g filter="url(#filter8_d_905_12026)">
|
||||
<path d="M236.561 122.192L207.258 130.916L205.114 134.667L236.561 122.192Z" fill="url(#paint28_linear_905_12026)"/>
|
||||
<g filter="url(#filter9_d_905_12026)">
|
||||
<path d="M254.021 115.903C252.108 134.722 231.306 171.163 162.756 169.342C166.822 166.294 171.595 163.008 177.171 159.476C191.279 150.54 200.413 141.51 206.014 132.924L254.021 115.903Z" fill="url(#paint29_linear_905_12026)"/>
|
||||
</g>
|
||||
<path d="M163.08 169.011C167.076 166.032 171.744 162.829 177.173 159.391C191.219 150.493 200.336 141.504 205.943 132.951L254.022 115.905" stroke="url(#paint30_linear_905_12026)" stroke-width="0.919439"/>
|
||||
<path d="M208.411 156.241L191.959 148.317L188.784 150.86L208.411 156.241Z" fill="url(#paint31_linear_905_12026)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M190.702 149.597C186.808 152.856 182.322 156.13 177.173 159.391C164.515 167.409 155.987 174.145 150.5 179.756C151.254 181.374 155.14 181.055 160.898 177.408C172.568 170.016 183.07 168.494 201.656 168.862C219.716 169.22 225.231 167.098 228.331 163.763C220.873 160.789 202.232 153.763 190.702 149.597Z" fill="url(#paint32_linear_905_12026)"/>
|
||||
<path d="M190.792 150.118C202.012 154.176 219.733 160.854 227.512 163.934C224.46 166.833 218.798 168.742 201.665 168.402C183.046 168.033 172.435 169.556 160.652 177.02C157.801 178.826 155.446 179.786 153.738 180.104C152.883 180.264 152.218 180.257 151.745 180.138C151.444 180.063 151.235 179.946 151.093 179.807C156.555 174.285 164.981 167.658 177.42 159.779C182.494 156.565 186.928 153.336 190.792 150.118Z" stroke="url(#paint33_linear_905_12026)" stroke-width="0.919439"/>
|
||||
<g filter="url(#filter10_d_905_12026)">
|
||||
<path d="M144.079 189.542C150.168 182.554 147.573 183.825 180.871 157.143C194.369 148.988 202.46 139.646 207.426 131.475C207.426 130.748 207.426 130.748 206.142 131.842C201.72 138.658 194.809 146.155 183.094 154.284C161.495 167.625 146.354 181.495 142.437 187.319L144.079 189.542Z" fill="url(#paint34_linear_905_12026)"/>
|
||||
<path d="M142.436 189.86C144.66 185.307 156.476 172.516 180.871 157.778C194.675 149.059 202.871 139.198 207.834 130.748C207.425 130.474 207.152 130.748 206.326 131.295C201.116 139.143 192.707 148.141 178.647 156.825C157.048 170.166 145.718 181.813 141.801 187.636L142.436 189.86Z" fill="#C4C4C4"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M178.48 156.555C203.603 141.038 210.609 124.534 213.603 115.433L214.207 115.631C211.177 124.842 204.09 141.483 178.814 157.095C157.235 170.423 145.947 182.042 142.064 187.814L141.537 187.459C145.489 181.584 156.86 169.909 178.48 156.555Z" fill="url(#paint35_linear_905_12026)"/>
|
||||
<path d="M193.476 148.249C189.901 151.492 185.734 154.707 180.871 157.778C177.203 159.995 173.819 162.168 170.709 164.274L169.231 162.961C172.125 160.968 175.26 158.917 178.647 156.825C183.248 153.983 187.243 151.107 190.72 148.249H193.476Z" fill="url(#paint36_linear_905_12026)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g filter="url(#filter11_d_905_12026)">
|
||||
<path d="M63.0015 122.19L92.3048 130.914L94.4488 134.665L63.0015 122.19Z" fill="url(#paint37_linear_905_12026)"/>
|
||||
<g filter="url(#filter12_d_905_12026)">
|
||||
<path d="M45.5413 115.902C47.4549 134.721 68.2563 171.162 136.807 169.341C132.741 166.293 127.968 163.007 122.391 159.475C108.283 150.539 99.1494 141.509 93.5488 132.923L45.5413 115.902Z" fill="url(#paint38_linear_905_12026)"/>
|
||||
</g>
|
||||
<path d="M136.481 169.009C132.486 166.03 127.817 162.827 122.389 159.389C108.342 150.491 99.2253 141.502 93.6185 132.95L45.5396 115.903" stroke="url(#paint39_linear_905_12026)" stroke-width="0.919439"/>
|
||||
<path d="M91.1526 156.24L107.605 148.316L110.78 150.859L91.1526 156.24Z" fill="url(#paint40_linear_905_12026)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M108.861 149.595C112.755 152.855 117.241 156.128 122.389 159.389C135.048 167.407 143.576 174.143 149.063 179.754C148.308 181.372 144.422 181.053 138.665 177.406C126.994 170.014 116.492 168.492 97.9065 168.86C79.8464 169.218 74.3313 167.096 71.2312 163.761C78.6892 160.787 97.331 153.761 108.861 149.595Z" fill="url(#paint41_linear_905_12026)"/>
|
||||
<path d="M108.771 150.116C97.5505 154.174 79.8297 160.852 72.0506 163.932C75.1029 166.831 80.7645 168.74 97.8975 168.4C116.516 168.031 127.127 169.554 138.911 177.018C141.762 178.824 144.117 179.784 145.824 180.102C146.68 180.262 147.344 180.255 147.818 180.136C148.118 180.061 148.327 179.944 148.469 179.805C143.007 174.283 134.582 167.656 122.143 159.777C117.069 156.563 112.634 153.334 108.771 150.116Z" stroke="url(#paint42_linear_905_12026)" stroke-width="0.919439"/>
|
||||
<g filter="url(#filter13_d_905_12026)">
|
||||
<path d="M155.485 189.541C149.396 182.553 151.991 183.824 118.692 157.142C105.194 148.987 97.103 139.645 92.1376 131.474C92.1376 130.747 92.1376 130.747 93.4217 131.841C97.844 138.657 104.755 146.154 116.469 154.283C138.069 167.624 153.209 181.494 157.127 187.318L155.485 189.541Z" fill="url(#paint43_linear_905_12026)"/>
|
||||
<path d="M157.126 189.859C154.903 185.306 143.087 172.515 118.692 157.777C104.887 149.058 96.6915 139.197 91.7289 130.747C92.1372 130.473 92.4106 130.747 93.2367 131.294C98.4468 139.142 106.856 148.14 120.915 156.824C142.515 170.165 153.844 181.812 157.762 187.635L157.126 189.859Z" fill="#C4C4C4"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M121.083 156.554C95.9609 141.037 88.9542 124.533 85.9602 115.432L85.3568 115.63C88.3867 124.841 95.4732 141.482 120.75 157.094C142.328 170.422 153.616 182.041 157.499 187.813L158.026 187.458C154.074 181.583 142.704 169.908 121.083 156.554Z" fill="url(#paint44_linear_905_12026)"/>
|
||||
<path d="M106.087 148.248C109.662 151.492 113.83 154.706 118.693 157.777C122.362 159.994 125.744 162.168 128.854 164.274L130.332 162.96C127.439 160.967 124.303 158.916 120.916 156.824C116.315 153.982 112.32 151.106 108.844 148.248H106.087Z" fill="url(#paint45_linear_905_12026)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g filter="url(#filter14_f_905_12026)">
|
||||
<path d="M149.192 162.462L162.315 194.176H136.069L149.192 162.462Z" fill="url(#paint46_linear_905_12026)"/>
|
||||
</g>
|
||||
<mask id="mask1_905_12026" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="135" y="172" width="28" height="29">
|
||||
<path d="M136.236 195.477C135.59 195.237 135.324 194.467 135.685 193.879L148.273 173.373C148.7 172.677 149.71 172.677 150.137 173.373L162.725 193.879C163.086 194.467 162.82 195.237 162.174 195.477L149.585 200.147C149.34 200.238 149.07 200.238 148.825 200.147L136.236 195.477Z" fill="url(#paint47_linear_905_12026)"/>
|
||||
</mask>
|
||||
<g mask="url(#mask1_905_12026)">
|
||||
<path d="M149.282 200.882L163.374 195.094L149.282 169.679L149.282 200.882Z" fill="url(#paint48_linear_905_12026)"/>
|
||||
<path d="M149.283 200.882L135.191 195.094L149.283 169.679L149.283 200.882Z" fill="url(#paint49_linear_905_12026)"/>
|
||||
</g>
|
||||
<g filter="url(#filter15_d_905_12026)">
|
||||
<path d="M149.106 109.289L153.194 112.202L157.048 115.059L155.525 119.713L154.015 124.396L149.106 124.499L144.198 124.396L142.713 119.717L141.164 115.059L145.155 112.202L149.106 109.289Z" fill="url(#paint50_linear_905_12026)"/>
|
||||
<path d="M149.106 109.289V103.408L162.632 113.229L157.046 115.052L149.106 109.289Z" fill="url(#paint51_linear_905_12026)"/>
|
||||
<path d="M149.106 109.348V103.467L135.521 113.288L141.167 115.052L149.106 109.348Z" fill="url(#paint52_linear_905_12026)"/>
|
||||
<path d="M153.987 124.403L157.443 129.098L162.632 113.229L157.045 115.053L153.987 124.403Z" fill="url(#paint53_linear_905_12026)"/>
|
||||
<path d="M144.225 124.402L140.696 129.107H157.457L153.987 124.402H144.225Z" fill="url(#paint54_linear_905_12026)"/>
|
||||
<path d="M144.225 124.403L140.696 129.107L135.58 113.288L141.167 115.052L144.225 124.403Z" fill="url(#paint55_linear_905_12026)"/>
|
||||
<path d="M149.086 109.368C140.385 114.874 139.358 114.164 135.864 113.067L135.521 113.273L141.139 115.123L149.086 109.368Z" fill="#64DBFF"/>
|
||||
<path opacity="0.2" d="M142.44 121.082C140.303 125.083 137.257 118.411 136.001 114.574L138.33 121.904L140.728 129.097C140.865 127.727 141.139 122.11 144.222 124.37L142.44 118.89C142.605 120.315 142.509 120.945 142.44 121.082Z" fill="url(#paint56_linear_905_12026)"/>
|
||||
<path opacity="0.2" d="M162.581 113.273L159.948 121.27C158.434 122.109 156.694 122.59 154.84 122.59C149.013 122.59 144.29 117.866 144.29 112.04C144.29 109.35 145.298 106.896 146.956 105.032L149.154 103.477L162.581 113.273Z" fill="#74E4FF"/>
|
||||
<path d="M156.69 111.903C154.979 111.83 150.639 110.35 149.086 109.3L157.033 115.054C157.992 112.931 159.499 112.794 162.65 113.273L151.415 105.121C155.731 108.683 159.156 112.009 156.69 111.903Z" fill="url(#paint57_linear_905_12026)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M149.105 109.12L153.275 112.091L157.209 115.008L155.655 119.755L155.655 119.755L154.115 124.531L149.106 124.636L144.096 124.531L142.583 119.761L142.582 119.759L141.002 115.007L145.074 112.091L149.105 109.12ZM149.107 109.459L145.235 112.313L141.326 115.112L142.843 119.676L144.298 124.261L149.106 124.362L153.914 124.261L155.394 119.671L155.395 119.67L156.887 115.111L153.113 112.313L149.107 109.459Z" fill="url(#paint58_linear_905_12026)"/>
|
||||
<path opacity="0.1" d="M149.839 129.098C146.331 127.07 148.514 125.17 150.044 124.439H154.086L157.443 129.098H149.839Z" fill="white"/>
|
||||
<g filter="url(#filter16_f_905_12026)">
|
||||
<path d="M156.896 112.451L157.077 114.599L159.225 114.78L157.077 114.961L156.896 117.11L156.714 114.961L154.566 114.78L156.714 114.599L156.896 112.451Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M156.896 112.451L157.077 114.599L159.225 114.78L157.077 114.961L156.896 117.11L156.714 114.961L154.566 114.78L156.714 114.599L156.896 112.451Z" fill="white"/>
|
||||
<path d="M156.895 111.766L157.149 111.776L157.401 111.806L157.65 111.857L157.893 111.928L158.131 112.018L158.36 112.127L158.58 112.253L158.788 112.398L158.985 112.558L159.168 112.734L159.336 112.924L159.489 113.127L159.624 113.341L159.742 113.566L159.842 113.799L159.922 114.04L159.983 114.287L160.024 114.537L160.044 114.79V115.044L160.024 115.297L159.983 115.547L159.922 115.794L159.842 116.034L159.742 116.268L159.624 116.492L159.489 116.707L159.336 116.91L159.168 117.1L158.985 117.276L158.788 117.436L158.58 117.58L158.36 117.707L158.131 117.816L157.893 117.906L157.65 117.977L157.401 118.027L157.149 118.058L156.895 118.068L156.642 118.058L156.39 118.027L156.141 117.977L155.897 117.906L155.66 117.816L155.431 117.707L155.211 117.58L155.002 117.436L154.806 117.276L154.623 117.1L154.454 116.91L154.302 116.707L154.166 116.492L154.048 116.268L153.949 116.034L153.869 115.794L153.808 115.547L153.767 115.297L153.747 115.044V114.79L153.767 114.537L153.808 114.287L153.869 114.04L153.949 113.799L154.048 113.566L154.166 113.341L154.302 113.127L154.454 112.924L154.623 112.734L154.806 112.558L155.002 112.398L155.211 112.253L155.431 112.127L155.66 112.018L155.897 111.928L156.141 111.857L156.39 111.806L156.642 111.776L156.895 111.766Z" fill="white" fill-opacity="0.17"/>
|
||||
</g>
|
||||
</g>
|
||||
<g opacity="0.5" filter="url(#filter17_f_905_12026)">
|
||||
<circle cx="148.932" cy="23.6771" r="3.02572" fill="url(#paint59_radial_905_12026)"/>
|
||||
</g>
|
||||
<g filter="url(#filter18_f_905_12026)">
|
||||
<path d="M148.933 16.1123L149.559 22.638L155.741 23.2984L149.559 23.9588L148.933 30.4845L148.307 23.9588L142.125 23.2984L148.307 22.638L148.933 16.1123Z" fill="#E8F2FF"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_dd_905_12026" x="-9.53674e-05" y="0.000236511" width="299.562" height="280.862" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="7.56431"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.558594 0 0 0 0 0.710156 0 0 0 0 0.9375 0 0 0 1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12026"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="3.02572"/>
|
||||
<feGaussianBlur stdDeviation="22.6929"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.670833 0 0 0 0 0.8025 0 0 0 0 1 0 0 0 0.6 0"/>
|
||||
<feBlend mode="normal" in2="effect1_dropShadow_905_12026" result="effect2_dropShadow_905_12026"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_905_12026" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_f_905_12026" x="119.665" y="181.599" width="59.0532" height="25.6987" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.820187" result="effect1_foregroundBlur_905_12026"/>
|
||||
</filter>
|
||||
<filter id="filter2_f_905_12026" x="90.7959" y="53.9473" width="116.631" height="132.823" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.0820187" result="effect1_foregroundBlur_905_12026"/>
|
||||
</filter>
|
||||
<filter id="filter3_i_905_12026" x="96.1543" y="59.7881" width="106.624" height="121.354" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="3.6767"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.297222 0 0 0 0 0.329917 0 0 0 0 0.445833 0 0 0 1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_905_12026"/>
|
||||
</filter>
|
||||
<filter id="filter4_d_905_12026" x="110.371" y="91.3792" width="77.6442" height="63.1246" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2.18717"/>
|
||||
<feGaussianBlur stdDeviation="2.18717"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.504687 0 0 0 0 0.517969 0 0 0 0 0.6375 0 0 0 1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12026"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12026" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter5_d_905_12026" x="117.02" y="92.5915" width="64.346" height="53.889" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="0.974939"/>
|
||||
<feGaussianBlur stdDeviation="0.974939"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.426562 0 0 0 0 0.464625 0 0 0 0 0.5625 0 0 0 0.71 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12026"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12026" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter6_f_905_12026" x="148.543" y="93.3461" width="29.5734" height="48.0968" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.32498" result="effect1_foregroundBlur_905_12026"/>
|
||||
</filter>
|
||||
<filter id="filter7_f_905_12026" x="148.705" y="97.5715" width="0.975155" height="43.5474" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.16249" result="effect1_foregroundBlur_905_12026"/>
|
||||
</filter>
|
||||
<filter id="filter8_d_905_12026" x="138.996" y="115.433" width="117.721" height="79.509" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2.54112"/>
|
||||
<feGaussianBlur stdDeviation="1.27056"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.214861 0 0 0 0 0.236708 0 0 0 0 0.433333 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12026"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12026" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter9_d_905_12026" x="156.626" y="108.503" width="103.525" height="65.7641" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="-1.27056"/>
|
||||
<feGaussianBlur stdDeviation="3.0648"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.365689 0 0 0 0 0.351111 0 0 0 0 0.533333 0 0 0 0.2 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12026"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12026" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter10_d_905_12026" x="139.631" y="114.797" width="76.4816" height="78.2384" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.27056"/>
|
||||
<feGaussianBlur stdDeviation="0.952921"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.302882 0 0 0 0 0.323427 0 0 0 0 0.508333 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12026"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12026" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter11_d_905_12026" x="42.8446" y="115.432" width="117.723" height="79.509" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2.54112"/>
|
||||
<feGaussianBlur stdDeviation="1.27056"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.214861 0 0 0 0 0.236708 0 0 0 0 0.433333 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12026"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12026" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter12_d_905_12026" x="39.4114" y="108.502" width="103.525" height="65.7641" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="-1.27056"/>
|
||||
<feGaussianBlur stdDeviation="3.0648"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.365689 0 0 0 0 0.351111 0 0 0 0 0.533333 0 0 0 0.2 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12026"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12026" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter13_d_905_12026" x="83.4506" y="114.796" width="76.4816" height="78.2384" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.27056"/>
|
||||
<feGaussianBlur stdDeviation="0.952921"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.302882 0 0 0 0 0.323427 0 0 0 0 0.508333 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12026"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12026" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter14_f_905_12026" x="133.882" y="160.275" width="30.6204" height="36.0882" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="1.09358" result="effect1_foregroundBlur_905_12026"/>
|
||||
</filter>
|
||||
<filter id="filter15_d_905_12026" x="132.241" y="102.315" width="33.6904" height="32.2607" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2.18717"/>
|
||||
<feGaussianBlur stdDeviation="1.64037"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.300885 0 0 0 0 0.402137 0 0 0 0 0.6625 0 0 0 0.85 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12026"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12026" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter16_f_905_12026" x="154.018" y="111.903" width="5.75429" height="5.75429" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.274021" result="effect1_foregroundBlur_905_12026"/>
|
||||
</filter>
|
||||
<filter id="filter17_f_905_12026" x="144.393" y="19.1385" width="9.07748" height="9.07748" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.756431" result="effect1_foregroundBlur_905_12026"/>
|
||||
</filter>
|
||||
<filter id="filter18_f_905_12026" x="141.671" y="15.6584" width="14.5239" height="15.2798" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.226929" result="effect1_foregroundBlur_905_12026"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_905_12026" x1="149.689" y1="23.2987" x2="149.689" y2="185.175" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#B6CAFF" stop-opacity="0.58"/>
|
||||
<stop offset="0.0722622" stop-color="#CCDDFF" stop-opacity="0.06"/>
|
||||
<stop offset="1" stop-color="#56D7E0" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_905_12026" x1="147.866" y1="7.03516" x2="147.866" y2="95.7241" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#AACCFF" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_905_12026" x1="243.697" y1="175.599" x2="166.89" y2="131.254" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#AACCFF" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_905_12026" x1="147.305" y1="231.695" x2="147.305" y2="143.006" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#AACCFF" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_905_12026" x1="51.6223" y1="175.881" x2="128.429" y2="131.536" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#AACCFF" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_905_12026" x1="243.697" y1="63.2705" x2="166.89" y2="107.615" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#AACCFF" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_905_12026" x1="51.6223" y1="62.9893" x2="128.429" y2="107.334" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#AACCFF" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_905_12026" x1="149.383" y1="138.498" x2="149.383" y2="214.524" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#063988"/>
|
||||
<stop offset="0.541667" stop-color="#3168BD"/>
|
||||
<stop offset="0.744062" stop-color="#0764C3"/>
|
||||
<stop offset="1" stop-color="#063885"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_905_12026" x1="136.015" y1="102.861" x2="136.015" y2="225.689" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#98B4E1"/>
|
||||
<stop offset="0.783601" stop-color="#FAFCFF"/>
|
||||
<stop offset="1" stop-color="#DFE7FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear_905_12026" x1="136.372" y1="102.861" x2="136.372" y2="228.418" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#98B4E1"/>
|
||||
<stop offset="0.783601" stop-color="#FAFCFF"/>
|
||||
<stop offset="1" stop-color="#DFE7FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear_905_12026" x1="159.266" y1="102.861" x2="159.266" y2="228.418" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#98B4E1"/>
|
||||
<stop offset="0.783601" stop-color="#FAFCFF"/>
|
||||
<stop offset="1" stop-color="#DFE7FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint11_linear_905_12026" x1="120.486" y1="60.2119" x2="182" y2="182.42" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FAFAFA"/>
|
||||
<stop offset="1" stop-color="#C2C4CD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint12_linear_905_12026" x1="119.94" y1="70.3274" x2="172.979" y2="168.203" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CDCFD6"/>
|
||||
<stop offset="1" stop-color="#EFEFF1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint13_linear_905_12026" x1="125.681" y1="66.7733" x2="182.821" y2="169.57" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DDDFE2"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint14_radial_905_12026" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(149.466 120.465) rotate(90) scale(61.8941 53.3121)">
|
||||
<stop stop-color="#F5F7FF"/>
|
||||
<stop offset="1" stop-color="#B3B5C5"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="paint15_linear_905_12026" x1="149.468" y1="56.1201" x2="149.468" y2="184.805" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#F2EDED" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint16_linear_905_12026" x1="83.6471" y1="67.7623" x2="147.989" y2="179.206" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#F2EDED" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint17_linear_905_12026" x1="210.493" y1="67.7631" x2="146.151" y2="179.207" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#F2EDED" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint18_linear_905_12026" x1="149.467" y1="143.135" x2="149.146" y2="178.063" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#D0DBFF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint19_linear_905_12026" x1="114.745" y1="145.898" x2="183.641" y2="145.745" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F7F7F8"/>
|
||||
<stop offset="0.0201542" stop-color="#CDCFD7"/>
|
||||
<stop offset="0.977524" stop-color="#C5C7CF"/>
|
||||
<stop offset="1" stop-color="#E8EAEC"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint20_linear_905_12026" x1="119.219" y1="108.333" x2="169.426" y2="143.08" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#D7D9DF"/>
|
||||
<stop offset="1" stop-color="#C8CAD3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint21_linear_905_12026" x1="116.684" y1="102.445" x2="178.437" y2="143.411" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F8F9F9"/>
|
||||
<stop offset="1" stop-color="#C2C4CD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint22_linear_905_12026" x1="123.845" y1="138.031" x2="120.827" y2="104.423" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EDEEF1"/>
|
||||
<stop offset="1" stop-color="#EDEEF1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint23_linear_905_12026" x1="125.144" y1="139.655" x2="148.38" y2="143.718" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0442192" stop-color="#C2C4CD"/>
|
||||
<stop offset="0.65381" stop-color="#CFD0D7"/>
|
||||
<stop offset="0.991391" stop-color="#C2C4CD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint24_linear_905_12026" x1="167.554" y1="95.2957" x2="176.816" y2="131.856" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2C4CD"/>
|
||||
<stop offset="0.371361" stop-color="#C2C4CD"/>
|
||||
<stop offset="1" stop-color="#B1B3BD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint25_linear_905_12026" x1="173.241" y1="139.655" x2="150.005" y2="143.718" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0442192" stop-color="#BDBFC8"/>
|
||||
<stop offset="0.65381" stop-color="#D4D6DF"/>
|
||||
<stop offset="0.991391" stop-color="#C2C4CD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint26_linear_905_12026" x1="149.193" y1="111.87" x2="120.919" y2="111.409" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2C4CD"/>
|
||||
<stop offset="0.0890549" stop-color="#C2C4CD"/>
|
||||
<stop offset="0.46547" stop-color="#E5E7EB"/>
|
||||
<stop offset="1" stop-color="#FAFAFA"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint27_linear_905_12026" x1="149.194" y1="111.87" x2="177.467" y2="111.409" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2C4CD"/>
|
||||
<stop offset="0.214912" stop-color="#FAFAFA"/>
|
||||
<stop offset="0.510885" stop-color="#E7E8EC"/>
|
||||
<stop offset="0.901932" stop-color="#C2C4CD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint28_linear_905_12026" x1="224.971" y1="135.236" x2="204.827" y2="128.772" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.209488" stop-color="#9196AA"/>
|
||||
<stop offset="0.583159" stop-color="#C9C9DC"/>
|
||||
<stop offset="0.986946" stop-color="#797D87"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint29_linear_905_12026" x1="216.845" y1="127.336" x2="216.096" y2="186.555" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EFEFEF"/>
|
||||
<stop offset="0.411026" stop-color="#DEDFE6"/>
|
||||
<stop offset="0.58979" stop-color="#D1D2D9"/>
|
||||
<stop offset="1" stop-color="#D1D2D9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint30_linear_905_12026" x1="250.169" y1="118.797" x2="217.139" y2="155.022" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F8F8F9" stop-opacity="0.86"/>
|
||||
<stop offset="0.319253" stop-color="#F8F8F9"/>
|
||||
<stop offset="0.615431" stop-color="white" stop-opacity="0.88"/>
|
||||
<stop offset="0.867925" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint31_linear_905_12026" x1="202.593" y1="154.093" x2="189.716" y2="146.822" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.209488" stop-color="#717995"/>
|
||||
<stop offset="0.583159" stop-color="#A4A5BB"/>
|
||||
<stop offset="0.986946" stop-color="#797D87"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint32_linear_905_12026" x1="192.992" y1="149.956" x2="196.47" y2="188.726" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0306468" stop-color="#DBDCE7"/>
|
||||
<stop offset="0.274204" stop-color="#CBCCD7"/>
|
||||
<stop offset="0.675444" stop-color="#D1D2D9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint33_linear_905_12026" x1="200.105" y1="151.535" x2="184.893" y2="192.724" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F8F8F9" stop-opacity="0.78"/>
|
||||
<stop offset="0.319253" stop-color="#F8F8F9" stop-opacity="0"/>
|
||||
<stop offset="0.615431" stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="0.867925" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint34_linear_905_12026" x1="178.489" y1="115.214" x2="178.489" y2="189.86" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C4C4"/>
|
||||
<stop offset="1" stop-color="#63687B"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint35_linear_905_12026" x1="185" y1="150.155" x2="173.565" y2="164.448" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="0.445395" stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint36_linear_905_12026" x1="180.552" y1="150.79" x2="181.354" y2="164.274" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0495744" stop-color="#C4C4C4"/>
|
||||
<stop offset="0.454268" stop-color="#EDEDED"/>
|
||||
<stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint37_linear_905_12026" x1="74.591" y1="135.234" x2="94.7352" y2="128.77" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.209488" stop-color="#9196AA"/>
|
||||
<stop offset="0.583159" stop-color="#C9C9DC"/>
|
||||
<stop offset="0.986946" stop-color="#797D87"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint38_linear_905_12026" x1="82.7177" y1="127.335" x2="83.4661" y2="186.554" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EFEFEF"/>
|
||||
<stop offset="0.411026" stop-color="#DEDFE6"/>
|
||||
<stop offset="0.58979" stop-color="#D1D2D9"/>
|
||||
<stop offset="1" stop-color="#D1D2D9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint39_linear_905_12026" x1="49.3922" y1="118.795" x2="82.4226" y2="155.02" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F8F8F9" stop-opacity="0.86"/>
|
||||
<stop offset="0.319253" stop-color="#F8F8F9"/>
|
||||
<stop offset="0.615431" stop-color="white" stop-opacity="0.88"/>
|
||||
<stop offset="0.867925" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint40_linear_905_12026" x1="96.9704" y1="154.093" x2="109.847" y2="146.821" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.209488" stop-color="#717995"/>
|
||||
<stop offset="0.583159" stop-color="#A4A5BB"/>
|
||||
<stop offset="0.986946" stop-color="#797D87"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint41_linear_905_12026" x1="106.571" y1="149.954" x2="103.093" y2="188.724" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0306468" stop-color="#DBDCE7"/>
|
||||
<stop offset="0.274204" stop-color="#CBCCD7"/>
|
||||
<stop offset="0.675444" stop-color="#D1D2D9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint42_linear_905_12026" x1="99.4579" y1="151.534" x2="114.67" y2="192.722" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F8F8F9" stop-opacity="0.78"/>
|
||||
<stop offset="0.319253" stop-color="#F8F8F9" stop-opacity="0"/>
|
||||
<stop offset="0.615431" stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="0.867925" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint43_linear_905_12026" x1="121.075" y1="115.213" x2="121.075" y2="189.859" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C4C4"/>
|
||||
<stop offset="1" stop-color="#63687B"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint44_linear_905_12026" x1="114.564" y1="150.154" x2="125.999" y2="164.447" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="0.445395" stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint45_linear_905_12026" x1="119.011" y1="150.789" x2="118.209" y2="164.274" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0495744" stop-color="#C4C4C4"/>
|
||||
<stop offset="0.454268" stop-color="#EDEDED"/>
|
||||
<stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint46_linear_905_12026" x1="149.192" y1="194.447" x2="149.192" y2="172.762" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#585B77" stop-opacity="0.75"/>
|
||||
<stop offset="1" stop-color="#525787" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint47_linear_905_12026" x1="150.567" y1="180.284" x2="141.633" y2="193.576" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#D5D7D9"/>
|
||||
<stop offset="1" stop-color="#E2E3E7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint48_linear_905_12026" x1="145.639" y1="204.291" x2="166.444" y2="195.235" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9A9CA5"/>
|
||||
<stop offset="0.259135" stop-color="#C4C6CF"/>
|
||||
<stop offset="0.878536" stop-color="#EDEFF8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint49_linear_905_12026" x1="149.194" y1="176.678" x2="156.927" y2="204.547" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="0.523539" stop-color="#F7F7F7"/>
|
||||
<stop offset="0.897249" stop-color="#DADBE0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint50_linear_905_12026" x1="145.934" y1="127.865" x2="159.319" y2="109.217" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0203454" stop-color="#2A67C4"/>
|
||||
<stop offset="0.349209" stop-color="#2E3AB0"/>
|
||||
<stop offset="1" stop-color="#79E8FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint51_linear_905_12026" x1="148.62" y1="118.223" x2="146.081" y2="106.207" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.14601" stop-color="#A5F0FF"/>
|
||||
<stop offset="1" stop-color="#BAF3FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint52_linear_905_12026" x1="137.784" y1="116.181" x2="134.719" y2="104.916" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#7CD0FF"/>
|
||||
<stop offset="1" stop-color="#2354C0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint53_linear_905_12026" x1="155.328" y1="129.147" x2="151.105" y2="114.312" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#55C1F2"/>
|
||||
<stop offset="1" stop-color="#2E3DB0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint54_linear_905_12026" x1="159.978" y1="127.59" x2="145.14" y2="135.085" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#64E4FF"/>
|
||||
<stop offset="0.630208" stop-color="#458CD7"/>
|
||||
<stop offset="1" stop-color="#458CD7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint55_linear_905_12026" x1="141.156" y1="123.241" x2="135.045" y2="119.854" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#5BB2EC"/>
|
||||
<stop offset="1" stop-color="#48D5FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint56_linear_905_12026" x1="143.331" y1="123.137" x2="137.988" y2="123.548" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FBFEFF"/>
|
||||
<stop offset="1" stop-color="#93E8FF" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint57_linear_905_12026" x1="156.416" y1="109.026" x2="155.114" y2="113.958" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white" stop-opacity="0.36"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint58_linear_905_12026" x1="157.34" y1="109.114" x2="142.947" y2="124.162" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#D7F8FF"/>
|
||||
<stop offset="0.176669" stop-color="#52B5EC"/>
|
||||
<stop offset="0.432173" stop-color="#CAF4FD"/>
|
||||
<stop offset="0.685688" stop-color="#D4F4FB" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint59_radial_905_12026" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(148.932 23.6771) rotate(90) scale(4.84116)">
|
||||
<stop stop-color="#E7ECFF"/>
|
||||
<stop offset="0.979167" stop-color="#ABC3FF" stop-opacity="0.8825"/>
|
||||
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.88"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 46 KiB |
741
schoolNewsWeb/public/img/achievement/time-4.svg
Normal file
741
schoolNewsWeb/public/img/achievement/time-4.svg
Normal file
@@ -0,0 +1,741 @@
|
||||
<svg width="310" height="272" viewBox="0 0 310 272" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M142.082 94.2133L138.165 5.52441H169.5L165.583 94.2133H142.082Z" fill="url(#paint0_linear_905_12116)"/>
|
||||
<path d="M178.733 119.567L257.498 160.52L241.831 187.656L166.982 139.92L178.733 119.567Z" fill="url(#paint1_linear_905_12116)"/>
|
||||
<path d="M165.024 141.495L168.94 230.184H137.606L141.522 141.495H165.024Z" fill="url(#paint2_linear_905_12116)"/>
|
||||
<path d="M140.272 140.202L65.4238 187.938L49.7564 160.802L128.522 119.849L140.272 140.202Z" fill="url(#paint3_linear_905_12116)"/>
|
||||
<path d="M178.733 116.28L257.498 75.3281L241.831 48.1913L166.982 95.9279L178.733 116.28Z" fill="url(#paint4_linear_905_12116)"/>
|
||||
<path d="M140.272 95.6467L65.4238 47.9102L49.7564 75.047L128.522 115.999L140.272 95.6467Z" fill="url(#paint5_linear_905_12116)"/>
|
||||
<g opacity="0.5" filter="url(#filter0_f_905_12116)">
|
||||
<circle cx="154.143" cy="22.9221" r="6.80788" fill="url(#paint6_radial_905_12116)"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_f_905_12116)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M153.009 221.863C207.527 221.863 251.723 177.667 251.723 123.149C251.723 68.6302 207.527 24.4343 153.009 24.4343C98.4905 24.4343 54.2947 68.6302 54.2947 123.149C54.2947 177.667 98.4905 221.863 153.009 221.863ZM153.009 224.132C208.781 224.132 253.992 178.92 253.992 123.149C253.992 67.3769 208.781 22.165 153.009 22.165C97.2372 22.165 52.0254 67.3769 52.0254 123.149C52.0254 178.92 97.2372 224.132 153.009 224.132Z" fill="url(#paint7_linear_905_12116)"/>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M153.009 221.863C207.527 221.863 251.723 177.667 251.723 123.149C251.723 68.6302 207.527 24.4343 153.009 24.4343C98.4905 24.4343 54.2947 68.6302 54.2947 123.149C54.2947 177.667 98.4905 221.863 153.009 221.863ZM153.009 224.132C208.781 224.132 253.992 178.92 253.992 123.149C253.992 67.3769 208.781 22.165 153.009 22.165C97.2372 22.165 52.0254 67.3769 52.0254 123.149C52.0254 178.92 97.2372 224.132 153.009 224.132Z" fill="url(#paint8_linear_905_12116)"/>
|
||||
<g filter="url(#filter2_f_905_12116)">
|
||||
<path d="M154.143 11.5752L155.116 21.8789L164.733 22.9217L155.116 23.9644L154.143 34.2681L153.17 23.9644L143.553 22.9217L153.17 21.8789L154.143 11.5752Z" fill="white"/>
|
||||
</g>
|
||||
<g filter="url(#filter3_dd_905_12116)">
|
||||
<path d="M128.397 183.581H180.813V209.243L154.605 222.347L128.397 209.243V183.581Z" fill="url(#paint9_radial_905_12116)"/>
|
||||
<path opacity="0.8" d="M135.494 185.22C141.715 199.154 148.39 214.785 163.786 217.755L154.604 222.347L128.396 209.243V185.22H135.494Z" fill="url(#paint10_linear_905_12116)"/>
|
||||
<g opacity="0.8" filter="url(#filter4_f_905_12116)">
|
||||
<path d="M154.877 204.056L180.539 190.952V186.038H128.942V190.952L154.877 204.056Z" fill="#0E3060"/>
|
||||
</g>
|
||||
<g filter="url(#filter5_f_905_12116)">
|
||||
<path d="M136.86 196.958C134.312 201.02 134.312 202.145 136.86 204.602C136.405 204.602 136.096 206.076 145.05 211.973C156.243 219.344 166.071 212.246 172.896 204.602C179.721 196.958 177.537 196.958 175.899 199.142C174.261 201.326 170.439 208.97 157.335 211.973C144.231 214.976 146.961 180.851 136.86 196.958Z" fill="url(#paint11_linear_905_12116)"/>
|
||||
</g>
|
||||
<g filter="url(#filter6_d_905_12116)">
|
||||
<path d="M154.604 220.708L128.396 208.15V210.061L154.604 222.619L180.812 210.061V208.423L154.604 220.708Z" fill="url(#paint12_linear_905_12116)"/>
|
||||
<path d="M154.604 219.072L128.396 206.514V208.971L154.604 220.983L180.812 208.971V206.787L154.604 219.072Z" fill="url(#paint13_linear_905_12116)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M180.812 206.786L154.33 219.374L128.396 206.786V206.24L154.333 218.768L180.812 206.24V206.786Z" fill="#EEEFF8"/>
|
||||
</g>
|
||||
<path d="M185.585 160.649H214.258V190.227L199.922 197.166L185.585 203.783V160.649Z" fill="#063988"/>
|
||||
<g opacity="0.8" filter="url(#filter7_f_905_12116)">
|
||||
<path d="M214.391 172.933V162.56L185.727 176.482V187.948L214.391 172.933Z" fill="#0E3060"/>
|
||||
</g>
|
||||
<g filter="url(#filter8_d_905_12116)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M214.391 190.679L185.453 204.056V203.51L214.391 190.133V190.679Z" fill="#EEEFF8"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M214.392 192.863L185.454 206.24V204.056L214.392 190.679V192.863Z" fill="url(#paint14_linear_905_12116)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M214.392 193.955L185.454 207.332V206.24L214.392 192.863V193.955Z" fill="url(#paint15_linear_905_12116)"/>
|
||||
</g>
|
||||
<g filter="url(#filter9_f_905_12116)">
|
||||
<path d="M185.727 195.319L209.477 175.391V178.394L185.727 205.42V195.319Z" fill="url(#paint16_linear_905_12116)"/>
|
||||
</g>
|
||||
<path d="M123.624 160.649H94.9505V190.227L109.287 197.166L123.624 203.783V160.649Z" fill="#063988"/>
|
||||
<g opacity="0.8" filter="url(#filter10_f_905_12116)">
|
||||
<path d="M94.8187 172.933V162.56L123.483 176.482V187.948L94.8187 172.933Z" fill="#0E3060"/>
|
||||
</g>
|
||||
<g filter="url(#filter11_d_905_12116)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M94.8191 192.863L123.757 206.24V204.056L94.8191 190.679V192.863Z" fill="url(#paint17_linear_905_12116)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M94.8191 193.955L123.757 207.332V206.24L94.8191 192.863V193.955Z" fill="url(#paint18_linear_905_12116)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M94.8181 190.679L123.756 204.056V203.51L94.8181 190.133V190.679Z" fill="#EEEFF8"/>
|
||||
</g>
|
||||
<g filter="url(#filter12_f_905_12116)">
|
||||
<path d="M123.483 195.319L99.7326 175.391V178.394L123.483 205.42V195.319Z" fill="url(#paint19_linear_905_12116)"/>
|
||||
</g>
|
||||
<path d="M149.896 43.489L90.9285 75.5667C87.9415 77.1916 86.0821 80.3198 86.082 83.7202L86.082 157.046C86.082 160.447 87.9414 163.575 90.9285 165.2L149.896 197.278C152.662 198.782 156.001 198.782 158.767 197.278L217.734 165.2C220.721 163.575 222.581 160.447 222.581 157.046L222.581 83.7202C222.581 80.3198 220.721 77.1916 217.734 75.5667L158.767 43.489C156.001 41.9846 152.662 41.9846 149.896 43.489Z" fill="url(#paint20_linear_905_12116)"/>
|
||||
<path d="M149.83 55.4917L101.283 81.9005C98.3075 83.5193 96.4551 86.6358 96.4551 90.0234L96.4551 150.467C96.4551 153.855 98.3075 156.971 101.283 158.59L149.83 184.999C152.585 186.498 155.912 186.498 158.667 184.999L207.214 158.59C210.19 156.971 212.042 153.855 212.042 150.467L212.042 90.0234C212.042 86.6358 210.19 83.5193 207.214 81.9005L158.667 55.4917C155.912 53.9929 152.585 53.9929 149.83 55.4917Z" fill="url(#paint21_linear_905_12116)"/>
|
||||
<g filter="url(#filter13_f_905_12116)">
|
||||
<path d="M149.83 55.4917L101.283 81.9005C98.3075 83.5193 96.4551 86.6358 96.4551 90.0234L96.4551 150.467C96.4551 153.855 98.3075 156.971 101.283 158.59L149.83 184.999C152.585 186.498 155.912 186.498 158.667 184.999L207.214 158.59C210.19 156.971 212.042 153.855 212.042 150.467L212.042 90.0234C212.042 86.6358 210.19 83.5193 207.214 81.9005L158.667 55.4917C155.912 53.9929 152.585 53.9929 149.83 55.4917Z" stroke="url(#paint22_linear_905_12116)" stroke-width="0.545995"/>
|
||||
</g>
|
||||
<g opacity="0.5">
|
||||
<mask id="mask0_905_12116" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="101" y="59" width="107" height="122">
|
||||
<path d="M150.403 60.8307L105.965 84.9831C103.132 86.5224 101.369 89.4878 101.369 92.7113L101.369 147.992C101.369 151.216 103.132 154.181 105.965 155.72L150.403 179.873C153.023 181.296 156.185 181.296 158.804 179.873L203.243 155.72C206.075 154.181 207.838 151.216 207.838 147.992L207.838 92.7113C207.838 89.4878 206.075 86.5225 203.243 84.9831L158.804 60.8307C156.185 59.4071 153.023 59.4071 150.403 60.8307Z" fill="#A6D3DE"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_905_12116)">
|
||||
<path d="M150.403 60.8307L105.965 84.9831C103.132 86.5224 101.369 89.4878 101.369 92.7113L101.369 147.992C101.369 151.216 103.132 154.181 105.965 155.72L150.403 179.873C153.023 181.296 156.185 181.296 158.804 179.873L203.243 155.72C206.075 154.181 207.838 151.216 207.838 147.992L207.838 92.7113C207.838 89.4878 206.075 86.5225 203.243 84.9831L158.804 60.8307C156.185 59.4071 153.023 59.4071 150.403 60.8307Z" fill="url(#paint23_radial_905_12116)"/>
|
||||
<path opacity="0.5" d="M145.706 184.597L143.591 56.0996H165.619L163.504 184.597H145.706Z" fill="url(#paint24_linear_905_12116)"/>
|
||||
<path opacity="0.5" d="M145.422 183.457L79.3418 73.2324L98.4187 62.2184L160.836 174.557L145.422 183.457Z" fill="url(#paint25_linear_905_12116)"/>
|
||||
<path opacity="0.5" d="M143.586 174.558L206.003 62.2188L225.08 73.2328L159 183.457L143.586 174.558Z" fill="url(#paint26_linear_905_12116)"/>
|
||||
<rect x="101.37" y="113.005" width="106.469" height="69.1436" fill="url(#paint27_linear_905_12116)"/>
|
||||
<g filter="url(#filter14_i_905_12116)">
|
||||
<path d="M150.403 60.8307L105.965 84.9831C103.132 86.5224 101.369 89.4878 101.369 92.7113L101.369 147.992C101.369 151.216 103.132 154.181 105.965 155.72L150.403 179.873C153.023 181.296 156.185 181.296 158.804 179.873L203.243 155.72C206.075 154.181 207.838 151.216 207.838 147.992L207.838 92.7113C207.838 89.4878 206.075 86.5225 203.243 84.9831L158.804 60.8307C156.185 59.4071 153.023 59.4071 150.403 60.8307Z" fill="#6052B4" fill-opacity="0.01"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g filter="url(#filter15_d_905_12116)">
|
||||
<rect x="119.934" y="104.629" width="68.7953" height="43.1593" rx="1.94704" fill="url(#paint28_linear_905_12116)"/>
|
||||
<rect x="119.934" y="102.357" width="68.7953" height="44.6186" rx="1.94704" fill="url(#paint29_linear_905_12116)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M186.942 103.563H121.72C121.392 103.563 121.125 103.833 121.125 104.166V145.167C121.125 145.5 121.392 145.77 121.72 145.77H186.942C187.271 145.77 187.538 145.5 187.538 145.167V104.166C187.538 103.833 187.271 103.563 186.942 103.563ZM121.72 102.357C120.734 102.357 119.934 103.167 119.934 104.166V145.167C119.934 146.166 120.734 146.976 121.72 146.976H186.942C187.929 146.976 188.729 146.166 188.729 145.167V104.166C188.729 103.167 187.929 102.357 186.942 102.357H121.72Z" fill="url(#paint30_linear_905_12116)"/>
|
||||
<g filter="url(#filter16_d_905_12116)">
|
||||
<path d="M126.099 97.4905L124.152 100.224V143.246H154.331V97.4905C144.73 91.0827 138.749 93.356 126.099 97.4905Z" fill="url(#paint31_linear_905_12116)"/>
|
||||
<path d="M138.106 130.266L126.099 140.65L124.152 143.246L154.331 143.408V135.295L151.898 131.888L138.106 130.266Z" fill="url(#paint32_linear_905_12116)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M182.563 97.4905L184.51 100.224V143.246L182.4 142.462C169.751 138.327 163.932 136.838 154.331 143.246V97.4905C163.932 91.0827 169.914 93.356 182.563 97.4905Z" fill="url(#paint33_linear_905_12116)"/>
|
||||
<path d="M170.556 130.266L182.563 140.65L184.51 143.246L154.331 143.408V135.295L156.764 131.888L170.556 130.266Z" fill="url(#paint34_linear_905_12116)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M126.215 97.8707L126.1 97.9095V140.65L126.215 140.611C138.47 138.432 145.093 137.331 154.332 140.65V97.9095C145.05 91.5436 138.443 93.7632 126.215 97.8707Z" fill="url(#paint35_linear_905_12116)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M182.448 97.8707L182.563 97.9095V140.65L182.448 140.611C170.171 138.711 163.55 137.113 154.331 140.65V97.9095C163.613 91.5436 170.22 93.7632 182.448 97.8707Z" fill="url(#paint36_linear_905_12116)"/>
|
||||
<g opacity="0.4" filter="url(#filter17_f_905_12116)">
|
||||
<path d="M167.265 94.2861C163.048 94.0213 159.183 95.0102 154.656 98.0811V140.041C159.136 137.088 163.045 136.111 167.306 136.379C171.623 136.65 176.289 138.2 182.239 140.198V98.1426C176.164 96.1017 171.529 94.5539 167.265 94.2861Z" stroke="white" stroke-opacity="0.1" stroke-width="0.649013"/>
|
||||
</g>
|
||||
<g opacity="0.3" filter="url(#filter18_f_905_12116)">
|
||||
<rect x="154.169" y="97.8145" width="0.324506" height="42.8348" fill="#DEE4F3"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g filter="url(#filter19_d_905_12116)">
|
||||
<path d="M238.077 102.28L218.853 115.52L217.811 120.162L238.077 102.28Z" fill="url(#paint37_linear_905_12116)"/>
|
||||
<g filter="url(#filter20_d_905_12116)">
|
||||
<path d="M263.827 81.9986C261.919 107.478 245.561 156.292 195.488 149.598C208.282 138.819 214.602 128.197 216.987 118.674L263.827 81.9986Z" fill="url(#paint38_linear_905_12116)"/>
|
||||
</g>
|
||||
<path d="M263.282 83.0075C262.167 95.6457 257.584 113.523 247.347 127.594C236.99 141.83 220.848 152.176 196.574 149.274C208.829 138.734 215 128.334 217.392 118.939L263.282 83.0075Z" stroke="url(#paint39_linear_905_12116)" stroke-width="0.9181"/>
|
||||
<path d="M241.029 122.446L211.768 131.157L209.628 134.903L241.029 122.446Z" fill="url(#paint40_linear_905_12116)"/>
|
||||
<g filter="url(#filter21_d_905_12116)">
|
||||
<path d="M258.465 116.169C256.554 134.96 235.782 171.348 167.329 169.529C171.39 166.486 176.157 163.205 181.726 159.678C195.813 150.755 204.933 141.739 210.525 133.165L258.465 116.169Z" fill="url(#paint41_linear_905_12116)"/>
|
||||
</g>
|
||||
<path d="M167.655 169.197C171.644 166.222 176.306 163.024 181.727 159.591C195.753 150.707 204.857 141.73 210.455 133.19L258.464 116.168" stroke="url(#paint42_linear_905_12116)" stroke-width="0.9181"/>
|
||||
<path d="M212.919 156.446L196.491 148.533L193.321 151.072L212.919 156.446Z" fill="url(#paint43_linear_905_12116)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M195.236 149.812C191.348 153.067 186.869 156.336 181.728 159.592C169.088 167.598 160.572 174.325 155.093 179.927C155.846 181.543 159.727 181.225 165.476 177.583C177.129 170.201 187.616 168.681 206.175 169.049C224.209 169.406 229.716 167.288 232.811 163.957C225.364 160.988 206.749 153.972 195.236 149.812Z" fill="url(#paint44_linear_905_12116)"/>
|
||||
<path d="M195.327 150.333C206.531 154.385 224.225 161.052 231.993 164.128C228.945 167.023 223.292 168.929 206.184 168.59C187.592 168.221 176.996 169.742 165.23 177.195C162.383 178.998 160.031 179.957 158.326 180.275C157.472 180.435 156.809 180.428 156.336 180.309C156.036 180.234 155.827 180.117 155.686 179.979C161.14 174.465 169.552 167.848 181.974 159.98C187.041 156.77 191.469 153.546 195.327 150.333Z" stroke="url(#paint45_linear_905_12116)" stroke-width="0.9181"/>
|
||||
<g filter="url(#filter22_d_905_12116)">
|
||||
<path d="M185.418 157.347C209.777 142.63 216.501 124.043 219.038 115.479C218.721 115.479 218.187 115.491 218.087 115.797C214.644 126.264 209.577 139.268 187.638 154.492C166.07 167.814 150.951 181.664 147.039 187.479L148.679 189.699C154.759 182.721 152.168 183.99 185.418 157.347Z" fill="url(#paint46_linear_905_12116)"/>
|
||||
<path d="M185.418 157.981C209.524 142.757 216.502 124.043 219.039 115.479C218.722 115.479 218.505 115.491 218.405 115.797C215.397 124.94 208.361 141.488 183.198 157.03C161.63 170.351 150.317 181.981 146.405 187.796L147.04 190.016C149.26 185.47 161.059 172.698 185.418 157.981Z" fill="#C4C4C4"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M183.032 156.76C208.118 141.265 215.114 124.785 218.104 115.697L218.706 115.895C215.681 125.093 208.605 141.71 183.365 157.299C161.818 170.608 150.546 182.209 146.669 187.973L146.143 187.619C150.089 181.752 161.443 170.094 183.032 156.76Z" fill="url(#paint47_linear_905_12116)"/>
|
||||
<path d="M198.006 148.466C194.436 151.705 190.275 154.914 185.419 157.981C181.756 160.195 178.377 162.364 175.271 164.468L173.797 163.157C176.686 161.167 179.817 159.119 183.199 157.029C187.793 154.192 191.782 151.319 195.254 148.466H198.006Z" fill="url(#paint48_linear_905_12116)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g filter="url(#filter23_d_905_12116)">
|
||||
<path d="M71.1344 102.278L90.359 115.518L91.4008 120.16L71.1344 102.278Z" fill="url(#paint49_linear_905_12116)"/>
|
||||
<g filter="url(#filter24_d_905_12116)">
|
||||
<path d="M45.386 81.9978C47.2943 107.478 63.6515 156.292 113.725 149.597C100.932 138.819 94.6124 128.196 92.2269 118.674L45.386 81.9978Z" fill="url(#paint50_linear_905_12116)"/>
|
||||
</g>
|
||||
<path d="M45.9291 83.0037C47.0442 95.6421 51.6251 113.522 61.8635 127.595C72.2213 141.832 88.3646 152.177 112.641 149.273C100.385 138.733 94.2127 128.333 91.8208 118.938L45.9291 83.0037Z" stroke="url(#paint51_linear_905_12116)" stroke-width="0.915449"/>
|
||||
<path d="M68.1838 122.445L97.4444 131.156L99.5853 134.902L68.1838 122.445Z" fill="url(#paint52_linear_905_12116)"/>
|
||||
<g filter="url(#filter25_d_905_12116)">
|
||||
<path d="M50.7476 116.167C52.6584 134.959 73.4297 171.346 141.881 169.527C137.821 166.484 133.055 163.203 127.487 159.677C113.4 150.753 104.279 141.737 98.6865 133.163L50.7476 116.167Z" fill="url(#paint53_linear_905_12116)"/>
|
||||
</g>
|
||||
<path d="M141.557 169.196C137.568 166.221 132.906 163.023 127.485 159.59C113.459 150.705 104.355 141.729 98.7567 133.189L50.7478 116.167" stroke="url(#paint54_linear_905_12116)" stroke-width="0.915449"/>
|
||||
<path d="M96.2925 156.445L112.72 148.532L115.891 151.071L96.2925 156.445Z" fill="url(#paint55_linear_905_12116)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M113.975 149.811C117.864 153.066 122.343 156.335 127.484 159.591C140.124 167.597 148.64 174.324 154.119 179.926C153.366 181.542 149.485 181.224 143.736 177.582C132.083 170.201 121.596 168.68 103.037 169.048C85.0034 169.405 79.4963 167.287 76.4007 163.956C83.8479 160.987 102.462 153.971 113.975 149.811Z" fill="url(#paint56_linear_905_12116)"/>
|
||||
<path d="M113.886 150.331C102.681 154.383 84.9841 161.052 77.2171 164.128C80.2651 167.023 85.9184 168.93 103.028 168.591C121.62 168.222 132.215 169.742 143.981 177.195C146.828 178.998 149.179 179.957 150.885 180.276C151.739 180.435 152.403 180.428 152.876 180.309C153.177 180.234 153.385 180.117 153.527 179.978C148.073 174.464 139.661 167.846 127.239 159.977C122.172 156.768 117.743 153.544 113.886 150.331Z" stroke="url(#paint57_linear_905_12116)" stroke-width="0.915449"/>
|
||||
<g filter="url(#filter26_d_905_12116)">
|
||||
<path d="M123.791 157.346C99.4322 142.629 92.7081 124.042 90.1707 115.479C90.4878 115.479 91.0216 115.49 91.1222 115.796C94.5653 126.263 99.6321 139.267 121.571 154.491C143.139 167.813 158.258 181.663 162.17 187.478L160.53 189.698C154.45 182.72 157.041 183.989 123.791 157.346Z" fill="url(#paint58_linear_905_12116)"/>
|
||||
<path d="M123.792 157.98C99.6864 142.756 92.7085 124.042 90.1711 115.479C90.4883 115.479 90.7049 115.49 90.8054 115.796C93.813 124.939 100.849 141.487 126.012 157.029C147.58 170.35 158.893 181.98 162.805 187.795L162.17 190.015C159.95 185.469 148.151 172.697 123.792 157.98Z" fill="#C4C4C4"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M126.179 156.759C101.093 141.264 94.0968 124.785 91.1072 115.696L90.5046 115.895C93.5302 125.092 100.606 141.709 125.846 157.298C147.393 170.607 158.665 182.208 162.542 187.972L163.068 187.618C159.122 181.751 147.768 170.093 126.179 156.759Z" fill="url(#paint59_linear_905_12116)"/>
|
||||
<path d="M111.204 148.465C114.774 151.704 118.935 154.913 123.791 157.98C127.454 160.194 130.833 162.364 133.938 164.468L135.414 163.156C132.525 161.166 129.395 159.118 126.012 157.028C121.417 154.191 117.428 151.318 113.956 148.465H111.204Z" fill="url(#paint60_linear_905_12116)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g filter="url(#filter27_f_905_12116)">
|
||||
<path d="M154.331 162.833L167.435 194.501H141.227L154.331 162.833Z" fill="url(#paint61_linear_905_12116)"/>
|
||||
</g>
|
||||
<mask id="mask1_905_12116" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="140" y="173" width="29" height="28">
|
||||
<path d="M141.394 195.8C140.748 195.561 140.483 194.792 140.843 194.205L153.412 173.728C153.838 173.034 154.847 173.034 155.273 173.728L167.844 194.205C168.204 194.792 167.938 195.561 167.293 195.8L154.723 200.464C154.478 200.554 154.208 200.554 153.963 200.464L141.394 195.8Z" fill="url(#paint62_linear_905_12116)"/>
|
||||
</mask>
|
||||
<g mask="url(#mask1_905_12116)">
|
||||
<path d="M154.421 201.197L168.492 195.418L154.421 170.04L154.421 201.197Z" fill="url(#paint63_linear_905_12116)"/>
|
||||
<path d="M154.422 201.198L140.351 195.419L154.422 170.041L154.422 201.198Z" fill="url(#paint64_linear_905_12116)"/>
|
||||
</g>
|
||||
<g filter="url(#filter28_d_905_12116)">
|
||||
<path d="M154.331 102.229L160.943 106.065L167.57 109.872L167.554 117.516L167.57 125.16L160.943 128.968L154.331 132.804L147.719 128.968L141.091 125.16L141.107 117.516L141.091 109.872L147.719 106.065L154.331 102.229Z" fill="url(#paint65_linear_905_12116)"/>
|
||||
<path d="M154.331 117.58V102.292L158.981 109.49L167.581 109.872L154.331 117.58Z" fill="url(#paint66_linear_905_12116)"/>
|
||||
<path d="M154.331 117.516L167.581 125.16L163.631 117.516L167.581 109.872L154.331 117.516Z" fill="url(#paint67_linear_905_12116)"/>
|
||||
<path d="M154.331 117.517V132.804L158.981 125.543L167.581 125.161L154.331 117.517Z" fill="url(#paint68_linear_905_12116)"/>
|
||||
<path d="M154.331 117.58V102.292L149.681 109.49L141.082 109.872L154.331 117.58Z" fill="url(#paint69_linear_905_12116)"/>
|
||||
<path d="M154.331 117.516L141.082 125.16L145.031 117.516L141.082 109.872L154.331 117.516Z" fill="url(#paint70_linear_905_12116)"/>
|
||||
<path d="M154.331 117.517V132.804L149.681 125.543L141.082 125.161L154.331 117.517Z" fill="url(#paint71_linear_905_12116)"/>
|
||||
<g opacity="0.3">
|
||||
<path d="M149.715 109.464L154.311 110.638L158.893 109.519L160.229 114.102L163.53 117.55L160.27 120.959L158.989 125.527L154.393 124.352L149.811 125.471L148.475 120.888L145.174 117.44L148.434 114.031L149.715 109.464Z" fill="url(#paint72_linear_905_12116)" style="mix-blend-mode:hard-light"/>
|
||||
</g>
|
||||
<g opacity="0.6">
|
||||
<path d="M149.725 109.495L154.347 113.97L158.97 109.495L157.405 115.735L163.592 117.501L157.405 119.267L158.97 125.507L154.347 121.032L149.725 125.507L151.289 119.267L145.103 117.501L151.289 115.735L149.725 109.495Z" fill="url(#paint73_linear_905_12116)" style="mix-blend-mode:hard-light"/>
|
||||
</g>
|
||||
<path d="M154.331 110.637L157.306 112.363L160.289 114.076L160.281 117.516L160.289 120.956L157.306 122.67L154.331 124.396L151.356 122.67L148.373 120.956L148.38 117.516L148.373 114.076L151.356 112.363L154.331 110.637Z" fill="url(#paint74_linear_905_12116)" style="mix-blend-mode:hard-light"/>
|
||||
<g opacity="0.8">
|
||||
<path d="M150.381 114.331L150.767 114.554L151.153 114.777L151.153 115.223L151.153 115.669L150.767 115.892L150.381 116.115L149.995 115.892L149.609 115.669L149.609 115.223L149.609 114.777L149.995 114.554L150.381 114.331Z" fill="#F1F8FA" style="mix-blend-mode:hard-light"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_f_905_12116" x="145.822" y="14.6014" width="16.6419" height="16.6419" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.756431" result="effect1_foregroundBlur_905_12116"/>
|
||||
</filter>
|
||||
<filter id="filter1_f_905_12116" x="44.4611" y="14.6007" width="217.095" height="217.095" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="3.78215" result="effect1_foregroundBlur_905_12116"/>
|
||||
</filter>
|
||||
<filter id="filter2_f_905_12116" x="143.099" y="11.1213" width="22.0874" height="23.6011" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.226929" result="effect1_foregroundBlur_905_12116"/>
|
||||
</filter>
|
||||
<filter id="filter3_dd_905_12116" x="-9.53674e-05" y="0.000236511" width="309.213" height="271.03" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="7.56431"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.558594 0 0 0 0 0.710156 0 0 0 0 0.9375 0 0 0 1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12116"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="3.02572"/>
|
||||
<feGaussianBlur stdDeviation="22.6929"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.670833 0 0 0 0 0.8025 0 0 0 0 1 0 0 0 0.6 0"/>
|
||||
<feBlend mode="normal" in2="effect1_dropShadow_905_12116" result="effect2_dropShadow_905_12116"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_905_12116" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter4_f_905_12116" x="126.758" y="183.854" width="55.9646" height="22.3855" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="1.09199" result="effect1_foregroundBlur_905_12116"/>
|
||||
</filter>
|
||||
<filter id="filter5_f_905_12116" x="130.581" y="188.249" width="51.3648" height="31.1949" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="2.18398" result="effect1_foregroundBlur_905_12116"/>
|
||||
</filter>
|
||||
<filter id="filter6_d_905_12116" x="126.758" y="202.418" width="55.691" height="20.2009" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="-2.18398"/>
|
||||
<feGaussianBlur stdDeviation="0.818992"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12116"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12116" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter7_f_905_12116" x="183.543" y="160.376" width="33.033" height="29.7566" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="1.09199" result="effect1_foregroundBlur_905_12116"/>
|
||||
</filter>
|
||||
<filter id="filter8_d_905_12116" x="183.269" y="185.765" width="33.3064" height="21.5672" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="-2.18398"/>
|
||||
<feGaussianBlur stdDeviation="1.09199"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12116"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12116" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter9_f_905_12116" x="181.359" y="171.023" width="32.4869" height="38.7652" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="2.18398" result="effect1_foregroundBlur_905_12116"/>
|
||||
</filter>
|
||||
<filter id="filter10_f_905_12116" x="92.6344" y="160.376" width="33.033" height="29.7566" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="1.09199" result="effect1_foregroundBlur_905_12116"/>
|
||||
</filter>
|
||||
<filter id="filter11_d_905_12116" x="92.6344" y="185.765" width="33.3064" height="21.5672" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="-2.18398"/>
|
||||
<feGaussianBlur stdDeviation="1.09199"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12116"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12116" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter12_f_905_12116" x="95.3645" y="171.023" width="32.4869" height="38.7652" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="2.18398" result="effect1_foregroundBlur_905_12116"/>
|
||||
</filter>
|
||||
<filter id="filter13_f_905_12116" x="96.0178" y="53.9309" width="116.461" height="132.628" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.0818992" result="effect1_foregroundBlur_905_12116"/>
|
||||
</filter>
|
||||
<filter id="filter14_i_905_12116" x="101.369" y="59.7627" width="106.469" height="121.178" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="3.67134"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.297222 0 0 0 0 0.329917 0 0 0 0 0.445833 0 0 0 1 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_905_12116"/>
|
||||
</filter>
|
||||
<filter id="filter15_d_905_12116" x="115.566" y="91.3082" width="77.5308" height="63.0318" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2.18398"/>
|
||||
<feGaussianBlur stdDeviation="2.18398"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.504687 0 0 0 0 0.517969 0 0 0 0 0.6375 0 0 0 1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12116"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12116" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter16_d_905_12116" x="122.205" y="92.5187" width="64.2515" height="53.8101" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="0.973519"/>
|
||||
<feGaussianBlur stdDeviation="0.973519"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.426562 0 0 0 0 0.464625 0 0 0 0 0.5625 0 0 0 0.71 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12116"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12116" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter17_f_905_12116" x="153.682" y="93.2719" width="29.5304" height="48.0265" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.324506" result="effect1_foregroundBlur_905_12116"/>
|
||||
</filter>
|
||||
<filter id="filter18_f_905_12116" x="153.844" y="97.4899" width="0.973231" height="43.484" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.162253" result="effect1_foregroundBlur_905_12116"/>
|
||||
</filter>
|
||||
<filter id="filter19_d_905_12116" x="143.605" y="81.999" width="122.759" height="113.092" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2.53742"/>
|
||||
<feGaussianBlur stdDeviation="1.26871"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.214861 0 0 0 0 0.236708 0 0 0 0 0.433333 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12116"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12116" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter20_d_905_12116" x="191.816" y="79.5508" width="73.2354" height="73.1202" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-1.22413"/>
|
||||
<feGaussianBlur stdDeviation="1.22413"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.446731 0 0 0 0 0.444028 0 0 0 0 0.579167 0 0 0 0.12 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12116"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12116" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter21_d_905_12116" x="161.208" y="108.78" width="103.377" height="65.6671" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="-1.26871"/>
|
||||
<feGaussianBlur stdDeviation="3.06033"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.365689 0 0 0 0 0.351111 0 0 0 0 0.533333 0 0 0 0.2 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12116"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12116" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter22_d_905_12116" x="144.24" y="114.845" width="76.7026" height="78.3432" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.26871"/>
|
||||
<feGaussianBlur stdDeviation="0.951533"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.302882 0 0 0 0 0.323427 0 0 0 0 0.508333 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12116"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12116" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter23_d_905_12116" x="42.8556" y="81.998" width="122.743" height="113.078" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2.5301"/>
|
||||
<feGaussianBlur stdDeviation="1.26505"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.214861 0 0 0 0 0.236708 0 0 0 0 0.433333 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12116"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12116" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter24_d_905_12116" x="41.7239" y="79.5568" width="73.2222" height="73.106" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-1.2206"/>
|
||||
<feGaussianBlur stdDeviation="1.2206"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.446731 0 0 0 0 0.444028 0 0 0 0 0.579167 0 0 0 0.12 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12116"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12116" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter25_d_905_12116" x="44.6451" y="108.799" width="103.34" height="65.6318" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="-1.26505"/>
|
||||
<feGaussianBlur stdDeviation="3.0515"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.365689 0 0 0 0 0.351111 0 0 0 0 0.533333 0 0 0 0.2 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12116"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12116" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter26_d_905_12116" x="88.2733" y="114.846" width="76.6926" height="78.3323" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="1.26505"/>
|
||||
<feGaussianBlur stdDeviation="0.948786"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.302882 0 0 0 0 0.323427 0 0 0 0 0.508333 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12116"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12116" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter27_f_905_12116" x="139.043" y="160.649" width="30.576" height="36.0359" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="1.09199" result="effect1_foregroundBlur_905_12116"/>
|
||||
</filter>
|
||||
<filter id="filter28_d_905_12116" x="135.767" y="101.137" width="37.1281" height="37.1281" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2.18398"/>
|
||||
<feGaussianBlur stdDeviation="1.63798"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.300885 0 0 0 0 0.402137 0 0 0 0 0.6625 0 0 0 0.85 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_905_12116"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_905_12116" result="shape"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_905_12116" x1="153.832" y1="5.52441" x2="153.832" y2="94.2133" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#AACCFF" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_905_12116" x1="249.664" y1="174.088" x2="172.857" y2="129.743" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#AACCFF" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_905_12116" x1="153.273" y1="230.184" x2="153.273" y2="141.495" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#AACCFF" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_905_12116" x1="57.5901" y1="174.37" x2="134.397" y2="130.026" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#AACCFF" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_905_12116" x1="249.664" y1="61.7597" x2="172.857" y2="106.104" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#AACCFF" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_905_12116" x1="57.5901" y1="61.4786" x2="134.397" y2="105.823" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#AACCFF" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.3"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint6_radial_905_12116" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(154.143 22.9221) rotate(90) scale(10.8926)">
|
||||
<stop stop-color="#E7ECFF"/>
|
||||
<stop offset="0.979167" stop-color="#ABC3FF" stop-opacity="0.8825"/>
|
||||
<stop offset="1" stop-color="#AACCFF" stop-opacity="0.88"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="paint7_linear_905_12116" x1="153.387" y1="23.2997" x2="153.387" y2="185.176" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#D2DFFF" stop-opacity="0.89"/>
|
||||
<stop offset="0.28125" stop-color="#CCDDFF" stop-opacity="0.2"/>
|
||||
<stop offset="1" stop-color="#56D7E0" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_905_12116" x1="153.387" y1="23.2997" x2="153.387" y2="185.176" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DEE7FF"/>
|
||||
<stop offset="0.0722622" stop-color="#CCDDFF" stop-opacity="0.33"/>
|
||||
<stop offset="1" stop-color="#98C6F0" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint9_radial_905_12116" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(140.136 193.682) rotate(50.3431) scale(26.9494 30.4209)">
|
||||
<stop offset="0.432002" stop-color="#023580"/>
|
||||
<stop offset="1" stop-color="#0D3D78"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="paint10_linear_905_12116" x1="145.87" y1="191.226" x2="127.465" y2="208.364" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.213533" stop-color="#042861"/>
|
||||
<stop offset="0.574194" stop-color="#195294"/>
|
||||
<stop offset="1" stop-color="#063988"/>
|
||||
<stop offset="1" stop-color="#063988"/>
|
||||
<stop offset="1" stop-color="#063988"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint11_linear_905_12116" x1="138.498" y1="201.053" x2="172.076" y2="211.7" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#4680B6" stop-opacity="0.1"/>
|
||||
<stop offset="0.421859" stop-color="#5693CB"/>
|
||||
<stop offset="1" stop-color="#4680B6" stop-opacity="0.45"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint12_linear_905_12116" x1="144.23" y1="216.613" x2="170.711" y2="227.806" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#6F7384"/>
|
||||
<stop offset="1" stop-color="#C3C5CE"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint13_linear_905_12116" x1="145.595" y1="209.79" x2="136.04" y2="216.615" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CCCDD7"/>
|
||||
<stop offset="0.309893" stop-color="#F3F3F4"/>
|
||||
<stop offset="0.523799" stop-color="#EAEAEC"/>
|
||||
<stop offset="0.613641" stop-color="#C1C2CE"/>
|
||||
<stop offset="1" stop-color="#ACADBF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint14_linear_905_12116" x1="190.368" y1="197.504" x2="190.288" y2="207.277" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#BEBFCC"/>
|
||||
<stop offset="0.309893" stop-color="#DEDFE3"/>
|
||||
<stop offset="0.523799" stop-color="#EDEDEF"/>
|
||||
<stop offset="0.613641" stop-color="#BABBC9"/>
|
||||
<stop offset="1" stop-color="#B6B7C6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint15_linear_905_12116" x1="194.196" y1="201.326" x2="210.537" y2="205.14" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#6F7384"/>
|
||||
<stop offset="1" stop-color="#C3C5CE"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint16_linear_905_12116" x1="199.103" y1="182.762" x2="199.745" y2="203.582" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#4680B6" stop-opacity="0.1"/>
|
||||
<stop offset="0.582284" stop-color="#5693CB" stop-opacity="0.56"/>
|
||||
<stop offset="1" stop-color="#4680B6" stop-opacity="0.45"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint17_linear_905_12116" x1="118.843" y1="197.504" x2="118.923" y2="207.277" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#BEBFCC"/>
|
||||
<stop offset="0.309893" stop-color="#DEDFE3"/>
|
||||
<stop offset="0.523799" stop-color="#EDEDEF"/>
|
||||
<stop offset="0.613641" stop-color="#BABBC9"/>
|
||||
<stop offset="1" stop-color="#B6B7C6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint18_linear_905_12116" x1="115.015" y1="201.326" x2="98.6736" y2="205.14" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#6F7384"/>
|
||||
<stop offset="1" stop-color="#C3C5CE"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint19_linear_905_12116" x1="110.107" y1="182.762" x2="109.465" y2="203.582" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#4680B6" stop-opacity="0.1"/>
|
||||
<stop offset="0.582284" stop-color="#5693CB" stop-opacity="0.56"/>
|
||||
<stop offset="1" stop-color="#4680B6" stop-opacity="0.45"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint20_linear_905_12116" x1="125.667" y1="60.186" x2="187.091" y2="182.216" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FAFAFA"/>
|
||||
<stop offset="1" stop-color="#C2C4CD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint21_linear_905_12116" x1="125.12" y1="70.2867" x2="178.081" y2="168.02" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CDCFD6"/>
|
||||
<stop offset="1" stop-color="#EFEFF1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint22_linear_905_12116" x1="130.853" y1="66.7378" x2="187.909" y2="169.385" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DDDFE2"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint23_radial_905_12116" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(154.604 120.352) rotate(90) scale(61.8039 53.2345)">
|
||||
<stop stop-color="#F5F7FF"/>
|
||||
<stop offset="1" stop-color="#B3B5C5"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="paint24_linear_905_12116" x1="154.605" y1="56.0996" x2="154.605" y2="184.597" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#F2EDED" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint25_linear_905_12116" x1="88.8802" y1="67.7254" x2="153.129" y2="179.007" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#F2EDED" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint26_linear_905_12116" x1="215.541" y1="67.7258" x2="151.293" y2="179.007" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#F2EDED" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint27_linear_905_12116" x1="154.605" y1="142.988" x2="154.283" y2="177.865" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#D0DBFF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint28_linear_905_12116" x1="119.934" y1="145.747" x2="188.729" y2="145.595" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F7F7F8"/>
|
||||
<stop offset="0.0201542" stop-color="#CDCFD7"/>
|
||||
<stop offset="0.977524" stop-color="#C5C7CF"/>
|
||||
<stop offset="1" stop-color="#E8EAEC"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint29_linear_905_12116" x1="124.401" y1="108.236" x2="174.534" y2="142.933" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#D7D9DF"/>
|
||||
<stop offset="1" stop-color="#C8CAD3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint30_linear_905_12116" x1="121.869" y1="102.357" x2="183.533" y2="143.264" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F8F9F9"/>
|
||||
<stop offset="1" stop-color="#C2C4CD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint31_linear_905_12116" x1="129.02" y1="137.892" x2="126.006" y2="104.333" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EDEEF1"/>
|
||||
<stop offset="1" stop-color="#EDEEF1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint32_linear_905_12116" x1="130.318" y1="139.514" x2="153.52" y2="143.57" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0442192" stop-color="#C2C4CD"/>
|
||||
<stop offset="0.65381" stop-color="#CFD0D7"/>
|
||||
<stop offset="0.991391" stop-color="#C2C4CD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint33_linear_905_12116" x1="172.665" y1="95.219" x2="181.914" y2="131.726" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2C4CD"/>
|
||||
<stop offset="0.371361" stop-color="#C2C4CD"/>
|
||||
<stop offset="1" stop-color="#B1B3BD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint34_linear_905_12116" x1="178.344" y1="139.514" x2="155.142" y2="143.57" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0442192" stop-color="#BDBFC8"/>
|
||||
<stop offset="0.65381" stop-color="#D4D6DF"/>
|
||||
<stop offset="0.991391" stop-color="#C2C4CD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint35_linear_905_12116" x1="154.332" y1="111.769" x2="126.099" y2="111.309" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2C4CD"/>
|
||||
<stop offset="0.0890549" stop-color="#C2C4CD"/>
|
||||
<stop offset="0.46547" stop-color="#E5E7EB"/>
|
||||
<stop offset="1" stop-color="#FAFAFA"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint36_linear_905_12116" x1="154.331" y1="111.769" x2="182.564" y2="111.309" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C2C4CD"/>
|
||||
<stop offset="0.214912" stop-color="#FAFAFA"/>
|
||||
<stop offset="0.510885" stop-color="#E7E8EC"/>
|
||||
<stop offset="0.901932" stop-color="#C2C4CD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint37_linear_905_12116" x1="229.56" y1="118.334" x2="217.942" y2="115.179" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.209488" stop-color="#AAAEBC"/>
|
||||
<stop offset="0.583159" stop-color="#E0E1F1"/>
|
||||
<stop offset="0.986946" stop-color="#868C9D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint38_linear_905_12116" x1="238.224" y1="76.2527" x2="226.078" y2="132.878" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.220856" stop-color="#FAFAFA"/>
|
||||
<stop offset="1" stop-color="#D8D9E1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint39_linear_905_12116" x1="238.979" y1="76.4223" x2="217.018" y2="151.212" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F8F8F9" stop-opacity="0.46"/>
|
||||
<stop offset="0.21882" stop-color="#F8F8F9" stop-opacity="0.67"/>
|
||||
<stop offset="0.45675" stop-color="white" stop-opacity="0.46"/>
|
||||
<stop offset="0.742389" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint40_linear_905_12116" x1="229.456" y1="135.471" x2="209.342" y2="129.017" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.209488" stop-color="#9196AA"/>
|
||||
<stop offset="0.583159" stop-color="#C9C9DC"/>
|
||||
<stop offset="0.986946" stop-color="#797D87"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint41_linear_905_12116" x1="221.342" y1="127.584" x2="226.429" y2="158.881" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EFEFEF"/>
|
||||
<stop offset="0.411026" stop-color="#DEDFE6"/>
|
||||
<stop offset="0.58979" stop-color="#D1D2D9"/>
|
||||
<stop offset="1" stop-color="#D1D2D9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint42_linear_905_12116" x1="254.617" y1="119.056" x2="221.635" y2="155.228" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F8F8F9" stop-opacity="0.86"/>
|
||||
<stop offset="0.319253" stop-color="#F8F8F9"/>
|
||||
<stop offset="0.615431" stop-color="white" stop-opacity="0.88"/>
|
||||
<stop offset="0.867925" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint43_linear_905_12116" x1="207.11" y1="154.301" x2="194.252" y2="147.04" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.209488" stop-color="#717995"/>
|
||||
<stop offset="0.583159" stop-color="#A4A5BB"/>
|
||||
<stop offset="0.986946" stop-color="#797D87"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint44_linear_905_12116" x1="197.523" y1="150.17" x2="200.996" y2="188.884" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0306468" stop-color="#DBDCE7"/>
|
||||
<stop offset="0.274204" stop-color="#CBCCD7"/>
|
||||
<stop offset="0.675444" stop-color="#D1D2D9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint45_linear_905_12116" x1="204.626" y1="151.748" x2="189.436" y2="192.877" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F8F8F9" stop-opacity="0.78"/>
|
||||
<stop offset="0.319253" stop-color="#F8F8F9" stop-opacity="0"/>
|
||||
<stop offset="0.615431" stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="0.867925" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint46_linear_905_12116" x1="183.039" y1="115.479" x2="183.039" y2="190.016" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C4C4"/>
|
||||
<stop offset="1" stop-color="#63687B"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint47_linear_905_12116" x1="189.542" y1="150.369" x2="178.124" y2="164.642" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="0.445395" stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint48_linear_905_12116" x1="185.101" y1="151.003" x2="185.901" y2="164.468" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0495744" stop-color="#C4C4C4"/>
|
||||
<stop offset="0.454268" stop-color="#EDEDED"/>
|
||||
<stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint49_linear_905_12116" x1="79.6519" y1="118.332" x2="91.2704" y2="115.177" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.209488" stop-color="#AAAEBC"/>
|
||||
<stop offset="0.583159" stop-color="#E0E1F1"/>
|
||||
<stop offset="0.986946" stop-color="#868C9D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint50_linear_905_12116" x1="70.989" y1="76.2519" x2="83.1354" y2="132.877" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.220856" stop-color="#FAFAFA"/>
|
||||
<stop offset="1" stop-color="#D8D9E1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint51_linear_905_12116" x1="70.2331" y1="76.4213" x2="92.1943" y2="151.211" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F8F8F9" stop-opacity="0.46"/>
|
||||
<stop offset="0.21882" stop-color="#F8F8F9" stop-opacity="0.67"/>
|
||||
<stop offset="0.45675" stop-color="white" stop-opacity="0.46"/>
|
||||
<stop offset="0.742389" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint52_linear_905_12116" x1="79.7565" y1="135.47" x2="99.8712" y2="129.016" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.209488" stop-color="#9196AA"/>
|
||||
<stop offset="0.583159" stop-color="#C9C9DC"/>
|
||||
<stop offset="0.986946" stop-color="#797D87"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint53_linear_905_12116" x1="87.8704" y1="127.583" x2="82.7832" y2="158.879" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EFEFEF"/>
|
||||
<stop offset="0.411026" stop-color="#DEDFE6"/>
|
||||
<stop offset="0.58979" stop-color="#D1D2D9"/>
|
||||
<stop offset="1" stop-color="#D1D2D9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint54_linear_905_12116" x1="54.5948" y1="119.055" x2="87.5771" y2="155.227" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F8F8F9" stop-opacity="0.86"/>
|
||||
<stop offset="0.319253" stop-color="#F8F8F9"/>
|
||||
<stop offset="0.615431" stop-color="white" stop-opacity="0.88"/>
|
||||
<stop offset="0.867925" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint55_linear_905_12116" x1="102.102" y1="154.3" x2="114.96" y2="147.039" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.209488" stop-color="#717995"/>
|
||||
<stop offset="0.583159" stop-color="#A4A5BB"/>
|
||||
<stop offset="0.986946" stop-color="#797D87"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint56_linear_905_12116" x1="111.689" y1="150.17" x2="108.216" y2="188.883" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0306468" stop-color="#DBDCE7"/>
|
||||
<stop offset="0.274204" stop-color="#CBCCD7"/>
|
||||
<stop offset="0.675444" stop-color="#D1D2D9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint57_linear_905_12116" x1="104.586" y1="151.747" x2="119.776" y2="192.876" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F8F8F9" stop-opacity="0.78"/>
|
||||
<stop offset="0.319253" stop-color="#F8F8F9" stop-opacity="0"/>
|
||||
<stop offset="0.615431" stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="0.867925" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint58_linear_905_12116" x1="126.17" y1="115.479" x2="126.17" y2="190.015" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C4C4C4"/>
|
||||
<stop offset="1" stop-color="#63687B"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint59_linear_905_12116" x1="119.669" y1="150.368" x2="131.087" y2="164.641" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white" stop-opacity="0"/>
|
||||
<stop offset="0.445395" stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint60_linear_905_12116" x1="124.109" y1="151.002" x2="123.309" y2="164.468" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0495744" stop-color="#C4C4C4"/>
|
||||
<stop offset="0.454268" stop-color="#EDEDED"/>
|
||||
<stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint61_linear_905_12116" x1="154.331" y1="194.772" x2="154.331" y2="173.119" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#585B77" stop-opacity="0.75"/>
|
||||
<stop offset="1" stop-color="#525787" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint62_linear_905_12116" x1="155.704" y1="180.629" x2="146.782" y2="193.902" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#D5D7D9"/>
|
||||
<stop offset="1" stop-color="#E2E3E7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint63_linear_905_12116" x1="150.783" y1="204.602" x2="171.558" y2="195.559" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9A9CA5"/>
|
||||
<stop offset="0.259135" stop-color="#C4C6CF"/>
|
||||
<stop offset="0.878536" stop-color="#EDEFF8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint64_linear_905_12116" x1="154.333" y1="177.03" x2="162.055" y2="204.858" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="0.523539" stop-color="#F7F7F7"/>
|
||||
<stop offset="0.897249" stop-color="#DADBE0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint65_linear_905_12116" x1="143.921" y1="107.047" x2="162.659" y2="131.02" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#466CC6"/>
|
||||
<stop offset="1" stop-color="#75D2F4"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint66_linear_905_12116" x1="153.63" y1="107.069" x2="163.696" y2="111.775" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.153262" stop-color="#2251BD"/>
|
||||
<stop offset="1" stop-color="#3383E8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint67_linear_905_12116" x1="162.23" y1="108.28" x2="166.131" y2="123.546" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.153262" stop-color="#2E35AC"/>
|
||||
<stop offset="0.721384" stop-color="#59A5EC"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint68_linear_905_12116" x1="157.387" y1="124.691" x2="168.517" y2="125.314" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.153262" stop-color="#5DB9ED"/>
|
||||
<stop offset="1" stop-color="#579BEB"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint69_linear_905_12116" x1="143.184" y1="113.248" x2="155.464" y2="108.042" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.153262" stop-color="#3A79F8"/>
|
||||
<stop offset="1" stop-color="#3C57F7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint70_linear_905_12116" x1="147.706" y1="109.872" x2="143.666" y2="126.22" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.03125" stop-color="#2E35AC"/>
|
||||
<stop offset="0.901042" stop-color="#3061C2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint71_linear_905_12116" x1="147.706" y1="118.854" x2="153.951" y2="130.614" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.153262" stop-color="#2E35AC"/>
|
||||
<stop offset="0.826605" stop-color="#3380E5"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint72_linear_905_12116" x1="149.8" y1="119.465" x2="163.584" y2="112.636" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.153262" stop-color="#5DB9ED"/>
|
||||
<stop offset="1" stop-color="#579BEB"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint73_linear_905_12116" x1="145.73" y1="115.166" x2="162.792" y2="122.055" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#2A58C6"/>
|
||||
<stop offset="1" stop-color="#4FF4FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint74_linear_905_12116" x1="150.274" y1="112.805" x2="158.918" y2="122.382" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#166CFD"/>
|
||||
<stop offset="1" stop-color="#89DFFF"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 57 KiB |
1638
schoolNewsWeb/public/img/achievement/time-5.svg
Normal file
1638
schoolNewsWeb/public/img/achievement/time-5.svg
Normal file
File diff suppressed because it is too large
Load Diff
|
After Width: | Height: | Size: 134 KiB |
Reference in New Issue
Block a user