diff --git a/PUSH_IMPLEMENTATION_GUIDE.md b/PUSH_IMPLEMENTATION_GUIDE.md new file mode 100644 index 0000000..3ce3dfe --- /dev/null +++ b/PUSH_IMPLEMENTATION_GUIDE.md @@ -0,0 +1,411 @@ +# Monisuo 推送功能实现指南 + +## 概述 + +本文档详细说明如何在Monisuo虚拟货币交易平台中实现推送通知功能。 + +## 架构设计 + +### 1. 推送服务选择 + +**推荐方案**: 极光推送 (JPush) + +**理由**: +- 国内推送到达率高(>95%) +- 支持iOS和Android双平台 +- 提供完整的Flutter SDK +- 免费版支持100万条/月 +- 提供REST API和SDK两种方式 + +**备选方案**: 个推 (Getui) + +## 2. 系统架构 + +``` +[管理员审批] → [后端服务] → [JPush服务器] → [用户手机] + ↓ ↓ ↓ ↓ + 创建推送任务 调用JPush API 推送消息 显示通知 +``` + +## 3. 实现步骤 + +### 步骤1: 注册极光推送 + +1. 访问 https://www.jiguang.cn/ +2. 注册账号并登录 +3. 创建应用 +4. 获取AppKey和Master Secret + +### 步骤2: 后端集成 + +#### 2.1 添加依赖 + +```xml + + cn.jpush + jpush-client + 3.5.8 + +``` + +#### 2.2 配置文件 + +```yaml +# application.yml +jpush: + app-key: your-app-key + master-secret: your-master-secret + production: false # 开发环境使用false +``` + +#### 2.3 推送服务类 + +```java +package com.it.rattan.monisuo.service; + +import cn.jiguang.common.resp.DefaultResult; +import cn.jpush.api.JPushClient; +import cn.jpush.api.push.PushResult; +import cn.jpush.api.push.model.Message; +import cn.jpush.api.push.model.Notification; +import cn.jpush.api.push.model.Platform; +import cn.jpush.api.push.model.PushPayload; +import cn.jpush.api.push.model.audience.Audience; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.stereotype.Service; + +import java.util.Map; + +@Service +public class JPushService { + + @Value("${jpush.app-key}") + private String appKey; + + @Value("${jpush.master-secret}") + private String masterSecret; + + @Value("${jpush.production}") + private boolean production; + + private JPushClient jPushClient; + + public JPushService() { + jPushClient = new JPushClient(masterSecret, appKey); + } + + /** + * 向指定用户发送推送 + */ + public void sendToUser(String userId, String title, String content, Map extras) { + try { + PushPayload payload = PushPayload.newBuilder() + .setPlatform(Platform.all()) + .setAudience(Audience.alias(userId)) + .setNotification(Notification.alert(content)) + .setMessage(Message.content(content).setExtras(extras)) + .setOptions(cn.jpush.api.push.model.Options.newBuilder() + .setApnsProduction(production) + .build()) + .build(); + + PushResult result = jPushClient.sendPush(payload); + + if (result.statusCode == 200) { + System.out.println("推送成功: " + result.msgId); + } else { + System.err.println("推送失败: " + result.statusCode); + } + } catch (Exception e) { + e.printStackTrace(); + } + } + + /** + * 向所有用户发送推送 + */ + public void sendToAll(String title, String content) { + try { + PushPayload payload = PushPayload.newBuilder() + .setPlatform(Platform.all()) + .setAudience(Audience.all()) + .setNotification(Notification.alert(content)) + .build(); + + jPushClient.sendPush(payload); + } catch (Exception e) { + e.printStackTrace(); + } + } +} +``` + +#### 2.4 推送控制器 + +```java +package com.it.rattan.monisuo.controller; + +import com.it.rattan.monisuo.common.Result; +import com.it.rattan.monisuo.service.JPushService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.*; + +import java.util.HashMap; +import java.util.Map; + +@RestController +@RequestMapping("/api/push") +public class PushController { + + @Autowired + private JPushService jPushService; + + /** + * 发送充值审批通知 + */ + @PostMapping("/deposit/approval") + public Result sendDepositApproval( + @RequestParam String userId, + @RequestParam String orderNo, + @RequestParam String amount, + @RequestParam boolean approved) { + + String title = approved ? "充值审批通过" : "充值审批驳回"; + String content = approved + ? "您的充值订单已审批通过,金额: " + amount + " USDT" + : "您的充值订单已被驳回,金额: " + amount + " USDT"; + + Map extras = new HashMap<>(); + extras.put("type", "order"); + extras.put("orderNo", orderNo); + extras.put("approved", String.valueOf(approved)); + + jPushService.sendToUser(userId, title, content, extras); + + return Result.success("推送成功"); + } + + /** + * 发送提现审批通知 + */ + @PostMapping("/withdraw/approval") + public Result sendWithdrawApproval( + @RequestParam String userId, + @RequestParam String orderNo, + @RequestParam String amount, + @RequestParam boolean approved) { + + String title = approved ? "提现审批通过" : "提现审批驳回"; + String content = approved + ? "您的提现申请已处理,金额: " + amount + " USDT" + : "您的提现申请已被驳回,金额: " + amount + " USDT"; + + Map extras = new HashMap<>(); + extras.put("type", "order"); + extras.put("orderNo", orderNo); + extras.put("approved", String.valueOf(approved)); + + jPushService.sendToUser(userId, title, content, extras); + + return Result.success("推送成功"); + } +} +``` + +### 步骤3: 在审批流程中集成推送 + +修改 `FundService.approve()` 方法: + +```java +@Transactional +public void approve(...) { + // ... 原有审批逻辑 ... + + // 审批成功后发送推送 + if (order.getType() == 1) { + // 充值审批 + jPushService.sendToUser( + order.getUserId().toString(), + status == 2 ? "充值审批通过" : "充值审批驳回", + "订单号: " + orderNo + ", 金额: " + order.getAmount() + " USDT", + Map.of("type", "order", "orderNo", orderNo) + ); + } else { + // 提现审批 + jPushService.sendToUser( + order.getUserId().toString(), + status == 2 ? "提现审批通过" : "提现审批驳回", + "订单号: " + orderNo + ", 金额: " + order.getAmount() + " USDT", + Map.of("type", "order", "orderNo", orderNo) + ); + } +} +``` + +## 4. 推送场景设计 + +### 场景1: 充值审批通过 + +```json +{ + "userId": "5", + "title": "充值审批通过", + "content": "您的充值订单已审批通过,金额: 100 USDT", + "extras": { + "type": "order", + "orderNo": "F20260324001", + "approved": "true" + } +} +``` + +**触发时机**: 管理员点击"审批通过"按钮后 + +### 场景2: 提现审批驳回 + +```json +{ + "userId": "5", + "title": "提现审批驳回", + "content": "您的提现申请已被驳回,金额: 50 USDT", + "extras": { + "type": "order", + "orderNo": "F20260324002", + "approved": "false", + "reason": "余额不足" + } +} +``` + +**触发时机**: 管理员点击"审批驳回"按钮后 + +### 场景3: 系统公告 + +```json +{ + "title": "系统维护通知", + "content": "系统将于今晚22:00-23:00进行维护,届时暂停服务", + "extras": { + "type": "announcement" + } +} +``` + +**触发时机**: 后台管理页面发布系统公告 + +## 5. 测试方法 + +### 5.1 本地测试 + +1. **启动后端服务** +```bash +cd ~/Desktop/projects/monisuo +mvn spring-boot:run +``` + +2. **发送测试推送** +```bash +curl -X POST http://localhost:5010/api/push/deposit/approval \ + -H "Content-Type: application/json" \ + -d "userId=5&orderNo=F20260324001&amount=100&approved=true" +``` + +3. **检查推送日志** +```bash +tail -f logs/app.log | grep "推送" +``` + +### 5.2 极光推送控制台测试 + +1. 登录极光推送控制台 +2. 选择应用 +3. 点击"推送" -> "发送通知" +4. 选择"别名"推送 +5. 输入用户别名(userId) +6. 填写标题和内容 +7. 点击"立即发送" + +## 6. 监控与统计 + +### 6.1 推送统计 + +在极光推送控制台可以查看: +- 推送到达率 +- 推送打开率 +- 推送失败原因 +- 用户活跃度 + +### 6.2 日志记录 + +在 `application.yml` 中添加: + +```yaml +logging: + level: + com.it.rattan.monisuo.service.JPushService: DEBUG +``` + +## 7. 费用估算 + +### 7.1 免费版 +- 100万条推送/月 +- 适用于中小规模应用 +- 基本统计功能 + +### 7.2 付费版 +- 无限制推送 +- 高级统计功能 +- 优先技术支持 + +**推荐**: 初期使用免费版,用户量增长后再考虑升级 + +## 8. 安全性考虑 + +### 8.1 API密钥保护 +- AppKey和Master Secret不要提交到Git +- 使用环境变量或配置中心管理 + +### 8.2 推送内容审核 +- 敏感词过滤 +- 内容长度限制 + +### 8.3 推送频率限制 +- 避免频繁推送打扰用户 +- 设置推送间隔(如1分钟内不重复推送) + +## 9. 最佳实践 + +### 9.1 推送时机 +- 充值/提现审批:立即推送 +- 系统公告:定时推送 +- 资产变动:延迟推送(汇总后推送) + +### 9.2 推送内容 +- 标题简洁明了(<20字) +- 内容包含关键信息(订单号、金额等) +- 避免过度营销 + +### 9.3 错误处理 +- 推送失败时记录日志 +- 重大通知支持重试 +- 提供站内信作为备选 + +## 10. 后续优化 + +### 10.1 站内信系统 +- 推送失败时存入数据库 +- 用户可以在应用内查看历史消息 + +### 10.2 推送模板 +- 使用模板管理推送内容 +- 支持多语言推送 + +### 10.3 推送策略 +- 根据用户活跃度调整推送频率 +- 支持用户自定义推送设置 + +--- + +**文档版本**: V1.0 +**最后更新**: 2026-03-24 +**作者**: Monisuo开发团队 diff --git a/flutter_monisuo/build/web/.last_build_id b/flutter_monisuo/build/web/.last_build_id index 551ab64..bccbcbc 100644 --- a/flutter_monisuo/build/web/.last_build_id +++ b/flutter_monisuo/build/web/.last_build_id @@ -1 +1 @@ -2b1d2ed877ca1d041aef5d6561fbfcf5 \ No newline at end of file +cd059bcd8df9e9b2b7bfff5ee9fb7ba7 \ No newline at end of file diff --git a/flutter_monisuo/build/web/assets/AssetManifest.bin b/flutter_monisuo/build/web/assets/AssetManifest.bin deleted file mode 100644 index d368075..0000000 --- a/flutter_monisuo/build/web/assets/AssetManifest.bin +++ /dev/null @@ -1 +0,0 @@ - Gpackages/lucide_icons_flutter/assets/build_font/LucideVariable-w100.ttf  assetGpackages/lucide_icons_flutter/assets/build_font/LucideVariable-w100.ttfGpackages/lucide_icons_flutter/assets/build_font/LucideVariable-w200.ttf  assetGpackages/lucide_icons_flutter/assets/build_font/LucideVariable-w200.ttfGpackages/lucide_icons_flutter/assets/build_font/LucideVariable-w300.ttf  assetGpackages/lucide_icons_flutter/assets/build_font/LucideVariable-w300.ttfGpackages/lucide_icons_flutter/assets/build_font/LucideVariable-w400.ttf  assetGpackages/lucide_icons_flutter/assets/build_font/LucideVariable-w400.ttfGpackages/lucide_icons_flutter/assets/build_font/LucideVariable-w500.ttf  assetGpackages/lucide_icons_flutter/assets/build_font/LucideVariable-w500.ttfGpackages/lucide_icons_flutter/assets/build_font/LucideVariable-w600.ttf  assetGpackages/lucide_icons_flutter/assets/build_font/LucideVariable-w600.ttf/packages/lucide_icons_flutter/assets/lucide.ttf  asset/packages/lucide_icons_flutter/assets/lucide.ttf(packages/shadcn_ui/fonts/Geist-Black.otf  asset(packages/shadcn_ui/fonts/Geist-Black.otf'packages/shadcn_ui/fonts/Geist-Bold.otf  asset'packages/shadcn_ui/fonts/Geist-Bold.otf(packages/shadcn_ui/fonts/Geist-Light.otf  asset(packages/shadcn_ui/fonts/Geist-Light.otf)packages/shadcn_ui/fonts/Geist-Medium.otf  asset)packages/shadcn_ui/fonts/Geist-Medium.otf*packages/shadcn_ui/fonts/Geist-Regular.otf  asset*packages/shadcn_ui/fonts/Geist-Regular.otf+packages/shadcn_ui/fonts/Geist-SemiBold.otf  asset+packages/shadcn_ui/fonts/Geist-SemiBold.otf'packages/shadcn_ui/fonts/Geist-Thin.otf  asset'packages/shadcn_ui/fonts/Geist-Thin.otf-packages/shadcn_ui/fonts/Geist-UltraBlack.otf  asset-packages/shadcn_ui/fonts/Geist-UltraBlack.otf-packages/shadcn_ui/fonts/Geist-UltraLight.otf  asset-packages/shadcn_ui/fonts/Geist-UltraLight.otf,packages/shadcn_ui/fonts/GeistMono-Black.otf  asset,packages/shadcn_ui/fonts/GeistMono-Black.otf+packages/shadcn_ui/fonts/GeistMono-Bold.otf  asset+packages/shadcn_ui/fonts/GeistMono-Bold.otf,packages/shadcn_ui/fonts/GeistMono-Light.otf  asset,packages/shadcn_ui/fonts/GeistMono-Light.otf-packages/shadcn_ui/fonts/GeistMono-Medium.otf  asset-packages/shadcn_ui/fonts/GeistMono-Medium.otf.packages/shadcn_ui/fonts/GeistMono-Regular.otf  asset.packages/shadcn_ui/fonts/GeistMono-Regular.otf/packages/shadcn_ui/fonts/GeistMono-SemiBold.otf  asset/packages/shadcn_ui/fonts/GeistMono-SemiBold.otf+packages/shadcn_ui/fonts/GeistMono-Thin.otf  asset+packages/shadcn_ui/fonts/GeistMono-Thin.otf1packages/shadcn_ui/fonts/GeistMono-UltraBlack.otf  asset1packages/shadcn_ui/fonts/GeistMono-UltraBlack.otf1packages/shadcn_ui/fonts/GeistMono-UltraLight.otf  asset1packages/shadcn_ui/fonts/GeistMono-UltraLight.otf \ No newline at end of file diff --git a/flutter_monisuo/build/web/assets/AssetManifest.bin.json b/flutter_monisuo/build/web/assets/AssetManifest.bin.json deleted file mode 100644 index 2517a35..0000000 --- a/flutter_monisuo/build/web/assets/AssetManifest.bin.json +++ /dev/null @@ -1 +0,0 @@ -"DRkHR3BhY2thZ2VzL2x1Y2lkZV9pY29uc19mbHV0dGVyL2Fzc2V0cy9idWlsZF9mb250L0x1Y2lkZVZhcmlhYmxlLXcxMDAudHRmDAENAQcFYXNzZXQHR3BhY2thZ2VzL2x1Y2lkZV9pY29uc19mbHV0dGVyL2Fzc2V0cy9idWlsZF9mb250L0x1Y2lkZVZhcmlhYmxlLXcxMDAudHRmB0dwYWNrYWdlcy9sdWNpZGVfaWNvbnNfZmx1dHRlci9hc3NldHMvYnVpbGRfZm9udC9MdWNpZGVWYXJpYWJsZS13MjAwLnR0ZgwBDQEHBWFzc2V0B0dwYWNrYWdlcy9sdWNpZGVfaWNvbnNfZmx1dHRlci9hc3NldHMvYnVpbGRfZm9udC9MdWNpZGVWYXJpYWJsZS13MjAwLnR0ZgdHcGFja2FnZXMvbHVjaWRlX2ljb25zX2ZsdXR0ZXIvYXNzZXRzL2J1aWxkX2ZvbnQvTHVjaWRlVmFyaWFibGUtdzMwMC50dGYMAQ0BBwVhc3NldAdHcGFja2FnZXMvbHVjaWRlX2ljb25zX2ZsdXR0ZXIvYXNzZXRzL2J1aWxkX2ZvbnQvTHVjaWRlVmFyaWFibGUtdzMwMC50dGYHR3BhY2thZ2VzL2x1Y2lkZV9pY29uc19mbHV0dGVyL2Fzc2V0cy9idWlsZF9mb250L0x1Y2lkZVZhcmlhYmxlLXc0MDAudHRmDAENAQcFYXNzZXQHR3BhY2thZ2VzL2x1Y2lkZV9pY29uc19mbHV0dGVyL2Fzc2V0cy9idWlsZF9mb250L0x1Y2lkZVZhcmlhYmxlLXc0MDAudHRmB0dwYWNrYWdlcy9sdWNpZGVfaWNvbnNfZmx1dHRlci9hc3NldHMvYnVpbGRfZm9udC9MdWNpZGVWYXJpYWJsZS13NTAwLnR0ZgwBDQEHBWFzc2V0B0dwYWNrYWdlcy9sdWNpZGVfaWNvbnNfZmx1dHRlci9hc3NldHMvYnVpbGRfZm9udC9MdWNpZGVWYXJpYWJsZS13NTAwLnR0ZgdHcGFja2FnZXMvbHVjaWRlX2ljb25zX2ZsdXR0ZXIvYXNzZXRzL2J1aWxkX2ZvbnQvTHVjaWRlVmFyaWFibGUtdzYwMC50dGYMAQ0BBwVhc3NldAdHcGFja2FnZXMvbHVjaWRlX2ljb25zX2ZsdXR0ZXIvYXNzZXRzL2J1aWxkX2ZvbnQvTHVjaWRlVmFyaWFibGUtdzYwMC50dGYHL3BhY2thZ2VzL2x1Y2lkZV9pY29uc19mbHV0dGVyL2Fzc2V0cy9sdWNpZGUudHRmDAENAQcFYXNzZXQHL3BhY2thZ2VzL2x1Y2lkZV9pY29uc19mbHV0dGVyL2Fzc2V0cy9sdWNpZGUudHRmByhwYWNrYWdlcy9zaGFkY25fdWkvZm9udHMvR2Vpc3QtQmxhY2sub3RmDAENAQcFYXNzZXQHKHBhY2thZ2VzL3NoYWRjbl91aS9mb250cy9HZWlzdC1CbGFjay5vdGYHJ3BhY2thZ2VzL3NoYWRjbl91aS9mb250cy9HZWlzdC1Cb2xkLm90ZgwBDQEHBWFzc2V0BydwYWNrYWdlcy9zaGFkY25fdWkvZm9udHMvR2Vpc3QtQm9sZC5vdGYHKHBhY2thZ2VzL3NoYWRjbl91aS9mb250cy9HZWlzdC1MaWdodC5vdGYMAQ0BBwVhc3NldAcocGFja2FnZXMvc2hhZGNuX3VpL2ZvbnRzL0dlaXN0LUxpZ2h0Lm90ZgcpcGFja2FnZXMvc2hhZGNuX3VpL2ZvbnRzL0dlaXN0LU1lZGl1bS5vdGYMAQ0BBwVhc3NldAcpcGFja2FnZXMvc2hhZGNuX3VpL2ZvbnRzL0dlaXN0LU1lZGl1bS5vdGYHKnBhY2thZ2VzL3NoYWRjbl91aS9mb250cy9HZWlzdC1SZWd1bGFyLm90ZgwBDQEHBWFzc2V0BypwYWNrYWdlcy9zaGFkY25fdWkvZm9udHMvR2Vpc3QtUmVndWxhci5vdGYHK3BhY2thZ2VzL3NoYWRjbl91aS9mb250cy9HZWlzdC1TZW1pQm9sZC5vdGYMAQ0BBwVhc3NldAcrcGFja2FnZXMvc2hhZGNuX3VpL2ZvbnRzL0dlaXN0LVNlbWlCb2xkLm90ZgcncGFja2FnZXMvc2hhZGNuX3VpL2ZvbnRzL0dlaXN0LVRoaW4ub3RmDAENAQcFYXNzZXQHJ3BhY2thZ2VzL3NoYWRjbl91aS9mb250cy9HZWlzdC1UaGluLm90ZgctcGFja2FnZXMvc2hhZGNuX3VpL2ZvbnRzL0dlaXN0LVVsdHJhQmxhY2sub3RmDAENAQcFYXNzZXQHLXBhY2thZ2VzL3NoYWRjbl91aS9mb250cy9HZWlzdC1VbHRyYUJsYWNrLm90ZgctcGFja2FnZXMvc2hhZGNuX3VpL2ZvbnRzL0dlaXN0LVVsdHJhTGlnaHQub3RmDAENAQcFYXNzZXQHLXBhY2thZ2VzL3NoYWRjbl91aS9mb250cy9HZWlzdC1VbHRyYUxpZ2h0Lm90ZgcscGFja2FnZXMvc2hhZGNuX3VpL2ZvbnRzL0dlaXN0TW9uby1CbGFjay5vdGYMAQ0BBwVhc3NldAcscGFja2FnZXMvc2hhZGNuX3VpL2ZvbnRzL0dlaXN0TW9uby1CbGFjay5vdGYHK3BhY2thZ2VzL3NoYWRjbl91aS9mb250cy9HZWlzdE1vbm8tQm9sZC5vdGYMAQ0BBwVhc3NldAcrcGFja2FnZXMvc2hhZGNuX3VpL2ZvbnRzL0dlaXN0TW9uby1Cb2xkLm90ZgcscGFja2FnZXMvc2hhZGNuX3VpL2ZvbnRzL0dlaXN0TW9uby1MaWdodC5vdGYMAQ0BBwVhc3NldAcscGFja2FnZXMvc2hhZGNuX3VpL2ZvbnRzL0dlaXN0TW9uby1MaWdodC5vdGYHLXBhY2thZ2VzL3NoYWRjbl91aS9mb250cy9HZWlzdE1vbm8tTWVkaXVtLm90ZgwBDQEHBWFzc2V0By1wYWNrYWdlcy9zaGFkY25fdWkvZm9udHMvR2Vpc3RNb25vLU1lZGl1bS5vdGYHLnBhY2thZ2VzL3NoYWRjbl91aS9mb250cy9HZWlzdE1vbm8tUmVndWxhci5vdGYMAQ0BBwVhc3NldAcucGFja2FnZXMvc2hhZGNuX3VpL2ZvbnRzL0dlaXN0TW9uby1SZWd1bGFyLm90ZgcvcGFja2FnZXMvc2hhZGNuX3VpL2ZvbnRzL0dlaXN0TW9uby1TZW1pQm9sZC5vdGYMAQ0BBwVhc3NldAcvcGFja2FnZXMvc2hhZGNuX3VpL2ZvbnRzL0dlaXN0TW9uby1TZW1pQm9sZC5vdGYHK3BhY2thZ2VzL3NoYWRjbl91aS9mb250cy9HZWlzdE1vbm8tVGhpbi5vdGYMAQ0BBwVhc3NldAcrcGFja2FnZXMvc2hhZGNuX3VpL2ZvbnRzL0dlaXN0TW9uby1UaGluLm90ZgcxcGFja2FnZXMvc2hhZGNuX3VpL2ZvbnRzL0dlaXN0TW9uby1VbHRyYUJsYWNrLm90ZgwBDQEHBWFzc2V0BzFwYWNrYWdlcy9zaGFkY25fdWkvZm9udHMvR2Vpc3RNb25vLVVsdHJhQmxhY2sub3RmBzFwYWNrYWdlcy9zaGFkY25fdWkvZm9udHMvR2Vpc3RNb25vLVVsdHJhTGlnaHQub3RmDAENAQcFYXNzZXQHMXBhY2thZ2VzL3NoYWRjbl91aS9mb250cy9HZWlzdE1vbm8tVWx0cmFMaWdodC5vdGY=" \ No newline at end of file diff --git a/flutter_monisuo/build/web/assets/FontManifest.json b/flutter_monisuo/build/web/assets/FontManifest.json deleted file mode 100644 index 30e20c4..0000000 --- a/flutter_monisuo/build/web/assets/FontManifest.json +++ /dev/null @@ -1 +0,0 @@ -[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"packages/shadcn_ui/Geist","fonts":[{"weight":100,"asset":"packages/shadcn_ui/fonts/Geist-Thin.otf"},{"weight":200,"asset":"packages/shadcn_ui/fonts/Geist-UltraLight.otf"},{"weight":300,"asset":"packages/shadcn_ui/fonts/Geist-Light.otf"},{"weight":400,"asset":"packages/shadcn_ui/fonts/Geist-Regular.otf"},{"weight":500,"asset":"packages/shadcn_ui/fonts/Geist-Medium.otf"},{"weight":600,"asset":"packages/shadcn_ui/fonts/Geist-SemiBold.otf"},{"weight":700,"asset":"packages/shadcn_ui/fonts/Geist-Bold.otf"},{"weight":800,"asset":"packages/shadcn_ui/fonts/Geist-Black.otf"},{"weight":900,"asset":"packages/shadcn_ui/fonts/Geist-UltraBlack.otf"}]},{"family":"packages/shadcn_ui/GeistMono","fonts":[{"weight":100,"asset":"packages/shadcn_ui/fonts/GeistMono-Thin.otf"},{"weight":200,"asset":"packages/shadcn_ui/fonts/GeistMono-UltraLight.otf"},{"weight":300,"asset":"packages/shadcn_ui/fonts/GeistMono-Light.otf"},{"weight":400,"asset":"packages/shadcn_ui/fonts/GeistMono-Regular.otf"},{"weight":500,"asset":"packages/shadcn_ui/fonts/GeistMono-Medium.otf"},{"weight":600,"asset":"packages/shadcn_ui/fonts/GeistMono-SemiBold.otf"},{"weight":700,"asset":"packages/shadcn_ui/fonts/GeistMono-Bold.otf"},{"weight":800,"asset":"packages/shadcn_ui/fonts/GeistMono-Black.otf"},{"weight":900,"asset":"packages/shadcn_ui/fonts/GeistMono-UltraBlack.otf"}]},{"family":"packages/lucide_icons_flutter/Lucide","fonts":[{"asset":"packages/lucide_icons_flutter/assets/lucide.ttf"}]},{"family":"packages/lucide_icons_flutter/Lucide100","fonts":[{"weight":100,"asset":"packages/lucide_icons_flutter/assets/build_font/LucideVariable-w100.ttf"}]},{"family":"packages/lucide_icons_flutter/Lucide200","fonts":[{"weight":200,"asset":"packages/lucide_icons_flutter/assets/build_font/LucideVariable-w200.ttf"}]},{"family":"packages/lucide_icons_flutter/Lucide300","fonts":[{"weight":300,"asset":"packages/lucide_icons_flutter/assets/build_font/LucideVariable-w300.ttf"}]},{"family":"packages/lucide_icons_flutter/Lucide400","fonts":[{"weight":400,"asset":"packages/lucide_icons_flutter/assets/build_font/LucideVariable-w400.ttf"}]},{"family":"packages/lucide_icons_flutter/Lucide500","fonts":[{"weight":500,"asset":"packages/lucide_icons_flutter/assets/build_font/LucideVariable-w500.ttf"}]},{"family":"packages/lucide_icons_flutter/Lucide600","fonts":[{"weight":600,"asset":"packages/lucide_icons_flutter/assets/build_font/LucideVariable-w600.ttf"}]}] \ No newline at end of file diff --git a/flutter_monisuo/build/web/assets/NOTICES b/flutter_monisuo/build/web/assets/NOTICES deleted file mode 100644 index 9066086..0000000 --- a/flutter_monisuo/build/web/assets/NOTICES +++ /dev/null @@ -1,31894 +0,0 @@ -abseil-cpp - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. --------------------------------------------------------------------------------- -abseil-cpp - -Copyright 2020 The Chromium Authors -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -accessibility - -Copyright (c) 2009 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -accessibility - -Copyright (c) 2010 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -accessibility - -Copyright 2015 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -accessibility -angle -dart - -Copyright (c) 2011 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -accessibility -angle -dart -skia - -Copyright (c) 2013 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -accessibility -angle -dart -skia - -Copyright 2014 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -accessibility -angle -perfetto -skia - -Copyright 2020 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -accessibility -angle -skia - -Copyright 2017 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -accessibility -angle -skia - -Copyright 2018 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -accessibility -brotli -icu -skia - -Copyright 2015 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -accessibility -dart -flutter -icu -skia - -Copyright (c) 2012 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -accessibility -dart -flutter -spring_animation -tonic -web_test_fonts - -Copyright 2013 The Flutter Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -accessibility -dart -skia - -Copyright 2019 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -accessibility -icu -skia - -Copyright 2016 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -accessibility -skia - -Copyright (c) 2014 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -accessibility -skia - -Copyright 2013 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -// Copyright 2018 The ANGLE Project Authors. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions -// are met: -// -// Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// -// Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following -// disclaimer in the documentation and/or other materials provided -// with the distribution. -// -// Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. -// Ltd., nor the names of their contributors may be used to endorse -// or promote products derived from this software without specific -// prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -// COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -// POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle - -Copyright (c) 2008-2017 The Khronos Group Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -angle - -Copyright (c) 2008-2020 The Khronos Group Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -angle - -Copyright (c) 2008-2021 The Khronos Group Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -angle - -Copyright (c) 2008-2023 The Khronos Group Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -angle - -Copyright (c) 2013-2017 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Materials. - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -angle - -Copyright (c) 2013-2018 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Materials. - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -angle - -Copyright (c) 2017 The Khronos Group Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -angle - -Copyright (c) 2018-2020 The Khronos Group Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -angle - -Copyright (c) 2019-2020 The Khronos Group Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -angle - -Copyright (c) 2020 The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright (c) 2023 The Khronos Group Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -angle - -Copyright 2002 The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2007-2020 The Khronos Group Inc. -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -angle - -Copyright 2010 The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2011 The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2012 The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2013 The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2013-2020 The Khronos Group Inc. -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -angle - -Copyright 2014 The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2015 Google Inc. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2015 The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2016 The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2017 The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2017-2020 The Khronos Group Inc. -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -angle - -Copyright 2018 The ANGLE Project Authors. All rights reserved. - Use of this source code is governed by a BSD-style license that can be - found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2018 The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2019 The ANGLE Project Authors. All rights reserved. - Use of this source code is governed by a BSD-style license that can be - found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2019 The ANGLE Project. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2019 The ANGLE project authors. All Rights Reserved. - -Use of this source code is governed by a BSD-style license -that can be found in the LICENSE file --------------------------------------------------------------------------------- -angle - -Copyright 2019 The Android Open Source Project - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -angle - -Copyright 2019 The Fuchsia Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2020 The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2020 The ANGLE Project. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2021 The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2021 The ANGLE Project. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2021-2022 The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2022 The ANGLE Project Authors. All rights reserved. - Use of this source code is governed by a BSD-style license that can be - found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2022 The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2023 The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2023 The Android Open Source Project - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -angle - -Copyright 2024 Google Inc. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2024 The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2024 The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright 2025 The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright The ANGLE Project Authors. All rights reserved. - Use of this source code is governed by a BSD-style license that can be - found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle - -Copyright {copyright_year} The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -angle -benchmark -boringssl -clock -cpu_features -decimal -fake_async -flatbuffers -gtest-parallel -rational -spirv-cross -spirv-tools -swiftshader -vulkan-headers -vulkan-tools -vulkan-utility-libraries -wuffs -wycheproof_testvectors -yapf - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. --------------------------------------------------------------------------------- -angle -glfw - -Copyright (c) 2008-2018 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Materials. - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -angle -xxhash - -Copyright 2019 The ANGLE Project Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -args -logging - -Copyright 2013, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -async -collection -mime -stream_channel -typed_data - -Copyright 2015, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -benchmark - -Copyright 2016 Ismael Jimenez Martinez. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -benchmark - -Copyright 2016 Ismael Jimenez Martinez. All rights reserved. -Copyright 2017 Roman Lebedev. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -benchmark -flatbuffers - -Copyright 2015 Google Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -benchmark -flatbuffers - -Copyright 2018 Google Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -benchmark -flatbuffers - -Copyright 2021 Google Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -boolean_selector -meta - -Copyright 2016, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -boxy - -Copyright 2020 Andre Lipke - -Copyright 2014 The Flutter Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -brotli - -Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -ceval - - - -Copyright (c) 2021 e_t - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -characters -ffi - -Copyright 2019, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -code_assets -hooks - -Copyright 2025, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -cpu_features - -Copyright (C) 2010 The Android Open Source Project -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS -OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED -AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT -OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. --------------------------------------------------------------------------------- -cpu_features - -Copyright 2017 Google LLC - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -cpu_features - -Copyright 2017 Google LLC -Copyright 2020 Intel Corporation - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -cpu_features - -Copyright 2018 IBM - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -cpu_features - -Copyright 2018 IBM. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -cpu_features - -Copyright 2022 Google LLC - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -cpu_features - -Copyright 2022 IBM - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -cpu_features - -Copyright 2022 IBM. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -cpu_features - -Copyright 2023 Google LLC - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -crypto -vm_service - -Copyright 2015, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -dart - -Copyright (c) %d, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2003-2005 Tom Wu -Copyright (c) 2012 Adam Singer (adam@solvr.io) -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, -EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY -WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. - -IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, -INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER -RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF -THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT -OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -In addition, the following condition applies: - -All redistributions must retain an intact copy of this copyright notice -and disclaimer. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2010, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2025, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright 2012, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright 2013 The Chromium Authors -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright 2016 The Dart project authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright 2017 The Dart project authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -dart - -Copyright 2025 The Dart Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -dart -double-conversion - -Copyright 2006-2008 the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart -perfetto - -Copyright (C) 2022 The Android Open Source Project - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -dart -perfetto - -Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -dart -skia - -Copyright (c) 2015 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -dart -skia - -Copyright 2022 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -dart -zlib - -Copyright 2011 The Chromium Authors -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -dart -zlib - -Copyright 2012 The Chromium Authors -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -dart -zlib - -Copyright 2014 The Chromium Authors -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -dawn -skia - -Copyright 2025 Google LLC - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -devtools - -Copyright 2019 The Flutter Authors -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file --------------------------------------------------------------------------------- -devtools - -Copyright 2020 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -devtools - -Copyright 2020 The Flutter Authors -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file --------------------------------------------------------------------------------- -devtools - -Copyright 2021 The Flutter Authors -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file --------------------------------------------------------------------------------- -devtools - -Copyright 2022 The Flutter Authors -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file --------------------------------------------------------------------------------- -devtools - -Copyright 2023 The Flutter Authors -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file --------------------------------------------------------------------------------- -devtools - -Copyright 2024 The Flutter Authors -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file --------------------------------------------------------------------------------- -dio -dio_web_adapter - -MIT License - -Copyright (c) 2018 Wen Du (wendux) -Copyright (c) 2022 The CFUG Team - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -double-conversion - -Copyright 2006-2011, the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -double-conversion - -Copyright 2010 the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -double-conversion - -Copyright 2012 the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -equatable - - - -Copyright (c) 2018 Felix Angelov - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -etc1 - -Apache License - -Version 2.0, January 2004 - -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and -distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the -copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other -entities that control, are controlled by, or are under common control with -that entity. For the purposes of this definition, "control" means (i) the -power, direct or indirect, to cause the direction or management of such -entity, whether by contract or otherwise, or (ii) ownership of fifty -percent (50%) or more of the outstanding shares, or (iii) beneficial -ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising -permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, -including but not limited to software source code, documentation -source, and configuration files. - -"Object" form shall mean any form resulting from mechanical transformation -or translation of a Source form, including but not limited to compiled -object code, generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object -form, made available under the License, as indicated by a copyright -notice that is included in or attached to the work (an example is -provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object -form, that is based on (or derived from) the Work and for which the -editorial revisions, annotations, elaborations, or other modifications -represent, as a whole, an original work of authorship. For the purposes -of this License, Derivative Works shall not include works that remain -separable from, or merely link (or bind by name) to the interfaces of, -the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original -version of the Work and any modifications or additions to that Work or -Derivative Works thereof, that is intentionally submitted to Licensor -for inclusion in the Work by the copyright owner or by an individual or -Legal Entity authorized to submit on behalf of the copyright owner. For -the purposes of this definition, "submitted" means any form of electronic, -verbal, or written communication sent to the Licensor or its -representatives, including but not limited to communication on electronic -mailing lists, source code control systems, and issue tracking systems that -are managed by, or on behalf of, the Licensor for the purpose of discussing -and improving the Work, but excluding communication that is conspicuously -marked or otherwise designated in writing by the copyright owner as "Not -a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on -behalf of whom a Contribution has been received by Licensor and subsequently -incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of this -License, each Contributor hereby grants to You a perpetual, worldwide, -non-exclusive, no-charge, royalty-free, irrevocable copyright license to -reproduce, prepare Derivative Works of, publicly display, publicly perform, -sublicense, and distribute the Work and such Derivative Works in Source or -Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this -License, each Contributor hereby grants to You a perpetual, worldwide, -non-exclusive, no-charge, royalty-free, irrevocable (except as stated in -this section) patent license to make, have made, use, offer to sell, sell, -import, and otherwise transfer the Work, where such license applies only to -those patent claims licensable by such Contributor that are necessarily -infringed by their Contribution(s) alone or by combination of their -Contribution(s) with the Work to which such Contribution(s) was submitted. -If You institute patent litigation against any entity (including a cross-claim -or counterclaim in a lawsuit) alleging that the Work or a Contribution -incorporated within the Work constitutes direct or contributory patent -infringement, then any patent licenses granted to You under this License -for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the Work or -Derivative Works thereof in any medium, with or without modifications, and -in Source or Object form, provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that -You changed the files; and -You must retain, in the Source form of any Derivative Works that You -distribute, all copyright, patent, trademark, and attribution notices -from the Source form of the Work, excluding those notices that do not -pertain to any part of the Derivative Works; and -If the Work includes a "NOTICE" text file as part of its distribution, -then any Derivative Works that You distribute must include a readable -copy of the attribution notices contained within such NOTICE file, excluding -those notices that do not pertain to any part of the Derivative Works, in -at least one of the following places: within a NOTICE text file distributed -as part of the Derivative Works; within the Source form or documentation, if -provided along with the Derivative Works; or, within a display generated by -the Derivative Works, if and wherever such third-party notices normally -appear. The contents of the NOTICE file are for informational purposes -only and do not modify the License. You may add Your own attribution -notices within Derivative Works that You distribute, alongside or as -an addendum to the NOTICE text from the Work, provided that such additional -attribution notices cannot be construed as modifying the License. - -You may add Your own copyright statement to Your modifications and may provide -additional or different license terms and conditions for use, reproduction, or -distribution of Your modifications, or for any such Derivative Works as a -whole, provided Your use, reproduction, and distribution of the Work otherwise -complies with the conditions stated in this License. -5. Submission of Contributions. Unless You explicitly state otherwise, any -Contribution intentionally submitted for inclusion in the Work by You to the -Licensor shall be under the terms and conditions of this License, without any -additional terms or conditions. Notwithstanding the above, nothing herein -shall supersede or modify the terms of any separate license agreement you -may have executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, -trademarks, service marks, or product names of the Licensor, except as -required for reasonable and customary use in describing the origin of the -Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to -in writing, Licensor provides the Work (and each Contributor provides its -Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF -ANY KIND, either express or implied, including, without limitation, any -warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or -FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining -the appropriateness of using or redistributing the Work and assume any risks -associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in -tort (including negligence), contract, or otherwise, unless required by -applicable law (such as deliberate and grossly negligent acts) or agreed to -in writing, shall any Contributor be liable to You for damages, including -any direct, indirect, special, incidental, or consequential damages of any -character arising as a result of this License or out of the use or inability -to use the Work (including but not limited to damages for loss of goodwill, -work stoppage, computer failure or malfunction, or any and all other -commercial damages or losses), even if such Contributor has been advised -of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing the -Work or Derivative Works thereof, You may choose to offer, and charge a -fee for, acceptance of support, warranty, indemnity, or other liability -obligations and/or rights consistent with this License. However, in accepting -such obligations, You may act only on Your own behalf and on Your sole -responsibility, not on behalf of any other Contributor, and only if You -agree to indemnify, defend, and hold each Contributor harmless for any -liability incurred by, or claims asserted against, such Contributor by -reason of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS --------------------------------------------------------------------------------- -etc1 - -Copyright 2009 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -etc_decoder - - * Copyright (c) 2020-2022 Hans-Kristian Arntzen - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY - * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, - * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * --------------------------------------------------------------------------------- -etc_decoder - -Copyright (c) 2020-2022 Hans-Kristian Arntzen - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -! /bin/bash - __ __ _ - ___\ \/ /_ __ __ _| |_ - / _ \\ /| '_ \ / _` | __| - | __// \| |_) | (_| | |_ - \___/_/\_\ .__/ \__,_|\__| - |_| XML parser - -Copyright (c) 2017-2024 Sebastian Pipping -Copyright (c) 2017 Rolf Eike Beer -Copyright (c) 2019 Mohammed Khajapasha -Copyright (c) 2019 Manish, Kumar -Copyright (c) 2019 Philippe Antoine -Copyright (c) 2024 Dag-Erling Smørgrav -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -! /usr/bin/env bash - __ __ _ - ___\ \/ /_ __ __ _| |_ - / _ \\ /| '_ \ / _` | __| - | __// \| |_) | (_| | |_ - \___/_/\_\ .__/ \__,_|\__| - |_| XML parser - -Copyright (c) 2016-2023 Sebastian Pipping -Copyright (c) 2019 Philippe Antoine -Copyright (c) 2019-2025 Hanno Böck -Copyright (c) 2024 Alexander Bluhm -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -! /usr/bin/env bash - __ __ _ - ___\ \/ /_ __ __ _| |_ - / _ \\ /| '_ \ / _` | __| - | __// \| |_) | (_| | |_ - \___/_/\_\ .__/ \__,_|\__| - |_| XML parser - -Copyright (c) 2017 Sebastian Pipping -Copyright (c) 2019 Jeffrey Walton -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -! /usr/bin/env bash - __ __ _ - ___\ \/ /_ __ __ _| |_ - / _ \\ /| '_ \ / _` | __| - | __// \| |_) | (_| | |_ - \___/_/\_\ .__/ \__,_|\__| - |_| XML parser - -Copyright (c) 2017-2022 Sebastian Pipping -Copyright (c) 2018 Marco Maggi -Copyright (c) 2024 Dag-Erling Smørgrav -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -! /usr/bin/env bash - __ __ _ - ___\ \/ /_ __ __ _| |_ - / _ \\ /| '_ \ / _` | __| - | __// \| |_) | (_| | |_ - \___/_/\_\ .__/ \__,_|\__| - |_| XML parser - -Copyright (c) 2017-2024 Sebastian Pipping -Copyright (c) 2018 Marco Maggi -Copyright (c) 2019 Mohammed Khajapasha -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -! /usr/bin/env bash - __ __ _ - ___\ \/ /_ __ __ _| |_ - / _ \\ /| '_ \ / _` | __| - | __// \| |_) | (_| | |_ - \___/_/\_\ .__/ \__,_|\__| - |_| XML parser - -Copyright (c) 2019-2021 Sebastian Pipping -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -! /usr/bin/env bash - __ __ _ - ___\ \/ /_ __ __ _| |_ - / _ \\ /| '_ \ / _` | __| - | __// \| |_) | (_| | |_ - \___/_/\_\ .__/ \__,_|\__| - |_| XML parser - -Copyright (c) 2019-2022 Sebastian Pipping -Copyright (c) 2024 Dag-Erling Smørgrav -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -! /usr/bin/env bash - __ __ _ - ___\ \/ /_ __ __ _| |_ - / _ \\ /| '_ \ / _` | __| - | __// \| |_) | (_| | |_ - \___/_/\_\ .__/ \__,_|\__| - |_| XML parser - -Copyright (c) 2019-2024 Sebastian Pipping -Copyright (c) 2022 Rosen Penev -Copyright (c) 2024 Dag-Erling Smørgrav -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -! /usr/bin/env bash - __ __ _ - ___\ \/ /_ __ __ _| |_ - / _ \\ /| '_ \ / _` | __| - | __// \| |_) | (_| | |_ - \___/_/\_\ .__/ \__,_|\__| - |_| XML parser - -Copyright (c) 2020-2023 Sebastian Pipping -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -! /usr/bin/env bash - __ __ _ - ___\ \/ /_ __ __ _| |_ - / _ \\ /| '_ \ / _` | __| - | __// \| |_) | (_| | |_ - \___/_/\_\ .__/ \__,_|\__| - |_| XML parser - -Copyright (c) 2021-2022 Sebastian Pipping -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -! /usr/bin/env bash - __ __ _ - ___\ \/ /_ __ __ _| |_ - / _ \\ /| '_ \ / _` | __| - | __// \| |_) | (_| | |_ - \___/_/\_\ .__/ \__,_|\__| - |_| XML parser - -Copyright (c) 2021-2025 Sebastian Pipping -Copyright (c) 2024 Dag-Erling Smørgrav -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -! /usr/bin/env bash - __ __ _ - ___\ \/ /_ __ __ _| |_ - / _ \\ /| '_ \ / _` | __| - | __// \| |_) | (_| | |_ - \___/_/\_\ .__/ \__,_|\__| - |_| XML parser - -Copyright (c) 2024-2025 Sebastian Pipping -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -! /usr/bin/env bash -Creates release tarball and detached GPG signature file for upload - __ __ _ - ___\ \/ /_ __ __ _| |_ - / _ \\ /| '_ \ / _` | __| - | __// \| |_) | (_| | |_ - \___/_/\_\ .__/ \__,_|\__| - |_| XML parser - -Copyright (c) 2018-2019 Sebastian Pipping -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -! /usr/bin/env python3 - __ __ _ - ___\ \/ /_ __ __ _| |_ - / _ \\ /| '_ \ / _` | __| - | __// \| |_) | (_| | |_ - \___/_/\_\ .__/ \__,_|\__| - |_| XML parser - -Copyright (c) 2019-2023 Sebastian Pipping -Copyright (c) 2021 Tim Bray -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -!/bin/sh -USAGE: get-version.sh path/to/expat.h - -This script will print Expat's version number on stdout. For example: - - $ ./conftools/get-version.sh ./lib/expat.h - 1.95.3 - __ __ _ - ___\ \/ /_ __ __ _| |_ - / _ \\ /| '_ \ / _` | __| - | __// \| |_) | (_| | |_ - \___/_/\_\ .__/ \__,_|\__| - |_| XML parser - -Copyright (c) 2002 Greg Stein -Copyright (c) 2017 Kerin Millar -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -!/usr/bin/env bash -Clean source directory after running the coverage script. - __ __ _ - ___\ \/ /_ __ __ _| |_ - / _ \\ /| '_ \ / _` | __| - | __// \| |_) | (_| | |_ - \___/_/\_\ .__/ \__,_|\__| - |_| XML parser - -Copyright (c) 2017 Rhodri James -Copyright (c) 2018 Marco Maggi -Copyright (c) 2019 Sebastian Pipping -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Copyright (c) 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper -Copyright (c) 2001-2025 Expat maintainers - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Read an XML document from standard input and print -element declarations (if any) to standard output. -It must be used with Expat compiled for UTF-8 output. -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2001-2003 Fred L. Drake, Jr. -Copyright (c) 2004-2006 Karl Waclawek -Copyright (c) 2005-2007 Steven Solie -Copyright (c) 2016-2024 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2019 Zhongyuan Zhou -Copyright (c) 2024 Hanno Böck -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -Read an XML document from standard input and print an element -outline on standard output. -Must be used with Expat compiled for UTF-8 output. -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2003 Fred L. Drake, Jr. -Copyright (c) 2005-2007 Steven Solie -Copyright (c) 2005-2006 Karl Waclawek -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -This file is included (from xmltok.c, 1-3 times depending on XML_MIN_SIZE)! -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2002-2016 Karl Waclawek -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2018 Benjamin Peterson -Copyright (c) 2018 Anton Maklakov -Copyright (c) 2019 David Loffredo -Copyright (c) 2020 Boris Kolpackov -Copyright (c) 2022 Martin Ettl -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -This file is included! -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Greg Stein -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2002-2006 Karl Waclawek -Copyright (c) 2017-2021 Sebastian Pipping -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -This is simple demonstration of how to use expat. This program -reads an XML document from standard input and writes a line with -the name of each element to standard output indenting child -elements by one tab stop more than their parent element. -It must be used with Expat compiled for UTF-8 output. -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2001-2003 Fred L. Drake, Jr. -Copyright (c) 2004-2006 Karl Waclawek -Copyright (c) 2005-2007 Steven Solie -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2019 Zhongyuan Zhou -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2000-2004 Fred L. Drake, Jr. -Copyright (c) 2001-2002 Greg Stein -Copyright (c) 2002-2006 Karl Waclawek -Copyright (c) 2016 Cristian Rodríguez -Copyright (c) 2016-2019 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2018 Yury Gribov -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2000-2005 Fred L. Drake, Jr. -Copyright (c) 2001-2002 Greg Stein -Copyright (c) 2002-2016 Karl Waclawek -Copyright (c) 2016-2025 Sebastian Pipping -Copyright (c) 2016 Cristian Rodríguez -Copyright (c) 2016 Thomas Beutlich -Copyright (c) 2017 Rhodri James -Copyright (c) 2022 Thijs Schreijer -Copyright (c) 2023 Hanno Böck -Copyright (c) 2023 Sony Corporation / Snild Dolkow -Copyright (c) 2024 Taichi Haradaguchi <20001722@ymail.ne.jp> -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2002 Fred L. Drake, Jr. -Copyright (c) 2006 Karl Waclawek -Copyright (c) 2016-2017 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2003 Fred L. Drake, Jr. -Copyright (c) 2002 Greg Stein -Copyright (c) 2002-2016 Karl Waclawek -Copyright (c) 2005-2009 Steven Solie -Copyright (c) 2016-2024 Sebastian Pipping -Copyright (c) 2016 Pascal Cuoq -Copyright (c) 2016 Don Lewis -Copyright (c) 2017 Rhodri James -Copyright (c) 2017 Alexander Bluhm -Copyright (c) 2017 Benbuck Nason -Copyright (c) 2017 José Gutiérrez de la Concha -Copyright (c) 2019 David Loffredo -Copyright (c) 2021 Donghee Na -Copyright (c) 2022 Martin Ettl -Copyright (c) 2022 Sean McBride -Copyright (c) 2023 Hanno Böck -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2003 Fred L. Drake, Jr. -Copyright (c) 2004-2009 Karl Waclawek -Copyright (c) 2005-2007 Steven Solie -Copyright (c) 2016-2023 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2019 David Loffredo -Copyright (c) 2020 Joe Orton -Copyright (c) 2020 Kleber Tarcísio -Copyright (c) 2021 Tim Bray -Copyright (c) 2022 Martin Ettl -Copyright (c) 2022 Sean McBride -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2004 Fred L. Drake, Jr. -Copyright (c) 2002-2009 Karl Waclawek -Copyright (c) 2016-2017 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2017 Franek Korta -Copyright (c) 2022 Sean McBride -Copyright (c) 2025 Hanno Böck -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2002-2005 Karl Waclawek -Copyright (c) 2016-2024 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2005 Karl Waclawek -Copyright (c) 2016-2023 Sebastian Pipping -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2005-2006 Karl Waclawek -Copyright (c) 2016-2019 Sebastian Pipping -Copyright (c) 2019 David Loffredo -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2016-2017 Sebastian Pipping -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2022 Martin Ettl -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2016-2024 Sebastian Pipping -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2017 Sebastian Pipping -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Greg Stein -Copyright (c) 2002-2006 Karl Waclawek -Copyright (c) 2002-2003 Fred L. Drake, Jr. -Copyright (c) 2005-2009 Steven Solie -Copyright (c) 2016-2023 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2019 David Loffredo -Copyright (c) 2021 Donghee Na -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Karl Waclawek -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2017-2024 Sebastian Pipping -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002-2003 Fred L. Drake, Jr. -Copyright (c) 2004-2006 Karl Waclawek -Copyright (c) 2005-2007 Steven Solie -Copyright (c) 2016-2023 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2019 David Loffredo -Copyright (c) 2021 Donghee Na -Copyright (c) 2024 Hanno Böck -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2017-2019 Sebastian Pipping -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2016-2017 Sebastian Pipping -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2016-2018 Sebastian Pipping -Copyright (c) 2018 Marco Maggi -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2016-2021 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1999-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2007 Karl Waclawek -Copyright (c) 2017 Sebastian Pipping -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Greg Stein -Copyright (c) 2005 Karl Waclawek -Copyright (c) 2017-2023 Sebastian Pipping -Copyright (c) 2023 Orgad Shaneh -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 2000 Clark Cooper -Copyright (c) 2017 Sebastian Pipping -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 2022 Mark Brand -Copyright (c) 2025 Sebastian Pipping -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat - -d19ae032c224863c1527ba44d228cc34b99192c3a4c5a27af1f4e054d45ee031 (2.7.1+) -__ __ _ -___\ \/ /_ __ __ _| |_ -/ _ \\ /| '_ \ / _` | __| -| __// \| |_) | (_| | |_ -\___/_/\_\ .__/ \__,_|\__| -|_| XML parser - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2000-2006 Fred L. Drake, Jr. -Copyright (c) 2001-2002 Greg Stein -Copyright (c) 2002-2016 Karl Waclawek -Copyright (c) 2005-2009 Steven Solie -Copyright (c) 2016 Eric Rahm -Copyright (c) 2016-2025 Sebastian Pipping -Copyright (c) 2016 Gaurav -Copyright (c) 2016 Thomas Beutlich -Copyright (c) 2016 Gustavo Grieco -Copyright (c) 2016 Pascal Cuoq -Copyright (c) 2016 Ed Schouten -Copyright (c) 2017-2022 Rhodri James -Copyright (c) 2017 Václav Slavík -Copyright (c) 2017 Viktor Szakats -Copyright (c) 2017 Chanho Park -Copyright (c) 2017 Rolf Eike Beer -Copyright (c) 2017 Hans Wennborg -Copyright (c) 2018 Anton Maklakov -Copyright (c) 2018 Benjamin Peterson -Copyright (c) 2018 Marco Maggi -Copyright (c) 2018 Mariusz Zaborski -Copyright (c) 2019 David Loffredo -Copyright (c) 2019-2020 Ben Wagner -Copyright (c) 2019 Vadim Zeitlin -Copyright (c) 2021 Donghee Na -Copyright (c) 2022 Samanta Navarro -Copyright (c) 2022 Jeffrey Walton -Copyright (c) 2022 Jann Horn -Copyright (c) 2022 Sean McBride -Copyright (c) 2023 Owain Davies -Copyright (c) 2023-2024 Sony Corporation / Snild Dolkow -Copyright (c) 2024-2025 Berkay Eren Ürün -Copyright (c) 2024 Hanno Böck -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat -harfbuzz - -// Copyright (c) 2021 Google Inc. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -extended_image - -MIT License - -Copyright (c) 2019 zmtzawqlp - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -extended_image_library - -MIT License - -Copyright (c) 2019 zmtzawqlp - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -fallback_root_certificates - -Mozilla Public License Version 2.0 -================================== - -1. Definitions --------------- - -1.1. "Contributor" - means each individual or legal entity that creates, contributes to - the creation of, or owns Covered Software. - -1.2. "Contributor Version" - means the combination of the Contributions of others (if any) used - by a Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - means Source Code Form to which the initial Contributor has attached - the notice in Exhibit A, the Executable Form of such Source Code - Form, and Modifications of such Source Code Form, in each case - including portions thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - (a) that the initial Contributor has attached the notice described - in Exhibit B to the Covered Software; or - - (b) that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the - terms of a Secondary License. - -1.6. "Executable Form" - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - means a work that combines Covered Software with other material, in - a separate file or files, that is not Covered Software. - -1.8. "License" - means this document. - -1.9. "Licensable" - means having the right to grant, to the maximum extent possible, - whether at the time of the initial grant or subsequently, any and - all of the rights conveyed by this License. - -1.10. "Modifications" - means any of the following: - - (a) any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered - Software; or - - (b) any new file in Source Code Form that contains any Covered - Software. - -1.11. "Patent Claims" of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the - License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its - Contributor Version. - -1.12. "Secondary License" - means either the GNU General Public License, Version 2.0, the GNU - Lesser General Public License, Version 2.1, the GNU Affero General - Public License, Version 3.0, or any later versions of those - licenses. - -1.13. "Source Code Form" - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. - -2. License Grants and Conditions --------------------------------- - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - -(b) under Patent Claims of such Contributor to make, use, sell, offer - for sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - -The licenses granted in Section 2.1 with respect to any Contribution -become effective for each Contribution on the date the Contributor first -distributes such Contribution. - -2.3. Limitations on Grant Scope - -The licenses granted in this Section 2 are the only rights granted under -this License. No additional rights or licenses will be implied from the -distribution or licensing of Covered Software under this License. -Notwithstanding Section 2.1(b) above, no patent license is granted by a -Contributor: - -(a) for any code that a Contributor has removed from Covered Software; - or - -(b) for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - -(c) under Patent Claims infringed by Covered Software in the absence of - its Contributions. - -This License does not grant any rights in the trademarks, service marks, -or logos of any Contributor (except as may be necessary to comply with -the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this -License (see Section 10.2) or under the terms of a Secondary License (if -permitted under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its -Contributions are its original creation(s) or it has sufficient rights -to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under -applicable copyright doctrines of fair use, fair dealing, or other -equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted -in Section 2.1. - -3. Responsibilities -------------------- - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under -the terms of this License. You must inform recipients that the Source -Code Form of the Covered Software is governed by the terms of this -License, and how they can obtain a copy of this License. You may not -attempt to alter or restrict the recipients' rights in the Source Code -Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - -(a) such Covered Software must also be made available in Source Code - Form, as described in Section 3.1, and You must inform recipients of - the Executable Form how they can obtain a copy of such Source Code - Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and - -(b) You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter - the recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for -the Covered Software. If the Larger Work is a combination of Covered -Software with a work governed by one or more Secondary Licenses, and the -Covered Software is not Incompatible With Secondary Licenses, this -License permits You to additionally distribute such Covered Software -under the terms of such Secondary License(s), so that the recipient of -the Larger Work may, at their option, further distribute the Covered -Software under the terms of either this License or such Secondary -License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices -(including copyright notices, patent notices, disclaimers of warranty, -or limitations of liability) contained within the Source Code Form of -the Covered Software, except that You may alter any license notices to -the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on -behalf of any Contributor. You must make it absolutely clear that any -such warranty, support, indemnity, or liability obligation is offered by -You alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. - -4. Inability to Comply Due to Statute or Regulation ---------------------------------------------------- - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Software due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be placed in a text file included with all distributions of the Covered -Software under this License. Except to the extent prohibited by statute -or regulation, such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. - -5. Termination --------------- - -5.1. The rights granted under this License will terminate automatically -if You fail to comply with any of its terms. However, if You become -compliant, then the rights granted under this License from a particular -Contributor are reinstated (a) provisionally, unless and until such -Contributor explicitly and finally terminates Your grants, and (b) on an -ongoing basis, if such Contributor fails to notify You of the -non-compliance by some reasonable means prior to 60 days after You have -come back into compliance. Moreover, Your grants from a particular -Contributor are reinstated on an ongoing basis if such Contributor -notifies You of the non-compliance by some reasonable means, this is the -first time You have received notice of non-compliance with this License -from such Contributor, and You become compliant prior to 30 days after -Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, -counter-claims, and cross-claims) alleging that a Contributor Version -directly or indirectly infringes any patent, then the rights granted to -You by any and all Contributors for the Covered Software under Section -2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all -end user license agreements (excluding distributors and resellers) which -have been validly granted by You or Your distributors under this License -prior to termination shall survive termination. - -************************************************************************ -* * -* 6. Disclaimer of Warranty * -* ------------------------- * -* * -* Covered Software is provided under this License on an "as is" * -* basis, without warranty of any kind, either expressed, implied, or * -* statutory, including, without limitation, warranties that the * -* Covered Software is free of defects, merchantable, fit for a * -* particular purpose or non-infringing. The entire risk as to the * -* quality and performance of the Covered Software is with You. * -* Should any Covered Software prove defective in any respect, You * -* (not any Contributor) assume the cost of any necessary servicing, * -* repair, or correction. This disclaimer of warranty constitutes an * -* essential part of this License. No use of any Covered Software is * -* authorized under this License except under this disclaimer. * -* * -************************************************************************ - -************************************************************************ -* * -* 7. Limitation of Liability * -* -------------------------- * -* * -* Under no circumstances and under no legal theory, whether tort * -* (including negligence), contract, or otherwise, shall any * -* Contributor, or anyone who distributes Covered Software as * -* permitted above, be liable to You for any direct, indirect, * -* special, incidental, or consequential damages of any character * -* including, without limitation, damages for lost profits, loss of * -* goodwill, work stoppage, computer failure or malfunction, or any * -* and all other commercial damages or losses, even if such party * -* shall have been informed of the possibility of such damages. This * -* limitation of liability shall not apply to liability for death or * -* personal injury resulting from such party's negligence to the * -* extent applicable law prohibits such limitation. Some * -* jurisdictions do not allow the exclusion or limitation of * -* incidental or consequential damages, so this exclusion and * -* limitation may not apply to You. * -* * -************************************************************************ - -8. Litigation -------------- - -Any litigation relating to this License may be brought only in the -courts of a jurisdiction where the defendant maintains its principal -place of business and such litigation shall be governed by laws of that -jurisdiction, without reference to its conflict-of-law provisions. -Nothing in this Section shall prevent a party's ability to bring -cross-claims or counter-claims. - -9. Miscellaneous ----------------- - -This License represents the complete agreement concerning the subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -shall not be used to construe this License against a Contributor. - -10. Versions of the License ---------------------------- - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version -of the License under which You originally received the Covered Software, -or under the terms of any subsequent version published by the license -steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a -modified version of this License if you rename the license and remove -any references to the name of the license steward (except to note that -such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary -Licenses - -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice -------------------------------------------- - - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular -file, then You may include the notice in a location (such as a LICENSE -file in a relevant directory) where a recipient would be likely to look -for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice ---------------------------------------------------------- - - This Source Code Form is "Incompatible With Secondary Licenses", as - defined by the Mozilla Public License, v. 2.0. - --------------------------------------------------------------------------------- -ffx_spd - - -Copyright (c) 2017-2019 Advanced Micro Devices, Inc. All rights reserved. -Copyright (c) <2014> -------- -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, -modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: -------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the -Software. -------- -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -ffx_spd - - -Copyright (c) 2017-2020 Advanced Micro Devices, Inc. All rights reserved. -------- -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, -modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: -------- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the -Software. -------- -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -ffx_spd - -Copyright (c) 2020 Advanced Micro Devices, Inc. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -fiat - -The Apache License, Version 2.0 (Apache-2.0) - -Copyright 2015-2020 the fiat-crypto authors (see the AUTHORS file) - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -file - -Copyright 2017, the Dart project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -flatbuffers - - -Copyright 2015 gRPC authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -flatbuffers - - -Copyright 2018 Dan Field. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -flatbuffers - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2014 Google Inc. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. --------------------------------------------------------------------------------- -flatbuffers - -Copyright 2014 Google Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -flatbuffers - -Copyright 2016 Google Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -flatbuffers - -Copyright 2018 Dan Field - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -flatbuffers - -Copyright 2018 Dan Field. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -flatbuffers - -Copyright 2019 Google Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -flatbuffers - -Copyright 2020 Google Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -flatbuffers - -Copyright 2022 Google Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -flatbuffers - -Copyright 2023 Google Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -flatbuffers - -Copyright 2024 Google Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -flatbuffers -gtest-parallel - -Copyright 2017 Google Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -flutter - -Copyright 2014 The Flutter Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -flutter - -Copyright 2014 The Flutter Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -flutter - -Copyright 2019 The Flutter Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -flutter - -License for the Ahem font embedded below is from: -https://www.w3.org/Style/CSS/Test/Fonts/Ahem/COPYING - -The Ahem font in this directory belongs to the public domain. In -jurisdictions that do not recognize public domain ownership of these -files, the following Creative Commons Zero declaration applies: - - - -which is quoted below: - - The person who has associated a work with this document (the "Work") - affirms that he or she (the "Affirmer") is the/an author or owner of - the Work. The Work may be any work of authorship, including a - database. - - The Affirmer hereby fully, permanently and irrevocably waives and - relinquishes all of her or his copyright and related or neighboring - legal rights in the Work available under any federal or state law, - treaty or contract, including but not limited to moral rights, - publicity and privacy rights, rights protecting against unfair - competition and any rights protecting the extraction, dissemination - and reuse of data, whether such rights are present or future, vested - or contingent (the "Waiver"). The Affirmer makes the Waiver for the - benefit of the public at large and to the detriment of the Affirmer's - heirs or successors. - - The Affirmer understands and intends that the Waiver has the effect - of eliminating and entirely removing from the Affirmer's control all - the copyright and related or neighboring legal rights previously held - by the Affirmer in the Work, to that extent making the Work freely - available to the public for any and all uses and purposes without - restriction of any kind, including commercial use and uses in media - and formats or by methods that have not yet been invented or - conceived. Should the Waiver for any reason be judged legally - ineffective in any jurisdiction, the Affirmer hereby grants a free, - full, permanent, irrevocable, nonexclusive and worldwide license for - all her or his copyright and related or neighboring legal rights in - the Work. --------------------------------------------------------------------------------- -flutter -skia - -Copyright 2022 Google LLC - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -flutter -tonic - -Copyright 2013 The Flutter Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -flutter_animate - -BSD 3-Clause License - -Copyright (c) 2022, Grant Skinner -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -flutter_lints -flutter_shaders -path_provider -path_provider_linux -path_provider_platform_interface -path_provider_windows -plugin_platform_interface -shared_preferences_linux -shared_preferences_platform_interface -shared_preferences_web -shared_preferences_windows -vector_graphics_codec -xdg_directories - -Copyright 2013 The Flutter Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -flutter_svg - -Copyright (c) 2018 Dan Field - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - - - -Copyright (C) 2000, 2001, 2002, 2003, 2006, 2010 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - - - -Copyright (C) 2000-2004, 2006-2011, 2013, 2014 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - - - -Copyright (C) 2001, 2002 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - - - -Copyright (C) 2001, 2002, 2003, 2004 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - - - -Copyright (C) 2001-2008, 2011, 2013, 2014 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - - - -Copyright 2000, 2001, 2004 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - - - -Copyright 2000-2001, 2002 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - - - -Copyright 2000-2001, 2003 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - - - -Copyright 2000-2010, 2012-2014 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - - - -Copyright 2003 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - - The FreeType Project LICENSE - ---------------------------- - - 2006-Jan-27 - - Copyright 1996-2002, 2006 by - David Turner, Robert Wilhelm, and Werner Lemberg - - - -Introduction -============ - - The FreeType Project is distributed in several archive packages; - some of them may contain, in addition to the FreeType font engine, - various tools and contributions which rely on, or relate to, the - FreeType Project. - - This license applies to all files found in such packages, and - which do not fall under their own explicit license. The license - affects thus the FreeType font engine, the test programs, - documentation and makefiles, at the very least. - - This license was inspired by the BSD, Artistic, and IJG - (Independent JPEG Group) licenses, which all encourage inclusion - and use of free software in commercial and freeware products - alike. As a consequence, its main points are that: - - o We don't promise that this software works. However, we will be - interested in any kind of bug reports. (`as is' distribution) - - o You can use this software for whatever you want, in parts or - full form, without having to pay us. (`royalty-free' usage) - - o You may not pretend that you wrote this software. If you use - it, or only parts of it, in a program, you must acknowledge - somewhere in your documentation that you have used the - FreeType code. (`credits') - - We specifically permit and encourage the inclusion of this - software, with or without modifications, in commercial products. - We disclaim all warranties covering The FreeType Project and - assume no liability related to The FreeType Project. - - - Finally, many people asked us for a preferred form for a - credit/disclaimer to use in compliance with this license. We thus - encourage you to use the following text: - - """ - Portions of this software are copyright © The FreeType - Project (www.freetype.org). All rights reserved. - """ - - Please replace with the value from the FreeType version you - actually use. - - -Legal Terms -=========== - -0. Definitions --------------- - - Throughout this license, the terms `package', `FreeType Project', - and `FreeType archive' refer to the set of files originally - distributed by the authors (David Turner, Robert Wilhelm, and - Werner Lemberg) as the `FreeType Project', be they named as alpha, - beta or final release. - - `You' refers to the licensee, or person using the project, where - `using' is a generic term including compiling the project's source - code as well as linking it to form a `program' or `executable'. - This program is referred to as `a program using the FreeType - engine'. - - This license applies to all files distributed in the original - FreeType Project, including all source code, binaries and - documentation, unless otherwise stated in the file in its - original, unmodified form as distributed in the original archive. - If you are unsure whether or not a particular file is covered by - this license, you must contact us to verify this. - - The FreeType Project is copyright (C) 1996-2000 by David Turner, - Robert Wilhelm, and Werner Lemberg. All rights reserved except as - specified below. - -1. No Warranty --------------- - - THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY - KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO - USE, OF THE FREETYPE PROJECT. - -2. Redistribution ------------------ - - This license grants a worldwide, royalty-free, perpetual and - irrevocable right and license to use, execute, perform, compile, - display, copy, create derivative works of, distribute and - sublicense the FreeType Project (in both source and object code - forms) and derivative works thereof for any purpose; and to - authorize others to exercise some or all of the rights granted - herein, subject to the following conditions: - - o Redistribution of source code must retain this license file - (`FTL.TXT') unaltered; any additions, deletions or changes to - the original files must be clearly indicated in accompanying - documentation. The copyright notices of the unaltered, - original files must be preserved in all copies of source - files. - - o Redistribution in binary form must provide a disclaimer that - states that the software is based in part of the work of the - FreeType Team, in the distribution documentation. We also - encourage you to put an URL to the FreeType web page in your - documentation, though this isn't mandatory. - - These conditions apply to any software derived from or based on - the FreeType Project, not just the unmodified files. If you use - our work, you must acknowledge us. However, no fee need be paid - to us. - -3. Advertising --------------- - - Neither the FreeType authors and contributors nor you shall use - the name of the other for commercial, advertising, or promotional - purposes without specific prior written permission. - - We suggest, but do not require, that you use one or more of the - following phrases to refer to this software in your documentation - or advertising materials: `FreeType Project', `FreeType Engine', - `FreeType library', or `FreeType Distribution'. - - As you have not signed this license, you are not required to - accept it. However, as the FreeType Project is copyrighted - material, only this license, or another one contracted with the - authors, grants you the right to use, distribute, and modify it. - Therefore, by using, distributing, or modifying the FreeType - Project, you indicate that you understand and accept all the terms - of this license. - -4. Contacts ------------ - - There are two mailing lists related to FreeType: - - o freetype@nongnu.org - - Discusses general use and applications of FreeType, as well as - future and wanted additions to the library and distribution. - If you are looking for support, start in this list if you - haven't found anything to help you in the documentation. - - o freetype-devel@nongnu.org - - Discusses bugs, as well as engine internals, design issues, - specific licenses, porting, etc. - - Our home page can be found at - - https://www.freetype.org - - ---- end of FTL.TXT --- --------------------------------------------------------------------------------- -freetype2 - -Copyright 1990, 1994, 1998 The Open Group - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of The Open Group shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from The Open Group. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000 Computing Research Labs, New Mexico State University -Copyright 2001-2004, 2011 Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000 Computing Research Labs, New Mexico State University -Copyright 2001-2014 - Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000 Computing Research Labs, New Mexico State University -Copyright 2001-2015 - Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2001, 2002, 2012 Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - -This software was written by Alexander Peslyak in 2001. No copyright is -claimed, and the software is hereby placed in the public domain. -In case this attempt to disclaim copyright and place the software in the -public domain is deemed null and void, then the software is -Copyright (c) 2001 Alexander Peslyak and it is hereby released to the -general public under the following terms: - -Redistribution and use in source and binary forms, with or without -modification, are permitted. - -There's ABSOLUTELY NO WARRANTY, express or implied. --------------------------------------------------------------------------------- -freetype2 - -version 1.2.11, January 15th, 2017 - -Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not -claim that you wrote the original software. If you use this software -in a product, an acknowledgment in the product documentation would be -appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be -misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -fuchsia_sdk - - - - -Copyright © 2005-2014 Rich Felker, et al. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -Authors/contributors include: - -Alex Dowad -Alexander Monakov -Anthony G. Basile -Arvid Picciani -Bobby Bingham -Boris Brezillon -Brent Cook -Chris Spiegel -Clément Vasseur -Daniel Micay -Denys Vlasenko -Emil Renner Berthing -Felix Fietkau -Felix Janda -Gianluca Anzolin -Hauke Mehrtens -Hiltjo Posthuma -Isaac Dunham -Jaydeep Patil -Jens Gustedt -Jeremy Huntwork -Jo-Philipp Wich -Joakim Sindholt -John Spencer -Josiah Worcester -Justin Cormack -Khem Raj -Kylie McClain -Luca Barbato -Luka Perkov -M Farkas-Dyck (Strake) -Mahesh Bodapati -Michael Forney -Natanael Copa -Nicholas J. Kain -orc -Pascal Cuoq -Petr Hosek -Pierre Carrier -Rich Felker -Richard Pennington -Shiz -sin -Solar Designer -Stefan Kristiansson -Szabolcs Nagy -Timo Teräs -Trutz Behn -Valentin Ochs -William Haddon - -Portions of this software are derived from third-party works licensed -under terms compatible with the above MIT license: - -Much of the math library code (third_party/math/* and -third_party/complex/*, and third_party/include/libm.h) is -Copyright © 1993,2004 Sun Microsystems or -Copyright © 2003-2011 David Schultz or -Copyright © 2003-2009 Steven G. Kargl or -Copyright © 2003-2009 Bruce D. Evans or -Copyright © 2008 Stephen L. Moshier -and labelled as such in comments in the individual source files. All -have been licensed under extremely permissive terms. - -The smoothsort implementation (third_party/smoothsort/qsort.c) is -Copyright © 2011 Valentin Ochs and is licensed under an MIT-style -license. - -The x86_64 files in third_party/arch were written by Nicholas J. Kain -and is licensed under the standard MIT terms. - -All other files which have no copyright comments are original works -produced specifically for use as part of this library, written either -by Rich Felker, the main author of the library, or by one or more -contibutors listed above. Details on authorship of individual files -can be found in the git version control history of the project. The -omission of copyright and license comments in each file is in the -interest of source tree size. - -In addition, permission is hereby granted for all public header files -(include/* and arch/*/bits/*) and crt files intended to be linked into -applications (crt/*, ldso/dlstart.c, and arch/*/crt_arch.h) to omit -the copyright notice and permission notice otherwise required by the -license, and to use these files without any requirement of -attribution. These files include substantial contributions from: - -Bobby Bingham -John Spencer -Nicholas J. Kain -Rich Felker -Richard Pennington -Stefan Kristiansson -Szabolcs Nagy - -all of whom have explicitly granted such permission. - -This file previously contained text expressing a belief that most of -the files covered by the above exception were sufficiently trivial not -to be subject to copyright, resulting in confusion over whether it -negated the permissions granted in the license. In the spirit of -permissive licensing, and of not having licensing issues being an -obstacle to adoption, that text has been removed. - --------------------------------------------------------------------------------- -fuchsia_sdk - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -fuchsia_sdk - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - ---- LLVM Exceptions to the Apache 2.0 License ---- - -As an exception, if, as a result of your compiling your source code, portions -of this Software are embedded into an Object form of such source code, you -may redistribute such embedded portions in such Object form without complying -with the conditions of Sections 4(a), 4(b) and 4(d) of the License. - -In addition, if you combine or link compiled forms of this Software with -software that is licensed under the GPLv2 ("Combined Software") and if a -court of competent jurisdiction determines that the patent provision (Section -3), the indemnity provision (Section 9) or other Section of the License -conflicts with the conditions of the GPLv2, you may retroactively and -prospectively choose to deem waived or otherwise exclude such Section(s) of -the License, but only in their entirety and only with respect to the Combined -Software. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2014 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2016 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2017 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2018 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2019 The Fuchsia Authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2019 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2020 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2021 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2022 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2023 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2024 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - -Copyright 2025 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glfw - - -Copyright (c) 2017 Sean Barrett -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. ------------------------------------------------------------------------------- -ALTERNATIVE B - Public Domain (www.unlicense.org) -This is free and unencumbered software released into the public domain. -Anyone is free to copy, modify, publish, use, compile, sell, or distribute this -software, either in source code form or as a compiled binary, for any purpose, -commercial or non-commercial, and by any means. -In jurisdictions that recognize copyright laws, the author or authors of this -software dedicate any and all copyright interest in the software to the public -domain. We make this dedication for the benefit of the public at large and to -the detriment of our heirs and successors. We intend this dedication to be an -overt act of relinquishment in perpetuity of all present and future rights to -this software under copyright law. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN -ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -glfw - -Copyright (C) 1997-2013 Sam Lantinga - -This software is provided 'as-is', without any express or implied warranty. -In no event will the authors be held liable for any damages arising from the -use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2002-2006 Marcus Geelnard - -Copyright (c) 2006-2019 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2016 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2017 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2018 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2019 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2019 Camilla Löwy -Copyright (c) 2012 Torsten Walluhn - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2006-2017 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2006-2018 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2009-2016 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2009-2019 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2009-2019 Camilla Löwy -Copyright (c) 2012 Torsten Walluhn - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2009-2021 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2010 Olivier Delannoy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2012 Marcus Geelnard - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not -claim that you wrote the original software. If you use this software -in a product, an acknowledgment in the product documentation would be -appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not be -misrepresented as being the original software. - -3. This notice may not be removed or altered from any source -distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2014 Jonas Ådahl - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2016 Google Inc. -Copyright (c) 2016-2017 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2016 Google Inc. -Copyright (c) 2016-2019 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2016-2017 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2021 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) 2022 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright (c) Marcus Geelnard -Copyright (c) Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw - -Copyright 2014-2022 The Khronos Group Inc. - -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -glob -http -http_parser -matcher -path -pub_semver -source_span -string_scanner -watcher - -Copyright 2014, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -glslang - - - -Copyright (c) 2022 Google LLC -Copyright (c) 2022 Sascha Willems - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -glslang - - - -Copyright (c) 2022 Sascha Willems - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -glslang - - - -Copyright (c) 2023 NVIDIA CORPORATION. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2004 3Dlabs Inc. Ltd. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2013 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2013 LunarG, Inc. -Copyright (C) 2015-2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2013 LunarG, Inc. -Copyright (C) 2017 ARM Limited. -Copyright (C) 2015-2018 Google, Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2013 LunarG, Inc. -Copyright (C) 2017 ARM Limited. -Copyright (C) 2015-2019 Google, Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2013 LunarG, Inc. -Copyright (C) 2017 ARM Limited. -Copyright (C) 2018-2020 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2013 LunarG, Inc. -Copyright (C) 2017 ARM Limited. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2013 LunarG, Inc. -Copyright (C) 2017, 2022-2024 Arm Limited. -Copyright (C) 2015-2018 Google, Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. -Modifications Copyright (C) 2024 Valve Corporation. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2013 LunarG, Inc. -Copyright (C) 2017, 2022-2024 Arm Limited. -Copyright (C) 2015-2020 Google, Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2015 LunarG, Inc. -Copyright (C) 2015-2018 Google, Inc. -Copyright (C) 2017, 2019 ARM Limited. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. -Modifications Copyright (C) 2024 Ravi Prakash Singh. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2015 LunarG, Inc. -Copyright (C) 2015-2020 Google, Inc. -Copyright (C) 2017 ARM Limited. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2016 LunarG, Inc. -Copyright (C) 2015-2016 Google, Inc. -Copyright (C) 2017 ARM Limited. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2016 LunarG, Inc. -Copyright (C) 2015-2020 Google, Inc. -Copyright (C) 2017, 2022-2024 Arm Limited. -Modifications Copyright (C) 2020-2021 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2012-2016 LunarG, Inc. -Copyright (C) 2017, 2022-2024 Arm Limited. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013 LunarG, Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013 LunarG, Inc. -Copyright (C) 2015-2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013 LunarG, Inc. -Copyright (C) 2015-2018 Google, Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013 LunarG, Inc. -Copyright (C) 2017 ARM Limited. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013 LunarG, Inc. -Copyright (C) 2017 ARM Limited. -Copyright (C) 2015-2018 Google, Inc. -Copyright (c) 2023, Mobica Limited - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013 LunarG, Inc. -Copyright (C) 2017 ARM Limited. -Copyright (C) 2020 Google, Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013 LunarG, Inc. -Copyright (c) 2002-2010 The ANGLE Project Authors. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013-2016 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013-2016 LunarG, Inc. -Copyright (C) 2015-2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013-2016 LunarG, Inc. -Copyright (C) 2015-2020 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2013-2016 LunarG, Inc. -Copyright (C) 2016-2020 Google, Inc. -Modifications Copyright(C) 2021 Advanced Micro Devices, Inc.All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2016 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2016 LunarG, Inc. -Copyright (C) 2017 ARM Limited. -Copyright (C) 2015-2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2002-2005 3Dlabs Inc. Ltd. -Copyright (C) 2017 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2012 LunarG, Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of LunarG Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2013 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2013 LunarG, Inc. -Copyright (C) 2015-2018 Google, Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2013 LunarG, Inc. -Copyright (C) 2017 ARM Limited. -Copyright (C) 2015-2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2013-2016 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2014 LunarG, Inc. -Copyright (C) 2015-2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2014-2015 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2014-2015 LunarG, Inc. -Copyright (C) 2015-2018 Google, Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2014-2015 LunarG, Inc. -Copyright (C) 2015-2020 Google, Inc. -Copyright (C) 2017 ARM Limited. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2014-2015 LunarG, Inc. -Copyright (C) 2022-2025 Arm Limited. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2014-2016 LunarG, Inc. -Copyright (C) 2015-2020 Google, Inc. -Copyright (C) 2017, 2022-2025 Arm Limited. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2014-2016 LunarG, Inc. -Copyright (C) 2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2014-2016 LunarG, Inc. -Copyright (C) 2018-2020 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2015-2016 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2015-2018 Google, Inc. -Copyright (C) 2017 ARM Limited. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google, Inc., nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016 Google, Inc. -Copyright (C) 2016 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016 Google, Inc. -Copyright (C) 2016 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google, Inc., nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016 Google, Inc. -Copyright (C) 2019, 2022-2024 Arm Limited. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016 Google, Inc. -Copyright (C) 2022-2024 Arm Limited. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google, Inc., nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016-2017 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016-2017 Google, Inc. -Copyright (C) 2020 The Khronos Group Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016-2017 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016-2018 Google, Inc. -Copyright (C) 2016 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2016-2018 Google, Inc. -Copyright (C) 2016 LunarG, Inc. -Copyright (C) 2023 Mobica Limited. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google, Inc., nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2017 LunarG, Inc. -Copyright (C) 2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2017 LunarG, Inc. -Copyright (C) 2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google, Inc., nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2017-2018 Google, Inc. -Copyright (C) 2017 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2018 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2018 The Khronos Group Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2019 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2020 Google, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2023 LunarG, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2024 The Khronos Group Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2025 Jan Kelemen - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2025 NVIDIA Corporation - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -glslang - -Copyright (C) 2025 The Khronos Group Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2002, NVIDIA Corporation. - -NVIDIA Corporation("NVIDIA") supplies this software to you in -consideration of your agreement to the following terms, and your use, -installation, modification or redistribution of this NVIDIA software -constitutes acceptance of these terms. If you do not agree with these -terms, please do not use, install, modify or redistribute this NVIDIA -software. - -In consideration of your agreement to abide by the following terms, and -subject to these terms, NVIDIA grants you a personal, non-exclusive -license, under NVIDIA's copyrights in this original NVIDIA software (the -"NVIDIA Software"), to use, reproduce, modify and redistribute the -NVIDIA Software, with or without modifications, in source and/or binary -forms; provided that if you redistribute the NVIDIA Software, you must -retain the copyright notice of NVIDIA, this notice and the following -text and disclaimers in all such redistributions of the NVIDIA Software. -Neither the name, trademarks, service marks nor logos of NVIDIA -Corporation may be used to endorse or promote products derived from the -NVIDIA Software without specific prior written permission from NVIDIA. -Except as expressly stated in this notice, no other rights or licenses -express or implied, are granted by NVIDIA herein, including but not -limited to any patent rights that may be infringed by your derivative -works or by other works in which the NVIDIA Software may be -incorporated. No hardware is licensed hereunder. - -THE NVIDIA SOFTWARE IS BEING PROVIDED ON AN "AS IS" BASIS, WITHOUT -WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, -INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF TITLE, -NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR -ITS USE AND OPERATION EITHER ALONE OR IN COMBINATION WITH OTHER -PRODUCTS. - -IN NO EVENT SHALL NVIDIA BE LIABLE FOR ANY SPECIAL, INDIRECT, -INCIDENTAL, EXEMPLARY, CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, LOST PROFITS; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF -USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) OR ARISING IN ANY WAY -OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE -NVIDIA SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, -TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF -NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2013 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Materials. - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2014-2017 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and/or associated documentation files (the "Materials"), -to deal in the Materials without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Materials, and to permit persons to whom the -Materials are furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Materials. - -MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS -STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND -HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS -IN THE MATERIALS. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2014-2020 The Khronos Group Inc. -Copyright (C) 2022-2024 Arm Limited. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and/or associated documentation files (the "Materials"), -to deal in the Materials without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Materials, and to permit persons to whom the -Materials are furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Materials. - -MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS -STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND -HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS -IN THE MATERIALS. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2015-2016 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Materials. - -MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS -KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS -SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT - https://www.khronos.org/registry/ - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2018 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and/or associated documentation files (the "Materials"), -to deal in the Materials without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Materials, and to permit persons to whom the -Materials are furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Materials. - -MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS -STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND -HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS -IN THE MATERIALS. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2019, Viktor Latypov -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this -list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2020 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2020 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Materials. - -MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS -KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS -SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT - https://www.khronos.org/registry/ - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2020, Travis Fort -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this -list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2021 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and/or associated documentation files (the "Materials"), -to deal in the Materials without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Materials, and to permit persons to whom the -Materials are furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Materials. - -MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS -STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND -HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS -IN THE MATERIALS. --------------------------------------------------------------------------------- -glslang - -Copyright (c) 2022, 2025 ARM Limited - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and/or associated documentation files (the "Materials"), -to deal in the Materials without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Materials, and to permit persons to whom the -Materials are furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Materials. - -MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS -STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND -HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS -IN THE MATERIALS. --------------------------------------------------------------------------------- -glslang - -Copyright 2017 The Glslang Authors. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -glslang - -Copyright 2018 Google LLC. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -glslang - -Copyright(C) 2021 Advanced Micro Devices, Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - Neither the name of 3Dlabs Inc. Ltd. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -glslang -skia -spirv-tools - -Copyright (c) 2014-2016 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and/or associated documentation files (the "Materials"), -to deal in the Materials without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Materials, and to permit persons to whom the -Materials are furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Materials. - -MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS -STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND -HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS -IN THE MATERIALS. --------------------------------------------------------------------------------- -glslang -spirv-tools - -Copyright (c) 2015-2016 The Khronos Group Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -glslang -spirv-tools - -Copyright (c) 2021 Google LLC - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -glslang -spirv-tools - -Copyright (c) 2025 The Khronos Group Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -google_fonts -path_provider_android -path_provider_foundation -shared_preferences -shared_preferences_android -shared_preferences_foundation -two_dimensional_scrollables -vector_graphics -vector_graphics_compiler - -Copyright 2013 The Flutter Authors - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -gtest-parallel - -Copyright 2013 Google Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -harfbuzz - - - - Copyright (c) Microsoft Corporation. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all - copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE --------------------------------------------------------------------------------- -harfbuzz - - - -Copyright (C) 2012 Zilong Tan (eric.zltan@gmail.com) - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, copy, -modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS -BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN -ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -harfbuzz - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright (C) 2011 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright (C) 2012 Grigori Goronzy - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 1998-2004 David Turner and Werner Lemberg -Copyright © 2004,2007,2009 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Owen Taylor, Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 1998-2004 David Turner and Werner Lemberg -Copyright © 2004,2007,2009,2010 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Owen Taylor, Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 1998-2004 David Turner and Werner Lemberg -Copyright © 2006 Behdad Esfahbod -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007 Chris Wilson -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Contributor(s): -Chris Wilson -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2010,2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2010,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2010,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod, Garret Rieger - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2012,2013 Google, Inc. -Copyright © 2019, Facebook Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod -Facebook Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2018,2019,2020 Ebrahim Byagowi -Copyright © 2018 Khaled Hosny - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2010,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2010,2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2012,2018 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2012,2018 Google, Inc. -Copyright © 2019 Facebook, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod -Facebook Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2009 Keith Stribley -Copyright © 2011 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2009 Keith Stribley -Copyright © 2015 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2011 Codethink Limited -Copyright © 2010,2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Codethink Author(s): Ryan Lortie -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2011 Codethink Limited -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Codethink Author(s): Ryan Lortie -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2011 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2011 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod, Roozbeh Pournader - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2015 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2018 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009 Red Hat, Inc. -Copyright © 2018 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2010,2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2010,2011,2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2010,2011,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2010 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2010 Red Hat, Inc. -Copyright © 2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2010,2011 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2010,2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2010,2011,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2010,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011 Martin Hosken -Copyright © 2011 SIL International - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011 Martin Hosken -Copyright © 2011 SIL International -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod, Roderick Sheeter - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011,2012 Google, Inc. -Copyright © 2018 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011,2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011,2012,2013 Google, Inc. -Copyright © 2021 Khaled Hosny - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011,2012,2014 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2011,2014 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod, Roozbeh Pournader - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2012 Mozilla Foundation. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Mozilla Author(s): Jonathan Kew - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2012,2013 Mozilla Foundation. -Copyright © 2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Mozilla Author(s): Jonathan Kew -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2012,2017 Google, Inc. -Copyright © 2021 Behdad Esfahbod - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2012,2018 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2013 Red Hat, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2014 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2014 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod, Roozbeh Pournader - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2015 Google, Inc. -Copyright © 2019 Adobe Inc. -Copyright © 2019 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod, Garret Rieger, Roderick Sheeter -Adobe Author(s): Michiharu Ariza - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2015 Mozilla Foundation. -Copyright © 2015 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Mozilla Author(s): Jonathan Kew -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2015-2019 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2016 Elie Roux -Copyright © 2018 Google, Inc. -Copyright © 2018-2019 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2016 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2016 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Seigo Nonaka, Calder Kitagawa - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2016 Google, Inc. -Copyright © 2018 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Sascha Brawer - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2016 Google, Inc. -Copyright © 2018 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Sascha Brawer, Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2016 Google, Inc. -Copyright © 2018 Khaled Hosny -Copyright © 2018 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Sascha Brawer, Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2016 Igalia S.L. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Igalia Author(s): Frédéric Wang - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2017 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2017 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2017 Google, Inc. -Copyright © 2018 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2017 Google, Inc. -Copyright © 2019 Facebook, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod -Facebook Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2017,2018 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Ebrahim Byagowi -Copyright © 2018 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Ebrahim Byagowi -Copyright © 2020 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Ebrahim Byagowi -Copyright © 2020 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Calder Kitagawa - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Ebrahim Byagowi. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Garret Rieger - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Garret Rieger, Rod Sheeter, Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Garret Rieger, Roderick Sheeter - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Rod Sheeter - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Google, Inc. -Copyright © 2019 Facebook, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod -Facebook Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Google, Inc. -Copyright © 2023 Behdad Esfahbod - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Garret Rieger, Roderick Sheeter - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Adobe Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Adobe Author(s): Michiharu Ariza - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Adobe Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Adobe Author(s): Michiharu Ariza -ifndef HB_CFF1_INTERP_CS_HH -define HB_CFF1_INTERP_CS_HH --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Adobe Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Adobe Author(s): Michiharu Ariza -ifndef HB_CFF2_INTERP_CS_HH -define HB_CFF2_INTERP_CS_HH --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Adobe Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Adobe Author(s): Michiharu Ariza -ifndef HB_CFF_INTERP_COMMON_HH -define HB_CFF_INTERP_COMMON_HH --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Adobe Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Adobe Author(s): Michiharu Ariza -ifndef HB_CFF_INTERP_CS_COMMON_HH -define HB_CFF_INTERP_CS_COMMON_HH --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Adobe Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Adobe Author(s): Michiharu Ariza -ifndef HB_CFF_INTERP_DICT_COMMON_HH -define HB_CFF_INTERP_DICT_COMMON_HH --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018 Adobe Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Adobe Author(s): Michiharu Ariza -ifndef HB_OT_CFF_COMMON_HH -define HB_OT_CFF_COMMON_HH --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2018-2019 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2019 Adobe Inc. -Copyright © 2019 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Adobe Author(s): Michiharu Ariza - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2019 Adobe, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Adobe Author(s): Michiharu Ariza - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2019 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2019 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2019 Facebook, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Facebook Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2019 Adobe Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Adobe Author(s): Michiharu Ariza - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2019-2020 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2020 Ebrahim Byagowi - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2020 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Garret Rieger - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2020 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -include "hb-ot-var-common.hh" -include "hb-ot-var-hvar-table.hh" -HVAR table data from SourceSerif4Variable-Roman_subset.otf --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2020 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -include "hb-ot-var-cvar-table.hh" --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2021 Behdad Esfahbod - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2021 Behdad Esfahbod - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2021 Behdad Esfahbod. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2021 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2022 Behdad Esfahbod - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2022 Behdad Esfahbod - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2022 Behdad Esfahbod - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2022 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2022 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Garret Rieger - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2022 Red Hat, Inc - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Matthias Clasen - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2022 Red Hat, Inc -Copyright © 2021, 2022 Black Foundry - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Matthias Clasen - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2022 Red Hat, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Matthias Clasen - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2022 Behdad Esfahbod - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2022 Behdad Esfahbod - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -ifndef HB_GEOMETRY_HH -define HB_GEOMETRY_HH --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2022 Matthias Clasen - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2022 Red Hat, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Red Hat Author(s): Matthias Clasen - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2023 Behdad Esfahbod - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2023 Behdad Esfahbod -Copyright © 1999 David Turner -Copyright © 2005 Werner Lemberg -Copyright © 2013-2015 Alexei Podtelezhnikov - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2023 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2023 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Qunxin Liu - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2024 David Corbett - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2024 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2024 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2024 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Google Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2025 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -Copyright © 2025 Behdad Esfahbod - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. - -Author(s): Behdad Esfahbod - --------------------------------------------------------------------------------- -harfbuzz - -HarfBuzz is licensed under the so-called "Old MIT" license. Details follow. -For parts of HarfBuzz that are licensed under different licenses see individual -files names COPYING in subdirectories where applicable. - -Copyright © 2010-2022 Google, Inc. -Copyright © 2015-2020 Ebrahim Byagowi -Copyright © 2019,2020 Facebook, Inc. -Copyright © 2012,2015 Mozilla Foundation -Copyright © 2011 Codethink Limited -Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies) -Copyright © 2009 Keith Stribley -Copyright © 2011 Martin Hosken and SIL International -Copyright © 2007 Chris Wilson -Copyright © 2005,2006,2020,2021,2022,2023 Behdad Esfahbod -Copyright © 2004,2007,2008,2009,2010,2013,2021,2022,2023 Red Hat, Inc. -Copyright © 1998-2005 David Turner and Werner Lemberg -Copyright © 2016 Igalia S.L. -Copyright © 2022 Matthias Clasen -Copyright © 2018,2021 Khaled Hosny -Copyright © 2018,2019,2020 Adobe, Inc -Copyright © 2013-2015 Alexei Podtelezhnikov - -For full copyright notices consult the individual files in the package. - - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------------- -http_client_helper - -MIT License - -Copyright (c) 2018 zmtzawqlp - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2000-2012, International Business Machines Corporation and others. -All Rights Reserved. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2002-2013, International Business Machines Corporation -and others. All Rights Reserved. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2002-2015, International Business Machines Corporation and others. - All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2002-2005, International Business Machines Corporation and others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2002-2015, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2002-2016 International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -#################################################################### -Copyright (c) 2009, International Business Machines Corporation and -others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -#################################################################### -Copyright (c) 2015, International Business Machines Corporation and -others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -* -* Copyright (C) 2004-2006, International Business Machines -* Corporation and others. All Rights Reserved. -* -*************************************************************************** - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -*************************************************************************** -* -* Copyright (C) 1995-2002, International Business Machines -* Corporation and others. All Rights Reserved. -* -*************************************************************************** - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -*************************************************************************** -* -* Copyright (C) 1995-2003, International Business Machines -* Corporation and others. All Rights Reserved. -* -*************************************************************************** - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -*************************************************************************** -* -* Copyright (C) 1995-2005, International Business Machines -* Corporation and others. All Rights Reserved. -* -*************************************************************************** - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -*************************************************************************** -* -* Copyright (C) 1995-2006, International Business Machines -* Corporation and others. All Rights Reserved. -* -*************************************************************************** - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -*************************************************************************** -* -* Copyright (C) 1995-2007, International Business Machines -* Corporation and others. All Rights Reserved. -* -*************************************************************************** - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -*************************************************************************** -* -* Copyright (C) 1995-2009, International Business Machines -* Corporation and others. All Rights Reserved. -* -*************************************************************************** - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -*************************************************************************** -* -* Copyright (C) 1995-2013, International Business Machines -* Corporation and others. All Rights Reserved. -* -*************************************************************************** - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -*************************************************************************** -* -* Copyright (C) 2001-2003, International Business Machines -* Corporation and others. All Rights Reserved. -* -*************************************************************************** - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -*************************************************************************** -* -* Copyright (C) 2001-2005, International Business Machines -* Corporation and others. All Rights Reserved. -* -*************************************************************************** - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -*************************************************************************** -* -* Copyright (C) 2009-2012, International Business Machines -* Corporation and others. All Rights Reserved. -* -*************************************************************************** - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -*************************************************************************** -* -* Copyright (C) 2014, International Business Machines -* Corporation and others. All Rights Reserved. -* -*************************************************************************** - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -***************************************************************************** - - Copyright (C) 2002-2015, International Business Machines Corporation and others. - All Rights Reserved. - -***************************************************************************** - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -******************************************************************************* -* -* Copyright (C) 1995-2005, International Business Machines -* Corporation and others. All Rights Reserved. -* -******************************************************************************* - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -******************************************************************************* -* -* Copyright (C) 1995-2010, International Business Machines -* Corporation and others. All Rights Reserved. -* -******************************************************************************* - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -******************************************************************************* -* -* Copyright (C) 1997-2000, International Business Machines -* Corporation and others. All Rights Reserved. -* -******************************************************************************* - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -******************************************************************************* -* -* Copyright (C) 1997-2003, International Business Machines -* Corporation and others. All Rights Reserved. -* -******************************************************************************* - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -******************************************************************************* -* -* Copyright (C) 1997-2010, International Business Machines -* Corporation and others. All Rights Reserved. -* -******************************************************************************* - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -******************************************************************************* -* -* Copyright (C) 2010, International Business Machines -* Corporation and others. All Rights Reserved. -* -******************************************************************************* - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html ---------------------------------------------------------- -Copyright (C) 2013, International Business Machines -Corporation and others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) 1999-2016, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) 2009-2010 IBM Corporation and Others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) 2010-2014, International Business Machines Corporation and others. -All Rights Reserved. --------------------------------------------------------------------------------- -icu - -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 2002-2016 International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -Copyright (c) 2002-2016, International Business Machines - Corporation and others. All Rights Reserved. --------------------------------------------------------------------------------- -icu - -Copyright (c) 2007-2012, International Business Machines -Corporation and others. All Rights Reserved. --------------------------------------------------------------------------------- -icu - -This file was generated from RFC 3454 (http://www.ietf.org/rfc/rfc3454.txt) -Copyright (C) The Internet Society (2002). All Rights Reserved. --------------------------------------------------------------------------------- -icu - -UNICODE LICENSE V3 - -COPYRIGHT AND PERMISSION NOTICE - -Copyright © 2016-2025 Unicode, Inc. - -NOTICE TO USER: Carefully read the following legal agreement. BY -DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR -SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE -TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT -DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of data files and any associated documentation (the "Data Files") or -software and any associated documentation (the "Software") to deal in the -Data Files or Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, and/or sell -copies of the Data Files or Software, and to permit persons to whom the -Data Files or Software are furnished to do so, provided that either (a) -this copyright and permission notice appear with all copies of the Data -Files or Software, or (b) this copyright and permission notice appear in -associated Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY -KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF -THIRD PARTY RIGHTS. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE -BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, -OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA -FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder shall -not be used in advertising or otherwise to promote the sale, use or other -dealings in these Data Files or Software without prior written -authorization of the copyright holder. - -SPDX-License-Identifier: Unicode-3.0 - ----------------------------------------------------------------------- - -Third-Party Software Licenses - -This section contains third-party software notices and/or additional -terms for licensed third-party software components included within ICU -libraries. - ----------------------------------------------------------------------- - -ICU License - ICU 1.8.1 to ICU 57.1 - -COPYRIGHT AND PERMISSION NOTICE - -Copyright (c) 1995-2016 International Business Machines Corporation and others -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, and/or sell copies of the Software, and to permit persons -to whom the Software is furnished to do so, provided that the above -copyright notice(s) and this permission notice appear in all copies of -the Software and that both the above copyright notice(s) and this -permission notice appear in supporting documentation. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR -HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY -SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER -RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF -CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, use -or other dealings in this Software without prior written authorization -of the copyright holder. - -All trademarks and registered trademarks mentioned herein are the -property of their respective owners. - ----------------------------------------------------------------------- - -Chinese/Japanese Word Break Dictionary Data (cjdict.txt) - - # The Google Chrome software developed by Google is licensed under - # the BSD license. Other software included in this distribution is - # provided under other licenses, as set forth below. - # - # The BSD License - # http://opensource.org/licenses/bsd-license.php - # Copyright (C) 2006-2008, Google Inc. - # - # All rights reserved. - # - # Redistribution and use in source and binary forms, with or without - # modification, are permitted provided that the following conditions are met: - # - # Redistributions of source code must retain the above copyright notice, - # this list of conditions and the following disclaimer. - # Redistributions in binary form must reproduce the above - # copyright notice, this list of conditions and the following - # disclaimer in the documentation and/or other materials provided with - # the distribution. - # Neither the name of Google Inc. nor the names of its - # contributors may be used to endorse or promote products derived from - # this software without specific prior written permission. - # - # - # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND - # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - # - # - # The word list in cjdict.txt are generated by combining three word lists - # listed below with further processing for compound word breaking. The - # frequency is generated with an iterative training against Google web - # corpora. - # - # * Libtabe (Chinese) - # - https://sourceforge.net/project/?group_id=1519 - # - Its license terms and conditions are shown below. - # - # * IPADIC (Japanese) - # - http://chasen.aist-nara.ac.jp/chasen/distribution.html - # - Its license terms and conditions are shown below. - # - # ---------COPYING.libtabe ---- BEGIN-------------------- - # - # /* - # * Copyright (c) 1999 TaBE Project. - # * Copyright (c) 1999 Pai-Hsiang Hsiao. - # * All rights reserved. - # * - # * Redistribution and use in source and binary forms, with or without - # * modification, are permitted provided that the following conditions - # * are met: - # * - # * . Redistributions of source code must retain the above copyright - # * notice, this list of conditions and the following disclaimer. - # * . Redistributions in binary form must reproduce the above copyright - # * notice, this list of conditions and the following disclaimer in - # * the documentation and/or other materials provided with the - # * distribution. - # * . Neither the name of the TaBE Project nor the names of its - # * contributors may be used to endorse or promote products derived - # * from this software without specific prior written permission. - # * - # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - # * OF THE POSSIBILITY OF SUCH DAMAGE. - # */ - # - # /* - # * Copyright (c) 1999 Computer Systems and Communication Lab, - # * Institute of Information Science, Academia - # * Sinica. All rights reserved. - # * - # * Redistribution and use in source and binary forms, with or without - # * modification, are permitted provided that the following conditions - # * are met: - # * - # * . Redistributions of source code must retain the above copyright - # * notice, this list of conditions and the following disclaimer. - # * . Redistributions in binary form must reproduce the above copyright - # * notice, this list of conditions and the following disclaimer in - # * the documentation and/or other materials provided with the - # * distribution. - # * . Neither the name of the Computer Systems and Communication Lab - # * nor the names of its contributors may be used to endorse or - # * promote products derived from this software without specific - # * prior written permission. - # * - # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, - # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - # * OF THE POSSIBILITY OF SUCH DAMAGE. - # */ - # - # Copyright 1996 Chih-Hao Tsai @ Beckman Institute, - # University of Illinois - # c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 - # - # ---------------COPYING.libtabe-----END-------------------------------- - # - # - # ---------------COPYING.ipadic-----BEGIN------------------------------- - # - # Copyright 2000, 2001, 2002, 2003 Nara Institute of Science - # and Technology. All Rights Reserved. - # - # Use, reproduction, and distribution of this software is permitted. - # Any copy of this software, whether in its original form or modified, - # must include both the above copyright notice and the following - # paragraphs. - # - # Nara Institute of Science and Technology (NAIST), - # the copyright holders, disclaims all warranties with regard to this - # software, including all implied warranties of merchantability and - # fitness, in no event shall NAIST be liable for - # any special, indirect or consequential damages or any damages - # whatsoever resulting from loss of use, data or profits, whether in an - # action of contract, negligence or other tortuous action, arising out - # of or in connection with the use or performance of this software. - # - # A large portion of the dictionary entries - # originate from ICOT Free Software. The following conditions for ICOT - # Free Software applies to the current dictionary as well. - # - # Each User may also freely distribute the Program, whether in its - # original form or modified, to any third party or parties, PROVIDED - # that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear - # on, or be attached to, the Program, which is distributed substantially - # in the same form as set out herein and that such intended - # distribution, if actually made, will neither violate or otherwise - # contravene any of the laws and regulations of the countries having - # jurisdiction over the User or the intended distribution itself. - # - # NO WARRANTY - # - # The program was produced on an experimental basis in the course of the - # research and development conducted during the project and is provided - # to users as so produced on an experimental basis. Accordingly, the - # program is provided without any warranty whatsoever, whether express, - # implied, statutory or otherwise. The term "warranty" used herein - # includes, but is not limited to, any warranty of the quality, - # performance, merchantability and fitness for a particular purpose of - # the program and the nonexistence of any infringement or violation of - # any right of any third party. - # - # Each user of the program will agree and understand, and be deemed to - # have agreed and understood, that there is no warranty whatsoever for - # the program and, accordingly, the entire risk arising from or - # otherwise connected with the program is assumed by the user. - # - # Therefore, neither ICOT, the copyright holder, or any other - # organization that participated in or was otherwise related to the - # development of the program and their respective officials, directors, - # officers and other employees shall be held liable for any and all - # damages, including, without limitation, general, special, incidental - # and consequential damages, arising out of or otherwise in connection - # with the use or inability to use the program or any product, material - # or result produced or otherwise obtained by using the program, - # regardless of whether they have been advised of, or otherwise had - # knowledge of, the possibility of such damages at any time during the - # project or thereafter. Each user will be deemed to have agreed to the - # foregoing by his or her commencement of use of the program. The term - # "use" as used herein includes, but is not limited to, the use, - # modification, copying and distribution of the program and the - # production of secondary products from the program. - # - # In the case where the program, whether in its original form or - # modified, was distributed or delivered to or received by a user from - # any person, organization or entity other than ICOT, unless it makes or - # grants independently of ICOT any specific warranty to the user in - # writing, such person, organization or entity, will also be exempted - # from and not be held liable to the user for any such damages as noted - # above as far as the program is concerned. - # - # ---------------COPYING.ipadic-----END---------------------------------- - ----------------------------------------------------------------------- - -Lao Word Break Dictionary Data (laodict.txt) - - # Copyright (C) 2016 and later: Unicode, Inc. and others. - # License & terms of use: http://www.unicode.org/copyright.html - # Copyright (c) 2015 International Business Machines Corporation - # and others. All Rights Reserved. - # - # Project: https://github.com/rober42539/lao-dictionary - # Dictionary: https://github.com/rober42539/lao-dictionary/laodict.txt - # License: https://github.com/rober42539/lao-dictionary/LICENSE.txt - # (copied below) - # - # This file is derived from the above dictionary version of Nov 22, 2020 - # ---------------------------------------------------------------------- - # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. - # All rights reserved. - # - # Redistribution and use in source and binary forms, with or without - # modification, are permitted provided that the following conditions are met: - # - # Redistributions of source code must retain the above copyright notice, this - # list of conditions and the following disclaimer. Redistributions in binary - # form must reproduce the above copyright notice, this list of conditions and - # the following disclaimer in the documentation and/or other materials - # provided with the distribution. - # - # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - # OF THE POSSIBILITY OF SUCH DAMAGE. - # -------------------------------------------------------------------------- - ----------------------------------------------------------------------- - -Burmese Word Break Dictionary Data (burmesedict.txt) - - # Copyright (c) 2014 International Business Machines Corporation - # and others. All Rights Reserved. - # - # This list is part of a project hosted at: - # github.com/kanyawtech/myanmar-karen-word-lists - # - # -------------------------------------------------------------------------- - # Copyright (c) 2013, LeRoy Benjamin Sharon - # All rights reserved. - # - # Redistribution and use in source and binary forms, with or without - # modification, are permitted provided that the following conditions - # are met: Redistributions of source code must retain the above - # copyright notice, this list of conditions and the following - # disclaimer. Redistributions in binary form must reproduce the - # above copyright notice, this list of conditions and the following - # disclaimer in the documentation and/or other materials provided - # with the distribution. - # - # Neither the name Myanmar Karen Word Lists, nor the names of its - # contributors may be used to endorse or promote products derived - # from this software without specific prior written permission. - # - # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND - # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS - # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR - # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF - # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - # SUCH DAMAGE. - # -------------------------------------------------------------------------- - ----------------------------------------------------------------------- - -Time Zone Database - - ICU uses the public domain data and code derived from Time Zone -Database for its time zone support. The ownership of the TZ database -is explained in BCP 175: Procedure for Maintaining the Time Zone -Database section 7. - - # 7. Database Ownership - # - # The TZ database itself is not an IETF Contribution or an IETF - # document. Rather it is a pre-existing and regularly updated work - # that is in the public domain, and is intended to remain in the - # public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do - # not apply to the TZ Database or contributions that individuals make - # to it. Should any claims be made and substantiated against the TZ - # Database, the organization that is providing the IANA - # Considerations defined in this RFC, under the memorandum of - # understanding with the IETF, currently ICANN, may act in accordance - # with all competent court orders. No ownership claims will be made - # by ICANN or the IETF Trust on the database or the code. Any person - # making a contribution to the database or code waives all rights to - # future claims in that contribution or in the TZ Database. - ----------------------------------------------------------------------- - -Google double-conversion - -Copyright 2006-2011, the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ----------------------------------------------------------------------- - -JSON parsing library (nlohmann/json) - -File: vendor/json/upstream/single_include/nlohmann/json.hpp (only for ICU4C) - -MIT License - -Copyright (c) 2013-2022 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - ----------------------------------------------------------------------- - - -File: install-sh (only for ICU4C) - - -Copyright 1991 by the Massachusetts Institute of Technology - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation, and that the name of M.I.T. not be used in advertising or -publicity pertaining to distribution of the software without specific, -written prior permission. M.I.T. makes no representations about the -suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - - Copyright (C) 1999-2014, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - - Copyright (C) 1999-2015, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - - Copyright (C) 2001, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - -Copyright (C) 2002-2006 IBM, Inc. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1996-2013, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1996-2013, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1996-2013, International Business Machines Corporation - and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1996-2014, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1996-2015, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1997-2005, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1997-2006, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1997-2006, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1997-2011, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1997-2011, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1997-2011, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1997-2012, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1997-2012, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1997-2012, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1997-2013, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1997-2013, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1997-2014, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1997-2015, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1997-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1997-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1997-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1998-2004, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1998-2005, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1998-2006, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1998-2006, International Business Machines - Corporation and others. All Rights Reserved. - - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1998-2008, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1998-2011, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1998-2012, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1998-2014, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1998-2014, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1998-2015, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1998-2015, International Business Machines - Corporation and others. All Rights Reserved. - - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1998-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1998-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1999-2001, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1999-2003, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1999-2004, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1999-2006, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1999-2010, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1999-2010, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1999-2010, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1999-2011, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1999-2011, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1999-2012, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1999-2013, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1999-2013, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1999-2014 International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1999-2014, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1999-2015, International Business Machines - Corporation and others. All Rights Reserved. - - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1999-2015, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1999-2015, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1999-2016 International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 1999-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2000, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2000-2003, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2000-2008, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2000-2010, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2000-2011, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2000-2012, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2000-2013, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2000-2014, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2000-2015, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2000-2015, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2000-2015, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2000-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2000-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2001-2008, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2001-2011, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2001-2012, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2001-2014, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2001-2014, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2001-2015, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2001-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2002-2003, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2002-2006, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2002-2010, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2002-2011 International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2002-2011, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2002-2011, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2002-2012, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2002-2012, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2002-2013, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2002-2014, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2002-2015, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2002-2015, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2002-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2002-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2003-2004, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2003-2006, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2003-2007, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2003-2009, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2003-2012, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2003-2013, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2003-2014, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2003-2015, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2003-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2004-2005, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2004-2007, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2004-2010, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2004-2012, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2004-2014, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2005, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2005-2012, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2005-2014, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2005-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2007, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2007-2012, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2007-2015, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2007-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2008-2011, International Business Machines - Corporation, Google and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2008-2011, International Business Machines - Corporation, Google and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2008-2015, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2008-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2009, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2009-2011, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2009-2011, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2009-2012, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2009-2013, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2009-2013, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2009-2014, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2009-2015, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2009-2015, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2009-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2011, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2011-2014 International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2012,2014 International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2012-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2012-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2013-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - - Copyright (C) 2016, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - -Copyright (C) 2001-2011, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - -Copyright (C) 2001-2013, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - -Copyright (C) 2001-2014, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - -Copyright (C) 2003-2015, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - -Copyright (C) 2003-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - -Copyright (C) 2009-2011, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - -Copyright (c) 1999-2002, International Business Machines Corporation and -others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - -Copyright (c) 1999-2003, International Business Machines Corporation and -others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - -Copyright (c) 1999-2010, International Business Machines Corporation and -others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1996-2015, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1996-2015, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1996-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1996-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1996-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1996-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1997-2006, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1997-2009,2014 International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1997-2010, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1997-2011, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1997-2011,2014-2015 International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1997-2012, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1997-2013, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1997-2014, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1997-2014, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1997-2014, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1997-2015, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1997-2015, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1997-2015, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1997-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1997-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1998-2005, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1998-2014, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1998-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2005, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2006, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2006, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2006,2013 IBM Corp. All rights reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2007, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2009, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2011, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2011, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2011, International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2011, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2011, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2014 International Business Machines Corporation - and others. All rights reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2014, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2014, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2014, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2015 International Business Machines - Corporation and others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2015, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2016 International Business Machines Corporation - and others. All rights reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2016 International Business Machines Corporation - and others. All rights reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 1999-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2000-2004, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2000-2006, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2000-2011, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2000-2011, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2000-2012, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2000-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2000-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2000-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2001, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2001, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2001-2006, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2001-2007, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2001-2008,2010 IBM and others. All rights reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2001-2010, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2001-2011 IBM and others. All rights reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2001-2011, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2001-2011,2014 IBM and others. All rights reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2001-2012, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2001-2014 IBM and others. All rights reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2001-2014 International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2001-2014, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2001-2014, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2001-2015 IBM and others. All rights reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2001-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2001-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2002-2015 International Business Machines Corporation - and others. All rights reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2002-2016 International Business Machines Corporation - and others. All rights reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2002-2016 International Business Machines Corporation - and others. All rights reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2002-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2002-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2002-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2003-2003, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2003-2006, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2003-2011, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2003-2013, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2003-2014, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2003-2014, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2004-2011, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2004-2015, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2004-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2004-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2005-2006, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2005-2008, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2005-2011, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2005-2012, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2005-2013, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2005-2013, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2005-2014, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2005-2015, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2005-2015, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2005-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2005-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2006 International Business Machines Corporation - and others. All rights reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2006, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2008-2011, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2008-2015, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2008-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2009-2013, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2009-2014 International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2009-2015, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2009-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2009-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2010, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2010-2011, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2010-2012, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2010-2012, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2010-2012,2014, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2010-2015, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2010-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2010-2016, International Business Machines Corporation and - others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2011, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2011-2012, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2011-2013, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2011-2014, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2011-2015, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2012 International Business Machines Corporation - and others. All rights reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2012-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2013, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2013-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2014, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2014-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2015-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (c) 2000-2005, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (c) 2000-2007, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (c) 2001-2007, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (c) 2001-2011, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (c) 2001-2012, International Business Machines Corporation - and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (c) 2001-2014, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (c) 2001-2015, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (c) 2001-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (c) 2002-2005, International Business Machines Corporation - and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (c) 2002-2010, International Business Machines Corporation - and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (c) 2002-2011, International Business Machines Corporation - and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (c) 2002-2012, International Business Machines Corporation - and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (c) 2002-2014, International Business Machines Corporation - and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (c) 2002-2016, International Business Machines - Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2002-2008 International Business Machines Corporation - and others. All rights reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2002-2008, International Business Machines Corporation and others. - All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2002-2011, International Business Machines Corporation and others. - All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2002-2014 International Business Machines Corporation - and others. All rights reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2002-2016 International Business Machines Corporation - and others. All rights reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2002-2016 International Business Machines Corporation and others. - All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2002-2016, International Business Machines Corporation and others. - All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2003-2010, International Business Machines Corporation and others. - All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (C) 2004-2015, International Business Machines Corporation and others. - All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - - Copyright (c) 2001-2005, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1996-2012, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1996-2014, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1996-2014, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1996-2014, International Business Machines Corporation and others. -All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1996-2015, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1996-2015, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1996-2015, International Business Machines Corporation and others. -All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1996-2016, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1996-2016, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1997-2010, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1997-2011, International Business Machines Corporation and others. -All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1997-2012, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1997-2013, International Business Machines -Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1997-2013, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1997-2015, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1997-2015, International Business Machines Corporation -and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1997-2015, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1997-2015, International Business Machines Corporation and others. -All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1997-2015, International Business Machines Corporation and others. -All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1997-2016, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1997-2016, International Business Machines Corporation and others. -All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1998-2012, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1998-2012, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1998-2016, International Business Machines Corporation -and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1999-2007, International Business Machines Corporation -and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1999-2010, International Business Machines Corporation and others. -All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1999-2011, International Business Machines Corporation -and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1999-2012, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1999-2013, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1999-2014, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1999-2015, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1999-2015, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1999-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1999-2016, International Business Machines Corporation - and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1999-2016, International Business Machines Corporation -and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 1999-2016, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2000-2004, International Business Machines Corporation -and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2001-2011, International Business Machines Corporation -and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2001-2011, International Business Machines Corporation and -others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2001-2011, International Business Machines Corporation. -All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2001-2012, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2001-2014, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2001-2014, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2001-2014, International Business Machines Corporation and -others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2001-2014, International Business Machines Corporation. -All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2001-2015, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2001-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2002-2005, International Business Machines Corporation and -others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2002-2014, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2003 - 2008, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2003 - 2009, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2003 - 2013, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2003-2008, International Business Machines Corporation -and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2003-2009,2012,2016 International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2003-2013, International Business Machines Corporation -and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2003-2013, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2003-2015, International Business Machines Corporation -and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2003-2016, International Business Machines Corporation -and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2004 - 2008, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2004-2012, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2006-2012, International Business Machines Corporation and others. -All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2006-2014, International Business Machines Corporation -and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2006-2016, International Business Machines Corporation -and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2007-2008, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2007-2008, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2007-2012, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2007-2013, International Business Machines Corporation -and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2007-2013, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2007-2014, International Business Machines Corporation -and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2007-2014, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2007-2014, International Business Machines Corporation and -others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2007-2016, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2007-2016, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2008, Google, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2008-2009, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2008-2013, International Business Machines Corporation -and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2008-2013, International Business Machines Corporation and -others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2008-2014, Google, International Business Machines Corporation -and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2008-2014, Google, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2008-2015, Google, International Business Machines Corporation -and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2008-2015, International Business Machines Corporation -and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2008-2015, International Business Machines Corporation and -others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2008-2016, International Business Machines Corporation -and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2008-2016, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2009-2010, Google, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2009-2010, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2009-2011, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2009-2012, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2009-2013, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2009-2014, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2009-2015, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2009-2015, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2009-2016, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2009-2016, International Business Machines Corporation, -Google, and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2010-2011, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2010-2012, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2010-2012,2015 International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2010-2013, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2010-2014, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2010-2014, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2010-2014, International Business Machines Corporation and -others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2010-2015, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2010-2015, International Business Machines Corporation and -others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2010-2016, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2011-2012, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2011-2015, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2011-2016, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2011-2016, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2012-2014, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2012-2015, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2012-2016, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2013, International Business Machines Corporation -and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2013, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2013, International Business Machines Corporation and others. -All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2013-2014, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2013-2014, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2013-2014, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2013-2014, International Business Machines Corporation and others. -All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2013-2015, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2013-2015, International Business Machines Corporation and others. -All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2013-2016, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2014, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2014, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2014-2015, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2014-2016, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2014-2016, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2014-2016, International Business Machines Corporation and -others. -All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2014-2016, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2014-2016, International Business Machines Corporation and -others. All Rights Reserved. - - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2014-2016, International Business Machines Corporation and others. -All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2015, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2015, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2015, International Business Machines Corporation -and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2015, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2015-2016, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2015-2016, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2016, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2016, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 1996-2012, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 1996-2014, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 1996-2015, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 1996-2015, International Business Machines Corporation and others. -All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 1996-2016, International Business Machines Corporation - and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 1996-2016, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 1997-2012, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 1999-2002, International Business Machines Corporation and -others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2001-2012, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2002-2004, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2002-2006, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2002-2007, International Business Machines Corporation -and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2002-2011, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2002-2014, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2002-2014, International Business Machines Corporation -and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2002-2016, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2003, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2003-2004, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2003-2008, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2003-2011, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2003-2013, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2003-2014, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2004, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2004-2006, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2004-2014 International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2004-2014, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2004-2015, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2004-2016, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2008-2015, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2014, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (c) 2014-2016, International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - Copyright (C) 2000-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - Copyright (C) 2008, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - Copyright (C) 2008-2011, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - Copyright (C) 2008-2012, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - Copyright (C) 2008-2015, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - Copyright (C) 2008-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - Copyright (C) 2009-2013, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - Copyright (C) 2009-2015, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - Copyright (C) 2009-2016, International Business Machines - Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) 1996-2008, International Business Machines Corporation -and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) 1996-2012, International Business Machines Corporation -and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) 1997-2005, International Business Machines Corporation and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) 1997-2013, International Business Machines Corporation and others. -All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) 1997-2016, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) 2001-2005, International Business Machines Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) 2001-2011, International Business Machines Corporation -and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) 2002-2016 International Business Machines Corporation - and others. All rights reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) 2003-2014, International Business Machines Corporation -and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) 2007-2013, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) 2008, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) 2008-2016, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) 2009-2011, International Business Machines -Corporation and others. All Rights Reserved. - -Copyright 2007 Google Inc. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) 2009-2012, International Business Machines -Corporation and others. All Rights Reserved. - -Copyright 2007 Google Inc. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) 2009-2013, International Business Machines -Corporation and others. All Rights Reserved. - -Copyright 2001 and onwards Google Inc. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) 2009-2013, International Business Machines -Corporation and others. All Rights Reserved. - -Copyright 2004 and onwards Google Inc. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) 2015, International Business Machines Corporation and -others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (C) {1999-2001}, International Business Machines Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 1997-2011, International Business Machines Corporation and -others. All Rights Reserved. -Copyright (C) 2010 , Yahoo! Inc. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 1997-2012, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 1997-2012, International Business Machines Corporation and -others. All Rights Reserved. -Copyright (C) 2010 , Yahoo! Inc. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 1997-2015, International Business Machines Corporation and -others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 1997-2016, International Business Machines Corporation -and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 1999-2012, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 1999-2016, International Business Machines Corporation and -others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 2001-2016, International Business Machines Corporation and -others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 2002-2005, International Business Machines Corporation and -others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 2002-2006, International Business Machines Corporation and -others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 2002-2012, International Business Machines Corporation and -others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 2002-2014, International Business Machines Corporation and -others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 2003-2010 International Business Machines -Corporation and others. All Rights Reserved. - - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 2004-2010, International Business Machines Corporation and -others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 2007-2012, International Business Machines Corporation and -others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 2007-2013, International Business Machines Corporation and -others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 2007-2014, International Business Machines Corporation and -others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 2007-2016, International Business Machines Corporation and -others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 2008-2010, International Business Machines Corporation and -others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 2008-2011, International Business Machines Corporation and -others. All Rights Reserved. - --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) IBM Corporation, 2000-2010. All rights reserved. - -This software is made available under the terms of the -ICU License -- ICU 1.8.1 and later. --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) IBM Corporation, 2000-2011. All rights reserved. - -This software is made available under the terms of the -ICU License -- ICU 1.8.1 and later. --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) IBM Corporation, 2000-2012. All rights reserved. - -This software is made available under the terms of the -ICU License -- ICU 1.8.1 and later. --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) IBM Corporation, 2000-2014. All rights reserved. - -This software is made available under the terms of the -ICU License -- ICU 1.8.1 and later. --------------------------------------------------------------------------------- -icu - -© 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) IBM Corporation, 2000-2016. All rights reserved. - -This software is made available under the terms of the -ICU License -- ICU 1.8.1 and later. --------------------------------------------------------------------------------- -icu - -© 2017 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html - -Copyright (C) 2009-2017, International Business Machines Corporation, -Google, and others. All Rights Reserved. - - - --------------------------------------------------------------------------------- -icu -include -json - -@copyright Copyright (c) 2008-2009 Bjoern Hoehrmann -@sa http://bjoern.hoehrmann.de/utf-8/decoder/dfa/ --------------------------------------------------------------------------------- -icu -json - - - -Copyright (c) 2013-2022 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -icu -skia - -Copyright (c) 2018 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -include - - - -Copyright (c) 2013-2021 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -include - - -Copyright (c) 2013-2019 Niels Lohmann . - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -include - -Copyright (C) 2011 Nick Bruun -Copyright (C) 2013 Vlad Lazarenko -Copyright (C) 2014 Nicolas Pauss --------------------------------------------------------------------------------- -include - -Copyright (c) 2009 Florian Loitsch. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - --------------------------------------------------------------------------------- -include - -Copyright (c) 2011 - Nick Bruun. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. If you meet (any of) the author(s), you're encouraged to buy them a beer, - a drink or whatever is suited to the situation, given that you like the - software. -4. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -inja - - - -Copyright (c) 2018-2021 Berscheid - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -inja - -___ _ Version 3.3 -|_ _|_ __ (_) __ _ https://github.com/pantor/inja -| || '_ \ | |/ _` | Licensed under the MIT License . -| || | | || | (_| | -|___|_| |_|/ |\__,_| Copyright (c) 2018-2021 Lars Berscheid -|__/ -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -intl - -Copyright 2013, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -io - -Copyright 2017, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -io - -Copyright 2017, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -io - -Copyright 2021, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -js - -Copyright 2012, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -json - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. - -"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: - - (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. - - You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - -To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - --------------------------------------------------------------------------------- -khronos - -Copyright (c) 2013-2014 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Materials. - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. --------------------------------------------------------------------------------- -leak_tracker -leak_tracker_flutter_testing -leak_tracker_testing - -Copyright 2022, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -libXNVCtrl - -/* - * Copyright (c) 2008 NVIDIA, Corporation - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice (including the next - * paragraph) shall be included in all copies or substantial portions of the - * Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - */ --------------------------------------------------------------------------------- -libXNVCtrl - -Copyright (c) 2008 NVIDIA, Corporation - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice (including the next -paragraph) shall be included in all copies or substantial portions of the -Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -libXNVCtrl - -Copyright (c) 2010 NVIDIA, Corporation - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice (including the next -paragraph) shall be included in all copies or substantial portions of the -Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -libcxx - -Copyright 2018 Ulf Adams -Copyright (c) Microsoft Corporation. All rights reserved. - -Boost Software License - Version 1.0 - August 17th, 2003 - -Permission is hereby granted, free of charge, to any person or organization -obtaining a copy of the software and accompanying documentation covered by -this license (the "Software") to use, reproduce, display, distribute, -execute, and transmit the Software, and to prepare derivative works of the -Software, and to permit third-parties to whom the Software is furnished to -do so, all subject to the following: - -The copyright notices in the Software and this entire statement, including -the above license grant, this restriction and the following disclaimer, -must be included in all copies of the Software, in whole or in part, and -all derivative works of the Software, unless such copies or derivative -works are solely in the form of machine-executable object code generated by -a source language processor. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -libcxx - -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE - -See Terms of Use -for definitions of Unicode Inc.'s Data Files and Software. - -NOTICE TO USER: Carefully read the following legal agreement. -BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S -DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), -YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE -TERMS AND CONDITIONS OF THIS AGREEMENT. -IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE -THE DATA FILES OR SOFTWARE. - -COPYRIGHT AND PERMISSION NOTICE - -Copyright (c) 1991-2022 Unicode, Inc. All rights reserved. -Distributed under the Terms of Use in https://www.unicode.org/copyright.html. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. --------------------------------------------------------------------------------- -libcxx -libcxxabi - - - -Copyright (c) 2009-2014 by the contributors listed in CREDITS.TXT - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -libcxx -libcxxabi - -University of Illinois/NCSA -Open Source License - -Copyright (c) 2009-2019 by the contributors listed in CREDITS.TXT - -All rights reserved. - -Developed by: - - LLVM Team - - University of Illinois at Urbana-Champaign - - http://llvm.org - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal with -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimers. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimers in the - documentation and/or other materials provided with the distribution. - - * Neither the names of the LLVM Team, University of Illinois at - Urbana-Champaign, nor the names of its contributors may be used to - endorse or promote products derived from this Software without specific - prior written permission. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE -SOFTWARE. --------------------------------------------------------------------------------- -libcxx -libcxxabi -llvm_libc - -============================================================================== -The LLVM Project is under the Apache License v2.0 with LLVM Exceptions: -============================================================================== - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - ----- LLVM Exceptions to the Apache 2.0 License ---- - -As an exception, if, as a result of your compiling your source code, portions -of this Software are embedded into an Object form of such source code, you -may redistribute such embedded portions in such Object form without complying -with the conditions of Sections 4(a), 4(b) and 4(d) of the License. - -In addition, if you combine or link compiled forms of this Software with -software that is licensed under the GPLv2 ("Combined Software") and if a -court of competent jurisdiction determines that the patent provision (Section -3), the indemnity provision (Section 9) or other Section of the License -conflicts with the conditions of the GPLv2, you may retroactively and -prospectively choose to deem waived or otherwise exclude such Section(s) of -the License, but only in their entirety and only with respect to the Combined -Software. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). -All Rights Reserved. -Author: Siarhei Siamashka -Copyright (C) 2013-2014, Linaro Limited. All Rights Reserved. -Author: Ragesh Radhakrishnan -Copyright (C) 2014-2016, D. R. Commander. All Rights Reserved. -Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. -Copyright (C) 2016, Siarhei Siamashka. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). -All Rights Reserved. -Author: Siarhei Siamashka -Copyright (C) 2014, Siarhei Siamashka. All Rights Reserved. -Copyright (C) 2014, Linaro Limited. All Rights Reserved. -Copyright (C) 2015, D. R. Commander. All Rights Reserved. -Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2013, MIPS Technologies, Inc., California. -All Rights Reserved. -Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) - Darko Laus (darko.laus@imgtec.com) -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2013-2014, MIPS Technologies, Inc., California. -All Rights Reserved. -Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) - Darko Laus (darko.laus@imgtec.com) -Copyright (C) 2015, D. R. Commander. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2014, D. R. Commander. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. -Copyright (C) 2014, Jay Foad. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2015, D. R. Commander. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C)2009-2014 D. R. Commander. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C)2009-2015 D. R. Commander. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C)2009-2016 D. R. Commander. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C)2011 D. R. Commander. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C)2011, 2015 D. R. Commander. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C)2011-2016 D. R. Commander. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Portions of this code are based on the PBMPLUS library, which is: - -Copyright (C) 1988 by Jef Poskanzer. - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, provided -that the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. This software is provided "as is" without express or -implied warranty. --------------------------------------------------------------------------------- -libjpeg-turbo - -This code is loosely based on ppmtogif from the PBMPLUS distribution -of Feb. 1991. That file contains the following copyright notice: - Based on GIFENCODE by David Rowley . - Lempel-Ziv compression based on "compress" by Spencer W. Thomas et al. - Copyright (C) 1989 by Jef Poskanzer. - Permission to use, copy, modify, and distribute this software and its - documentation for any purpose and without fee is hereby granted, provided - that the above copyright notice appear in all copies and that both that - copyright notice and this permission notice appear in supporting - documentation. This software is provided "as is" without express or - implied warranty. - -We are also required to state that - "The Graphics Interchange Format(c) is the Copyright property of - CompuServe Incorporated. GIF(sm) is a Service Mark property of - CompuServe Incorporated." --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1994, Thomas G. Lane. -It was modified by The libjpeg-turbo Project to include only code relevant -to libjpeg-turbo. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1995, Thomas G. Lane. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1996, Thomas G. Lane. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1996, Thomas G. Lane. -It was modified by The libjpeg-turbo Project to include only code -relevant to libjpeg-turbo. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1996, Thomas G. Lane. -It was modified by The libjpeg-turbo Project to include only code and -information relevant to libjpeg-turbo. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1996, Thomas G. Lane. -It was modified by The libjpeg-turbo Project to include only code relevant -to libjpeg-turbo. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1996, Thomas G. Lane. -Modified 2009 by Guido Vollbeding. -It was modified by The libjpeg-turbo Project to include only code and -information relevant to libjpeg-turbo. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1996, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2009, 2014-2015, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1996, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2009, 2015, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1996, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2009-2012, 2015, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1996, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2010, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1996, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2012, 2015, D. R. Commander. -Copyright (C) 2014, MIPS Technologies, Inc., California. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1996, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2010, 2015-2016, D. R. Commander. -Copyright (C) 2014, MIPS Technologies, Inc., California. -Copyright (C) 2015, Google, Inc. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1996, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2014, MIPS Technologies, Inc., California. -Copyright (C) 2015, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1997, Thomas G. Lane. -It was modified by The libjpeg-turbo Project to include only code relevant -to libjpeg-turbo. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1997, Thomas G. Lane. -Modifications: -Copyright (C) 2013, Linaro Limited. -Copyright (C) 2014-2015, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1997, Thomas G. Lane. -Modified 1997-2009 by Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright (C) 2009, 2011, 2014-2015, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1997, Thomas G. Lane. -Modified 1997-2009 by Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright (C) 2015-2016, D. R. Commander. -Copyright (C) 2015, Google, Inc. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1997, Thomas G. Lane. -Modified 2002-2009 by Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright (C) 2009-2011, 2016, D. R. Commander. -Copyright (C) 2013, Linaro Limited. -Copyright (C) 2015, Google, Inc. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1997, Thomas G. Lane. -Modified 2003-2010 by Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright (C) 2010, 2016, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1997, Thomas G. Lane. -Modified 2009 by Bill Allombert, Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright (C) 2015, 2016, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1997, Thomas G. Lane. -Modified 2011 by Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009, 2011-2012, 2014-2015, D. R. Commander. -Copyright (C) 2013, Linaro Limited. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1997, Thomas G. Lane. -Modified 2013 by Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright (C) 2010-2011, 2013-2016, D. R. Commander. -Copyright (C) 2015, Google, Inc. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1997, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2009, 2011, 2015, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1997, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2009-2011, 2014-2016, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1997, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2009-2011, 2016, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1997, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2010, 2016, D. R. Commander. -Copyright (C) 2015, Google, Inc. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1997, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2010-2011, 2015-2016, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1997, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2015, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1997, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2016, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1998, Thomas G. Lane. -It was modified by The libjpeg-turbo Project to include only code relevant -to libjpeg-turbo. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1998, Thomas G. Lane. -Modified 2002-2009 by Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright (C) 2009-2011, 2013-2014, 2016, D. R. Commander. -Copyright (C) 2015, Google, Inc. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1998, Thomas G. Lane. -Modified 2003-2008 by Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright (C) 2009-2011, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1998, Thomas G. Lane. -Modified 2003-2010 by Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright (C) 2010, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1998, Thomas G. Lane. -Modified 2003-2011 by Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright (C) 2010, 2013-2014, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1998, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2012, 2015, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-1998, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2013, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-2012, Thomas G. Lane, Guido Vollbeding. -It was modified by The libjpeg-turbo Project to include only information -relevant to libjpeg-turbo. -For conditions of distribution and use, see the accompanying README.ijg file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1991-2012, Thomas G. Lane, Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright (C) 2010, 2012-2016, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1992-1996, Thomas G. Lane. -It was modified by The libjpeg-turbo Project to include only code and -information relevant to libjpeg-turbo. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1992-1997, Thomas G. Lane. -It was modified by The libjpeg-turbo Project to include only code and -information relevant to libjpeg-turbo. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994, Thomas G. Lane. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1996, Thomas G. Lane. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1996, Thomas G. Lane. -It was modified by The libjpeg-turbo Project to include only code relevant -to libjpeg-turbo. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1996, Thomas G. Lane. -Modified 2002-2010 by Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2010, 2015, D. R. Commander. -Copyright (C) 2013, MIPS Technologies, Inc., California. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1996, Thomas G. Lane. -Modified 2009-2010 by Guido Vollbeding. -libjpeg-turbo Modifications: -Modified 2011 by Siarhei Siamashka. -Copyright (C) 2015, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1996, Thomas G. Lane. -Modified 2009-2011 by Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright (C) 2011, 2016, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1996, Thomas G. Lane. -Modified 2009-2011 by Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright (C) 2013, 2016, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1996, Thomas G. Lane. -Modified 2009-2012 by Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright (C) 2011, 2014, 2016, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1996, Thomas G. Lane. -Modified 2009-2012 by Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright (C) 2013, 2016, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1996, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 1999-2006, MIYASAKA Masaru. -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2011, 2014-2015, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1996, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2010, 2015-2016, D. R. Commander. -Copyright (C) 2015, Google, Inc. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1996, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2010, 2016, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1996, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2011, 2015, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1996, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2013, Linaro Limited. -Copyright (C) 2014-2015, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1996, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2015, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1996, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009, 2011, 2014-2015, D. R. Commander. -Copyright (C) 2013, Linaro Limited. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1997, Thomas G. Lane. -It was modified by The libjpeg-turbo Project to include only code and -information relevant to libjpeg-turbo. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1997, Thomas G. Lane. -It was modified by The libjpeg-turbo Project to include only code relevant -to libjpeg-turbo. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1997, Thomas G. Lane. -Modified 1997-2009 by Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright (C) 2014, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1997, Thomas G. Lane. -Modified 2009 by Bill Allombert, Guido Vollbeding. -It was modified by The libjpeg-turbo Project to include only code relevant -to libjpeg-turbo. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1997, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2014, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1997, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2010, 2015-2016, D. R. Commander. -Copyright (C) 2015, Google, Inc. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1997, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright 2009 Pierre Ossman for Cendio AB -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1998, Thomas G. Lane. -Modified 2003-2010 by Guido Vollbeding. -It was modified by The libjpeg-turbo Project to include only code relevant -to libjpeg-turbo. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1998, Thomas G. Lane. -Modified 2010 by Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright (C) 2014, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1998, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2015, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1994-1998, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2016, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1995-1997, Thomas G. Lane. -It was modified by The libjpeg-turbo Project to include only code relevant -to libjpeg-turbo. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1995-1997, Thomas G. Lane. -libjpeg-turbo Modifications: -Copyright (C) 2015, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1995-1998, Thomas G. Lane. -Modified 2000-2009 by Guido Vollbeding. -It was modified by The libjpeg-turbo Project to include only code relevant -to libjpeg-turbo. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1995-2010, Thomas G. Lane, Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright (C) 2010, 2014, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1997-2011, Thomas G. Lane, Guido Vollbeding. -It was modified by The libjpeg-turbo Project to include only code relevant -to libjpeg-turbo. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -This file was part of the Independent JPEG Group's software: -Copyright (C) 1997-2011, Thomas G. Lane, Guido Vollbeding. -libjpeg-turbo Modifications: -Copyright (C) 2010, D. R. Commander. -For conditions of distribution and use, see the accompanying README.ijg -file. --------------------------------------------------------------------------------- -libjpeg-turbo - -libjpeg-turbo Licenses -====================== - -libjpeg-turbo is covered by three compatible BSD-style open source licenses: - -- The IJG (Independent JPEG Group) License, which is listed in - [README.ijg](README.ijg) - - This license applies to the libjpeg API library and associated programs - (any code inherited from libjpeg, and any modifications to that code.) - -- The Modified (3-clause) BSD License, which is listed in - [turbojpeg.c](turbojpeg.c) - - This license covers the TurboJPEG API library and associated programs. - -- The zlib License, which is listed in [simd/jsimdext.inc](simd/jsimdext.inc) - - This license is a subset of the other two, and it covers the libjpeg-turbo - SIMD extensions. - - -Complying with the libjpeg-turbo Licenses -========================================= - -This section provides a roll-up of the libjpeg-turbo licensing terms, to the -best of our understanding. - -1. If you are distributing a modified version of the libjpeg-turbo source, - then: - - 1. You cannot alter or remove any existing copyright or license notices - from the source. - - **Origin** - - Clause 1 of the IJG License - - Clause 1 of the Modified BSD License - - Clauses 1 and 3 of the zlib License - - 2. You must add your own copyright notice to the header of each source - file you modified, so others can tell that you modified that file (if - there is not an existing copyright header in that file, then you can - simply add a notice stating that you modified the file.) - - **Origin** - - Clause 1 of the IJG License - - Clause 2 of the zlib License - - 3. You must include the IJG README file, and you must not alter any of the - copyright or license text in that file. - - **Origin** - - Clause 1 of the IJG License - -2. If you are distributing only libjpeg-turbo binaries without the source, or - if you are distributing an application that statically links with - libjpeg-turbo, then: - - 1. Your product documentation must include a message stating: - - This software is based in part on the work of the Independent JPEG - Group. - - **Origin** - - Clause 2 of the IJG license - - 2. If your binary distribution includes or uses the TurboJPEG API, then - your product documentation must include the text of the Modified BSD - License. - - **Origin** - - Clause 2 of the Modified BSD License - -3. You cannot use the name of the IJG or The libjpeg-turbo Project or the - contributors thereof in advertising, publicity, etc. - - **Origin** - - IJG License - - Clause 3 of the Modified BSD License - -4. The IJG and The libjpeg-turbo Project do not warrant libjpeg-turbo to be - free of defects, nor do we accept any liability for undesirable - consequences resulting from your use of the software. - - **Origin** - - IJG License - - Modified BSD License - - zlib License - --------------------------------------------------------------------------------- -libjpeg-turbo - -libjpeg-turbo note: This file has been modified by The libjpeg-turbo Project -to include only information relevant to libjpeg-turbo, to wordsmith certain -sections, and to remove impolitic language that existed in the libjpeg v8 -README. It is included only for reference. Please see README.md for -information specific to libjpeg-turbo. - - -The Independent JPEG Group's JPEG software -========================================== - -This distribution contains a release of the Independent JPEG Group's free JPEG -software. You are welcome to redistribute this software and to use it for any -purpose, subject to the conditions under LEGAL ISSUES, below. - -This software is the work of Tom Lane, Guido Vollbeding, Philip Gladstone, -Bill Allombert, Jim Boucher, Lee Crocker, Bob Friesenhahn, Ben Jackson, -Julian Minguillon, Luis Ortiz, George Phillips, Davide Rossi, Ge' Weijers, -and other members of the Independent JPEG Group. - -IJG is not affiliated with the ISO/IEC JTC1/SC29/WG1 standards committee -(also known as JPEG, together with ITU-T SG16). - - -DOCUMENTATION ROADMAP -===================== - -This file contains the following sections: - -OVERVIEW General description of JPEG and the IJG software. -LEGAL ISSUES Copyright, lack of warranty, terms of distribution. -REFERENCES Where to learn more about JPEG. -ARCHIVE LOCATIONS Where to find newer versions of this software. -FILE FORMAT WARS Software *not* to get. -TO DO Plans for future IJG releases. - -Other documentation files in the distribution are: - -User documentation: - usage.txt Usage instructions for cjpeg, djpeg, jpegtran, - rdjpgcom, and wrjpgcom. - *.1 Unix-style man pages for programs (same info as usage.txt). - wizard.txt Advanced usage instructions for JPEG wizards only. - change.log Version-to-version change highlights. -Programmer and internal documentation: - libjpeg.txt How to use the JPEG library in your own programs. - example.c Sample code for calling the JPEG library. - structure.txt Overview of the JPEG library's internal structure. - coderules.txt Coding style rules --- please read if you contribute code. - -Please read at least usage.txt. Some information can also be found in the JPEG -FAQ (Frequently Asked Questions) article. See ARCHIVE LOCATIONS below to find -out where to obtain the FAQ article. - -If you want to understand how the JPEG code works, we suggest reading one or -more of the REFERENCES, then looking at the documentation files (in roughly -the order listed) before diving into the code. - - -OVERVIEW -======== - -This package contains C software to implement JPEG image encoding, decoding, -and transcoding. JPEG (pronounced "jay-peg") is a standardized compression -method for full-color and grayscale images. JPEG's strong suit is compressing -photographic images or other types of images that have smooth color and -brightness transitions between neighboring pixels. Images with sharp lines or -other abrupt features may not compress well with JPEG, and a higher JPEG -quality may have to be used to avoid visible compression artifacts with such -images. - -JPEG is lossy, meaning that the output pixels are not necessarily identical to -the input pixels. However, on photographic content and other "smooth" images, -very good compression ratios can be obtained with no visible compression -artifacts, and extremely high compression ratios are possible if you are -willing to sacrifice image quality (by reducing the "quality" setting in the -compressor.) - -This software implements JPEG baseline, extended-sequential, and progressive -compression processes. Provision is made for supporting all variants of these -processes, although some uncommon parameter settings aren't implemented yet. -We have made no provision for supporting the hierarchical or lossless -processes defined in the standard. - -We provide a set of library routines for reading and writing JPEG image files, -plus two sample applications "cjpeg" and "djpeg", which use the library to -perform conversion between JPEG and some other popular image file formats. -The library is intended to be reused in other applications. - -In order to support file conversion and viewing software, we have included -considerable functionality beyond the bare JPEG coding/decoding capability; -for example, the color quantization modules are not strictly part of JPEG -decoding, but they are essential for output to colormapped file formats or -colormapped displays. These extra functions can be compiled out of the -library if not required for a particular application. - -We have also included "jpegtran", a utility for lossless transcoding between -different JPEG processes, and "rdjpgcom" and "wrjpgcom", two simple -applications for inserting and extracting textual comments in JFIF files. - -The emphasis in designing this software has been on achieving portability and -flexibility, while also making it fast enough to be useful. In particular, -the software is not intended to be read as a tutorial on JPEG. (See the -REFERENCES section for introductory material.) Rather, it is intended to -be reliable, portable, industrial-strength code. We do not claim to have -achieved that goal in every aspect of the software, but we strive for it. - -We welcome the use of this software as a component of commercial products. -No royalty is required, but we do ask for an acknowledgement in product -documentation, as described under LEGAL ISSUES. - - -LEGAL ISSUES -============ - -In plain English: - -1. We don't promise that this software works. (But if you find any bugs, - please let us know!) -2. You can use this software for whatever you want. You don't have to pay us. -3. You may not pretend that you wrote this software. If you use it in a - program, you must acknowledge somewhere in your documentation that - you've used the IJG code. - -In legalese: - -The authors make NO WARRANTY or representation, either express or implied, -with respect to this software, its quality, accuracy, merchantability, or -fitness for a particular purpose. This software is provided "AS IS", and you, -its user, assume the entire risk as to its quality and accuracy. - -This software is copyright (C) 1991-2016, Thomas G. Lane, Guido Vollbeding. -All Rights Reserved except as specified below. - -Permission is hereby granted to use, copy, modify, and distribute this -software (or portions thereof) for any purpose, without fee, subject to these -conditions: -(1) If any part of the source code for this software is distributed, then this -README file must be included, with this copyright and no-warranty notice -unaltered; and any additions, deletions, or changes to the original files -must be clearly indicated in accompanying documentation. -(2) If only executable code is distributed, then the accompanying -documentation must state that "this software is based in part on the work of -the Independent JPEG Group". -(3) Permission for use of this software is granted only if the user accepts -full responsibility for any undesirable consequences; the authors accept -NO LIABILITY for damages of any kind. - -These conditions apply to any software derived from or based on the IJG code, -not just to the unmodified library. If you use our work, you ought to -acknowledge us. - -Permission is NOT granted for the use of any IJG author's name or company name -in advertising or publicity relating to this software or products derived from -it. This software may be referred to only as "the Independent JPEG Group's -software". - -We specifically permit and encourage the use of this software as the basis of -commercial products, provided that all warranty or liability claims are -assumed by the product vendor. - - -The Unix configuration script "configure" was produced with GNU Autoconf. -It is copyright by the Free Software Foundation but is freely distributable. -The same holds for its supporting scripts (config.guess, config.sub, -ltmain.sh). Another support script, install-sh, is copyright by X Consortium -but is also freely distributable. - -The IJG distribution formerly included code to read and write GIF files. -To avoid entanglement with the Unisys LZW patent (now expired), GIF reading -support has been removed altogether, and the GIF writer has been simplified -to produce "uncompressed GIFs". This technique does not use the LZW -algorithm; the resulting GIF files are larger than usual, but are readable -by all standard GIF decoders. - -We are required to state that - "The Graphics Interchange Format(c) is the Copyright property of - CompuServe Incorporated. GIF(sm) is a Service Mark property of - CompuServe Incorporated." - - -REFERENCES -========== - -We recommend reading one or more of these references before trying to -understand the innards of the JPEG software. - -The best short technical introduction to the JPEG compression algorithm is - Wallace, Gregory K. "The JPEG Still Picture Compression Standard", - Communications of the ACM, April 1991 (vol. 34 no. 4), pp. 30-44. -(Adjacent articles in that issue discuss MPEG motion picture compression, -applications of JPEG, and related topics.) If you don't have the CACM issue -handy, a PDF file containing a revised version of Wallace's article is -available at http://www.ijg.org/files/Wallace.JPEG.pdf. The file (actually -a preprint for an article that appeared in IEEE Trans. Consumer Electronics) -omits the sample images that appeared in CACM, but it includes corrections -and some added material. Note: the Wallace article is copyright ACM and IEEE, -and it may not be used for commercial purposes. - -A somewhat less technical, more leisurely introduction to JPEG can be found in -"The Data Compression Book" by Mark Nelson and Jean-loup Gailly, published by -M&T Books (New York), 2nd ed. 1996, ISBN 1-55851-434-1. This book provides -good explanations and example C code for a multitude of compression methods -including JPEG. It is an excellent source if you are comfortable reading C -code but don't know much about data compression in general. The book's JPEG -sample code is far from industrial-strength, but when you are ready to look -at a full implementation, you've got one here... - -The best currently available description of JPEG is the textbook "JPEG Still -Image Data Compression Standard" by William B. Pennebaker and Joan L. -Mitchell, published by Van Nostrand Reinhold, 1993, ISBN 0-442-01272-1. -Price US$59.95, 638 pp. The book includes the complete text of the ISO JPEG -standards (DIS 10918-1 and draft DIS 10918-2). - -The original JPEG standard is divided into two parts, Part 1 being the actual -specification, while Part 2 covers compliance testing methods. Part 1 is -titled "Digital Compression and Coding of Continuous-tone Still Images, -Part 1: Requirements and guidelines" and has document numbers ISO/IEC IS -10918-1, ITU-T T.81. Part 2 is titled "Digital Compression and Coding of -Continuous-tone Still Images, Part 2: Compliance testing" and has document -numbers ISO/IEC IS 10918-2, ITU-T T.83. - -The JPEG standard does not specify all details of an interchangeable file -format. For the omitted details we follow the "JFIF" conventions, revision -1.02. JFIF 1.02 has been adopted as an Ecma International Technical Report -and thus received a formal publication status. It is available as a free -download in PDF format from -http://www.ecma-international.org/publications/techreports/E-TR-098.htm. -A PostScript version of the JFIF document is available at -http://www.ijg.org/files/jfif.ps.gz. There is also a plain text version at -http://www.ijg.org/files/jfif.txt.gz, but it is missing the figures. - -The TIFF 6.0 file format specification can be obtained by FTP from -ftp://ftp.sgi.com/graphics/tiff/TIFF6.ps.gz. The JPEG incorporation scheme -found in the TIFF 6.0 spec of 3-June-92 has a number of serious problems. -IJG does not recommend use of the TIFF 6.0 design (TIFF Compression tag 6). -Instead, we recommend the JPEG design proposed by TIFF Technical Note #2 -(Compression tag 7). Copies of this Note can be obtained from -http://www.ijg.org/files/. It is expected that the next revision -of the TIFF spec will replace the 6.0 JPEG design with the Note's design. -Although IJG's own code does not support TIFF/JPEG, the free libtiff library -uses our library to implement TIFF/JPEG per the Note. - - -ARCHIVE LOCATIONS -================= - -The "official" archive site for this software is www.ijg.org. -The most recent released version can always be found there in -directory "files". - -The JPEG FAQ (Frequently Asked Questions) article is a source of some -general information about JPEG. -It is available on the World Wide Web at http://www.faqs.org/faqs/jpeg-faq/ -and other news.answers archive sites, including the official news.answers -archive at rtfm.mit.edu: ftp://rtfm.mit.edu/pub/usenet/news.answers/jpeg-faq/. -If you don't have Web or FTP access, send e-mail to mail-server@rtfm.mit.edu -with body - send usenet/news.answers/jpeg-faq/part1 - send usenet/news.answers/jpeg-faq/part2 - - -FILE FORMAT WARS -================ - -The ISO/IEC JTC1/SC29/WG1 standards committee (also known as JPEG, together -with ITU-T SG16) currently promotes different formats containing the name -"JPEG" which are incompatible with original DCT-based JPEG. IJG therefore does -not support these formats (see REFERENCES). Indeed, one of the original -reasons for developing this free software was to help force convergence on -common, interoperable format standards for JPEG files. -Don't use an incompatible file format! -(In any case, our decoder will remain capable of reading existing JPEG -image files indefinitely.) - - -TO DO -===== - -Please send bug reports, offers of help, etc. to jpeg-info@jpegclub.org. - --------------------------------------------------------------------------------- -libjxl -skia -vulkan-deps - -Copyright 2021 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -libpng - -PNG Reference Library License version 2 ---------------------------------------- - - * Copyright (c) 1995-2025 The PNG Reference Library Authors. - * Copyright (c) 2018-2025 Cosmin Truta. - * Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson. - * Copyright (c) 1996-1997 Andreas Dilger. - * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. - -The software is supplied "as is", without warranty of any kind, -express or implied, including, without limitation, the warranties -of merchantability, fitness for a particular purpose, title, and -non-infringement. In no event shall the Copyright owners, or -anyone distributing the software, be liable for any damages or -other liability, whether in contract, tort or otherwise, arising -from, out of, or in connection with the software, or the use or -other dealings in the software, even if advised of the possibility -of such damage. - -Permission is hereby granted to use, copy, modify, and distribute -this software, or portions hereof, for any purpose, without fee, -subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you - must not claim that you wrote the original software. If you - use this software in a product, an acknowledgment in the product - documentation would be appreciated, but is not required. - - 2. Altered source versions must be plainly marked as such, and must - not be misrepresented as being the original software. - - 3. This Copyright notice may not be removed or altered from any - source or altered source distribution. - - -PNG Reference Library License version 1 (for libpng 0.5 through 1.6.35) ------------------------------------------------------------------------ - -libpng versions 1.0.7, July 1, 2000, through 1.6.35, July 15, 2018 are -Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are -derived from libpng-1.0.6, and are distributed according to the same -disclaimer and license as libpng-1.0.6 with the following individuals -added to the list of Contributing Authors: - - Simon-Pierre Cadieux - Eric S. Raymond - Mans Rullgard - Cosmin Truta - Gilles Vollant - James Yu - Mandar Sahastrabuddhe - Google Inc. - Vadim Barkov - -and with the following additions to the disclaimer: - - There is no warranty against interference with your enjoyment of - the library or against infringement. There is no warranty that our - efforts or the library will fulfill any of your particular purposes - or needs. This library is provided with all faults, and the entire - risk of satisfactory quality, performance, accuracy, and effort is - with the user. - -Some files in the "contrib" directory and some configure-generated -files that are distributed with libpng have other copyright owners, and -are released under other open source licenses. - -libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are -Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from -libpng-0.96, and are distributed according to the same disclaimer and -license as libpng-0.96, with the following individuals added to the -list of Contributing Authors: - - Tom Lane - Glenn Randers-Pehrson - Willem van Schaik - -libpng versions 0.89, June 1996, through 0.96, May 1997, are -Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88, -and are distributed according to the same disclaimer and license as -libpng-0.88, with the following individuals added to the list of -Contributing Authors: - - John Bowler - Kevin Bracey - Sam Bushell - Magnus Holmgren - Greg Roelofs - Tom Tanner - -Some files in the "scripts" directory have other copyright owners, -but are released under this license. - -libpng versions 0.5, May 1995, through 0.88, January 1996, are -Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. - -For the purposes of this copyright and license, "Contributing Authors" -is defined as the following set of individuals: - - Andreas Dilger - Dave Martindale - Guy Eric Schalnat - Paul Schmidt - Tim Wegner - -The PNG Reference Library is supplied "AS IS". The Contributing -Authors and Group 42, Inc. disclaim all warranties, expressed or -implied, including, without limitation, the warranties of -merchantability and of fitness for any purpose. The Contributing -Authors and Group 42, Inc. assume no liability for direct, indirect, -incidental, special, exemplary, or consequential damages, which may -result from the use of the PNG Reference Library, even if advised of -the possibility of such damage. - -Permission is hereby granted to use, copy, modify, and distribute this -source code, or portions hereof, for any purpose, without fee, subject -to the following restrictions: - - 1. The origin of this source code must not be misrepresented. - - 2. Altered versions must be plainly marked as such and must not - be misrepresented as being the original source. - - 3. This Copyright notice may not be removed or altered from any - source or altered source distribution. - -The Contributing Authors and Group 42, Inc. specifically permit, -without fee, and encourage the use of this source code as a component -to supporting the PNG file format in commercial products. If you use -this source code in a product, acknowledgment is not required but would -be appreciated. - --------------------------------------------------------------------------------- -libpng - -PNG Reference Library License version 2 ---------------------------------------- - - * Copyright (c) 1995-2025 The PNG Reference Library Authors. - * Copyright (c) 2018-2025 Cosmin Truta. - * Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson. - * Copyright (c) 1996-1997 Andreas Dilger. - * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. - -The software is supplied "as is", without warranty of any kind, -express or implied, including, without limitation, the warranties -of merchantability, fitness for a particular purpose, title, and -non-infringement. In no event shall the Copyright owners, or -anyone distributing the software, be liable for any damages or -other liability, whether in contract, tort or otherwise, arising -from, out of, or in connection with the software, or the use or -other dealings in the software, even if advised of the possibility -of such damage. - -Permission is hereby granted to use, copy, modify, and distribute -this software, or portions hereof, for any purpose, without fee, -subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you - must not claim that you wrote the original software. If you - use this software in a product, an acknowledgment in the product - documentation would be appreciated, but is not required. - - 2. Altered source versions must be plainly marked as such, and must - not be misrepresented as being the original software. - - 3. This Copyright notice may not be removed or altered from any - source or altered source distribution. - - -PNG Reference Library License version 1 (for libpng 0.5 through 1.6.35) ------------------------------------------------------------------------ - -libpng versions 1.0.7, July 1, 2000, through 1.6.35, July 15, 2018 are -Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are -derived from libpng-1.0.6, and are distributed according to the same -disclaimer and license as libpng-1.0.6 with the following individuals -added to the list of Contributing Authors: - - Simon-Pierre Cadieux - Eric S. Raymond - Mans Rullgard - Cosmin Truta - Gilles Vollant - James Yu - Mandar Sahastrabuddhe - Google Inc. - Vadim Barkov - -and with the following additions to the disclaimer: - - There is no warranty against interference with your enjoyment of - the library or against infringement. There is no warranty that our - efforts or the library will fulfill any of your particular purposes - or needs. This library is provided with all faults, and the entire - risk of satisfactory quality, performance, accuracy, and effort is - with the user. - -Some files in the "contrib" directory and some configure-generated -files that are distributed with libpng have other copyright owners, and -are released under other open source licenses. - -libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are -Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from -libpng-0.96, and are distributed according to the same disclaimer and -license as libpng-0.96, with the following individuals added to the -list of Contributing Authors: - - Tom Lane - Glenn Randers-Pehrson - Willem van Schaik - -libpng versions 0.89, June 1996, through 0.96, May 1997, are -Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88, -and are distributed according to the same disclaimer and license as -libpng-0.88, with the following individuals added to the list of -Contributing Authors: - - John Bowler - Kevin Bracey - Sam Bushell - Magnus Holmgren - Greg Roelofs - Tom Tanner - -Some files in the "scripts" directory have other copyright owners, -but are released under this license. - -libpng versions 0.5, May 1995, through 0.88, January 1996, are -Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. - -For the purposes of this copyright and license, "Contributing Authors" -is defined as the following set of individuals: - - Andreas Dilger - Dave Martindale - Guy Eric Schalnat - Paul Schmidt - Tim Wegner - -The PNG Reference Library is supplied "AS IS". The Contributing -Authors and Group 42, Inc. disclaim all warranties, expressed or -implied, including, without limitation, the warranties of -merchantability and of fitness for any purpose. The Contributing -Authors and Group 42, Inc. assume no liability for direct, indirect, -incidental, special, exemplary, or consequential damages, which may -result from the use of the PNG Reference Library, even if advised of -the possibility of such damage. - -Permission is hereby granted to use, copy, modify, and distribute this -source code, or portions hereof, for any purpose, without fee, subject -to the following restrictions: - - 1. The origin of this source code must not be misrepresented. - - 2. Altered versions must be plainly marked as such and must not - be misrepresented as being the original source. - - 3. This Copyright notice may not be removed or altered from any - source or altered source distribution. - -The Contributing Authors and Group 42, Inc. specifically permit, -without fee, and encourage the use of this source code as a component -to supporting the PNG file format in commercial products. If you use -this source code in a product, acknowledgment is not required but would -be appreciated. - -END OF COPYRIGHT NOTICE, DISCLAIMER, and LICENSE. - -TRADEMARK -========= - -The name "libpng" has not been registered by the Copyright owners -as a trademark in any jurisdiction. However, because libpng has -been distributed and maintained world-wide, continually since 1995, -the Copyright owners claim "common-law trademark protection" in any -jurisdiction where common-law trademark is recognized. - --------------------------------------------------------------------------------- -libpng -skia - -Copyright 2016 Google Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -libtess2 - -** SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) -** Copyright (C) [dates of first publication] Silicon Graphics, Inc. -** All Rights Reserved. -** -** Permission is hereby granted, free of charge, to any person obtaining a copy -** of this software and associated documentation files (the "Software"), to deal -** in the Software without restriction, including without limitation the rights -** to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -** of the Software, and to permit persons to whom the Software is furnished to do so, -** subject to the following conditions: -** -** The above copyright notice including the dates of first publication and either this -** permission notice or a reference to http://oss.sgi.com/projects/FreeB/ shall be -** included in all copies or substantial portions of the Software. -** -** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, -** INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A -** PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SILICON GRAPHICS, INC. -** BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE -** OR OTHER DEALINGS IN THE SOFTWARE. -** -** Except as contained in this notice, the name of Silicon Graphics, Inc. shall not -** be used in advertising or otherwise to promote the sale, use or other dealings in -** this Software without prior written authorization from Silicon Graphics, Inc. --------------------------------------------------------------------------------- -libtess2 - -Copyright (c) 2009 Mikko Mononen memon@inside.org - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libwebp - -Copyright (c) 2010, Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libwebp - -Copyright (c) 2021, Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libwebp - -Copyright 2010 Google Inc. All Rights Reserved. - -Use of this source code is governed by a BSD-style license -that can be found in the COPYING file in the root of the source -tree. An additional intellectual property rights grant can be found -in the file PATENTS. All contributing project authors may -be found in the AUTHORS file in the root of the source tree. --------------------------------------------------------------------------------- -libwebp - -Copyright 2011 Google Inc. All Rights Reserved. - -Use of this source code is governed by a BSD-style license -that can be found in the COPYING file in the root of the source -tree. An additional intellectual property rights grant can be found -in the file PATENTS. All contributing project authors may -be found in the AUTHORS file in the root of the source tree. --------------------------------------------------------------------------------- -libwebp - -Copyright 2012 Google Inc. All Rights Reserved. - -Use of this source code is governed by a BSD-style license -that can be found in the COPYING file in the root of the source -tree. An additional intellectual property rights grant can be found -in the file PATENTS. All contributing project authors may -be found in the AUTHORS file in the root of the source tree. --------------------------------------------------------------------------------- -libwebp - -Copyright 2013 Google Inc. All Rights Reserved. - -Use of this source code is governed by a BSD-style license -that can be found in the COPYING file in the root of the source -tree. An additional intellectual property rights grant can be found -in the file PATENTS. All contributing project authors may -be found in the AUTHORS file in the root of the source tree. --------------------------------------------------------------------------------- -libwebp - -Copyright 2014 Google Inc. All Rights Reserved. - -Use of this source code is governed by a BSD-style license -that can be found in the COPYING file in the root of the source -tree. An additional intellectual property rights grant can be found -in the file PATENTS. All contributing project authors may -be found in the AUTHORS file in the root of the source tree. --------------------------------------------------------------------------------- -libwebp - -Copyright 2015 Google Inc. All Rights Reserved. - -Use of this source code is governed by a BSD-style license -that can be found in the COPYING file in the root of the source -tree. An additional intellectual property rights grant can be found -in the file PATENTS. All contributing project authors may -be found in the AUTHORS file in the root of the source tree. --------------------------------------------------------------------------------- -libwebp - -Copyright 2016 Google Inc. All Rights Reserved. - -Use of this source code is governed by a BSD-style license -that can be found in the COPYING file in the root of the source -tree. An additional intellectual property rights grant can be found -in the file PATENTS. All contributing project authors may -be found in the AUTHORS file in the root of the source tree. --------------------------------------------------------------------------------- -libwebp - -Copyright 2017 Google Inc. All Rights Reserved. - -Use of this source code is governed by a BSD-style license -that can be found in the COPYING file in the root of the source -tree. An additional intellectual property rights grant can be found -in the file PATENTS. All contributing project authors may -be found in the AUTHORS file in the root of the source tree. --------------------------------------------------------------------------------- -libwebp - -Copyright 2018 Google Inc. All Rights Reserved. - -Use of this source code is governed by a BSD-style license -that can be found in the COPYING file in the root of the source -tree. An additional intellectual property rights grant can be found -in the file PATENTS. All contributing project authors may -be found in the AUTHORS file in the root of the source tree. --------------------------------------------------------------------------------- -libwebp - -Copyright 2021 Google Inc. All Rights Reserved. - -Use of this source code is governed by a BSD-style license -that can be found in the COPYING file in the root of the source -tree. An additional intellectual property rights grant can be found -in the file PATENTS. All contributing project authors may -be found in the AUTHORS file in the root of the source tree. --------------------------------------------------------------------------------- -libwebp - -Copyright 2022 Google Inc. All Rights Reserved. - -Use of this source code is governed by a BSD-style license -that can be found in the COPYING file in the root of the source -tree. An additional intellectual property rights grant can be found -in the file PATENTS. All contributing project authors may -be found in the AUTHORS file in the root of the source tree. --------------------------------------------------------------------------------- -lints - -Copyright 2021, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -llvm_libc - -University of Illinois/NCSA -Open Source License - -Copyright (c) 2007-2019 University of Illinois at Urbana-Champaign. -All rights reserved. - -Developed by: - - LLVM Team - - University of Illinois at Urbana-Champaign - - http://llvm.org - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal with -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimers. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimers in the - documentation and/or other materials provided with the distribution. - - * Neither the names of the LLVM Team, University of Illinois at - Urbana-Champaign, nor the names of its contributors may be used to - endorse or promote products derived from this Software without specific - prior written permission. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE -SOFTWARE. --------------------------------------------------------------------------------- -lucide_icons_flutter - - -MIT License - -Copyright (c) 2024 vqhapp - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -lunarg-vulkantools - -Apache License - -Version 2.0, January 2004 - -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and distribution as -defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner -that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities that -control, are controlled by, or are under common control with that entity. For the -purposes of this definition, "control" means (i) the power, direct or indirect, to -cause the direction or management of such entity, whether by contract or otherwise, -or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or -(iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions -granted by this License. - -"Source" form shall mean the preferred form for making modifications, including but not -limited to software source code, documentation source, and configuration files. - -"Object" form shall mean any form resulting from mechanical transformation or -translation of a Source form, including but not limited to compiled object code, -generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made -available under the License, as indicated by a copyright notice that is included in or -attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that is based -on (or derived from) the Work and for which the editorial revisions, annotations, -elaborations, or other modifications represent, as a whole, an original work of -authorship. For the purposes of this License, Derivative Works shall not include works -that remain separable from, or merely link (or bind by name) to the interfaces of, the -Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version of the -Work and any modifications or additions to that Work or Derivative Works thereof, that -is intentionally submitted to Licensor for inclusion in the Work by the copyright owner -or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. -For the purposes of this definition, "submitted" means any form of electronic, verbal, -or written communication sent to the Licensor or its representatives, including but not -limited to communication on electronic mailing lists, source code control systems, and -issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose -of discussing and improving the Work, but excluding communication that is conspicuously -marked or otherwise designated in writing by the copyright owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a -Contribution has been received by Licensor and subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of this License, each -Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, -royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, -publicly display, publicly perform, sublicense, and distribute the Work and such -Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this License, each -Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, -royalty-free, irrevocable (except as stated in this section) patent license to make, -have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such -license applies only to those patent claims licensable by such Contributor that are -necessarily infringed by their Contribution(s) alone or by combination of their -Contribution(s) with the Work to which such Contribution(s) was submitted. If You -institute patent litigation against any entity (including a cross-claim or counterclaim -in a lawsuit) alleging that the Work or a Contribution incorporated within the Work -constitutes direct or contributory patent infringement, then any patent licenses granted -to You under this License for that Work shall terminate as of the date such litigation -is filed. - -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative -Works thereof in any medium, with or without modifications, and in Source or Object form, -provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of this -License; and -You must cause any modified files to carry prominent notices stating that You changed -the files; and -You must retain, in the Source form of any Derivative Works that You distribute, all -copyright, patent, trademark, and attribution notices from the Source form of the Work, -excluding those notices that do not pertain to any part of the Derivative Works; and -If the Work includes a "NOTICE" text file as part of its distribution, then any -Derivative Works that You distribute must include a readable copy of the attribution -notices contained within such NOTICE file, excluding those notices that do not pertain -to any part of the Derivative Works, in at least one of the following places: within a -NOTICE text file distributed as part of the Derivative Works; within the Source form or -documentation, if provided along with the Derivative Works; or, within a display -generated by the Derivative Works, if and wherever such third-party notices normally -appear. The contents of the NOTICE file are for informational purposes only and do not -modify the License. You may add Your own attribution notices within Derivative Works -that You distribute, alongside or as an addendum to the NOTICE text from the Work, -provided that such additional attribution notices cannot be construed as modifying -the License. - -You may add Your own copyright statement to Your modifications and may provide -additional or different license terms and conditions for use, reproduction, or -distribution of Your modifications, or for any such Derivative Works as a whole, -provided Your use, reproduction, and distribution of the Work otherwise complies with -the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution -intentionally submitted for inclusion in the Work by You to the Licensor shall be under -the terms and conditions of this License, without any additional terms or conditions. -Notwithstanding the above, nothing herein shall supersede or modify the terms of any -separate license agreement you may have executed with Licensor regarding such -Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, -trademarks, service marks, or product names of the Licensor, except as required for -reasonable and customary use in describing the origin of the Work and reproducing the -content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, -Licensor provides the Work (and each Contributor provides its Contributions) on an -"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, - including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, - MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for - determining the appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in tort -(including negligence), contract, or otherwise, unless required by applicable law (such -as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor -be liable to You for damages, including any direct, indirect, special, incidental, or -consequential damages of any character arising as a result of this License or out of the -use or inability to use the Work (including but not limited to damages for loss of -goodwill, work stoppage, computer failure or malfunction, or any and all other -commercial damages or losses), even if such Contributor has been advised of the -possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing the Work or -Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of -support, warranty, indemnity, or other liability obligations and/or rights consistent -with this License. However, in accepting such obligations, You may act only on Your own -behalf and on Your sole responsibility, not on behalf of any other Contributor, and only -if You agree to indemnify, defend, and hold each Contributor harmless for any liability -incurred by, or claims asserted against, such Contributor by reason of your accepting -any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: HOW TO APPLY THE APACHE LICENSE TO YOUR WORK -To apply the Apache License to your work, attach the following boilerplate notice, with -the fields enclosed by brackets "[]" replaced with your own identifying information. -(Don't include the brackets!) The text should be enclosed in the appropriate comment -syntax for the file format. We also recommend that a file or class name and description -of purpose be included on the same "printed page" as the copyright notice for easier -identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - --------------------------------------------------------------------------------- -lunarg-vulkantools - -Copyright (C) 2015-2021 Valve Corporation -Copyright (C) 2015-2021 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -lunarg-vulkantools - -Copyright (c) 2015-2021 The Khronos Group Inc. -Copyright (c) 2015-2021 Valve Corporation -Copyright (c) 2015-2021 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -lunarg-vulkantools - -Copyright (c) 2015-2021 The Khronos Group Inc. -Copyright (c) 2015-2021 Valve Corporation -Copyright (c) 2015-2021 LunarG, Inc. -Copyright (c) 2015-2021 Google, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -lunarg-vulkantools - -Copyright (c) 2015-2023 The Khronos Group Inc. -Copyright (c) 2015-2023 Valve Corporation -Copyright (c) 2015-2023 LunarG, Inc. -Copyright (C) 2015-2016 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -lunarg-vulkantools - -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (c) 2015-2017, 2019, 2021 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -lunarg-vulkantools - -Copyright (c) 2016 Advanced Micro Devices, Inc. All rights reserved. -Copyright (C) 2015-2021 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -lunarg-vulkantools - -Copyright (c) 2019 The Khronos Group Inc. -Copyright (c) 2019 Valve Corporation -Copyright (c) 2019 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -lunarg-vulkantools - -Copyright (c) 2020-2021 Valve Corporation -Copyright (c) 2020-2021 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -lunarg-vulkantools - -Copyright (c) 2020-2022 Valve Corporation -Copyright (c) 2020-2022 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -lunarg-vulkantools - -Copyright (c) 2020-2025 Valve Corporation -Copyright (c) 2020-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -lunarg-vulkantools - -Copyright (c) 2022-2025 Valve Corporation -Copyright (c) 2022-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -lunarg-vulkantools -vulkan-headers - -Copyright 2023-2025 The Khronos Group Inc. - -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -lunarg-vulkantools -vulkan-tools - -Copyright 2017 The Glslang Authors. All rights reserved. -Copyright (c) 2018-2023 Valve Corporation -Copyright (c) 2018-2023 LunarG, Inc. -Copyright (c) 2023-2023 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -lunarg-vulkantools -vulkan-validation-layers - -Copyright 2023-2024 The Khronos Group Inc. -Copyright 2023-2024 Valve Corporation -Copyright 2023-2024 LunarG, Inc. - -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -material_color_utilities - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2021 Google LLC - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - --------------------------------------------------------------------------------- -native_toolchain_c - -Copyright 2023, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -nested -provider - -MIT License - -Copyright (c) 2019 Remi Rousselet - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -node_preamble - - - -Copyright (c) 2015 Michael Bullington - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -node_preamble - -Copyright 2012, the Dart project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -objective_c - -Copyright 2024, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -path_parsing - -Copyright (c) 2018 Dan Field - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - --------------------------------------------------------------------------------- -perfetto - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright (c) 2017, The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. --------------------------------------------------------------------------------- -perfetto - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright (c) 2020, The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. --------------------------------------------------------------------------------- -perfetto - -Copyright (c) 2019 The Android Open Source Project - -Licensed under the Apache License, Version 2.0 (the "License"); you -may not use this file except in compliance with the License. You may -obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or -implied. See the License for the specific language governing -permissions and limitations under the License. --------------------------------------------------------------------------------- -perfetto - -Copyright (c) 2025, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. Use of this source code is governed by a -BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -petitparser - -The MIT License - -Copyright (c) 2006-2024 Lukas Renggli. -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - --------------------------------------------------------------------------------- -platform - -Copyright 2017, the Dart project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -process_runner - -Copyright 2020 The Flutter Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -process_runner - -Copyright 2020 The Flutter Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -rapidjson - -Tencent is pleased to support the open source community by making RapidJSON available-> - -Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip-> All rights reserved-> - -Licensed under the MIT License (the "License"); you may not use this file except -in compliance with the License-> You may obtain a copy of the License at - -http://opensource->org/licenses/MIT - -Unless required by applicable law or agreed to in writing, software distributed -under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR -CONDITIONS OF ANY KIND, either express or implied-> See the License for the -specific language governing permissions and limitations under the License-> --------------------------------------------------------------------------------- -rapidjson - -Tencent is pleased to support the open source community by making RapidJSON available. - -Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. - -Licensed under the MIT License (the "License"); you may not use this file except -in compliance with the License. You may obtain a copy of the License at - -http://opensource.org/licenses/MIT - -Unless required by applicable law or agreed to in writing, software distributed -under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR -CONDITIONS OF ANY KIND, either express or implied. See the License for the -specific language governing permissions and limitations under the License. --------------------------------------------------------------------------------- -rapidjson - -Tencent is pleased to support the open source community by making RapidJSON available. - -Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. - -Licensed under the MIT License (the "License"); you may not use this file except -in compliance with the License. You may obtain a copy of the License at - -http://opensource.org/licenses/MIT - -Unless required by applicable law or agreed to in writing, software distributed -under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR -CONDITIONS OF ANY KIND, either express or implied. See the License for the -specific language governing permissions and limitations under the License. --------------------------------------------------------------------------------- -rapidjson - -Tencent is pleased to support the open source community by making RapidJSON available. - -Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. - -If you have downloaded a copy of the RapidJSON binary from Tencent, please note that the RapidJSON binary is licensed under the MIT License. -If you have downloaded a copy of the RapidJSON source code from Tencent, please note that RapidJSON source code is licensed under the MIT License, except for the third-party components listed below which are subject to different license terms. Your integration of RapidJSON into your own projects may require compliance with the MIT License, as well as the other licenses applicable to the third-party components included within RapidJSON. - -A copy of the MIT License is included in this file. - -Other dependencies and licenses: - -Open Source Software Licensed Under the BSD License: --------------------------------------------------------------------- - -The msinttypes r29 -Copyright (c) 2006-2013 Alexander Chemeris -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -* Neither the name of copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -Terms of the MIT License: --------------------------------------------------------------------- - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -rapidjson - -The above software in this distribution may have been modified by -THL A29 Limited ("Tencent Modifications"). -All Tencent Modifications are Copyright (C) 2015 THL A29 Limited. --------------------------------------------------------------------------------- -re2 - -// Copyright (c) 2009 The RE2 Authors. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -re2 - -Copyright 1999-2005 The RE2 Authors. All Rights Reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -re2 - -Copyright 2003-2009 Google Inc. All rights reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -re2 - -Copyright 2003-2009 The RE2 Authors. All Rights Reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -re2 - -Copyright 2003-2010 Google Inc. All Rights Reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -re2 - -Copyright 2006 The RE2 Authors. All Rights Reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -re2 - -Copyright 2006-2007 The RE2 Authors. All Rights Reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -re2 - -Copyright 2007 The RE2 Authors. All Rights Reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -re2 - -Copyright 2008 The RE2 Authors. All Rights Reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -re2 - -Copyright 2009 The RE2 Authors. All Rights Reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -re2 - -Copyright 2010 The RE2 Authors. All Rights Reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -re2 - -Copyright 2016 The RE2 Authors. All Rights Reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -re2 - -Copyright 2018 The RE2 Authors. All Rights Reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -re2 - -Copyright 2019 The RE2 Authors. All Rights Reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -re2 - -Copyright 2022 The RE2 Authors. All Rights Reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -re2 - -Copyright 2023 The RE2 Authors. All Rights Reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -re2 - -The authors of this software are Rob Pike and Ken Thompson. - Copyright (c) 2002 by Lucent Technologies. -Permission to use, copy, modify, and distribute this software for any -purpose without fee is hereby granted, provided that this entire notice -is included in all copies of any software which is or includes a copy -or modification of this software and in all copies of the supporting -documentation for such software. -THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED -WARRANTY. IN PARTICULAR, NEITHER THE AUTHORS NOR LUCENT TECHNOLOGIES MAKE ANY -REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY -OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. --------------------------------------------------------------------------------- -serial_csv - -MIT License - -Copyright (c) 2023-2026 Tien Do Nam - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - --------------------------------------------------------------------------------- -shadcn_ui - -MIT License - -Copyright (c) 2023 Alexandru Mariuti - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - --------------------------------------------------------------------------------- -shaderc - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. --------------------------------------------------------------------------------- -shaderc - -Copyright (C) 2017 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -shaderc - -Copyright (C) 2017-2022 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -shaderc - -Copyright (C) 2020 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -shaderc - -Copyright (C) 2020-2022 Google LLC - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -shaderc - -Copyright 2015 The Shaderc Authors. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -shaderc - -Copyright 2016 The Shaderc Authors. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -shaderc - -Copyright 2017 The Shaderc Authors. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -shaderc - -Copyright 2018 The Shaderc Authors. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -shaderc - -Copyright 2019 The Shaderc Authors. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -skia - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2021 Google LLC - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. --------------------------------------------------------------------------------- -skia - -// Copyright (c) 2011 Google Inc. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright %s %s - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright (C) 2014 Google Inc. All rights reserved. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright (c) 2011 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright (c) 2014 Google Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright (c) 2016 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright (c) 2017 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright (c) 2019 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright (c) 2020 Google LLC. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright (c) 2022 Google LLC. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2005 The Android Open Source Project - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2006 The Android Open Source Project - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2006 The Android Open Source Project - -Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2006-2012 The Android Open Source Project -Copyright 2012 Mozilla Foundation - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2007 The Android Open Source Project - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2008 Google Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2008 The Android Open Source Project - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2009 The Android Open Source Project - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2009-2015 Google Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2010 Google Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2010 The Android Open Source Project - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2011 Google Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2011 Google Inc. -Copyright 2012 Mozilla Foundation - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2011 The Android Open Source Project - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2012 Google Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2012 Google LLC - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2012 The Android Open Source Project - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2013 Google Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2013 Google Inc. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2013 The Android Open Source Project - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2014 Google Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2014 Google Inc. -Copyright 2017 ARM Ltd. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2014 The Android Open Source Project - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2014 The Bazel Authors. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -skia - -Copyright 2015 Google Inc. - -Use of this source code is governed by a BD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2015 Google Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2015 The Android Open Source Project - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2016 Google Inc. - -Use of this source code is governed by a BD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2016 Google Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file - --------------------------------------------------------------------------------- -skia - -Copyright 2016 Mozilla Foundation - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2016 The Android Open Source Project - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2017 ARM Ltd. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2017 Google Inc. - -Use of this source code is governed by a BD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2017 Google Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2017 Google Inc. - -Use of this source code is governed by a BSD-style license that can be found -in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2018 Google Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2018 Google Inc. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2018 Google Inc. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2018 Google LLC - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2018 Google LLC. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2018 Google LLC. -Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2018 Google, LLC - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2018 The Android Open Source Project - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2018 The Bazel Authors. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -skia - -Copyright 2019 Google Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2019 Google Inc. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2019 Google Inc. and Adobe Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2019 Google LLC - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2019 Google LLC -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2019 Google LLC. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2019 Google LLC. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2019 Google LLC. -Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2019 Google, LLC - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2019 The Android Open Source Project - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2020 Google Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2020 Google LLC - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2020 Google LLC. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2020 Google LLC. -Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2020 Google, LLC - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2021 Google Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2021 Google LLC - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2021 Google LLC. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2021 Google LLC. -Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2021 Google, LLC - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2022 Google Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2022 Google LLC -Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2022 Google LLC. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2022 Google LLC. -Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2022 Google, LLC - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2023 Google Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2023 Google Inc. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2023 Google LLC - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2023 Google LLC - -Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2023 Google LLC -Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2023 Google LLC. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2023 Google, LLC - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2023 The Android Open Source Project - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2023 The Chromium Authors. All rights reserved. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2024 Google Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2024 Google LLC - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2024 Google LLC. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2024 Google LLC. -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2024 Google LLC. -Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2024 Google, LLC - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2024 The Android Open Source Project - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2025 Google Inc. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2025 Google LLC -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2025 Google LLC. - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -skia - -Copyright 2025 Google, LLC - -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -slang -slang_flutter - -MIT License - -Copyright (c) 2020-2026 Tien Do Nam - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -spirv-cross - -Apache License - -Version 2.0, January 2004 - -http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, -AND DISTRIBUTION - - 1. Definitions. - - - -"License" shall mean the terms and conditions for use, reproduction, and distribution -as defined by Sections 1 through 9 of this document. - - - -"Licensor" shall mean the copyright owner or entity authorized by the copyright -owner that is granting the License. - - - -"Legal Entity" shall mean the union of the acting entity and all other entities -that control, are controlled by, or are under common control with that entity. -For the purposes of this definition, "control" means (i) the power, direct -or indirect, to cause the direction or management of such entity, whether -by contract or otherwise, or (ii) ownership of fifty percent (50%) or more -of the outstanding shares, or (iii) beneficial ownership of such entity. - - - -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions -granted by this License. - - - -"Source" form shall mean the preferred form for making modifications, including -but not limited to software source code, documentation source, and configuration -files. - - - -"Object" form shall mean any form resulting from mechanical transformation -or translation of a Source form, including but not limited to compiled object -code, generated documentation, and conversions to other media types. - - - -"Work" shall mean the work of authorship, whether in Source or Object form, -made available under the License, as indicated by a copyright notice that -is included in or attached to the work (an example is provided in the Appendix -below). - - - -"Derivative Works" shall mean any work, whether in Source or Object form, -that is based on (or derived from) the Work and for which the editorial revisions, -annotations, elaborations, or other modifications represent, as a whole, an -original work of authorship. For the purposes of this License, Derivative -Works shall not include works that remain separable from, or merely link (or -bind by name) to the interfaces of, the Work and Derivative Works thereof. - - - -"Contribution" shall mean any work of authorship, including the original version -of the Work and any modifications or additions to that Work or Derivative -Works thereof, that is intentionally submitted to Licensor for inclusion in -the Work by the copyright owner or by an individual or Legal Entity authorized -to submit on behalf of the copyright owner. For the purposes of this definition, -"submitted" means any form of electronic, verbal, or written communication -sent to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, and -issue tracking systems that are managed by, or on behalf of, the Licensor -for the purpose of discussing and improving the Work, but excluding communication -that is conspicuously marked or otherwise designated in writing by the copyright -owner as "Not a Contribution." - - - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf -of whom a Contribution has been received by Licensor and subsequently incorporated -within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of this -License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, -no-charge, royalty-free, irrevocable copyright license to reproduce, prepare -Derivative Works of, publicly display, publicly perform, sublicense, and distribute -the Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this License, -each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, -no-charge, royalty-free, irrevocable (except as stated in this section) patent -license to make, have made, use, offer to sell, sell, import, and otherwise -transfer the Work, where such license applies only to those patent claims -licensable by such Contributor that are necessarily infringed by their Contribution(s) -alone or by combination of their Contribution(s) with the Work to which such -Contribution(s) was submitted. If You institute patent litigation against -any entity (including a cross-claim or counterclaim in a lawsuit) alleging -that the Work or a Contribution incorporated within the Work constitutes direct -or contributory patent infringement, then any patent licenses granted to You -under this License for that Work shall terminate as of the date such litigation -is filed. - -4. Redistribution. You may reproduce and distribute copies of the Work or -Derivative Works thereof in any medium, with or without modifications, and -in Source or Object form, provided that You meet the following conditions: - -(a) You must give any other recipients of the Work or Derivative Works a copy -of this License; and - -(b) You must cause any modified files to carry prominent notices stating that -You changed the files; and - -(c) You must retain, in the Source form of any Derivative Works that You distribute, -all copyright, patent, trademark, and attribution notices from the Source -form of the Work, excluding those notices that do not pertain to any part -of the Derivative Works; and - -(d) If the Work includes a "NOTICE" text file as part of its distribution, -then any Derivative Works that You distribute must include a readable copy -of the attribution notices contained within such NOTICE file, excluding those -notices that do not pertain to any part of the Derivative Works, in at least -one of the following places: within a NOTICE text file distributed as part -of the Derivative Works; within the Source form or documentation, if provided -along with the Derivative Works; or, within a display generated by the Derivative -Works, if and wherever such third-party notices normally appear. The contents -of the NOTICE file are for informational purposes only and do not modify the -License. You may add Your own attribution notices within Derivative Works -that You distribute, alongside or as an addendum to the NOTICE text from the -Work, provided that such additional attribution notices cannot be construed -as modifying the License. - -You may add Your own copyright statement to Your modifications and may provide -additional or different license terms and conditions for use, reproduction, -or distribution of Your modifications, or for any such Derivative Works as -a whole, provided Your use, reproduction, and distribution of the Work otherwise -complies with the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, any -Contribution intentionally submitted for inclusion in the Work by You to the -Licensor shall be under the terms and conditions of this License, without -any additional terms or conditions. Notwithstanding the above, nothing herein -shall supersede or modify the terms of any separate license agreement you -may have executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, -trademarks, service marks, or product names of the Licensor, except as required -for reasonable and customary use in describing the origin of the Work and -reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to -in writing, Licensor provides the Work (and each Contributor provides its -Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -KIND, either express or implied, including, without limitation, any warranties -or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR -A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness -of using or redistributing the Work and assume any risks associated with Your -exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether -in tort (including negligence), contract, or otherwise, unless required by -applicable law (such as deliberate and grossly negligent acts) or agreed to -in writing, shall any Contributor be liable to You for damages, including -any direct, indirect, special, incidental, or consequential damages of any -character arising as a result of this License or out of the use or inability -to use the Work (including but not limited to damages for loss of goodwill, -work stoppage, computer failure or malfunction, or any and all other commercial -damages or losses), even if such Contributor has been advised of the possibility -of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing the Work -or Derivative Works thereof, You may choose to offer, and charge a fee for, -acceptance of support, warranty, indemnity, or other liability obligations -and/or rights consistent with this License. However, in accepting such obligations, -You may act only on Your own behalf and on Your sole responsibility, not on -behalf of any other Contributor, and only if You agree to indemnify, defend, -and hold each Contributor harmless for any liability incurred by, or claims -asserted against, such Contributor by reason of your accepting any such warranty -or additional liability. END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - -To apply the Apache License to your work, attach the following boilerplate -notice, with the fields enclosed by brackets "[]" replaced with your own identifying -information. (Don't include the brackets!) The text should be enclosed in -the appropriate comment syntax for the file format. We also recommend that -a file or class name and description of purpose be included on the same "printed -page" as the copyright notice for easier identification within third-party -archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); - -you may not use this file except in compliance with the License. - -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software - -distributed under the License is distributed on an "AS IS" BASIS, - -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - -See the License for the specific language governing permissions and - -limitations under the License. - --------------------------------------------------------------------------------- -spirv-cross - -Copyright (c) 2014-2020 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and/or associated documentation files (the "Materials"), -to deal in the Materials without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Materials, and to permit persons to whom the -Materials are furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Materials. - -MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS -STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND -HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS -IN THE MATERIALS. --------------------------------------------------------------------------------- -spirv-cross - -Copyright (c) 2014-2020 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and/or associated documentation files (the "Materials"), -to deal in the Materials without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Materials, and to permit persons to whom the -Materials are furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Materials. - -MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS -STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND -HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS -IN THE MATERIALS. --------------------------------------------------------------------------------- -spirv-cross - -Copyright 2016-2021 The Khronos Group Inc. -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -spirv-cross - -Copyright 2019-2021 Hans-Kristian Arntzen - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (C) 2019 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2015-2016 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2015-2016 The Khronos Group Inc. -Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights -reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2015-2020 The Khronos Group Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights -reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2015-2022 The Khronos Group Inc. -Modifications Copyright (C) 2020-2024 Advanced Micro Devices, Inc. All -rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2016 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2016 Google Inc. -Copyright (c) 2025 Arm Ltd. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2016 Google Inc. -Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights -reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2017 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2017 Google Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights -reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2017 Google Inc. -Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights -reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2017 LunarG Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2017 Pierre Moreau - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2017 The Khronos Group Inc. -Copyright (c) 2017 Valve Corporation -Copyright (c) 2017 LunarG Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2017 The Khronos Group Inc. -Copyright (c) 2017 Valve Corporation -Copyright (c) 2017 LunarG Inc. -Copyright (c) 2018 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2017 The Khronos Group Inc. -Copyright (c) 2017 Valve Corporation -Copyright (c) 2017 LunarG Inc. -Copyright (c) 2018-2021 Google LLC - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2017 The Khronos Group Inc. -Copyright (c) 2017 Valve Corporation -Copyright (c) 2017 LunarG Inc. -Copyright (c) 2019 Google LLC - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2017 The Khronos Group Inc. -Copyright (c) 2017 Valve Corporation -Copyright (c) 2017 LunarG Inc. -Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights -reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2018 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2018 Google LLC - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2018 Google LLC. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2018 Google LLC. -Copyright (c) 2019 NVIDIA Corporation - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2018 Google LLC. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights -reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2018 Google LLC. -Modifications Copyright (C) 2020-2024 Advanced Micro Devices, Inc. All -rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2018 Google LLC. -Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights -reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2018 Google LLC. -Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights -reserved. -Copyright (c) 2024 NVIDIA Corporation - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2018 LunarG Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2018 The Khronos Group Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2018 The Khronos Group Inc. -Copyright (c) 2018 Valve Corporation -Copyright (c) 2018 LunarG Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2019 Google LLC - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2019 Google LLC -Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights -reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2019 Google LLC. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2019 The Khronos Group Inc. -Copyright (c) 2019 Valve Corporation -Copyright (c) 2019 LunarG Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2019 Valve Corporation -Copyright (c) 2019 LunarG Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2020 André Perez Maselco - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2020 Google LLC - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2020 Stefano Milizia - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2020 Stefano Milizia -Copyright (c) 2020 Google LLC - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2020 The Khronos Group Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2020 Vasyl Teliman - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2020-2022 Google LLC -Copyright (c) 2022 LunarG Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2021 Alastair F. Donaldson - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2021 Google LLC. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2021 Mostafa Ashraf - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2021 Shiyu Liu - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2021 The Khronos Group Inc. -Copyright (c) 2021 Valve Corporation -Copyright (c) 2021 LunarG Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2021 ZHOU He - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2022 Advanced Micro Devices, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2022 Google LLC - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2022 Google LLC. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2022 The Khronos Group Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2022 The Khronos Group Inc. -Copyright (c) 2022 LunarG Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2023 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2023 Google LLC. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2023 LunarG Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2023-2025 Arm Ltd. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2024 Epic Games, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2024 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2024 Google LLC - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2024 NVIDIA Corporation - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2025 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2025 Google LLC - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2025 LunarG Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright (c) 2025 The Khronos Group Inc. -Copyright (c) 2025 Google LLC - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright 2018 The Go Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright 2019 Google LLC - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright 2019 The Go Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright 2025 Google LLC - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spirv-tools - -Copyright 2025 The Khronos Group Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -spring_animation - - - -Copyright (c) Meta Platforms, Inc. and affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -sqlite - -The source code for SQLite is in the public domain. No claim of -copyright is made on any part of the core source code. (The -documentation and test code is a different matter - some sections of -documentation and test logic are governed by open-source licenses.) -All contributors to the SQLite core software have signed affidavits -specifically disavowing any copyright interest in the code. This means -that anybody is able to legally do anything they want with the SQLite -source code. - -There are other SQL database engines with liberal licenses that allow -the code to be broadly and freely used. But those other engines are -still governed by copyright law. SQLite is different in that copyright -law simply does not apply. - -The source code files for other SQL database engines typically begin -with a comment describing your legal rights to view and copy that -file. The SQLite source code contains no license since it is not -governed by copyright. Instead of a license, the SQLite source code -offers a blessing: - -May you do good and not evil -May you find forgiveness for yourself and forgive others -May you share freely, never taking more than you give. --------------------------------------------------------------------------------- -stack_trace - -Copyright 2014, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -swiftshader - - - -Copyright © 2008-2011 Kristian Høgsberg -Copyright © 2010-2011 Intel Corporation -Copyright © 2012-2013 Collabora, Ltd. - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation files -(the "Software"), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, -publish, distribute, sublicense, and/or sell copies of the Software, -and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice (including the -next paragraph) shall be included in all copies or substantial -portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS -BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN -ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -swiftshader - -Copyright (C) 2001-2006 Bart Massey, Jamey Sharp, and Josh Triplett. -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN -ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -swiftshader - -Copyright (C) 2008 The Android Open Source Project -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS -OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED -AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT -OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. --------------------------------------------------------------------------------- -swiftshader - -Copyright 2016 The SwiftShader Authors. All Rights Reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -swiftshader - -Copyright 2018 The SwiftShader Authors. All Rights Reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -swiftshader - -Copyright 2018 The SwiftShader Authors. All Rights Reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -swiftshader - -Copyright 2019 The SwiftShader Authors. All Rights Reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -swiftshader - -Copyright 2019 The SwiftShader Authors. All Rights Reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -swiftshader - -Copyright 2019 The SwiftShader Authors. All Rights Reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -swiftshader - -Copyright 2020 The SwiftShader Authors. All Rights Reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -swiftshader - -Copyright 2020 The SwiftShader Authors. All Rights Reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -swiftshader - -Copyright 2021 The SwiftShader Authors. All Rights Reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -swiftshader - -Copyright 2022 The SwiftShader Authors. All Rights Reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -swiftshader - -Copyright © 2008 Kristian Høgsberg - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice (including the -next paragraph) shall be included in all copies or substantial -portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS -BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN -ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -swiftshader - -Copyright © 2012 Intel Corporation - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice (including the -next paragraph) shall be included in all copies or substantial -portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS -BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN -ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -swiftshader -vulkan -vulkan-headers - -Copyright 2014-2025 The Khronos Group Inc. - -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -swiftshader -vulkan -vulkan-headers - -Copyright 2015-2023 The Khronos Group Inc. -Copyright 2015-2023 Valve Corporation -Copyright 2015-2023 LunarG, Inc. - -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -swiftshader -vulkan -vulkan-headers - -Copyright 2015-2025 The Khronos Group Inc. - -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -swiftshader -vulkan-utility-libraries - -Copyright 2023-2025 The Khronos Group Inc. -Copyright 2023-2025 Valve Corporation -Copyright 2023-2025 LunarG, Inc. - -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -term_glyph - -Copyright 2017, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -test_api - -Copyright 2018, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -test_shaders - -Copyright (c) 2022 by Selman Ay (https://codepen.io/selmanays/pen/yLVmEqY) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -theme_extensions_builder_annotation - -MIT License - -Copyright (c) 2022 https://github.com/pro100andrey - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -universal_image - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - --------------------------------------------------------------------------------- -vector_math - -Copyright 2015, Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Copyright (C) 2013 Andrew Magill - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. - --------------------------------------------------------------------------------- -volk - -Copyright (c) 2018-2019 Arseny Kapoulkine - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -volk - -Copyright (c) 2018-2024 Arseny Kapoulkine - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -vulkan - -// Copyright (c) 2018 Google Inc. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -vulkan-headers - -Copyright (c) 2018-2019 Collabora, Ltd. -Copyright 2013-2025 The Khronos Group Inc. - -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -vulkan-headers - -Copyright 2013-2025 The Khronos Group Inc. - -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -vulkan-headers - -Copyright 2021-2025 The Khronos Group Inc. -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -vulkan-headers - -Copyright 2023-2025 The Khronos Group Inc. -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -vulkan-tools - - -Copyright (c) 2015-2017 The Khronos Group Inc. -Copyright (c) 2015-2017 Valve Corporation -Copyright (c) 2015-2017 LunarG, Inc. -Copyright (c) 2015-2017 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-tools - - -Copyright (c) 2018 The Khronos Group Inc. -Copyright (c) 2018 Valve Corporation -Copyright (c) 2018 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-tools - - -Copyright 2014, 2017 The Android Open Source Project - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-tools - -Copyright (c) 2015-2016 The Khronos Group Inc. -Copyright (c) 2015-2016 Valve Corporation -Copyright (c) 2015-2016 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-tools - -Copyright (c) 2015-2018, 2023 The Khronos Group Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-tools - -Copyright (c) 2015-2019 The Khronos Group Inc. -Copyright (c) 2015-2019 Valve Corporation -Copyright (c) 2015-2019 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-tools - -Copyright (c) 2015-2019 The Khronos Group Inc. -Copyright (c) 2015-2019 Valve Corporation -Copyright (c) 2015-2019 LunarG, Inc. -Copyright (c) 2025 The Fuchsia Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-tools - -Copyright (c) 2015-2021 The Khronos Group Inc. -Copyright (c) 2015-2021 Valve Corporation -Copyright (c) 2015-2021 LunarG, Inc. -Copyright (c) 2023-2024 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-tools - -Copyright (c) 2015-2025 The Khronos Group Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-tools - -Copyright (c) 2016 Google, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-tools - -Copyright (c) 2018 The Khronos Group Inc. -Copyright (c) 2018 Valve Corporation -Copyright (c) 2018 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-tools - -Copyright (c) 2018-2020 The Khronos Group Inc. -Copyright (c) 2018-2020 Valve Corporation -Copyright (c) 2018-2020 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-tools - -Copyright (c) 2019 The Khronos Group Inc. -Copyright (c) 2019 Valve Corporation -Copyright (c) 2019 LunarG, Inc. -Copyright (c) 2023 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-tools - -Copyright (c) 2019-2022 The Khronos Group Inc. -Copyright (c) 2019-2022 Valve Corporation -Copyright (c) 2019-2022 LunarG, Inc. -Copyright (c) 2023-2024 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-tools - -Copyright (c) 2020 The Khronos Group Inc. -Copyright (c) 2020 Valve Corporation -Copyright (c) 2020 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-tools - -Copyright (c) 2025 The Fuchsia Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-tools -vulkan-utility-libraries - -Copyright 2023 The Khronos Group Inc. -Copyright 2023 Valve Corporation -Copyright 2023 LunarG, Inc. - -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -vulkan-tools -vulkan-validation-layers - -Copyright (c) 2024 The Khronos Group Inc. -Copyright (c) 2024 Valve Corporation -Copyright (c) 2024 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-tools -vulkan-validation-layers - -Copyright (c) 2025 The Khronos Group Inc. -Copyright (c) 2025 Valve Corporation -Copyright (c) 2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-utility-libraries - -Copyright (c) 2015-2017, 2019-2024 The Khronos Group Inc. -Copyright (c) 2015-2017, 2019-2024 Valve Corporation -Copyright (c) 2015-2017, 2019-2024 LunarG, Inc. - -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -vulkan-utility-libraries - -Copyright (c) 2015-2017, 2019-2024 The Khronos Group Inc. -Copyright (c) 2015-2017, 2019-2024 Valve Corporation -Copyright (c) 2015-2017, 2019-2024 LunarG, Inc. -Modifications Copyright (C) 2022 RasterGrid Kft. - -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -vulkan-utility-libraries - -Copyright (c) 2015-2024 The Khronos Group Inc. -Copyright (c) 2015-2024 Valve Corporation -Copyright (c) 2015-2024 LunarG, Inc. -Copyright (c) 2015-2024 Google Inc. - -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -vulkan-utility-libraries - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (c) 2015-2025 Google Inc. - -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -vulkan-utility-libraries - -Copyright (c) 2019-2024 The Khronos Group Inc. -Copyright (c) 2019-2024 Valve Corporation -Copyright (c) 2019-2024 LunarG, Inc. -Copyright (C) 2019-2024 Google Inc. - -SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------- -vulkan-validation-layers - - - - -Copyright (c) 2017-2022 Advanced Micro Devices, Inc. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -=========================================================================================== -File: layers/external/inplace_function.h -File: layers/external/parallel_hashmap/phmap_utils.h - -Boost Software License - Version 1.0 - August 17th, 2003 - -Permission is hereby granted, free of charge, to any person or organization -obtaining a copy of the software and accompanying documentation covered by -this license (the "Software") to use, reproduce, display, distribute, -execute, and transmit the Software, and to prepare derivative works of the -Software, and to permit third-parties to whom the Software is furnished to -do so, all subject to the following: - -The copyright notices in the Software and this entire statement, including -the above license grant, this restriction and the following disclaimer, -must be included in all copies of the Software, in whole or in part, and -all derivative works of the Software, unless such copies or derivative -works are solely in the form of machine-executable object code generated by -a source language processor. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT -SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -vulkan-validation-layers - - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (c) 2015-2024 Google Inc. -Copyright (c) 2023-2024 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (c) 2015-2025 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (c) 2015-2025 Google Inc. -Copyright (c) 2015-2025 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (c) 2015-2025 Google Inc. -Copyright (c) 2023-2025 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - - -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - - -Copyright (c) 2016-2025 Google Inc. -Copyright (c) 2016-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - - -Copyright (c) 2017-2024 Advanced Micro Devices, Inc. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -vulkan-validation-layers - - -Copyright (c) 2020-2025 The Khronos Group Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - - -Copyright (c) 2021-2024 The Khronos Group Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - - -Copyright (c) 2021-2025 The Khronos Group Inc. -Copyright (c) 2021-2025 Valve Corporation -Copyright (c) 2021-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - - -Copyright (c) 2021-2025 Valve Corporation -Copyright (c) 2021-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - - -Copyright (c) 2023-2025 Google Inc. -Copyright (c) 2023-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - - -Copyright (c) 2023-2025 The Khronos Group Inc. -Copyright (c) 2023-2025 Valve Corporation - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - - -Copyright (c) 2023-2025 The Khronos Group Inc. -Copyright (c) 2023-2025 Valve Corporation -Copyright (c) 2023-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - - -Copyright (c) 2023-2025 Valve Corporation -Copyright (c) 2023-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - - -Copyright (c) 2024-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - - -Copyright (c) 2025 The Khronos Group Inc. -Copyright (c) 2025 Valve Corporation -Copyright (c) 2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - - -Copyright (c) 2025 Valve Corporation -Copyright (c) 2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - - -Copyright 2014-2024 Valve Software -Copyright 2015-2024 Google Inc. -Copyright 2019-2024 LunarG, Inc. -All Rights Reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (C) 2012-2021 Yann Collet - -BSD 2-Clause License (https://www.opensource.org/licenses/bsd-license.php) - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2016 The Khronos Group Inc. -Copyright (c) 2015-2023 Valve Corporation -Copyright (c) 2015-2023 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2016, 2020-2025 The Khronos Group Inc. -Copyright (c) 2015-2016, 2020-2025 Valve Corporation -Copyright (c) 2015-2016, 2020-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2017, 2019-2025 The Khronos Group Inc. -Copyright (c) 2015-2017, 2019-2025 Valve Corporation -Copyright (c) 2015-2017, 2019-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2017, 2019-2025 The Khronos Group Inc. -Copyright (c) 2015-2017, 2019-2025 Valve Corporation -Copyright (c) 2015-2017, 2019-2025 LunarG, Inc. -Modifications Copyright (C) 2022 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2020 The Khronos Group Inc. -Copyright (c) 2015-2023 Valve Corporation -Copyright (c) 2015-2023 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2024 The Khronos Group Inc. -Copyright (C) 2025 Arm Limited. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2024 The Khronos Group Inc. -Copyright (c) 2015-2024 Valve Corporation -Copyright (c) 2015-2024 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2024 The Khronos Group Inc. -Copyright (c) 2015-2024 Valve Corporation -Copyright (c) 2015-2024 LunarG, Inc. -Copyright (C) 2015-2023 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2024 The Khronos Group Inc. -Copyright (c) 2015-2024 Valve Corporation -Copyright (c) 2015-2024 LunarG, Inc. -Copyright (C) 2015-2024 Google Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2024 The Khronos Group Inc. -Copyright (c) 2015-2024 Valve Corporation -Copyright (c) 2015-2024 LunarG, Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. -Modifications Copyright (C) 2022 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2024 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2024 Google Inc. -Modifications Copyright (C) 2020-2024 Advanced Micro Devices, Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2023 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2023 Google Inc. -Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. -Modifications Copyright (C) 2022 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2024 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2024 Google Inc. -Copyright (c) 2025 Arm Limited. -Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2024 Google Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2024 Google Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. -Modifications Copyright (C) 2022 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2024 Google Inc. -Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2024 Google Inc. -Modifications Copyright (C) 2020-2024 Advanced Micro Devices, Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2025 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2025 Google Inc. -Copyright (C) 2025 Arm Limited. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2025 Google Inc. -Copyright (C) 2025 Arm Limited. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. -Modifications Copyright (C) 2022 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2025 Google Inc. -Copyright (C) 2025 Arm Limited. -Modifications Copyright (C) 2020-2025 Advanced Micro Devices, Inc. All rights reserved. -Modifications Copyright (C) 2022-2025 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2025 Google Inc. -Copyright (c) 2025 Arm Limited. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2025 Google Inc. -Copyright (c) 2025 Arm Limited. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2025 Google Inc. -Copyright (c) 2025 Arm Limited. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. -Modifications Copyright (C) 2022 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2025 Google Inc. -Copyright (c) 2025 Arm Limited. -Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2025 Google Inc. -Copyright (c) 2025 Arm Limited. -Modifications Copyright (C) 2020-2024 Advanced Micro Devices, Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2025 Google Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2025 Google Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. -Modifications Copyright (C) 2022 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2025 Google Inc. -Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2025 Google Inc. -Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. -Copyright (c) 2025 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2025 Google Inc. -Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. -Modifications Copyright (C) 2022 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (C) 2015-2025 Google Inc. -Modifications Copyright (C) 2020-2024 Advanced Micro Devices, Inc. All rights reserved. -Modifications Copyright (C) 2022-2024 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Copyright (c) 2015-2024 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. -Modifications Copyright (C) 2022 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2015-2025 The Khronos Group Inc. -Copyright (c) 2015-2025 Valve Corporation -Copyright (c) 2015-2025 LunarG, Inc. -Modifications Copyright (C) 2020-2022 Advanced Micro Devices, Inc. All rights reserved. -Modifications Copyright (C) 2022 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2018-2021 The Khronos Group Inc. -Copyright (c) 2018-2023 Valve Corporation -Copyright (c) 2018-2023 LunarG, Inc. -Copyright (C) 2018-2021 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2018-2024 The Khronos Group Inc. -Copyright (c) 2018-2024 Valve Corporation -Copyright (c) 2018-2024 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2018-2025 The Khronos Group Inc. -Copyright (c) 2018-2025 Valve Corporation -Copyright (c) 2018-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2018-2025 The Khronos Group Inc. -Copyright (c) 2018-2025 Valve Corporation -Copyright (c) 2018-2025 LunarG, Inc. -Copyright (c) 2025 Arm Limited. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2019, 2021, 2023-2025 The Khronos Group Inc. -Copyright (c) 2019, 2021, 2023-2025 Valve Corporation -Copyright (c) 2019, 2021, 2023-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2019-2024 The Khronos Group Inc. -Copyright (c) 2019-2024 Valve Corporation -Copyright (c) 2019-2024 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2019-2025 The Khronos Group Inc. -Copyright (c) 2019-2025 Valve Corporation -Copyright (c) 2019-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2019-2025 The Khronos Group Inc. -Copyright (c) 2019-2025 Valve Corporation -Copyright (c) 2019-2025 LunarG, Inc. -Copyright (C) 2019-2025 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2019-2025 The Khronos Group Inc. -Copyright (c) 2019-2025 Valve Corporation -Copyright (c) 2019-2025 LunarG, Inc. -Copyright (C) 2025 Arm Limited. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2019-2025 The Khronos Group Inc. -Copyright (c) 2019-2025 Valve Corporation -Copyright (c) 2019-2025 LunarG, Inc. -Modifications Copyright (C) 2022 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2019-2025 Valve Corporation -Copyright (c) 2019-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2020-2025 The Khronos Group Inc. -Copyright (c) 2020-2025 Valve Corporation -Copyright (c) 2020-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2020-2025 The Khronos Group Inc. -Copyright (c) 2020-2025 Valve Corporation -Copyright (c) 2020-2025 LunarG, Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2021-2025 The Khronos Group Inc. -Copyright (c) 2021-2025 Valve Corporation -Copyright (c) 2021-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2021-2025 The Khronos Group Inc. -Copyright (c) 2021-2025 Valve Corporation -Copyright (c) 2021-2025 LunarG, Inc. -Copyright (C) 2021-2022 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2021-2025 The Khronos Group Inc. -Copyright (c) 2021-2025 Valve Corporation -Copyright (c) 2021-2025 LunarG, Inc. -Copyright (C) 2021-2025 Google Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2021-2025 The Khronos Group Inc. -Copyright (c) 2021-2025 Valve Corporation -Copyright (c) 2021-2025 LunarG, Inc. -Copyright (C) 2021-2025 Google Inc. -Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2021-2025 The Khronos Group Inc. -Copyright (c) 2021-2025 Valve Corporation -Copyright (c) 2021-2025 LunarG, Inc. -Copyright (c) 2025 Arm Limited. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2021-2025 The Khronos Group Inc. -Copyright (c) 2025 Arm Limited. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2022-2023 The Khronos Group Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2022-2024 The Khronos Group Inc. -Copyright (c) 2022-2024 RasterGrid Kft. -Modifications Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2022-2025 The Khronos Group Inc. -Copyright (c) 2022-2025 Valve Corporation -Copyright (c) 2022-2025 LunarG, Inc. -Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2023 The Khronos Group Inc. -Copyright (c) 2023 Valve Corporation -Copyright (c) 2023 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2023-2024 LunarG, Inc. -Copyright (c) 2023-2024 Valve Corporation - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2023-2024 Nintendo -Copyright (c) 2023-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2023-2025 LunarG, Inc. -Copyright (c) 2023-2025 Valve Corporation -Copyright (c) 2025 Arm Limited. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2023-2025 Nintendo -Copyright (c) 2023-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2023-2025 The Khronos Group Inc. -Copyright (c) 2023-2025 Valve Corporation -Copyright (c) 2023-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2023-2025 The Khronos Group Inc. -Copyright (c) 2023-2025 Valve Corporation -Copyright (c) 2023-2025 LunarG, Inc. -Copyright (c) 2025 Arm Limited. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2023-2025 Valve Corporation -Copyright (c) 2023-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2024 The Khronos Group Inc. -Copyright (c) 2024 LunarG, Inc. -Copyright (c) 2024 Advanced Micro Devices, Inc. All rights reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2024 The Khronos Group Inc. -Copyright (c) 2025 Valve Corporation -Copyright (c) 2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2024 Valve Corporation -Copyright (c) 2024 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2024-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2024-2025 The Khronos Group Inc. -Copyright (c) 2024-2025 Valve Corporation -Copyright (c) 2024-2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2024-2025 The Khronos Group Inc. -Copyright (c) 2024-2025 Valve Corporation -Copyright (c) 2024-2025 LunarG, Inc. -Copyright (c) 2025 Arm Limited. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2025 The Khronos Group Inc. -Copyright (C) 2025 Arm Limited. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright (c) 2025 Valve Corporation -Copyright (c) 2025 LunarG, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -Copyright 2017 The Glslang Authors. All rights reserved. -Copyright (c) 2018-2025 Valve Corporation -Copyright (c) 2018-2025 LunarG, Inc. -Copyright (c) 2023-2023 RasterGrid Kft. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -vulkan-validation-layers - -The majority of files in this project use the Apache 2.0 License. -There are a few exceptions and their license can be found in the source. -Any license deviations from Apache 2.0 are "more permissive" licenses. -Any file without a license in it's source defaults to the repository Apache 2.0 License. - -=========================================================================================== - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. --------------------------------------------------------------------------------- -vulkan_memory_allocator - - - -Copyright (C) 1997-2020 by Dimitri van Heesch - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software -and associated documentation files (the "Software"), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, publish, distribute, -sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or -substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING -BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -vulkan_memory_allocator - - - -Copyright (c) 2021 - 2022 jothepro - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -vulkan_memory_allocator - - -Copyright (c) 2017-2025 Advanced Micro Devices, Inc. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -vulkan_memory_allocator - - -Copyright (c) 2018-2025 Advanced Micro Devices, Inc. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -vulkan_memory_allocator - -Copyright (c) 2017-2025 Advanced Micro Devices, Inc. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -web - -Copyright 2023, the Dart project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - --------------------------------------------------------------------------------- -web_locale_keymap - - - -Copyright (c) 2015 - present Microsoft Corporation - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -xml - -The MIT License - -Copyright (c) 2006-2025 Lukas Renggli. -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - --------------------------------------------------------------------------------- -xxhash - -Copyright (C) 2012-2016, Yann Collet - - BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -xxhash - -Copyright (C) 2012-2016, Yann Collet. - -BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -xxhash - -xxHash Library -Copyright (c) 2012-2014, Yann Collet -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, this - list of conditions and the following disclaimer in the documentation and/or - other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -yaml - -Copyright (c) 2014, the Dart project authors. -Copyright (c) 2006, Kirill Simonov. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - --------------------------------------------------------------------------------- -yapf - -Copyright 2022 Bill Wendling, All Rights Reserved. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. --------------------------------------------------------------------------------- -yapf_diff - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. --------------------------------------------------------------------------------- -zlib - -Copyright (C) 1998-2005 Gilles Vollant --------------------------------------------------------------------------------- -zlib - -Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html ) - -Modifications for Zip64 support -Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) - -For more info read MiniZip_info.txt - ---------------------------------------------------------------------------- - -Condition of use and distribution are the same than zlib : - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not -claim that you wrote the original software. If you use this software -in a product, an acknowledgment in the product documentation would be -appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be -misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -zlib - -Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html ) - -Modifications of Unzip for Zip64 -Copyright (C) 2007-2008 Even Rouault - -Modifications for Zip64 support on both zip and unzip -Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) - -For more info read MiniZip_info.txt - ---------------------------------------------------------------------------------- - -Condition of use and distribution are the same than zlib : - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not -claim that you wrote the original software. If you use this software -in a product, an acknowledgment in the product documentation would be -appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be -misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -zlib - -Copyright (C) 2017 ARM, Inc. -Copyright 2017 The Chromium Authors -Use of this source code is governed by a BSD-style license that can be -found in the Chromium source repository LICENSE file. --------------------------------------------------------------------------------- -zlib - -Copyright 2017 The Chromium Authors -Use of this source code is governed by a BSD-style license that can be -found in the Chromium source repository LICENSE file. --------------------------------------------------------------------------------- -zlib - -Copyright 2017 The Chromium Authors -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -zlib - -Copyright 2018 The Chromium Authors -Use of this source code is governed by a BSD-style license that can be -found in the Chromium source repository LICENSE file. --------------------------------------------------------------------------------- -zlib - -Copyright 2019 The Chromium Authors -Use of this source code is governed by a BSD-style license that can be -found in the Chromium source repository LICENSE file. --------------------------------------------------------------------------------- -zlib - -Copyright 2022 The Chromium Authors -Use of this source code is governed by a BSD-style license that can be -found in the Chromium source repository LICENSE file. --------------------------------------------------------------------------------- -zlib - -Copyright 2022 The Chromium Authors -Use of this source code is governed by a BSD-style license that can be -found in the LICENSE file. --------------------------------------------------------------------------------- -zlib - -Copyright 2022 The Chromium Authors -Use of this source code is governed by a BSD-style license that can be -found in the chromium source repository LICENSE file. --------------------------------------------------------------------------------- -zlib - -version 1.2.12, March 27th, 2022 - -Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -zlib - -version 1.3.0.1, August xxth, 2023 - -Copyright (C) 1995-2023 Jean-loup Gailly and Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not -claim that you wrote the original software. If you use this software -in a product, an acknowledgment in the product documentation would be -appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be -misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. \ No newline at end of file diff --git a/flutter_monisuo/build/web/assets/fonts/MaterialIcons-Regular.otf b/flutter_monisuo/build/web/assets/fonts/MaterialIcons-Regular.otf deleted file mode 100644 index e93bb36..0000000 Binary files a/flutter_monisuo/build/web/assets/fonts/MaterialIcons-Regular.otf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/build_font/LucideVariable-w100.ttf b/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/build_font/LucideVariable-w100.ttf deleted file mode 100644 index 5155fbc..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/build_font/LucideVariable-w100.ttf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/build_font/LucideVariable-w200.ttf b/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/build_font/LucideVariable-w200.ttf deleted file mode 100644 index cf6807e..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/build_font/LucideVariable-w200.ttf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/build_font/LucideVariable-w300.ttf b/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/build_font/LucideVariable-w300.ttf deleted file mode 100644 index 0c65714..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/build_font/LucideVariable-w300.ttf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/build_font/LucideVariable-w400.ttf b/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/build_font/LucideVariable-w400.ttf deleted file mode 100644 index 1d438b9..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/build_font/LucideVariable-w400.ttf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/build_font/LucideVariable-w500.ttf b/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/build_font/LucideVariable-w500.ttf deleted file mode 100644 index 477cc1c..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/build_font/LucideVariable-w500.ttf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/build_font/LucideVariable-w600.ttf b/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/build_font/LucideVariable-w600.ttf deleted file mode 100644 index 25e7366..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/build_font/LucideVariable-w600.ttf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/lucide.ttf b/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/lucide.ttf deleted file mode 100644 index 693510f..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/lucide_icons_flutter/assets/lucide.ttf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-Black.otf b/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-Black.otf deleted file mode 100644 index 4f9a84e..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-Black.otf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-Bold.otf b/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-Bold.otf deleted file mode 100644 index 928753b..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-Bold.otf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-Light.otf b/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-Light.otf deleted file mode 100644 index 6e01995..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-Light.otf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-Medium.otf b/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-Medium.otf deleted file mode 100644 index 82fa9cf..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-Medium.otf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-Regular.otf b/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-Regular.otf deleted file mode 100644 index 6deee3d..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-Regular.otf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-SemiBold.otf b/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-SemiBold.otf deleted file mode 100644 index 1effc99..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-SemiBold.otf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-Thin.otf b/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-Thin.otf deleted file mode 100644 index a8f8527..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-Thin.otf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-UltraBlack.otf b/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-UltraBlack.otf deleted file mode 100644 index 212c0d7..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-UltraBlack.otf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-UltraLight.otf b/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-UltraLight.otf deleted file mode 100644 index febc814..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/Geist-UltraLight.otf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-Black.otf b/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-Black.otf deleted file mode 100644 index f06fe54..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-Black.otf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-Bold.otf b/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-Bold.otf deleted file mode 100644 index dd3702a..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-Bold.otf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-Light.otf b/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-Light.otf deleted file mode 100644 index 24670a6..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-Light.otf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-Medium.otf b/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-Medium.otf deleted file mode 100644 index 92d1862..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-Medium.otf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-Regular.otf b/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-Regular.otf deleted file mode 100644 index afde425..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-Regular.otf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-SemiBold.otf b/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-SemiBold.otf deleted file mode 100644 index 970f184..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-SemiBold.otf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-Thin.otf b/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-Thin.otf deleted file mode 100644 index b577904..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-Thin.otf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-UltraBlack.otf b/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-UltraBlack.otf deleted file mode 100644 index 1d33447..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-UltraBlack.otf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-UltraLight.otf b/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-UltraLight.otf deleted file mode 100644 index 6a484f4..0000000 Binary files a/flutter_monisuo/build/web/assets/packages/shadcn_ui/fonts/GeistMono-UltraLight.otf and /dev/null differ diff --git a/flutter_monisuo/build/web/assets/shaders/ink_sparkle.frag b/flutter_monisuo/build/web/assets/shaders/ink_sparkle.frag deleted file mode 100644 index 66de3c5..0000000 --- a/flutter_monisuo/build/web/assets/shaders/ink_sparkle.frag +++ /dev/null @@ -1,127 +0,0 @@ -{ - "format_version": 1, - "sksl": { - "entrypoint": "ink_sparkle_fragment_main", - "shader": "// This SkSL shader is autogenerated by spirv-cross.\n\nfloat4 flutter_FragCoord;\n\nuniform vec4 u_color;\nuniform vec4 u_composite_1;\nuniform vec2 u_center;\nuniform float u_max_radius;\nuniform vec2 u_resolution_scale;\nuniform vec2 u_noise_scale;\nuniform float u_noise_phase;\nuniform vec2 u_circle1;\nuniform vec2 u_circle2;\nuniform vec2 u_circle3;\nuniform vec2 u_rotation1;\nuniform vec2 u_rotation2;\nuniform vec2 u_rotation3;\n\nvec4 fragColor;\n\nfloat u_alpha;\nfloat u_sparkle_alpha;\nfloat u_blur;\nfloat u_radius_scale;\n\nvec2 FLT_flutter_local_FlutterFragCoord()\n{\n return flutter_FragCoord.xy;\n}\n\nmat2 FLT_flutter_local_rotate2d(vec2 rad)\n{\n return mat2(vec2(rad.x, -rad.y), vec2(rad.y, rad.x));\n}\n\nfloat FLT_flutter_local_soft_circle(vec2 uv, vec2 xy, float radius, float blur)\n{\n float blur_half = blur * 0.5;\n float d = distance(uv, xy);\n return 1.0 - smoothstep(1.0 - blur_half, 1.0 + blur_half, d / radius);\n}\n\nfloat FLT_flutter_local_circle_grid(vec2 resolution, inout vec2 p, vec2 xy, vec2 rotation, float cell_diameter)\n{\n vec2 param = rotation;\n p = (FLT_flutter_local_rotate2d(param) * (xy - p)) + xy;\n p = mod(p, vec2(cell_diameter)) / resolution;\n float cell_uv = (cell_diameter / resolution.y) * 0.5;\n float r = 0.64999997615814208984375 * cell_uv;\n vec2 param_1 = p;\n vec2 param_2 = vec2(cell_uv);\n float param_3 = r;\n float param_4 = r * 50.0;\n return FLT_flutter_local_soft_circle(param_1, param_2, param_3, param_4);\n}\n\nfloat FLT_flutter_local_turbulence(vec2 uv)\n{\n vec2 uv_scale = uv * vec2(0.800000011920928955078125);\n vec2 param = vec2(0.800000011920928955078125);\n vec2 param_1 = uv_scale;\n vec2 param_2 = u_circle1;\n vec2 param_3 = u_rotation1;\n float param_4 = 0.17000000178813934326171875;\n float _319 = FLT_flutter_local_circle_grid(param, param_1, param_2, param_3, param_4);\n float g1 = _319;\n vec2 param_5 = vec2(0.800000011920928955078125);\n vec2 param_6 = uv_scale;\n vec2 param_7 = u_circle2;\n vec2 param_8 = u_rotation2;\n float param_9 = 0.20000000298023223876953125;\n float _331 = FLT_flutter_local_circle_grid(param_5, param_6, param_7, param_8, param_9);\n float g2 = _331;\n vec2 param_10 = vec2(0.800000011920928955078125);\n vec2 param_11 = uv_scale;\n vec2 param_12 = u_circle3;\n vec2 param_13 = u_rotation3;\n float param_14 = 0.2750000059604644775390625;\n float _344 = FLT_flutter_local_circle_grid(param_10, param_11, param_12, param_13, param_14);\n float g3 = _344;\n float v = (((g1 * g1) + g2) - g3) * 0.5;\n return clamp(0.449999988079071044921875 + (0.800000011920928955078125 * v), 0.0, 1.0);\n}\n\nfloat FLT_flutter_local_soft_ring(vec2 uv, vec2 xy, float radius, float thickness, float blur)\n{\n vec2 param = uv;\n vec2 param_1 = xy;\n float param_2 = radius + thickness;\n float param_3 = blur;\n float circle_outer = FLT_flutter_local_soft_circle(param, param_1, param_2, param_3);\n vec2 param_4 = uv;\n vec2 param_5 = xy;\n float param_6 = max(radius - thickness, 0.0);\n float param_7 = blur;\n float circle_inner = FLT_flutter_local_soft_circle(param_4, param_5, param_6, param_7);\n return clamp(circle_outer - circle_inner, 0.0, 1.0);\n}\n\nfloat FLT_flutter_local_triangle_noise(inout vec2 n)\n{\n n = fract(n * vec2(5.398700237274169921875, 5.442100048065185546875));\n n += vec2(dot(n.yx, n + vec2(21.5351009368896484375, 14.3136997222900390625)));\n float xy = n.x * n.y;\n return (fract(xy * 95.43070220947265625) + fract(xy * 75.0496063232421875)) - 1.0;\n}\n\nfloat FLT_flutter_local_threshold(float v, float l, float h)\n{\n return step(l, v) * (1.0 - step(h, v));\n}\n\nfloat FLT_flutter_local_sparkle(vec2 uv, float t)\n{\n vec2 param = uv;\n float _242 = FLT_flutter_local_triangle_noise(param);\n float n = _242;\n float param_1 = n;\n float param_2 = 0.0;\n float param_3 = 0.0500000007450580596923828125;\n float s = FLT_flutter_local_threshold(param_1, param_2, param_3);\n float param_4 = n + sin(3.1415927410125732421875 * (t + 0.3499999940395355224609375));\n float param_5 = 0.100000001490116119384765625;\n float param_6 = 0.1500000059604644775390625;\n s += FLT_flutter_local_threshold(param_4, param_5, param_6);\n float param_7 = n + sin(3.1415927410125732421875 * (t + 0.699999988079071044921875));\n float param_8 = 0.20000000298023223876953125;\n float param_9 = 0.25;\n s += FLT_flutter_local_threshold(param_7, param_8, param_9);\n float param_10 = n + sin(3.1415927410125732421875 * (t + 1.0499999523162841796875));\n float param_11 = 0.300000011920928955078125;\n float param_12 = 0.3499999940395355224609375;\n s += FLT_flutter_local_threshold(param_10, param_11, param_12);\n return clamp(s, 0.0, 1.0) * 0.550000011920928955078125;\n}\n\nvoid FLT_main()\n{\n u_alpha = u_composite_1.x;\n u_sparkle_alpha = u_composite_1.y;\n u_blur = u_composite_1.z;\n u_radius_scale = u_composite_1.w;\n vec2 p = FLT_flutter_local_FlutterFragCoord();\n vec2 uv_1 = p * u_resolution_scale;\n vec2 density_uv = uv_1 - mod(p, u_noise_scale);\n float radius = u_max_radius * u_radius_scale;\n vec2 param_13 = uv_1;\n float turbulence = FLT_flutter_local_turbulence(param_13);\n vec2 param_14 = p;\n vec2 param_15 = u_center;\n float param_16 = radius;\n float param_17 = 0.0500000007450580596923828125 * u_max_radius;\n float param_18 = u_blur;\n float ring = FLT_flutter_local_soft_ring(param_14, param_15, param_16, param_17, param_18);\n vec2 param_19 = density_uv;\n float param_20 = u_noise_phase;\n float sparkle = ((FLT_flutter_local_sparkle(param_19, param_20) * ring) * turbulence) * u_sparkle_alpha;\n vec2 param_21 = p;\n vec2 param_22 = u_center;\n float param_23 = radius;\n float param_24 = u_blur;\n float wave_alpha = (FLT_flutter_local_soft_circle(param_21, param_22, param_23, param_24) * u_alpha) * u_color.w;\n vec4 wave_color = vec4(u_color.xyz * wave_alpha, wave_alpha);\n fragColor = mix(wave_color, vec4(1.0), vec4(sparkle));\n}\n\nhalf4 main(float2 iFragCoord)\n{\n flutter_FragCoord = float4(iFragCoord, 0, 0);\n FLT_main();\n return fragColor;\n}\n", - "stage": 1, - "uniforms": [ - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 0, - "name": "u_color", - "rows": 4, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 1, - "name": "u_composite_1", - "rows": 4, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 2, - "name": "u_center", - "rows": 2, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 3, - "name": "u_max_radius", - "rows": 1, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 4, - "name": "u_resolution_scale", - "rows": 2, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 5, - "name": "u_noise_scale", - "rows": 2, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 6, - "name": "u_noise_phase", - "rows": 1, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 7, - "name": "u_circle1", - "rows": 2, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 8, - "name": "u_circle2", - "rows": 2, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 9, - "name": "u_circle3", - "rows": 2, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 10, - "name": "u_rotation1", - "rows": 2, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 11, - "name": "u_rotation2", - "rows": 2, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 12, - "name": "u_rotation3", - "rows": 2, - "type": 10 - } - ] - } -} \ No newline at end of file diff --git a/flutter_monisuo/build/web/assets/shaders/stretch_effect.frag b/flutter_monisuo/build/web/assets/shaders/stretch_effect.frag deleted file mode 100644 index 36783c1..0000000 --- a/flutter_monisuo/build/web/assets/shaders/stretch_effect.frag +++ /dev/null @@ -1,64 +0,0 @@ -{ - "format_version": 1, - "sksl": { - "entrypoint": "stretch_effect_fragment_main", - "shader": "// This SkSL shader is autogenerated by spirv-cross.\n\nfloat4 flutter_FragCoord;\n\nuniform vec2 u_size;\nuniform float u_max_stretch_intensity;\nuniform float u_overscroll_x;\nuniform float u_overscroll_y;\nuniform float u_interpolation_strength;\nuniform shader u_texture;\nuniform half2 u_texture_size;\n\nvec4 frag_color;\n\nvec2 FLT_flutter_local_FlutterFragCoord()\n{\n return flutter_FragCoord.xy;\n}\n\nfloat FLT_flutter_local_ease_in(float t, float d)\n{\n return t * d;\n}\n\nfloat FLT_flutter_local_compute_overscroll_start(float in_pos, float overscroll, float u_stretch_affected_dist, float u_inverse_stretch_affected_dist, float distance_stretched, float interpolation_strength)\n{\n float offset_pos = u_stretch_affected_dist - in_pos;\n float param = offset_pos;\n float param_1 = u_inverse_stretch_affected_dist;\n float pos_based_variation = mix(1.0, FLT_flutter_local_ease_in(param, param_1), interpolation_strength);\n float stretch_intensity = overscroll * pos_based_variation;\n return distance_stretched - (offset_pos / (1.0 + stretch_intensity));\n}\n\nfloat FLT_flutter_local_compute_overscroll_end(float in_pos, float overscroll, float reverse_stretch_dist, float u_stretch_affected_dist, float u_inverse_stretch_affected_dist, float distance_stretched, float interpolation_strength, float viewport_dimension)\n{\n float offset_pos = in_pos - reverse_stretch_dist;\n float param = offset_pos;\n float param_1 = u_inverse_stretch_affected_dist;\n float pos_based_variation = mix(1.0, FLT_flutter_local_ease_in(param, param_1), interpolation_strength);\n float stretch_intensity = (-overscroll) * pos_based_variation;\n return viewport_dimension - (distance_stretched - (offset_pos / (1.0 + stretch_intensity)));\n}\n\nfloat FLT_flutter_local_compute_streched_effect(float in_pos, float overscroll, float u_stretch_affected_dist, float u_inverse_stretch_affected_dist, float distance_stretched, float distance_diff, float interpolation_strength, float viewport_dimension)\n{\n if (overscroll > 0.0)\n {\n if (in_pos <= u_stretch_affected_dist)\n {\n float param = in_pos;\n float param_1 = overscroll;\n float param_2 = u_stretch_affected_dist;\n float param_3 = u_inverse_stretch_affected_dist;\n float param_4 = distance_stretched;\n float param_5 = interpolation_strength;\n return FLT_flutter_local_compute_overscroll_start(param, param_1, param_2, param_3, param_4, param_5);\n }\n else\n {\n return distance_diff + in_pos;\n }\n }\n else\n {\n if (overscroll < 0.0)\n {\n float stretch_affected_dist_calc = viewport_dimension - u_stretch_affected_dist;\n if (in_pos >= stretch_affected_dist_calc)\n {\n float param_6 = in_pos;\n float param_7 = overscroll;\n float param_8 = stretch_affected_dist_calc;\n float param_9 = u_stretch_affected_dist;\n float param_10 = u_inverse_stretch_affected_dist;\n float param_11 = distance_stretched;\n float param_12 = interpolation_strength;\n float param_13 = viewport_dimension;\n return FLT_flutter_local_compute_overscroll_end(param_6, param_7, param_8, param_9, param_10, param_11, param_12, param_13);\n }\n else\n {\n return (-distance_diff) + in_pos;\n }\n }\n else\n {\n return in_pos;\n }\n }\n}\n\nvoid FLT_main()\n{\n vec2 uv = FLT_flutter_local_FlutterFragCoord() / u_size;\n float in_u_norm = uv.x;\n float in_v_norm = uv.y;\n bool isVertical = u_overscroll_y != 0.0;\n float overscroll_1 = isVertical ? u_overscroll_y : u_overscroll_x;\n float norm_distance_stretched = 1.0 / (1.0 + abs(overscroll_1));\n float norm_dist_diff = norm_distance_stretched - 1.0;\n float _223;\n if (isVertical)\n {\n _223 = in_u_norm;\n }\n else\n {\n float param_14 = in_u_norm;\n float param_15 = overscroll_1;\n float param_16 = 1.0;\n float param_17 = 1.0;\n float param_18 = norm_distance_stretched;\n float param_19 = norm_dist_diff;\n float param_20 = u_interpolation_strength;\n float param_21 = 1.0;\n _223 = FLT_flutter_local_compute_streched_effect(param_14, param_15, param_16, param_17, param_18, param_19, param_20, param_21);\n }\n float out_u_norm = _223;\n float _246;\n if (isVertical)\n {\n float param_22 = in_v_norm;\n float param_23 = overscroll_1;\n float param_24 = 1.0;\n float param_25 = 1.0;\n float param_26 = norm_distance_stretched;\n float param_27 = norm_dist_diff;\n float param_28 = u_interpolation_strength;\n float param_29 = 1.0;\n _246 = FLT_flutter_local_compute_streched_effect(param_22, param_23, param_24, param_25, param_26, param_27, param_28, param_29);\n }\n else\n {\n _246 = in_v_norm;\n }\n float out_v_norm = _246;\n uv.x = out_u_norm;\n uv.y = out_v_norm;\n frag_color = u_texture.eval(u_texture_size * ( uv));\n}\n\nhalf4 main(float2 iFragCoord)\n{\n flutter_FragCoord = float4(iFragCoord, 0, 0);\n FLT_main();\n return frag_color;\n}\n", - "stage": 1, - "uniforms": [ - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 0, - "name": "u_size", - "rows": 2, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 0, - "columns": 1, - "location": 1, - "name": "u_texture", - "rows": 1, - "type": 12 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 2, - "name": "u_max_stretch_intensity", - "rows": 1, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 3, - "name": "u_overscroll_x", - "rows": 1, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 4, - "name": "u_overscroll_y", - "rows": 1, - "type": 10 - }, - { - "array_elements": 0, - "bit_width": 32, - "columns": 1, - "location": 5, - "name": "u_interpolation_strength", - "rows": 1, - "type": 10 - } - ] - } -} \ No newline at end of file diff --git a/flutter_monisuo/build/web/favicon.png b/flutter_monisuo/build/web/favicon.png deleted file mode 100644 index 8aaa46a..0000000 Binary files a/flutter_monisuo/build/web/favicon.png and /dev/null differ diff --git a/flutter_monisuo/build/web/flutter_bootstrap.js b/flutter_monisuo/build/web/flutter_bootstrap.js index 2201c40..6c1d8bb 100644 --- a/flutter_monisuo/build/web/flutter_bootstrap.js +++ b/flutter_monisuo/build/web/flutter_bootstrap.js @@ -37,6 +37,6 @@ _flutter.buildConfig = {"engineRevision":"e4b8dca3f1b4ede4c30371002441c88c12187e _flutter.loader.load({ serviceWorkerSettings: { - serviceWorkerVersion: "1528833849" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */ + serviceWorkerVersion: "278213901" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */ } }); diff --git a/flutter_monisuo/build/web/flutter_service_worker.js b/flutter_monisuo/build/web/flutter_service_worker.js deleted file mode 100644 index a11c19c..0000000 --- a/flutter_monisuo/build/web/flutter_service_worker.js +++ /dev/null @@ -1,31 +0,0 @@ -'use strict'; - -self.addEventListener('install', () => { - self.skipWaiting(); -}); - -self.addEventListener('activate', (event) => { - event.waitUntil( - (async () => { - try { - await self.registration.unregister(); - } catch (e) { - console.warn('Failed to unregister the service worker:', e); - } - - try { - const clients = await self.clients.matchAll({ - type: 'window', - }); - // Reload clients to ensure they are not using the old service worker. - clients.forEach((client) => { - if (client.url && 'navigate' in client) { - client.navigate(client.url); - } - }); - } catch (e) { - console.warn('Failed to navigate some service worker clients:', e); - } - })() - ); -}); diff --git a/flutter_monisuo/build/web/icons/Icon-192.png b/flutter_monisuo/build/web/icons/Icon-192.png deleted file mode 100644 index b749bfe..0000000 Binary files a/flutter_monisuo/build/web/icons/Icon-192.png and /dev/null differ diff --git a/flutter_monisuo/build/web/icons/Icon-512.png b/flutter_monisuo/build/web/icons/Icon-512.png deleted file mode 100644 index 88cfd48..0000000 Binary files a/flutter_monisuo/build/web/icons/Icon-512.png and /dev/null differ diff --git a/flutter_monisuo/build/web/icons/Icon-maskable-192.png b/flutter_monisuo/build/web/icons/Icon-maskable-192.png deleted file mode 100644 index eb9b4d7..0000000 Binary files a/flutter_monisuo/build/web/icons/Icon-maskable-192.png and /dev/null differ diff --git a/flutter_monisuo/build/web/icons/Icon-maskable-512.png b/flutter_monisuo/build/web/icons/Icon-maskable-512.png deleted file mode 100644 index d69c566..0000000 Binary files a/flutter_monisuo/build/web/icons/Icon-maskable-512.png and /dev/null differ diff --git a/flutter_monisuo/build/web/main.dart.js b/flutter_monisuo/build/web/main.dart.js deleted file mode 100644 index 30c8648..0000000 --- a/flutter_monisuo/build/web/main.dart.js +++ /dev/null @@ -1,112481 +0,0 @@ -((a,b)=>{a[b]=a[b]||{}})(self,"$__dart_deferred_initializers__");(function dartProgram(){function copyProperties(a,b){var s=Object.keys(a) -for(var r=0;r=0)return true -if(typeof version=="function"&&version.length==0){var q=version() -if(/^\d+\.\d+\.\d+\.\d+$/.test(q))return true}}catch(p){}return false}() -function inherit(a,b){a.prototype.constructor=a -a.prototype["$i"+a.name]=a -if(b!=null){if(z){Object.setPrototypeOf(a.prototype,b.prototype) -return}var s=Object.create(b.prototype) -copyProperties(a.prototype,s) -a.prototype=s}}function inheritMany(a,b){for(var s=0;s4294967295)throw A.i(A.cR(a,0,4294967295,"length",null)) -return J.o0(new Array(a),b)}, -aR9(a,b){if(a>4294967295)throw A.i(A.cR(a,0,4294967295,"length",null)) -return J.o0(new Array(a),b)}, -vP(a,b){if(a<0)throw A.i(A.c1("Length must be a non-negative integer: "+a,null)) -return A.c(new Array(a),b.i("z<0>"))}, -b8w(a,b){if(a<0)throw A.i(A.c1("Length must be a non-negative integer: "+a,null)) -return A.c(new Array(a),b.i("z<0>"))}, -o0(a,b){var s=A.c(a,b.i("z<0>")) -s.$flags=1 -return s}, -b8x(a,b){return J.ac7(a,b)}, -aWs(a){if(a<256)switch(a){case 9:case 10:case 11:case 12:case 13:case 32:case 133:case 160:return!0 -default:return!1}switch(a){case 5760:case 8192:case 8193:case 8194:case 8195:case 8196:case 8197:case 8198:case 8199:case 8200:case 8201:case 8202:case 8232:case 8233:case 8239:case 8287:case 12288:case 65279:return!0 -default:return!1}}, -aWt(a,b){var s,r -for(s=a.length;b0;b=s){s=b-1 -r=a.charCodeAt(s) -if(r!==32&&r!==13&&!J.aWs(r))break}return b}, -px(a){if(typeof a=="number"){if(Math.floor(a)==a)return J.vQ.prototype -return J.Ch.prototype}if(typeof a=="string")return J.kH.prototype -if(a==null)return J.vR.prototype -if(typeof a=="boolean")return J.Cf.prototype -if(Array.isArray(a))return J.z.prototype -if(typeof a!="object"){if(typeof a=="function")return J.fI.prototype -if(typeof a=="symbol")return J.qN.prototype -if(typeof a=="bigint")return J.qM.prototype -return a}if(a instanceof A.Q)return a -return J.abQ(a)}, -bk3(a){if(typeof a=="number")return J.o2.prototype -if(typeof a=="string")return J.kH.prototype -if(a==null)return a -if(Array.isArray(a))return J.z.prototype -if(typeof a!="object"){if(typeof a=="function")return J.fI.prototype -if(typeof a=="symbol")return J.qN.prototype -if(typeof a=="bigint")return J.qM.prototype -return a}if(a instanceof A.Q)return a -return J.abQ(a)}, -bk(a){if(typeof a=="string")return J.kH.prototype -if(a==null)return a -if(Array.isArray(a))return J.z.prototype -if(typeof a!="object"){if(typeof a=="function")return J.fI.prototype -if(typeof a=="symbol")return J.qN.prototype -if(typeof a=="bigint")return J.qM.prototype -return a}if(a instanceof A.Q)return a -return J.abQ(a)}, -d5(a){if(a==null)return a -if(Array.isArray(a))return J.z.prototype -if(typeof a!="object"){if(typeof a=="function")return J.fI.prototype -if(typeof a=="symbol")return J.qN.prototype -if(typeof a=="bigint")return J.qM.prototype -return a}if(a instanceof A.Q)return a -return J.abQ(a)}, -b1J(a){if(typeof a=="number"){if(Math.floor(a)==a)return J.vQ.prototype -return J.Ch.prototype}if(a==null)return a -if(!(a instanceof A.Q))return J.n1.prototype -return a}, -aTp(a){if(typeof a=="number")return J.o2.prototype -if(a==null)return a -if(!(a instanceof A.Q))return J.n1.prototype -return a}, -b1K(a){if(typeof a=="number")return J.o2.prototype -if(typeof a=="string")return J.kH.prototype -if(a==null)return a -if(!(a instanceof A.Q))return J.n1.prototype -return a}, -abP(a){if(typeof a=="string")return J.kH.prototype -if(a==null)return a -if(!(a instanceof A.Q))return J.n1.prototype -return a}, -py(a){if(a==null)return a -if(typeof a!="object"){if(typeof a=="function")return J.fI.prototype -if(typeof a=="symbol")return J.qN.prototype -if(typeof a=="bigint")return J.qM.prototype -return a}if(a instanceof A.Q)return a -return J.abQ(a)}, -b5e(a,b){if(typeof a=="number"&&typeof b=="number")return a+b -return J.bk3(a).a8(a,b)}, -b(a,b){if(a==null)return b==null -if(typeof a!="object")return b!=null&&a===b -return J.px(a).j(a,b)}, -b5f(a,b){if(typeof a=="number"&&typeof b=="number")return a*b -return J.b1K(a).ak(a,b)}, -b5g(a,b){if(typeof a=="number"&&typeof b=="number")return a-b -return J.aTp(a).ac(a,b)}, -iQ(a,b){if(typeof b==="number")if(Array.isArray(a)||typeof a=="string"||A.b1P(a,a[v.dispatchPropertyName]))if(b>>>0===b&&b>>0===b&&b0?1:a<0?-1:a -return J.b1J(a).gDT(a)}, -b5n(a,b,c){return J.d5(a).xk(a,b,c)}, -aUD(a){return J.d5(a).BP(a)}, -aQ1(a,b){return J.d5(a).bJ(a,b)}, -ju(a,b,c){return J.d5(a).hI(a,b,c)}, -aUE(a,b,c){return J.abP(a).pS(a,b,c)}, -aUF(a,b){return J.d5(a).J(a,b)}, -b5o(a){return J.d5(a).jQ(a)}, -b5p(a,b){return J.bk(a).sH(a,b)}, -uy(a,b){return J.d5(a).hZ(a,b)}, -ac9(a,b){return J.d5(a).fO(a,b)}, -aUG(a,b){return J.abP(a).xI(a,b)}, -b5q(a,b,c){return J.abP(a).a6(a,b,c)}, -Me(a,b){return J.d5(a).kz(a,b)}, -b4(a){return J.aTp(a).iw(a)}, -Mf(a){return J.d5(a).eA(a)}, -cB(a){return J.px(a).k(a)}, -aUH(a,b){return J.d5(a).lw(a,b)}, -b5r(a,b){return J.d5(a).MB(a,b)}, -Cc:function Cc(){}, -Cf:function Cf(){}, -vR:function vR(){}, -Ci:function Ci(){}, -o4:function o4(){}, -Uh:function Uh(){}, -n1:function n1(){}, -fI:function fI(){}, -qM:function qM(){}, -qN:function qN(){}, -z:function z(a){this.$ti=a}, -Rh:function Rh(){}, -akt:function akt(a){this.$ti=a}, -cO:function cO(a,b,c){var _=this -_.a=a -_.b=b -_.c=0 -_.d=null -_.$ti=c}, -o2:function o2(){}, -vQ:function vQ(){}, -Ch:function Ch(){}, -kH:function kH(){}},A={ -bks(){var s,r,q=$.aSV -if(q!=null)return q -s=A.cS("Chrom(e|ium)\\/([0-9]+)\\.",!0,!1) -q=$.bN().gnq() -r=s.pv(q) -if(r!=null){q=r.b[2] -q.toString -return $.aSV=A.fU(q,null)<=110}return $.aSV=!1}, -b0y(){var s=A.aOH(1,1) -if(A.PW(s,"webgl2")!=null){if($.bN().ge3()===B.bs)return 1 -return 2}if(A.PW(s,"webgl")!=null)return 1 -return-1}, -b1l(){var s=v.G -return s.Intl.v8BreakIterator!=null&&s.Intl.Segmenter!=null}, -bku(){var s,r,q,p,o,n -if($.bN().gfi()!==B.c9)return!1 -s=A.cS("Version\\/([0-9]+)\\.([0-9]+)",!0,!1) -r=$.bN().gnq() -q=s.pv(r) -if(q!=null){r=q.b -p=r[1] -p.toString -o=A.fU(p,null) -r=r[2] -r.toString -n=A.fU(r,null) -if(o<=17)r=o===17&&n>=4 -else r=!0 -return r}return!1}, -bkt(){var s,r,q -if($.bN().gfi()!==B.eC)return!1 -s=A.cS("Firefox\\/([0-9]+)",!0,!1) -r=$.bN().gnq() -q=s.pv(r) -if(q!=null){r=q.b[1] -r.toString -return A.fU(r,null)>=119}return!1}, -aQk(a,b){var s -if(a.a!=null)throw A.i(A.c1(u.u,null)) -if(b==null)b=B.hW -s=new v.G.window.flutterCanvasKit.PictureRecorder() -a.a=s -return new A.Aq(s.beginRecording(A.d6(b),!0))}, -aB(){return $.bx.cj()}, -aTH(a){var s=$.b4R()[a.a] -return s}, -bl7(a){return a===B.cq?$.bx.cj().FilterMode.Nearest:$.bx.cj().FilterMode.Linear}, -aTF(a){var s,r,q,p=new Float32Array(16) -for(s=0;s<4;++s)for(r=s*4,q=0;q<4;++q)p[q*4+s]=a[r+q] -return p}, -aTG(a){var s,r,q,p=new Float32Array(9) -for(s=a.length,r=0;r<9;++r){q=B.tv[r] -if(q>>16&255)/255 -s[1]=(b.A()>>>8&255)/255 -s[2]=(b.A()&255)/255 -s[3]=(b.A()>>>24&255)/255 -return s}, -d6(a){var s=new Float32Array(4) -s[0]=a.a -s[1]=a.b -s[2]=a.c -s[3]=a.d -return s}, -aOX(a){return new A.w(a[0],a[1],a[2],a[3])}, -b23(a){return new A.w(a[0],a[1],a[2],a[3])}, -lu(a){var s=new Float32Array(12) -s[0]=a.a -s[1]=a.b -s[2]=a.c -s[3]=a.d -s[4]=a.e -s[5]=a.f -s[6]=a.r -s[7]=a.w -s[8]=a.x -s[9]=a.y -s[10]=a.z -s[11]=a.Q -return s}, -bl5(a){var s,r=a.length,q=new Uint32Array(r) -for(s=0;s"))}, -bjg(a,b){return b+a}, -abN(){var s=0,r=A.I(t.m),q,p,o,n -var $async$abN=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:o=A -n=A -s=4 -return A.p(A.aMb(A.bes()),$async$abN) -case 4:s=3 -return A.p(n.hS(b.default({locateFile:A.aT0(A.bf_())}),t.K),$async$abN) -case 3:p=o.fT(b) -if(A.aZp(p.ParagraphBuilder)&&!A.b1l())throw A.i(A.cX("The CanvasKit variant you are using only works on Chromium browsers. Please use a different CanvasKit variant, or use a Chromium browser.")) -q=p -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$abN,r)}, -aMb(a){var s=0,r=A.I(t.m),q,p=2,o=[],n,m,l,k,j,i -var $async$aMb=A.J(function(b,c){if(b===1){o.push(c) -s=p}for(;;)switch(s){case 0:m=a.$ti,l=new A.bf(a,a.gH(0),m.i("bf")),m=m.i("aE.E") -case 3:if(!l.v()){s=4 -break}k=l.d -n=k==null?m.a(k):k -p=6 -s=9 -return A.p(A.aMa(n),$async$aMb) -case 9:k=c -q=k -s=1 -break -p=2 -s=8 -break -case 6:p=5 -i=o.pop() -s=3 -break -s=8 -break -case 5:s=2 -break -case 8:s=3 -break -case 4:throw A.i(A.cX("Failed to download any of the following CanvasKit URLs: "+a.k(0))) -case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$aMb,r)}, -aMa(a){var s=0,r=A.I(t.m),q,p,o -var $async$aMa=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:p=v.G -o=p.window.document.baseURI -p=o==null?new p.URL(a):new p.URL(a,o) -s=3 -return A.p(A.hS(import(A.bjF(p.toString())),t.m),$async$aMa) -case 3:q=c -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$aMa,r)}, -bjA(a){switch(1){case 1:return new A.At(a.c)}}, -aRG(a,b,c){var s=new v.G.window.flutterCanvasKit.Font(c),r=A.mj(A.c([0],t.t)) -s.getGlyphBounds(r,null,null) -return new A.rL(b,a,c)}, -b69(a,b){var s=new A.pT(b),r=A.aQs(a,s,"SkImage",t.XY,t.m) -s.b!==$&&A.bs() -s.b=r -if(b!=null)++b.a -return s}, -aQs(a,b,c,d,e){var s=new A.NB(A.aU(d),d.i("@<0>").bN(e).i("NB<1,2>")),r=new A.lc(c,e.i("lc<0>")) -r.xY(s,a,c,e) -s.a!==$&&A.bs() -s.a=r -return s}, -bt(){return new A.jB(B.c8,B.bJ,B.dE,B.ek,B.cq)}, -b6b(){var s=new v.G.window.flutterCanvasKit.PathBuilder() -s.setFillType($.aPX()[0]) -return A.aQm(s,B.kt)}, -aQm(a,b){var s="PathBuilder",r=new A.uU(b),q=new A.lc(s,t.Pj) -q.xY(r,a,s,t.m) -r.a!==$&&A.bs() -r.a=q -return r}, -b5W(){var s=A.dU().b -s=s==null?null:s.canvasKitForceMultiSurfaceRasterizer -if((s==null?!1:s)||$.bN().gfi()===B.c9||$.bN().gfi()===B.eC)return new A.aop(new A.TW(new A.rn(A.t(t.m,t.lT)),new A.ae0(),A.c([],t.sF)),A.t(t.lz,t.Es)) -return new A.ap0(new A.TU(new A.rk(A.t(t.m,t.lT)),new A.ae1(),A.c([],t.Rd)),A.t(t.lz,t.pw))}, -aM5(a){if($.iA==null)$.iA=B.dP -return a}, -b6a(a,b){var s,r,q -t.S3.a(a) -s={} -r=A.mj(A.aSW(a.a,a.b)) -s.fontFamilies=r -r=a.c -if(r!=null)s.fontSize=r -r=a.d -if(r!=null)s.heightMultiplier=r -q=a.x -if(q==null)q=b==null?null:b.c -switch(q){case null:case void 0:break -case B.A:s.halfLeading=!0 -break -case B.oP:s.halfLeading=!1 -break}r=a.e -if(r!=null)s.leading=r -r=a.f -if(r!=null||a.r!=null)s.fontStyle=A.aTE(r,a.r) -r=a.w -if(r!=null)s.forceStrutHeight=r -s.strutEnabled=!0 -return s}, -aQn(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){return new A.uW(b,c,d,e,f,m,k,a2,s,g,a0,h,j,q,a3,o,p,r,a,n,a1,i,l)}, -aTE(a,b){var s={} -if(a!=null)s.weight=$.b4H()[a.gpD()] -if(b!=null)s.slant=$.b4G()[b.a] -return s}, -aQl(a){var s,r,q,p,o=null -t.m6.a(a) -s=A.c([],t.n) -r=A.c([],t.AT) -q=$.bx.cj().ParagraphBuilder.MakeFromFontCollection(a.a,t.Vr.a($.aQi.cj().gus()).w) -p=a.z -p=p==null?o:p.c -r.push(A.aQn(o,o,o,o,o,o,a.w,o,o,a.x,a.e,o,a.d,o,a.y,p,o,o,a.r,o,o,o,o)) -return new A.aei(q,a,s,r)}, -aSW(a,b){var s=A.c([],t.s) -if(a!=null)s.push(a) -if(b!=null&&!J.b5l(b,new A.aM4(a)))B.b.a_(s,b) -B.b.a_(s,$.ab().gus().gKc().y) -return s}, -zu(a){var s=new Float32Array(4) -s[0]=a.ga0X()/255 -s[1]=a.gMY()/255 -s[2]=a.gX3()/255 -s[3]=a.ger()/255 -return s}, -bjD(a,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=A.t(t.S,t.YT),d=A.c([],t.EV),c=new A.aoZ(new A.ap_()),b=A.c([],t.RR) -for(s=a.length,r=t.hF,q=r.i("bf"),p=r.i("aE.E"),o=0;o=g.c||g.b>=g.d)){if(k!=null){k.b.push(m) -l=k.a -i=m.r -i.toString -l.re(i)}else{b.push(m) -l=m.r -l.toString -c.re(l)}j=!0 -break}}}else if(h instanceof A.e6){i=m.r -i.toString -g=h.a -if(g.hL(i)){h.b.push(m) -i=m.r -i.toString -g.re(i) -j=!0}k=h}}if(!j)if(k!=null){k.b.push(m) -l=k.a -i=m.r -i.toString -l.re(i)}else{b.push(m) -l=m.r -l.toString -c.re(l)}}if(b.length!==0)d.push(new A.e6(c,b)) -return new A.v5(d)}, -aVG(a,b){var s=b.i("z<0>") -return new A.PU(a,A.c([],s),A.c([],s),b.i("PU<0>"))}, -b9B(a,b){var s=A.aVG(new A.ap2(),t.vz),r=A.cw(v.G.document,"flt-scene") -a.gfZ().Ns(r) -return new A.rl(b,s,a,new A.V1(),B.px,new A.Nw(),r)}, -dU(){var s,r=$.b0s -if(r==null){r=v.G.window.flutterConfiguration -s=new A.ahW() -if(r!=null)s.b=r -$.b0s=s -r=s}return r}, -bay(a){var s -A:{if("DeviceOrientation.portraitUp"===a){s="portrait-primary" -break A}if("DeviceOrientation.portraitDown"===a){s="portrait-secondary" -break A}if("DeviceOrientation.landscapeLeft"===a){s="landscape-primary" -break A}if("DeviceOrientation.landscapeRight"===a){s="landscape-secondary" -break A}s=null -break A}return s}, -mj(a){$.bN() -return a}, -aX5(a){var s=A.ac(a) -s.toString -return s}, -b8v(a){$.bN() -return a}, -Be(a,b){var s=a.getComputedStyle(b) -return s}, -aVL(a,b){return A.jn($.as.X1(b,t.H,t.i))}, -b7k(a){return new A.afW(a)}, -bjC(a){var s=v.G.createImageBitmap(a) -return A.hS(s,t.X).c1(new A.aOJ(),t.m)}, -b7n(a){var s=a.languages -if(s==null)s=null -else{s=B.b.hI(s,new A.afZ(),t.N) -s=A.aa(s,s.$ti.i("aE.E"))}return s}, -cw(a,b){var s=a.createElement(b) -return s}, -bi(a){return A.jn($.as.X1(a,t.H,t.m))}, -aVK(a){if(a.parentNode!=null)a.parentNode.removeChild(a)}, -b7o(a){var s -while(a.firstChild!=null){s=a.firstChild -s.toString -a.removeChild(s)}}, -a_(a,b,c){a.setProperty(b,c,"")}, -PW(a,b){var s=a.getContext(b) -return s}, -b7m(a){var s=A.PW(a,"2d") -s.toString -return A.fT(s)}, -aOH(a,b){var s -$.b1x=$.b1x+1 -s=A.cw(v.G.window.document,"canvas") -if(b!=null)s.width=b -if(a!=null)s.height=a -return s}, -b7i(a,b){var s=A.mj(b) -a.fillStyle=s -return s}, -b7g(a,b,c,d,e,f,g,h,i,j){var s=A.hj(a,"drawImage",[b,c,d,e,f,g,h,i,j]) -return s}, -b7h(a,b,c,d,e){var s,r=A.ac(b) -r.toString -s=A.ac(e) -s.toString -s=a.fillTextCluster(r,c,d,s) -return s}, -bkN(a){return A.hS(v.G.window.fetch(a),t.X).c1(new A.aPy(),t.m)}, -zq(a){return A.bkc(a)}, -bkc(a){var s=0,r=A.I(t.Lk),q,p=2,o=[],n,m,l,k -var $async$zq=A.J(function(b,c){if(b===1){o.push(c) -s=p}for(;;)switch(s){case 0:p=4 -s=7 -return A.p(A.bkN(a),$async$zq) -case 7:n=c -q=new A.QO(a,n) -s=1 -break -p=2 -s=6 -break -case 4:p=3 -k=o.pop() -m=A.aj(k) -throw A.i(new A.QM(a,m)) -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$zq,r)}, -aP5(a){var s=0,r=A.I(t.pI),q,p -var $async$aP5=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:p=A -s=3 -return A.p(A.zq(a),$async$aP5) -case 3:q=p.aQI(c.gCt().a) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$aP5,r)}, -aQI(a){return A.hS(a.arrayBuffer(),t.X).c1(new A.ag_(),t.pI)}, -bd4(a){return A.hS(a.read(),t.X).c1(new A.aBt(),t.m)}, -b7l(a){return A.hS(a.load(),t.X).c1(new A.afX(),t.m)}, -b1s(a,b,c){var s,r,q=v.G -if(c==null)return new q.FontFace(a,A.mj(b)) -else{q=q.FontFace -s=A.mj(b) -r=A.ac(c) -r.toString -return new q(a,s,r)}}, -b7j(a){return A.hS(a.readText(),t.X).c1(new A.afV(),t.N)}, -b7p(a,b){var s=a.getContext(b) -return s}, -ci(a,b,c){a.addEventListener(b,c) -return new A.PY(b,a,c)}, -b1t(a){return new v.G.ResizeObserver(A.aT0(new A.aOI(a)))}, -bjF(a){if(v.G.window.trustedTypes!=null)return $.b4U().createScriptURL(a) -return a}, -b1u(a){var s,r=v.G -if(r.Intl.Segmenter==null)throw A.i(A.fc("Intl.Segmenter() is not supported.")) -r=r.Intl.Segmenter -s=t.N -s=A.ac(A.aG(["granularity",a],s,s)) -s.toString -return new r([],s)}, -aPA(){var s=0,r=A.I(t.H),q -var $async$aPA=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:if(!$.aT_){$.aT_=!0 -q=v.G.window -q.requestAnimationFrame(A.aVL(q,new A.aPC()))}return A.G(null,r)}}) -return A.H($async$aPA,r)}, -bia(a){return B.c.c8(a.a,"Noto Sans SC")}, -bib(a){return B.c.c8(a.a,"Noto Sans TC")}, -bi7(a){return B.c.c8(a.a,"Noto Sans HK")}, -bi8(a){return B.c.c8(a.a,"Noto Sans JP")}, -bi9(a){return B.c.c8(a.a,"Noto Sans KR")}, -b88(a,b){var s=t.S,r=v.G.window.navigator.language,q=A.di(null,t.H),p=A.c(["Roboto"],t.s) -s=new A.aig(a,A.aU(s),A.aU(s),b,r,B.b.a3y(b,new A.aih()),q,p,A.aU(s)) -p=t.Te -s.b=new A.a2u(s,A.aU(p),A.t(t.N,p)) -return s}, -bdR(a,b,c){var s,r,q,p,o,n,m,l,k=A.c([],t.t),j=A.c([],c.i("z<0>")) -for(s=a.length,r=0,q=0,p=1,o=0;o"))}, -abO(a){return A.bjR(a)}, -bjR(a){var s=0,r=A.I(t.jT),q,p,o,n,m,l,k -var $async$abO=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:m={} -k=t.Lk -s=3 -return A.p(A.zq(a.xc("FontManifest.json")),$async$abO) -case 3:l=k.a(c) -if(!l.gKB()){$.ew().$1("Font manifest does not exist at `"+l.a+"` - ignoring.") -q=new A.BO(A.c([],t.z8)) -s=1 -break}p=B.eq.NM(B.ne,t.X) -m.a=null -o=p.k_(new A.a8E(new A.aOT(m),[],t.kT)) -s=4 -return A.p(l.gCt().CG(new A.aOU(o)),$async$abO) -case 4:o.bn() -m=m.a -if(m==null)throw A.i(A.ko(u.x)) -m=J.ju(t.j.a(m),new A.aOV(),t.VW) -n=A.aa(m,m.$ti.i("aE.E")) -q=new A.BO(n) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$abO,r)}, -b87(a,b){return new A.BM()}, -vB(){return B.d.iw(v.G.window.performance.now()*1000)}, -aP9(a){var s=0,r=A.I(t.H),q,p,o -var $async$aP9=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:if($.LI!==B.qP){s=1 -break}$.LI=B.Oa -p=A.dU() -if(a!=null)p.b=a -if(!B.c.c8("ext.flutter.disassemble","ext."))A.a0(A.hm("ext.flutter.disassemble","method","Must begin with ext.")) -if($.b0E.h(0,"ext.flutter.disassemble")!=null)A.a0(A.c1("Extension already registered: ext.flutter.disassemble",null)) -$.b0E.m(0,"ext.flutter.disassemble",$.as.aoZ(new A.aPa(),t.Z9,t.N,t.GU)) -p=A.dU().b -o=new A.acK(p==null?null:p.assetBase) -A.biD(o) -s=3 -return A.p(A.i2(A.c([new A.aPb().$0(),A.abF()],t.mo),t.H),$async$aP9) -case 3:$.LI=B.qQ -case 1:return A.G(q,r)}}) -return A.H($async$aP9,r)}, -aTs(){var s=0,r=A.I(t.H),q,p,o,n,m -var $async$aTs=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:if($.LI!==B.qQ){s=1 -break}$.LI=B.Ob -p=$.bN().ge3() -if($.UA==null)$.UA=A.bad(p===B.cz) -if($.aRe==null)$.aRe=A.b8B() -p=v.G -if(p.document.querySelector("meta[name=generator][content=Flutter]")==null){o=A.cw(p.document,"meta") -o.name="generator" -o.content="Flutter" -p.document.head.append(o)}p=A.dU().b -p=p==null?null:p.multiViewEnabled -if(!(p==null?!1:p)){p=A.dU().b -p=p==null?null:p.hostElement -if($.zm==null){n=$.b7() -m=new A.vt(A.di(null,t.H),0,n,A.aVT(p),null,B.fJ,A.aVx(p)) -m.OF(0,n,p,null) -$.zm=m -p=n.gdr() -n=$.zm -n.toString -p.axK(n)}$.zm.toString}$.LI=B.Oc -case 1:return A.G(q,r)}}) -return A.H($async$aTs,r)}, -biD(a){if(a===$.LG)return -$.LG=a}, -abF(){var s=0,r=A.I(t.H),q,p,o -var $async$abF=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:p=$.ab().gus() -p.aa(0) -if($.iA==null)$.iA=B.dP -q=$.LG -s=q!=null?2:3 -break -case 2:q.toString -o=p -s=5 -return A.p(A.abO(q),$async$abF) -case 5:s=4 -return A.p(o.mm(b),$async$abF) -case 4:case 3:return A.G(null,r)}}) -return A.H($async$abF,r)}, -b80(a,b){return{addView:A.jn(a),removeView:A.jn(new A.ahV(b))}}, -b81(a,b){var s,r=A.jn(new A.ahX(b)),q=new A.ahY(a) -if(typeof q=="function")A.a0(A.c1("Attempting to rewrap a JS function.",null)) -s=function(c,d){return function(){return c(d)}}(A.bel,q) -s[$.LW()]=q -return{initializeEngine:r,autoStart:s}}, -b8_(a){return{runApp:A.jn(new A.ahU(a))}}, -aQu(a){return new v.G.Promise(A.aT0(new A.af3(a)))}, -aSZ(a){var s=B.d.iw(a) -return A.cI(B.d.iw((a-s)*1000),s)}, -bej(a,b){var s={} -s.a=null -return new A.aM0(s,a,b)}, -b8B(){var s=new A.Ro(A.t(t.N,t.lT)) -s.a8l() -return s}, -b8D(a){var s -A:{if(B.bs===a||B.cz===a){s=new A.CA(A.aTI("M,2\u201ew\u2211wa2\u03a9q\u2021qb2\u02dbx\u2248xc3 c\xd4j\u2206jd2\xfee\xb4ef2\xfeu\xa8ug2\xfe\xff\u02c6ih3 h\xce\xff\u2202di3 i\xc7c\xe7cj2\xd3h\u02d9hk2\u02c7\xff\u2020tl5 l@l\xfe\xff|l\u02dcnm1~mn3 n\u0131\xff\u222bbo2\xaer\u2030rp2\xacl\xd2lq2\xc6a\xe6ar3 r\u03c0p\u220fps3 s\xd8o\xf8ot2\xa5y\xc1yu3 u\xa9g\u02ddgv2\u02dak\uf8ffkw2\xc2z\xc5zx2\u0152q\u0153qy5 y\xcff\u0192f\u02c7z\u03a9zz5 z\xa5y\u2021y\u2039\xff\u203aw.2\u221av\u25cav;4\xb5m\xcds\xd3m\xdfs/2\xb8z\u03a9z")) -break A}if(B.nW===a){s=new A.CA(A.aTI(';b1{bc1&cf1[fg1]gm2y')) -break A}if(B.hR===a||B.ks===a||B.E3===a){s=new A.CA(A.aTI("8a2@q\u03a9qk1&kq3@q\xc6a\xe6aw2xy2\xa5\xff\u2190\xffz5")).bJ(0," ") -return r.length!==0?r:null}, -baN(a){var s=new A.VP(B.n2,a),r=A.t4(s.cf(),a) -s.a!==$&&A.bs() -s.a=r -s.Es(B.n2,a) -return s}, -baL(a){var s,r=new A.VM(B.mD,a),q=A.t4(r.cf(),a) -r.a!==$&&A.bs() -r.a=q -r.Es(B.mD,a) -s=A.ac("dialog") -s.toString -q.setAttribute("role",s) -s=A.ac(!0) -s.toString -q.setAttribute("aria-modal",s) -return r}, -baK(a){var s,r=new A.VL(B.mE,a),q=A.t4(r.cf(),a) -r.a!==$&&A.bs() -r.a=q -r.Es(B.mE,a) -s=A.ac("alertdialog") -s.toString -q.setAttribute("role",s) -s=A.ac(!0) -s.toString -q.setAttribute("aria-modal",s) -return r}, -t4(a,b){var s,r=a.style -A.a_(r,"position","absolute") -A.a_(r,"overflow","visible") -r=b.p2 -s=A.ac("flt-semantic-node-"+r) -s.toString -a.setAttribute("id",s) -if(r===0&&!A.dU().gJa()){A.a_(a.style,"filter","opacity(0%)") -A.a_(a.style,"color","rgba(0,0,0,0)")}if(A.dU().gJa())A.a_(a.style,"outline","1px solid green") -return a}, -aRO(a,b){var s -switch(b.a){case 0:a.removeAttribute("aria-invalid") -break -case 1:s=A.ac("false") -s.toString -a.setAttribute("aria-invalid",s) -break -case 2:s=A.ac("true") -s.toString -a.setAttribute("aria-invalid",s) -break}}, -aXT(a){var s=a.style -s.removeProperty("transform-origin") -s.removeProperty("transform") -if($.bN().ge3()===B.bs||$.bN().ge3()===B.cz){s=a.style -A.a_(s,"top","0px") -A.a_(s,"left","0px")}else{s=a.style -s.removeProperty("top") -s.removeProperty("left")}}, -en(){var s,r,q=v.G,p=A.cw(q.document,"flt-announcement-host") -q.document.body.append(p) -s=A.aUI(B.lK) -r=A.aUI(B.lL) -p.append(s) -p.append(r) -q=B.oi.q(0,$.bN().ge3())?new A.afo():new A.anX() -return new A.ahz(new A.acb(s,r),new A.ahE(),new A.atU(q),B.jf,A.c([],t.s2))}, -b7P(a,b){var s=t.S,r=t.UF -r=new A.ahA(a,b,A.t(s,r),A.t(t.N,s),A.t(s,r),A.c([],t.Qo),A.c([],t.qj)) -r.a8j(a,b) -return r}, -b1S(a){var s,r,q,p,o,n,m,l,k=a.length,j=t.t,i=A.c([],j),h=A.c([0],j) -for(s=0,r=0;r=h.length)h.push(r) -else h[o]=r -if(o>s)s=o}m=A.bO(s,0,!1,t.S) -l=h[s] -for(r=s-1;r>=0;--r){m[r]=l -l=i[l]}return m}, -xA(a,b){var s=new A.YD(a,b) -s.a8y(a,b) -return s}, -baP(a){var s,r=$.VV -if(r!=null)s=r.a===a -else s=!1 -if(s)return r -return $.VV=new A.au8(a,A.c([],t.Up),$,$,$,null,null)}, -aSr(){var s=new Uint8Array(0),r=new DataView(new ArrayBuffer(8)) -return new A.ay8(new A.YY(s,0),r,J.uv(B.aU.gcF(r)))}, -bjd(a,b,c){var s,r,q,p,o,n,m,l,k=A.c([],t._f) -c.adoptText(b) -c.first() -for(s=a.length,r=0;!J.b(c.next(),-1);r=q){q=J.b4(c.current()) -for(p=r,o=0,n=0;p0){k.push(new A.qX(r,p,B.rR,o,n)) -r=p -o=0 -n=0}}if(o>0)l=B.nh -else l=q===s?B.rS:B.rR -k.push(new A.qX(r,q,l,o,n))}if(k.length===0||B.b.gaC(k).c===B.nh)k.push(new A.qX(s,s,B.rS,0,0)) -return k}, -aTn(a){switch(a){case 0:return"100" -case 1:return"200" -case 2:return"300" -case 3:return"normal" -case 4:return"500" -case 5:return"600" -case 6:return"bold" -case 7:return"800" -case 8:return"900"}return""}, -bkZ(a,b){var s -switch(a){case B.dF:return"left" -case B.em:return"right" -case B.bQ:return"center" -case B.ia:return"justify" -case B.l6:switch(b.a){case 1:s="end" -break -case 0:s="left" -break -default:s=null}return s -case B.aN:switch(b.a){case 1:s="" -break -case 0:s="right" -break -default:s=null}return s -case null:case void 0:return""}}, -bjW(a){var s,r,q,p=a.length -for(s=0,r="";s")),h=l.b,i=i.i("aX.E"),g=!n,f=!1;j.v();){e=j.d -if(e==null)e=i.a(e) -d=s.a(e.h(0,"autofill")) -c=A.c7(e.h(0,"textCapitalization")) -if(c==="TextCapitalization.words")c=B.Jo -else if(c==="TextCapitalization.characters")c=B.Jq -else c=c==="TextCapitalization.sentences"?B.Jp:B.oN -b=A.aQa(d,new A.FU(c)) -c=b.b -m.push(c) -if(c!==h){a=A.aVU(A.c7(s.a(e.h(0,"inputType")).h(0,"name")),!1,!1).At() -b.a.fC(a) -b.fC(a) -A.abJ(a,!1,n,g) -q.m(0,c,b) -r.m(0,c,a) -o.append(a) -if(f){k=a -f=!1}}else f=!0}else m.push(l.b) -B.b.jZ(m) -for(s=m.length,a0=0,j="";a00?j+"*":j)+a1}a2=j.charCodeAt(0)==0?j:j -a3=$.zp.h(0,a2) -if(a3!=null)a3.remove() -a4=A.cw(p.document,"input") -a4.tabIndex=-1 -A.abJ(a4,!0,!1,!0) -a4.className="submitBtn" -a4.type="submit" -o.append(a4) -return new A.ahg(o,r,q,k==null?a4:k,a2,a5)}, -aQa(a,b){var s,r=A.c7(a.h(0,"uniqueIdentifier")),q=t.kc.a(a.h(0,"hints")),p=q==null||J.js(q)?null:A.c7(J.lx(q)),o=A.aVR(t.P.a(a.h(0,"editingValue"))) -if(p!=null){s=$.b2i().a.h(0,p) -if(s==null)s=p}else s=null -return new A.Mz(o,r,s,A.bH(a.h(0,"hintText")))}, -aT6(a,b,c){var s=c.a,r=c.b,q=Math.min(s,r) -r=Math.max(s,r) -return B.c.a6(a,0,q)+b+B.c.cD(a,r)}, -bbx(a0,a1,a2){var s,r,q,p,o,n,m,l,k,j,i=a2.a,h=a2.b,g=a2.c,f=a2.d,e=a2.e,d=a2.f,c=a2.r,b=a2.w,a=new A.xD(i,h,g,f,e,d,c,b) -e=a1==null -d=e?null:a1.b -s=d==(e?null:a1.c) -d=h.length -r=d===0 -q=r&&f!==-1 -r=!r -p=r&&!s -if(q){o=i.length-a0.a.length -g=a0.b -if(g!==(e?null:a1.b)){g=f-o -a.c=g}else{a.c=g -f=g+o -a.d=f}}else if(p){g=a1.b -e=a1.c -if(g>e)g=e -a.c=g}n=c!=null&&c!==b -if(r&&s&&n){a.c=c -g=c}if(!(g===-1&&g===f)){e=a0.a -if(A.aT6(i,h,new A.bI(g,f))!==e){m=B.c.q(h,".") -for(g=A.cS(A.aPx(h),!0,!1).rg(0,e),g=new A.GR(g.a,g.b,g.c),f=t.Qz,c=i.length;g.v();){l=g.d -b=(l==null?f.a(l):l).b -r=b.index -if(!(r>=0&&r+b[0].length<=c)){k=r+d-1 -j=A.aT6(i,h,new A.bI(r,k))}else{k=m?r+b[0].length-1:r+b[0].length -j=A.aT6(i,h,new A.bI(r,k))}if(j===e){a.c=r -a.d=k -break}}}}a.e=a0.b -a.f=a0.c -return a}, -aVR(a){var s=A.c7(a.h(0,"text")),r=B.d.iw(A.fg(a.h(0,"selectionBase"))),q=B.d.iw(A.fg(a.h(0,"selectionExtent"))),p=B.d.iw(A.fg(a.h(0,"composingBase"))),o=B.d.iw(A.fg(a.h(0,"composingExtent"))) -return new A.jF(s,Math.max(0,r),Math.max(0,q),p,o)}, -aVQ(a){var s,r,q=null,p="backward",o=A.h4(a,"HTMLInputElement") -if(o){o=a.selectionEnd -s=o==null?q:J.b4(o) -if(s==null)s=0 -o=a.selectionStart -r=o==null?q:J.b4(o) -if(r==null)r=0 -if(J.b(a.selectionDirection,p))return new A.jF(a.value,Math.max(0,s),Math.max(0,r),-1,-1) -else return new A.jF(a.value,Math.max(0,r),Math.max(0,s),-1,-1)}else{o=A.h4(a,"HTMLTextAreaElement") -if(o){o=a.selectionEnd -s=o==null?q:J.b4(o) -if(s==null)s=0 -o=a.selectionStart -r=o==null?q:J.b4(o) -if(r==null)r=0 -if(J.b(a.selectionDirection,p))return new A.jF(a.value,Math.max(0,s),Math.max(0,r),-1,-1) -else return new A.jF(a.value,Math.max(0,r),Math.max(0,s),-1,-1)}else throw A.i(A.c2("Initialized with unsupported input type"))}}, -aWl(a){var s,r,q,p,o,n,m,l,k,j,i="inputType",h="autofill",g=A.aRd(a,"viewId") -if(g==null)g=0 -s=t.P -r=A.c7(s.a(a.h(0,i)).h(0,"name")) -q=A.lp(s.a(a.h(0,i)).h(0,"decimal")) -p=A.lp(s.a(a.h(0,i)).h(0,"isMultiline")) -r=A.aVU(r,q===!0,p===!0) -q=A.bH(a.h(0,"inputAction")) -if(q==null)q="TextInputAction.done" -p=A.lp(a.h(0,"obscureText")) -o=A.lp(a.h(0,"readOnly")) -n=A.lp(a.h(0,"autocorrect")) -m=A.bbw(A.c7(a.h(0,"textCapitalization"))) -s=a.aN(h)?A.aQa(s.a(a.h(0,h)),B.Jn):null -l=A.aRd(a,"viewId") -if(l==null)l=0 -l=A.b7L(l,t.nA.a(a.h(0,h)),t.kc.a(a.h(0,"fields"))) -k=A.lp(a.h(0,"enableDeltaModel")) -j=A.lp(a.h(0,"enableInteractiveSelection")) -return new A.akj(g,r,q,o===!0,p===!0,n!==!1,k===!0,s,l,m,j!==!1)}, -b8f(a){return new A.QD(a,A.c([],t.Up),$,$,$,null,null)}, -bkQ(){$.zp.aL(0,new A.aPz())}, -bjj(){for(var s=new A.db($.zp,$.zp.r,$.zp.e);s.v();)s.d.remove() -$.zp.aa(0)}, -b7z(a){var s=A.jN(J.ju(t.j.a(a.h(0,"transform")),new A.agk(),t.z),!0,t.i) -return new A.agj(A.fg(a.h(0,"width")),A.fg(a.h(0,"height")),new Float32Array(A.iN(s)))}, -baH(a,b){var s=b.length -if(s<=10)return a.c -if(s<=100)return a.b -if(s<=5e4)return a.a -return null}, -b26(a){var s,r,q,p,o=A.baH($.b59(),a),n=o==null,m=n?null:o.h(0,a) -if(m!=null)s=m -else{r=A.b1G(a,B.rP) -q=A.b1G(a,B.rO) -s=new A.a5n(A.bjX(a),q,r)}if(!n){n=o.c -p=n.h(0,a) -if(p==null)o.OH(a,s) -else{r=p.d -if(!J.b(r.b,s)){p.fI(0) -o.OH(a,s)}else{p.fI(0) -q=o.b -q.nr(r) -q=q.a.b.y5() -q.toString -n.m(0,a,q)}}}return s}, -b1G(a,b){var s,r=new A.PX(A.aWr($.b4c().h(0,b).segment(a),v.G.Symbol.iterator,t.m),t.YH),q=A.c([],t.t) -while(r.v()){s=r.b -s===$&&A.a() -q.push(s.index)}q.push(a.length) -return new Uint32Array(A.iN(q))}, -bjX(a){var s,r,q,p,o=A.bjd(a,a,$.b4V()),n=o.length,m=new Uint32Array((n+1)*2) -m[0]=0 -m[1]=0 -for(s=0;s=b.c&&a.d>=b.d}, -ul(a){var s,r,q -if(a===4278190080)return"#000000" -if((a&4278190080)>>>0===4278190080){s=B.j.oc(a&16777215,16) -r=s.length -A:{if(1===r){q="#00000"+s -break A}if(2===r){q="#0000"+s -break A}if(3===r){q="#000"+s -break A}if(4===r){q="#00"+s -break A}if(5===r){q="#0"+s -break A}q="#"+s -break A}return q}else{q="rgba("+B.j.k(a>>>16&255)+","+B.j.k(a>>>8&255)+","+B.j.k(a&255)+","+B.d.k((a>>>24&255)/255)+")" -return q.charCodeAt(0)==0?q:q}}, -b0F(){if($.bN().ge3()===B.bs){var s=$.bN().gnq() -s=B.c.q(s,"OS 15_")}else s=!1 -if(s)return"BlinkMacSystemFont" -if($.bN().ge3()===B.bs||$.bN().ge3()===B.cz)return"-apple-system, BlinkMacSystemFont" -return"Arial"}, -aT9(a){if(B.a6m.q(0,a))return a -if($.bN().ge3()===B.bs||$.bN().ge3()===B.cz)if(a===".SF Pro Text"||a===".SF Pro Display"||a===".SF UI Text"||a===".SF UI Display")return A.b0F() -return'"'+A.j(a)+'", '+A.b0F()+", sans-serif"}, -hR(a,b){var s,r,q -if(a==null)return b==null -if(b==null||J.cg(a)!==J.cg(b))return!1 -for(s=J.bk(a),r=J.bk(b),q=0;q").bN(c),r=new A.HD(s.i("HD<+key,value(1,2)>")) -r.a=r -r.b=r -return new A.RF(a,new A.Bf(r,s.i("Bf<+key,value(1,2)>")),A.t(b,s.i("aVM<+key,value(1,2)>")),s.i("RF<1,2>"))}, -wb(){var s=new Float32Array(16) -s[15]=1 -s[0]=1 -s[5]=1 -s[10]=1 -return new A.mg(s)}, -b98(a){return new A.mg(a)}, -zw(a){var s=new Float32Array(16) -s[15]=a[15] -s[14]=a[14] -s[13]=a[13] -s[12]=a[12] -s[11]=a[11] -s[10]=a[10] -s[9]=a[9] -s[8]=a[8] -s[7]=a[7] -s[6]=a[6] -s[5]=a[5] -s[4]=a[4] -s[3]=a[3] -s[2]=a[2] -s[1]=a[1] -s[0]=a[0] -return s}, -b6K(a,b){var s=new A.aeY(a,A.Ys(!1,t.tW)) -s.a8h(a,b) -return s}, -aVx(a){var s,r,q -if(a!=null){s=$.b2p().c -return A.b6K(a,new A.e3(s,A.n(s).i("e3<1>")))}else{s=new A.Qt(A.Ys(!1,t.tW)) -r=v.G -q=r.window.visualViewport -if(q==null)q=r.window -s.b=A.ci(q,"resize",A.bi(s.gaiY())) -return s}}, -aVT(a){var s,r,q,p="0",o="none" -if(a!=null){A.b7o(a) -s=A.ac("custom-element") -s.toString -a.setAttribute("flt-embedding",s) -return new A.af0(a)}else{s=v.G.document.body -s.toString -r=new A.aiG(s) -q=A.ac("full-page") -q.toString -s.setAttribute("flt-embedding",q) -r.a9g() -A.lt(s,"position","fixed") -A.lt(s,"top",p) -A.lt(s,"right",p) -A.lt(s,"bottom",p) -A.lt(s,"left",p) -A.lt(s,"overflow","hidden") -A.lt(s,"padding",p) -A.lt(s,"margin",p) -A.lt(s,"user-select",o) -A.lt(s,"-webkit-user-select",o) -A.lt(s,"touch-action",o) -return r}}, -aZB(a,b,c,d){var s=A.cw(v.G.document,"style") -if(d!=null)s.nonce=d -s.id=c -b.appendChild(s) -A.biZ(s,a,"normal normal 14px sans-serif")}, -biZ(a,b,c){var s,r,q,p=v.G -a.append(p.document.createTextNode(b+" flt-scene-host { font: "+c+";}"+b+" flt-semantics input[type=range] { appearance: none; -webkit-appearance: none; width: 100%; position: absolute; border: none; top: 0; right: 0; bottom: 0; left: 0;}"+b+" input::selection { background-color: transparent;}"+b+" textarea::selection { background-color: transparent;}"+b+" flt-semantics input,"+b+" flt-semantics textarea,"+b+' flt-semantics [contentEditable="true"] { caret-color: transparent;}'+b+" .flt-text-editing::placeholder { opacity: 0;}"+b+":focus { outline: rgb(0, 0, 0) none 0px;}")) -if($.bN().gfi()===B.c9)a.append(p.document.createTextNode(b+" * { -webkit-tap-highlight-color: transparent;}"+b+" flt-semantics input[type=range]::-webkit-slider-thumb { -webkit-appearance: none;}")) -if($.bN().gfi()===B.eC)a.append(p.document.createTextNode(b+" flt-paragraph,"+b+" flt-span { line-height: 100%;}")) -if($.bN().gfi()===B.dN||$.bN().gfi()===B.c9)a.append(p.document.createTextNode(b+" .transparentTextEditing:-webkit-autofill,"+b+" .transparentTextEditing:-webkit-autofill:hover,"+b+" .transparentTextEditing:-webkit-autofill:focus,"+b+" .transparentTextEditing:-webkit-autofill:active { opacity: 0 !important;}")) -r=$.bN().gnq() -if(B.c.q(r,"Edg/"))try{a.append(p.document.createTextNode(b+" input::-ms-reveal { display: none;}"))}catch(q){r=A.aj(q) -if(t.m.b(r)){s=r -p.window.console.warn(J.cB(s))}else throw q}}, -bcd(a,b,c){var s,r,q=c-b,p=new Uint8Array(q) -for(s=0;s"))}, -b7Q(a,b){return new A.bI(Math.max(a.a,b.a),Math.min(a.b,b.b))}, -ag0(a,b,c){var s,r,q,p,o,n,m,l,k,j=a.getSelectionRects(b,c) -j=t.UX.b(j)?j:new A.fk(j,A.a6(j).i("fk<1,Q>")) -s=J.Md(j,t.m) -r=s.gad(s).left -q=s.gad(s).top -p=s.gad(s).right -o=s.gad(s).bottom -for(j=s.a,n=J.bk(j),m=s.$ti.y[1],l=1;l").bN(c).i("HL<1,2>")) -return new A.pR(a,b.i("@<0>").bN(c).i("pR<1,2>"))}, -aWz(a){return new A.jM("Field '"+a+"' has been assigned during initialization.")}, -qS(a){return new A.jM("Field '"+a+"' has not been initialized.")}, -qT(a){return new A.jM("Local '"+a+"' has not been initialized.")}, -b8F(a){return new A.jM("Field '"+a+"' has already been initialized.")}, -akT(a){return new A.jM("Local '"+a+"' has already been initialized.")}, -aP4(a){var s,r=a^48 -if(r<=9)return r -s=a|32 -if(97<=s&&s<=102)return s-87 -return-1}, -O(a,b){a=a+b&536870911 -a=a+((a&524287)<<10)&536870911 -return a^a>>>6}, -eZ(a){a=a+((a&67108863)<<3)&536870911 -a^=a>>>11 -return a+((a&16383)<<15)&536870911}, -aZF(a,b,c){return A.eZ(A.O(A.O(c,a),b))}, -kj(a,b,c){return a}, -aTu(a){var s,r -for(s=$.uk.length,r=0;rc)A.a0(A.cR(b,0,c,"start",null))}return new A.iz(a,b,c,d.i("iz<0>"))}, -w4(a,b,c,d){if(t.Ee.b(a))return new A.qe(a,b,c.i("@<0>").bN(d).i("qe<1,2>")) -return new A.h6(a,b,c.i("@<0>").bN(d).i("h6<1,2>"))}, -aZG(a,b,c){var s="takeCount" -A.lE(b,s) -A.dk(b,s) -if(t.Ee.b(a))return new A.Bp(a,b,c.i("Bp<0>")) -return new A.tx(a,b,c.i("tx<0>"))}, -aZs(a,b,c){var s="count" -if(t.Ee.b(a)){A.lE(b,s) -A.dk(b,s) -return new A.vq(a,b,c.i("vq<0>"))}A.lE(b,s) -A.dk(b,s) -return new A.mM(a,b,c.i("mM<0>"))}, -b86(a,b,c){if(t.Ee.b(b))return new A.Bo(a,b,c.i("Bo<0>")) -return new A.m0(a,b,c.i("m0<0>"))}, -b8q(a,b,c){return new A.qd(a,b,c.i("qd<0>"))}, -cD(){return new A.fM("No element")}, -aWn(){return new A.fM("Too many elements")}, -aWm(){return new A.fM("Too few elements")}, -Yj(a,b,c,d){if(c-b<=32)A.bbb(a,b,c,d) -else A.bba(a,b,c,d)}, -bbb(a,b,c,d){var s,r,q,p,o -for(s=b+1,r=J.bk(a);s<=c;++s){q=r.h(a,s) -p=s -for(;;){if(!(p>b&&d.$2(r.h(a,p-1),q)>0))break -o=p-1 -r.m(a,p,r.h(a,o)) -p=o}r.m(a,p,q)}}, -bba(a3,a4,a5,a6){var s,r,q,p,o,n,m,l,k,j,i=B.j.el(a5-a4+1,6),h=a4+i,g=a5-i,f=B.j.el(a4+a5,2),e=f-i,d=f+i,c=J.bk(a3),b=c.h(a3,h),a=c.h(a3,e),a0=c.h(a3,f),a1=c.h(a3,d),a2=c.h(a3,g) -if(a6.$2(b,a)>0){s=a -a=b -b=s}if(a6.$2(a1,a2)>0){s=a2 -a2=a1 -a1=s}if(a6.$2(b,a0)>0){s=a0 -a0=b -b=s}if(a6.$2(a,a0)>0){s=a0 -a0=a -a=s}if(a6.$2(b,a1)>0){s=a1 -a1=b -b=s}if(a6.$2(a0,a1)>0){s=a1 -a1=a0 -a0=s}if(a6.$2(a,a2)>0){s=a2 -a2=a -a=s}if(a6.$2(a,a0)>0){s=a0 -a0=a -a=s}if(a6.$2(a1,a2)>0){s=a2 -a2=a1 -a1=s}c.m(a3,h,b) -c.m(a3,f,a0) -c.m(a3,g,a2) -c.m(a3,e,c.h(a3,a4)) -c.m(a3,d,c.h(a3,a5)) -r=a4+1 -q=a5-1 -p=J.b(a6.$2(a,a1),0) -if(p)for(o=r;o<=q;++o){n=c.h(a3,o) -m=a6.$2(n,a) -if(m===0)continue -if(m<0){if(o!==r){c.m(a3,o,c.h(a3,r)) -c.m(a3,r,n)}++r}else for(;;){m=a6.$2(c.h(a3,q),a) -if(m>0){--q -continue}else{l=q-1 -if(m<0){c.m(a3,o,c.h(a3,r)) -k=r+1 -c.m(a3,r,c.h(a3,q)) -c.m(a3,q,n) -q=l -r=k -break}else{c.m(a3,o,c.h(a3,q)) -c.m(a3,q,n) -q=l -break}}}}else for(o=r;o<=q;++o){n=c.h(a3,o) -if(a6.$2(n,a)<0){if(o!==r){c.m(a3,o,c.h(a3,r)) -c.m(a3,r,n)}++r}else if(a6.$2(n,a1)>0)for(;;)if(a6.$2(c.h(a3,q),a1)>0){--q -if(qg){while(J.b(a6.$2(c.h(a3,r),a),0))++r -while(J.b(a6.$2(c.h(a3,q),a1),0))--q -for(o=r;o<=q;++o){n=c.h(a3,o) -if(a6.$2(n,a)===0){if(o!==r){c.m(a3,o,c.h(a3,r)) -c.m(a3,r,n)}++r}else if(a6.$2(n,a1)===0)for(;;)if(a6.$2(c.h(a3,q),a1)===0){--q -if(q")),!0,b),k=l.length,j=0 -for(;;){if(!(j")),!0,c),b.i("@<0>").bN(c).i("a3<1,2>")) -n.$keys=l -return n}return new A.q0(A.vX(a,b,c),b.i("@<0>").bN(c).i("q0<1,2>"))}, -aQq(){throw A.i(A.c2("Cannot modify unmodifiable Map"))}, -Nz(){throw A.i(A.c2("Cannot modify constant Set"))}, -b2g(a){var s=v.mangledGlobalNames[a] -if(s!=null)return s -return"minified:"+a}, -b1P(a,b){var s -if(b!=null){s=b.x -if(s!=null)return s}return t.dC.b(a)}, -j(a){var s -if(typeof a=="string")return a -if(typeof a=="number"){if(a!==0)return""+a}else if(!0===a)return"true" -else if(!1===a)return"false" -else if(a==null)return"null" -s=J.cB(a) -return s}, -B(a,b,c,d,e,f){return new A.Cg(a,c,d,e,f)}, -bq3(a,b,c,d,e,f){return new A.Cg(a,c,d,e,f)}, -o1(a,b,c,d,e,f){return new A.Cg(a,c,d,e,f)}, -h7(a){var s,r=$.aXp -if(r==null)r=$.aXp=Symbol("identityHashCode") -s=a[r] -if(s==null){s=Math.random()*0x3fffffff|0 -a[r]=s}return s}, -DE(a,b){var s,r,q,p,o,n=null,m=/^\s*[+-]?((0x[a-f0-9]+)|(\d+)|([a-z0-9]+))\s*$/i.exec(a) -if(m==null)return n -s=m[3] -if(b==null){if(s!=null)return parseInt(a,10) -if(m[2]!=null)return parseInt(a,16) -return n}if(b<2||b>36)throw A.i(A.cR(b,2,36,"radix",n)) -if(b===10&&s!=null)return parseInt(a,10) -if(b<10||s==null){r=b<=10?47+b:86+b -q=m[1] -for(p=q.length,o=0;or)return n}return parseInt(a,b)}, -Ur(a){var s,r -if(!/^\s*[+-]?(?:Infinity|NaN|(?:\.\d+|\d+(?:\.\d*)?)(?:[eE][+-]?\d+)?)\s*$/.test(a))return null -s=parseFloat(a) -if(isNaN(s)){r=B.c.hS(a) -if(r==="NaN"||r==="+NaN"||r==="-NaN")return s -return null}return s}, -Uq(a){var s,r,q,p -if(a instanceof A.Q)return A.iO(A.df(a),null) -s=J.px(a) -if(s===B.Q2||s===B.Qh||t.kk.b(a)){r=B.pQ(a) -if(r!=="Object"&&r!=="")return r -q=a.constructor -if(typeof q=="function"){p=q.name -if(typeof p=="string"&&p!=="Object"&&p!=="")return p}}return A.iO(A.df(a),null)}, -aXs(a){var s,r,q -if(a==null||typeof a=="number"||A.LJ(a))return J.cB(a) -if(typeof a=="string")return JSON.stringify(a) -if(a instanceof A.aN)return a.k(0) -if(a instanceof A.yS)return a.Vb(!0) -s=$.b4D() -for(r=0;r<1;++r){q=s[r].ayQ(a) -if(q!=null)return q}return"Instance of '"+A.Uq(a)+"'"}, -ba0(){return Date.now()}, -ba2(){var s,r -if($.aq3!==0)return -$.aq3=1000 -if(typeof window=="undefined")return -s=window -if(s==null)return -if(!!s.dartUseDateNowForTicks)return -r=s.performance -if(r==null)return -if(typeof r.now!="function")return -$.aq3=1e6 -$.wz=new A.aq2(r)}, -ba_(){if(!!self.location)return self.location.href -return null}, -aXo(a){var s,r,q,p,o=a.length -if(o<=500)return String.fromCharCode.apply(null,a) -for(s="",r=0;r65535)return A.ba3(a)}return A.aXo(a)}, -ba4(a,b,c){var s,r,q,p -if(c<=500&&b===0&&c===a.length)return String.fromCharCode.apply(null,a) -for(s=b,r="";s>>0,s&1023|56320)}}throw A.i(A.cR(a,0,1114111,null,null))}, -aRC(a,b,c,d,e,f,g,h,i){var s,r,q,p=b-1 -if(0<=a&&a<100){a+=400 -p-=4800}s=B.j.cn(h,1000) -g+=B.j.el(h-s,1000) -r=i?Date.UTC(a,p,c,d,e,f,g):new Date(a,p,c,d,e,f,g).valueOf() -q=!0 -if(!isNaN(r))if(!(r<-864e13))if(!(r>864e13))q=r===864e13&&s!==0 -if(q)return null -return r}, -im(a){if(a.date===void 0)a.date=new Date(a.a) -return a.date}, -DD(a){return a.c?A.im(a).getUTCFullYear()+0:A.im(a).getFullYear()+0}, -aRB(a){return a.c?A.im(a).getUTCMonth()+1:A.im(a).getMonth()+1}, -aRy(a){return a.c?A.im(a).getUTCDate()+0:A.im(a).getDate()+0}, -aRz(a){return a.c?A.im(a).getUTCHours()+0:A.im(a).getHours()+0}, -aRA(a){return a.c?A.im(a).getUTCMinutes()+0:A.im(a).getMinutes()+0}, -aXr(a){return a.c?A.im(a).getUTCSeconds()+0:A.im(a).getSeconds()+0}, -aXq(a){return a.c?A.im(a).getUTCMilliseconds()+0:A.im(a).getMilliseconds()+0}, -ba1(a){var s=a.$thrownJsError -if(s==null)return null -return A.b3(s)}, -aq4(a,b){var s -if(a.$thrownJsError==null){s=new Error() -A.eh(a,s) -a.$thrownJsError=s -s.stack=b.k(0)}}, -abM(a,b){var s,r="index" -if(!A.np(b))return new A.iS(!0,b,r,null) -s=J.cg(a) -if(b<0||b>=s)return A.R7(b,s,a,null,r) -return A.aq5(b,r)}, -bjL(a,b,c){if(a<0||a>c)return A.cR(a,0,c,"start",null) -if(b!=null)if(bc)return A.cR(b,a,c,"end",null) -return new A.iS(!0,b,"end",null)}, -zo(a){return new A.iS(!0,a,null,null)}, -hP(a){return a}, -i(a){return A.eh(a,new Error())}, -eh(a,b){var s -if(a==null)a=new A.n_() -b.dartException=a -s=A.bl9 -if("defineProperty" in Object){Object.defineProperty(b,"message",{get:s}) -b.name=""}else b.toString=s -return b}, -bl9(){return J.cB(this.dartException)}, -a0(a,b){throw A.eh(a,b==null?new Error():b)}, -az(a,b,c){var s -if(b==null)b=0 -if(c==null)c=0 -s=Error() -A.a0(A.beP(a,b,c),s)}, -beP(a,b,c){var s,r,q,p,o,n,m,l,k -if(typeof b=="string")s=b -else{r="[]=;add;removeWhere;retainWhere;removeRange;setRange;setInt8;setInt16;setInt32;setUint8;setUint16;setUint32;setFloat32;setFloat64".split(";") -q=r.length -p=b -if(p>q){c=p/q|0 -p%=q}s=r[p]}o=typeof c=="string"?c:"modify;remove from;add to".split(";")[c] -n=t.j.b(a)?"list":"ByteData" -m=a.$flags|0 -l="a " -if((m&4)!==0)k="constant " -else if((m&2)!==0){k="unmodifiable " -l="an "}else k=(m&1)!==0?"fixed-length ":"" -return new A.Gt("'"+s+"': Cannot "+o+" "+l+k+n)}, -C(a){throw A.i(A.cd(a))}, -n0(a){var s,r,q,p,o,n -a=A.aPx(a.replace(String({}),"$receiver$")) -s=a.match(/\\\$[a-zA-Z]+\\\$/g) -if(s==null)s=A.c([],t.s) -r=s.indexOf("\\$arguments\\$") -q=s.indexOf("\\$argumentsExpr\\$") -p=s.indexOf("\\$expr\\$") -o=s.indexOf("\\$method\\$") -n=s.indexOf("\\$receiver\\$") -return new A.axD(a.replace(new RegExp("\\\\\\$arguments\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$argumentsExpr\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$expr\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$method\\\\\\$","g"),"((?:x|[^x])*)").replace(new RegExp("\\\\\\$receiver\\\\\\$","g"),"((?:x|[^x])*)"),r,q,p,o,n)}, -axE(a){return function($expr$){var $argumentsExpr$="$arguments$" -try{$expr$.$method$($argumentsExpr$)}catch(s){return s.message}}(a)}, -b_2(a){return function($expr$){try{$expr$.$method$}catch(s){return s.message}}(a)}, -aRc(a,b){var s=b==null,r=s?null:b.method -return new A.Ri(a,r,s?null:b.receiver)}, -aj(a){if(a==null)return new A.TS(a) -if(a instanceof A.Bx)return A.pB(a,a.a) -if(typeof a!=="object")return a -if("dartException" in a)return A.pB(a,a.dartException) -return A.biX(a)}, -pB(a,b){if(t.Lt.b(b))if(b.$thrownJsError==null)b.$thrownJsError=a -return b}, -biX(a){var s,r,q,p,o,n,m,l,k,j,i,h,g -if(!("message" in a))return a -s=a.message -if("number" in a&&typeof a.number=="number"){r=a.number -q=r&65535 -if((B.j.fU(r,16)&8191)===10)switch(q){case 438:return A.pB(a,A.aRc(A.j(s)+" (Error "+q+")",null)) -case 445:case 5007:A.j(s) -return A.pB(a,new A.Dm())}}if(a instanceof TypeError){p=$.b3m() -o=$.b3n() -n=$.b3o() -m=$.b3p() -l=$.b3s() -k=$.b3t() -j=$.b3r() -$.b3q() -i=$.b3v() -h=$.b3u() -g=p.le(s) -if(g!=null)return A.pB(a,A.aRc(s,g)) -else{g=o.le(s) -if(g!=null){g.method="call" -return A.pB(a,A.aRc(s,g))}else if(n.le(s)!=null||m.le(s)!=null||l.le(s)!=null||k.le(s)!=null||j.le(s)!=null||m.le(s)!=null||i.le(s)!=null||h.le(s)!=null)return A.pB(a,new A.Dm())}return A.pB(a,new A.Z2(typeof s=="string"?s:""))}if(a instanceof RangeError){if(typeof s=="string"&&s.indexOf("call stack")!==-1)return new A.Fz() -s=function(b){try{return String(b)}catch(f){}return null}(a) -return A.pB(a,new A.iS(!1,null,null,typeof s=="string"?s.replace(/^RangeError:\s*/,""):s))}if(typeof InternalError=="function"&&a instanceof InternalError)if(typeof s=="string"&&s==="too much recursion")return new A.Fz() -return a}, -b3(a){var s -if(a instanceof A.Bx)return a.b -if(a==null)return new A.Kd(a) -s=a.$cachedTrace -if(s!=null)return s -s=new A.Kd(a) -if(typeof a==="object")a.$cachedTrace=s -return s}, -pA(a){if(a==null)return J.D(a) -if(typeof a=="object")return A.h7(a) -return J.D(a)}, -bjs(a){if(typeof a=="number")return B.d.gt(a) -if(a instanceof A.Kz)return A.h7(a) -if(a instanceof A.yS)return a.gt(a) -if(a instanceof A.fz)return a.gt(0) -return A.pA(a)}, -b1C(a,b){var s,r,q,p=a.length -for(s=0;s{b.i=d.length-c -if(a==null)return b.s -if(b.s==null)return a -if(b.s===a){delete b.s -return a}return b.s},null) -return s.map(a=>JSON.stringify(a)).join("\n")}, -aY(a,b){var s,r,q,p,o,n,m,l,k,j,i,h={},g=v.deferredLibraryParts[a] -if(g==null)return A.di(null,t.a) -s=t.s -r=A.c([],s) -q=A.c([],s) -p=v.deferredPartUris -o=v.deferredPartHashes -for(n=0;na},q=self.trustedTypes -if(q==null)return r -s=q.createPolicy("dart.deferred-loading",r) -return s==null?r:s}, -bhO(a,b){var s=$.aUo(),r=self.encodeURIComponent(a) -return $.aUc().createScriptURL(s+r+b)}, -beG(){var s=v.currentScript -if(s!=null)return String(s.src) -if(!self.window&&!!self.postMessage)return A.beH() -return null}, -beH(){var s,r=new Error().stack -if(r==null){r=function(){try{throw new Error()}catch(q){return q.stack}}() -if(r==null)throw A.i(A.c2("No stack trace"))}s=r.match(new RegExp("^ *at [^(]*\\((.*):[0-9]*:[0-9]*\\)$","m")) -if(s!=null)return s[1] -s=r.match(new RegExp("^[^@]*@(.*):[0-9]*$","m")) -if(s!=null)return s[1] -throw A.i(A.c2('Cannot extract URI from "'+r+'"'))}, -b0M(a3,a4,a5,a6,a7,a8){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=v.isHunkLoaded -A.hN("startLoad",null,a6,B.b.bJ(a4,";")) -k=t.s -s=A.c([],k) -r=A.c([],k) -q=A.c([],k) -j=A.c([],t.RD) -for(k=a8>0,i="?dart2jsRetry="+a8,h=0;h0?"?dart2jsRetry="+a0:"") -s=k.toString() -A.hN("download",null,b,a) -r=self.dartDeferredLibraryLoader -q=new A.aO0(g,a0,a,b,c,d,s) -f=new A.aO1(g,d,a,b,q) -p=A.jp(f,0) -o=A.jp(new A.aNX(q),1) -if(typeof r==="function")try{r(s,p,o,b,c)}catch(j){n=A.aj(j) -m=A.b3(j) -q.$3(n,"invoking dartDeferredLibraryLoader hook",m)}else if(!self.window&&!!self.postMessage){i=new XMLHttpRequest() -i.open("GET",s) -i.addEventListener("load",A.jp(new A.aNY(i,q,f),1),false) -i.addEventListener("error",new A.aNZ(q),false) -i.addEventListener("abort",new A.aO_(q),false) -i.send()}else{h=document.createElement("script") -h.type="text/javascript" -h.src=k -f=$.aU9() -if(f!=null&&f!==""){h.nonce=f -h.setAttribute("nonce",$.aU9())}f=$.b47() -if(f!=null&&f!=="")h.crossOrigin=f -h.addEventListener("load",p,false) -h.addEventListener("error",o,false) -document.body.appendChild(h)}return g.a.a}, -nt(){return v.G}, -bq8(a,b,c){Object.defineProperty(a,b,{value:c,enumerable:false,writable:true,configurable:true})}, -bkz(a){var s,r,q,p,o,n=$.b1L.$1(a),m=$.aON[n] -if(m!=null){Object.defineProperty(a,v.dispatchPropertyName,{value:m,enumerable:false,writable:true,configurable:true}) -return m.i}s=$.aPc[n] -if(s!=null)return s -r=v.interceptorsByTag[n] -if(r==null){q=$.b1h.$2(a,n) -if(q!=null){m=$.aON[q] -if(m!=null){Object.defineProperty(a,v.dispatchPropertyName,{value:m,enumerable:false,writable:true,configurable:true}) -return m.i}s=$.aPc[q] -if(s!=null)return s -r=v.interceptorsByTag[q] -n=q}}if(r==null)return null -s=r.prototype -p=n[0] -if(p==="!"){m=A.aPq(s) -$.aON[n]=m -Object.defineProperty(a,v.dispatchPropertyName,{value:m,enumerable:false,writable:true,configurable:true}) -return m.i}if(p==="~"){$.aPc[n]=s -return s}if(p==="-"){o=A.aPq(s) -Object.defineProperty(Object.getPrototypeOf(a),v.dispatchPropertyName,{value:o,enumerable:false,writable:true,configurable:true}) -return o.i}if(p==="+")return A.b1Y(a,s) -if(p==="*")throw A.i(A.fc(n)) -if(v.leafTags[n]===true){o=A.aPq(s) -Object.defineProperty(Object.getPrototypeOf(a),v.dispatchPropertyName,{value:o,enumerable:false,writable:true,configurable:true}) -return o.i}else return A.b1Y(a,s)}, -b1Y(a,b){var s=Object.getPrototypeOf(a) -Object.defineProperty(s,v.dispatchPropertyName,{value:J.aTy(b,s,null,null),enumerable:false,writable:true,configurable:true}) -return b}, -aPq(a){return J.aTy(a,!1,null,!!a.$ii8)}, -bkB(a,b,c){var s=b.prototype -if(v.leafTags[a]===true)return A.aPq(s) -else return J.aTy(s,c,null,null)}, -bkg(){if(!0===$.aTr)return -$.aTr=!0 -A.bkh()}, -bkh(){var s,r,q,p,o,n,m,l -$.aON=Object.create(null) -$.aPc=Object.create(null) -A.bkf() -s=v.interceptorsByTag -r=Object.getOwnPropertyNames(s) -if(typeof window!="undefined"){window -q=function(){} -for(p=0;p=0 -else if(b instanceof A.vS){s=B.c.cD(a,c) -return b.b.test(s)}else return!J.b5i(b,B.c.cD(a,c)).gan(0)}, -bjN(a){if(a.indexOf("$",0)>=0)return a.replace(/\$/g,"$$$$") -return a}, -aPx(a){if(/[[\]{}()*+?.\\^$|]/.test(a))return a.replace(/[[\]{}()*+?.\\^$|]/g,"\\$&") -return a}, -nu(a,b,c){var s=A.bkX(a,b,c) -return s}, -bkX(a,b,c){var s,r,q -if(b===""){if(a==="")return c -s=a.length -for(r=c,q=0;q=0)return a.split(b).join(c) -return a.replace(new RegExp(A.aPx(b),"g"),A.bjN(c))}, -b1b(a){return a}, -b29(a,b,c,d){var s,r,q,p,o,n,m -for(s=b.rg(0,a),s=new A.GR(s.a,s.b,s.c),r=t.Qz,q=0,p="";s.v();){o=s.d -if(o==null)o=r.a(o) -n=o.b -m=n.index -p=p+A.j(A.b1b(B.c.a6(a,q,m)))+A.j(c.$1(o)) -q=m+n[0].length}s=p+A.j(A.b1b(B.c.cD(a,q))) -return s.charCodeAt(0)==0?s:s}, -bkY(a,b,c,d){var s=a.indexOf(b,d) -if(s<0)return a -return A.b2a(a,s,s+b.length,c)}, -b2a(a,b,c,d){return a.substring(0,b)+d+a.substring(c)}, -an:function an(a,b){this.a=a -this.b=b}, -a5h:function a5h(a,b){this.a=a -this.b=b}, -IZ:function IZ(a,b){this.a=a -this.b=b}, -a5i:function a5i(a,b){this.a=a -this.b=b}, -a5j:function a5j(a,b){this.a=a -this.b=b}, -a5k:function a5k(a,b){this.a=a -this.b=b}, -a5l:function a5l(a,b){this.a=a -this.b=b}, -hL:function hL(a,b,c){this.a=a -this.b=b -this.c=c}, -a5m:function a5m(a,b,c){this.a=a -this.b=b -this.c=c}, -a5n:function a5n(a,b,c){this.a=a -this.b=b -this.c=c}, -J_:function J_(a,b,c){this.a=a -this.b=b -this.c=c}, -J0:function J0(a,b,c){this.a=a -this.b=b -this.c=c}, -a5o:function a5o(a,b,c){this.a=a -this.b=b -this.c=c}, -a5p:function a5p(a,b,c){this.a=a -this.b=b -this.c=c}, -J1:function J1(a){this.a=a}, -J2:function J2(a){this.a=a}, -q0:function q0(a,b){this.a=a -this.$ti=b}, -v7:function v7(){}, -aeI:function aeI(a,b,c){this.a=a -this.b=b -this.c=c}, -a3:function a3(a,b,c){this.a=a -this.b=b -this.$ti=c}, -u_:function u_(a,b){this.a=a -this.$ti=b}, -p7:function p7(a,b,c){var _=this -_.a=a -_.b=b -_.c=0 -_.d=null -_.$ti=c}, -dY:function dY(a,b){this.a=a -this.$ti=b}, -AF:function AF(){}, -fW:function fW(a,b,c){this.a=a -this.b=b -this.$ti=c}, -dR:function dR(a,b){this.a=a -this.$ti=b}, -Re:function Re(){}, -nX:function nX(a,b){this.a=a -this.$ti=b}, -Cg:function Cg(a,b,c,d,e){var _=this -_.a=a -_.c=b -_.d=c -_.e=d -_.f=e}, -aq2:function aq2(a){this.a=a}, -Em:function Em(){}, -axD:function axD(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -Dm:function Dm(){}, -Ri:function Ri(a,b,c){this.a=a -this.b=b -this.c=c}, -Z2:function Z2(a){this.a=a}, -TS:function TS(a){this.a=a}, -Bx:function Bx(a,b){this.a=a -this.b=b}, -Kd:function Kd(a){this.a=a -this.b=null}, -aN:function aN(){}, -Np:function Np(){}, -Nq:function Nq(){}, -YE:function YE(){}, -Yr:function Yr(){}, -uK:function uK(a,b){this.a=a -this.b=b}, -Vk:function Vk(a){this.a=a}, -PJ:function PJ(a){this.a=a}, -aPj:function aPj(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -aPi:function aPi(a,b){this.a=a -this.b=b}, -aPg:function aPg(a,b,c){this.a=a -this.b=b -this.c=c}, -aPk:function aPk(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -aPl:function aPl(a,b,c){this.a=a -this.b=b -this.c=c}, -aPh:function aPh(a){this.a=a}, -aNO:function aNO(a){this.a=a}, -aNQ:function aNQ(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -aNR:function aNR(a){this.a=a}, -aNS:function aNS(){}, -aNT:function aNT(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -aNP:function aNP(a,b,c){this.a=a -this.b=b -this.c=c}, -aO0:function aO0(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -aO1:function aO1(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -aNX:function aNX(a){this.a=a}, -aNY:function aNY(a,b,c){this.a=a -this.b=b -this.c=c}, -aNZ:function aNZ(a){this.a=a}, -aO_:function aO_(a){this.a=a}, -fJ:function fJ(a){var _=this -_.a=0 -_.f=_.e=_.d=_.c=_.b=null -_.r=0 -_.$ti=a}, -akv:function akv(a,b){this.a=a -this.b=b}, -aku:function aku(a){this.a=a}, -al4:function al4(a,b){var _=this -_.a=a -_.b=b -_.d=_.c=null}, -bD:function bD(a,b){this.a=a -this.$ti=b}, -eS:function eS(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null}, -bo:function bo(a,b){this.a=a -this.$ti=b}, -db:function db(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null}, -dZ:function dZ(a,b){this.a=a -this.$ti=b}, -Rx:function Rx(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=null -_.$ti=d}, -Cj:function Cj(a){var _=this -_.a=0 -_.f=_.e=_.d=_.c=_.b=null -_.r=0 -_.$ti=a}, -qO:function qO(a){var _=this -_.a=0 -_.f=_.e=_.d=_.c=_.b=null -_.r=0 -_.$ti=a}, -aP6:function aP6(a){this.a=a}, -aP7:function aP7(a){this.a=a}, -aP8:function aP8(a){this.a=a}, -yS:function yS(){}, -a5e:function a5e(){}, -a5f:function a5f(){}, -a5g:function a5g(){}, -vS:function vS(a,b){var _=this -_.a=a -_.b=b -_.e=_.d=_.c=null}, -yD:function yD(a){this.b=a}, -a0e:function a0e(a,b,c){this.a=a -this.b=b -this.c=c}, -GR:function GR(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null}, -xt:function xt(a,b){this.a=a -this.c=b}, -a8T:function a8T(a,b,c){this.a=a -this.b=b -this.c=c}, -a8U:function a8U(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null}, -bl3(a){throw A.eh(A.aWz(a),new Error())}, -a(){throw A.eh(A.qS(""),new Error())}, -bs(){throw A.eh(A.b8F(""),new Error())}, -aK(){throw A.eh(A.aWz(""),new Error())}, -bQ(){var s=new A.a11("") -return s.b=s}, -lh(a){var s=new A.a11(a) -return s.b=s}, -yy(a){var s=new A.aDe(a) -return s.b=s}, -a11:function a11(a){this.a=a -this.b=null}, -aDe:function aDe(a){this.b=null -this.c=a}, -no(a,b,c){}, -iN(a){var s,r,q -if(t.ha.b(a))return a -s=J.bk(a) -r=A.bO(s.gH(a),null,!1,t.z) -for(q=0;q>>0!==a||a>=c)throw A.i(A.abM(b,a))}, -pt(a,b,c){var s -if(!(a>>>0!==a))if(b==null)s=a>c -else s=b>>>0!==b||a>b||b>c -else s=!0 -if(s)throw A.i(A.bjL(a,b,c)) -if(b==null)return c -return b}, -wj:function wj(){}, -re:function re(){}, -Dc:function Dc(){}, -aab:function aab(a){this.a=a}, -D7:function D7(){}, -wk:function wk(){}, -Db:function Db(){}, -ij:function ij(){}, -D8:function D8(){}, -D9:function D9(){}, -TG:function TG(){}, -Da:function Da(){}, -TH:function TH(){}, -Dd:function Dd(){}, -De:function De(){}, -Df:function Df(){}, -mh:function mh(){}, -IB:function IB(){}, -IC:function IC(){}, -ID:function ID(){}, -IE:function IE(){}, -aRK(a,b){var s=b.c -return s==null?b.c=A.KE(a,"av",[b.x]):s}, -aXM(a){var s=a.w -if(s===6||s===7)return A.aXM(a.x) -return s===11||s===12}, -bau(a){return a.as}, -b1X(a,b){var s,r=b.length -for(s=0;s") -for(r=1;r=0)p+=" "+r[q];++q}return p+"})"}, -b0G(a1,a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=", ",a0=null -if(a3!=null){s=a3.length -if(a2==null)a2=A.c([],t.s) -else a0=a2.length -r=a2.length -for(q=s;q>0;--q)a2.push("T"+(r+q)) -for(p=t.X,o="<",n="",q=0;q0){c+=b+"[" -for(b="",q=0;q0){c+=b+"{" -for(b="",q=0;q "+d}, -iO(a,b){var s,r,q,p,o,n,m=a.w -if(m===5)return"erased" -if(m===2)return"dynamic" -if(m===3)return"void" -if(m===1)return"Never" -if(m===4)return"any" -if(m===6){s=a.x -r=A.iO(s,b) -q=s.w -return(q===11||q===12?"("+r+")":r)+"?"}if(m===7)return"FutureOr<"+A.iO(a.x,b)+">" -if(m===8){p=A.biW(a.x) -o=a.y -return o.length>0?p+("<"+A.b13(o,b)+">"):p}if(m===10)return A.biz(a,b) -if(m===11)return A.b0G(a,b,null) -if(m===12)return A.b0G(a.x,b,a.y) -if(m===13){n=a.x -return b[b.length-1-n]}return"?"}, -biW(a){var s=v.mangledGlobalNames[a] -if(s!=null)return s -return"minified:"+a}, -bdZ(a,b){var s=a.tR[b] -while(typeof s=="string")s=a.tR[s] -return s}, -bdY(a,b){var s,r,q,p,o,n=a.eT,m=n[b] -if(m==null)return A.aLk(a,b,!1) -else if(typeof m=="number"){s=m -r=A.KF(a,5,"#") -q=A.aLx(s) -for(p=0;p0)p+="<"+A.KD(c)+">" -s=a.eC.get(p) -if(s!=null)return s -r=new A.jZ(null,null) -r.w=8 -r.x=b -r.y=c -if(c.length>0)r.c=c[0] -r.as=p -q=A.pl(a,r) -a.eC.set(p,q) -return q}, -aSN(a,b,c){var s,r,q,p,o,n -if(b.w===9){s=b.x -r=b.y.concat(c)}else{r=c -s=b}q=s.as+(";<"+A.KD(r)+">") -p=a.eC.get(q) -if(p!=null)return p -o=new A.jZ(null,null) -o.w=9 -o.x=s -o.y=r -o.as=q -n=A.pl(a,o) -a.eC.set(q,n) -return n}, -b03(a,b,c){var s,r,q="+"+(b+"("+A.KD(c)+")"),p=a.eC.get(q) -if(p!=null)return p -s=new A.jZ(null,null) -s.w=10 -s.x=b -s.y=c -s.as=q -r=A.pl(a,s) -a.eC.set(q,r) -return r}, -b00(a,b,c){var s,r,q,p,o,n=b.as,m=c.a,l=m.length,k=c.b,j=k.length,i=c.c,h=i.length,g="("+A.KD(m) -if(j>0){s=l>0?",":"" -g+=s+"["+A.KD(k)+"]"}if(h>0){s=l>0?",":"" -g+=s+"{"+A.bdS(i)+"}"}r=n+(g+")") -q=a.eC.get(r) -if(q!=null)return q -p=new A.jZ(null,null) -p.w=11 -p.x=b -p.y=c -p.as=r -o=A.pl(a,p) -a.eC.set(r,o) -return o}, -aSO(a,b,c,d){var s,r=b.as+("<"+A.KD(c)+">"),q=a.eC.get(r) -if(q!=null)return q -s=A.bdU(a,b,c,r,d) -a.eC.set(r,s) -return s}, -bdU(a,b,c,d,e){var s,r,q,p,o,n,m,l -if(e){s=c.length -r=A.aLx(s) -for(q=0,p=0;p0){n=A.pv(a,b,r,0) -m=A.zl(a,c,r,0) -return A.aSO(a,n,m,c!==m)}}l=new A.jZ(null,null) -l.w=12 -l.x=b -l.y=c -l.as=d -return A.pl(a,l)}, -b_J(a,b,c,d){return{u:a,e:b,r:c,s:[],p:0,n:d}}, -b_L(a){var s,r,q,p,o,n,m,l=a.r,k=a.s -for(s=l.length,r=0;r=48&&q<=57)r=A.bdk(r+1,q,l,k) -else if((((q|32)>>>0)-97&65535)<26||q===95||q===36||q===124)r=A.b_K(a,r,l,k,!1) -else if(q===46)r=A.b_K(a,r,l,k,!0) -else{++r -switch(q){case 44:break -case 58:k.push(!1) -break -case 33:k.push(!0) -break -case 59:k.push(A.u6(a.u,a.e,k.pop())) -break -case 94:k.push(A.bdW(a.u,k.pop())) -break -case 35:k.push(A.KF(a.u,5,"#")) -break -case 64:k.push(A.KF(a.u,2,"@")) -break -case 126:k.push(A.KF(a.u,3,"~")) -break -case 60:k.push(a.p) -a.p=k.length -break -case 62:A.bdm(a,k) -break -case 38:A.bdl(a,k) -break -case 63:p=a.u -k.push(A.b02(p,A.u6(p,a.e,k.pop()),a.n)) -break -case 47:p=a.u -k.push(A.b01(p,A.u6(p,a.e,k.pop()),a.n)) -break -case 40:k.push(-3) -k.push(a.p) -a.p=k.length -break -case 41:A.bdj(a,k) -break -case 91:k.push(a.p) -a.p=k.length -break -case 93:o=k.splice(a.p) -A.b_M(a.u,a.e,o) -a.p=k.pop() -k.push(o) -k.push(-1) -break -case 123:k.push(a.p) -a.p=k.length -break -case 125:o=k.splice(a.p) -A.bdo(a.u,a.e,o) -a.p=k.pop() -k.push(o) -k.push(-2) -break -case 43:n=l.indexOf("(",r) -k.push(l.substring(r,n)) -k.push(-4) -k.push(a.p) -a.p=k.length -r=n+1 -break -default:throw"Bad character "+q}}}m=k.pop() -return A.u6(a.u,a.e,m)}, -bdk(a,b,c,d){var s,r,q=b-48 -for(s=c.length;a=48&&r<=57))break -q=q*10+(r-48)}d.push(q) -return a}, -b_K(a,b,c,d,e){var s,r,q,p,o,n,m=b+1 -for(s=c.length;m>>0)-97&65535)<26||r===95||r===36||r===124))q=r>=48&&r<=57 -else q=!0 -if(!q)break}}p=c.substring(b,m) -if(e){s=a.u -o=a.e -if(o.w===9)o=o.x -n=A.bdZ(s,o.x)[p] -if(n==null)A.a0('No "'+p+'" in "'+A.bau(o)+'"') -d.push(A.KG(s,o,n))}else d.push(p) -return m}, -bdm(a,b){var s,r=a.u,q=A.b_I(a,b),p=b.pop() -if(typeof p=="string")b.push(A.KE(r,p,q)) -else{s=A.u6(r,a.e,p) -switch(s.w){case 11:b.push(A.aSO(r,s,q,a.n)) -break -default:b.push(A.aSN(r,s,q)) -break}}}, -bdj(a,b){var s,r,q,p=a.u,o=b.pop(),n=null,m=null -if(typeof o=="number")switch(o){case-1:n=b.pop() -break -case-2:m=b.pop() -break -default:b.push(o) -break}else b.push(o) -s=A.b_I(a,b) -o=b.pop() -switch(o){case-3:o=b.pop() -if(n==null)n=p.sEA -if(m==null)m=p.sEA -r=A.u6(p,a.e,o) -q=new A.a2O() -q.a=s -q.b=n -q.c=m -b.push(A.b00(p,r,q)) -return -case-4:b.push(A.b03(p,b.pop(),s)) -return -default:throw A.i(A.ko("Unexpected state under `()`: "+A.j(o)))}}, -bdl(a,b){var s=b.pop() -if(0===s){b.push(A.KF(a.u,1,"0&")) -return}if(1===s){b.push(A.KF(a.u,4,"1&")) -return}throw A.i(A.ko("Unexpected extended operation "+A.j(s)))}, -b_I(a,b){var s=b.splice(a.p) -A.b_M(a.u,a.e,s) -a.p=b.pop() -return s}, -u6(a,b,c){if(typeof c=="string")return A.KE(a,c,a.sEA) -else if(typeof c=="number"){b.toString -return A.bdn(a,b,c)}else return c}, -b_M(a,b,c){var s,r=c.length -for(s=0;sn)return!1 -m=n-o -l=s.b -k=r.b -j=l.length -i=k.length -if(o+j=d)return!1 -a1=f[b] -b+=3 -if(a00?new Array(q):v.typeUniverse.sEA -for(o=0;o0?new Array(a):v.typeUniverse.sEA}, -jZ:function jZ(a,b){var _=this -_.a=a -_.b=b -_.r=_.f=_.d=_.c=null -_.w=0 -_.as=_.Q=_.z=_.y=_.x=null}, -a2O:function a2O(){this.c=this.b=this.a=null}, -Kz:function Kz(a){this.a=a}, -a2p:function a2p(){}, -KB:function KB(a){this.a=a}, -bkb(a,b){var s,r -if(B.c.c8(a,"Digit"))return a.charCodeAt(5) -s=b.charCodeAt(0) -if(b.length<=1)r=!(s>=32&&s<=127) -else r=!0 -if(r){r=B.DP.h(0,a) -return r==null?null:r.charCodeAt(0)}if(!(s>=$.b4l()&&s<=$.b4m()))r=s>=$.b4v()&&s<=$.b4w() -else r=!0 -if(r)return b.toLowerCase().charCodeAt(0) -return null}, -bdL(a){var s=B.DP.gfj(),r=A.t(t.S,t.N) -r.Ws(s.hI(s,new A.aJR(),t.q9)) -return new A.aJQ(a,r)}, -biV(a){var s,r,q,p,o=a.a0T(),n=A.t(t.N,t.S) -for(s=a.a,r=0;r=2)return null -return a.toLowerCase().charCodeAt(0)}, -aJQ:function aJQ(a,b){this.a=a -this.b=b -this.c=0}, -aJR:function aJR(){}, -CA:function CA(a){this.a=a}, -bcN(){var s,r,q -if(self.scheduleImmediate!=null)return A.bj3() -if(self.MutationObserver!=null&&self.document!=null){s={} -r=self.document.createElement("div") -q=self.document.createElement("span") -s.a=null -new self.MutationObserver(A.jp(new A.azq(s),1)).observe(r,{childList:true}) -return new A.azp(s,r,q)}else if(self.setImmediate!=null)return A.bj4() -return A.bj5()}, -bcO(a){self.scheduleImmediate(A.jp(new A.azr(a),0))}, -bcP(a){self.setImmediate(A.jp(new A.azs(a),0))}, -bcQ(a){A.aSe(B.z,a)}, -aSe(a,b){var s=B.j.el(a.a,1000) -return A.bdN(s<0?0:s,b)}, -aZX(a,b){var s=B.j.el(a.a,1000) -return A.bdO(s<0?0:s,b)}, -bdN(a,b){var s=new A.Kx(!0) -s.a8A(a,b) -return s}, -bdO(a,b){var s=new A.Kx(!1) -s.a8B(a,b) -return s}, -I(a){return new A.GX(new A.ax($.as,a.i("ax<0>")),a.i("GX<0>"))}, -H(a,b){a.$2(0,null) -b.b=!0 -return b.a}, -p(a,b){A.bef(a,b)}, -G(a,b){b.dR(a)}, -F(a,b){b.fX(A.aj(a),A.b3(a))}, -bef(a,b){var s,r,q=new A.aLX(b),p=new A.aLY(b) -if(a instanceof A.ax)a.V6(q,p,t.z) -else{s=t.z -if(t.L0.b(a))a.hP(q,p,s) -else{r=new A.ax($.as,t.LR) -r.a=8 -r.c=a -r.V6(q,p,s)}}}, -J(a){var s=function(b,c){return function(d,e){while(true){try{b(d,e) -break}catch(r){e=r -d=c}}}}(a,1) -return $.as.LV(new A.aOz(s))}, -b_Y(a,b,c){return 0}, -pH(a){var s -if(t.Lt.b(a)){s=a.gtU() -if(s!=null)return s}return B.eF}, -b72(a){return new A.vj(a)}, -qz(a,b){var s=new A.ax($.as,b.i("ax<0>")) -A.ck(B.z,new A.aiK(a,s)) -return s}, -di(a,b){var s=a==null?b.a(a):a,r=new A.ax($.as,b.i("ax<0>")) -r.lI(s) -return r}, -vE(a,b,c){var s -if(b==null&&!c.b(null))throw A.i(A.hm(null,"computation","The type parameter is not nullable")) -s=new A.ax($.as,c.i("ax<0>")) -A.ck(a,new A.aiJ(b,s,c)) -return s}, -i2(a,b){var s,r,q,p,o,n,m,l,k,j,i={},h=null,g=!1,f=new A.ax($.as,b.i("ax>")) -i.a=null -i.b=0 -i.c=i.d=null -s=new A.aiM(i,h,g,f) -try{for(n=J.bG(a),m=t.a;n.v();){r=n.gT() -q=i.b -r.hP(new A.aiL(i,q,f,b,h,g),s,m);++i.b}n=i.b -if(n===0){n=f -n.qD(A.c([],b.i("z<0>"))) -return n}i.a=A.bO(n,null,!1,b.i("0?"))}catch(l){p=A.aj(l) -o=A.b3(l) -if(i.b===0||g){n=f -m=p -k=o -j=A.ui(m,k) -m=new A.d7(m,k==null?A.pH(m):k) -n.oI(m) -return n}else{i.d=p -i.c=o}}return f}, -vD(a,b){a.agw()}, -ui(a,b){if($.as===B.aR)return null -return null}, -aNE(a,b){if($.as!==B.aR)A.ui(a,b) -if(b==null)if(t.Lt.b(a)){b=a.gtU() -if(b==null){A.aq4(a,B.eF) -b=B.eF}}else b=B.eF -else if(t.Lt.b(a))A.aq4(a,b) -return new A.d7(a,b)}, -bd8(a,b,c){var s=new A.ax(b,c.i("ax<0>")) -s.a=8 -s.c=a -return s}, -he(a,b){var s=new A.ax($.as,b.i("ax<0>")) -s.a=8 -s.c=a -return s}, -aCr(a,b,c){var s,r,q,p={},o=p.a=a -while(s=o.a,(s&4)!==0){o=o.c -p.a=o}if(o===b){s=A.iy() -b.oI(new A.d7(new A.iS(!0,o,null,"Cannot complete a future with itself"),s)) -return}r=b.a&1 -s=o.a=s|r -if((s&24)===0){q=b.c -b.a=b.a&1|4 -b.c=o -o.Tg(q) -return}if(!c)if(b.c==null)o=(s&16)===0||r!==0 -else o=!1 -else o=!0 -if(o){q=b.uP() -b.ya(p.a) -A.tW(b,q) -return}b.a^=2 -A.nq(null,null,b.b,new A.aCs(p,b))}, -tW(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f={},e=f.a=a -for(s=t.L0;;){r={} -q=e.a -p=(q&16)===0 -o=!p -if(b==null){if(o&&(q&1)===0){e=e.c -A.zk(e.a,e.b)}return}r.a=b -n=b.a -for(e=b;n!=null;e=n,n=m){e.a=null -A.tW(f.a,e) -r.a=n -m=n.a}q=f.a -l=q.c -r.b=o -r.c=l -if(p){k=e.c -k=(k&1)!==0||(k&15)===8}else k=!0 -if(k){j=e.b.b -if(o){q=q.b===j -q=!(q||q)}else q=!1 -if(q){A.zk(l.a,l.b) -return}i=$.as -if(i!==j)$.as=j -else i=null -e=e.c -if((e&15)===8)new A.aCz(r,f,o).$0() -else if(p){if((e&1)!==0)new A.aCy(r,l).$0()}else if((e&2)!==0)new A.aCx(f,r).$0() -if(i!=null)$.as=i -e=r.c -if(s.b(e)){q=r.a.$ti -q=q.i("av<2>").b(e)||!q.y[1].b(e)}else q=!1 -if(q){h=r.a.b -if(e instanceof A.ax)if((e.a&24)!==0){g=h.c -h.c=null -b=h.zd(g) -h.a=e.a&30|h.a&1 -h.c=e.c -f.a=e -continue}else A.aCr(e,h,!0) -else h.ET(e) -return}}h=r.a.b -g=h.c -h.c=null -b=h.zd(g) -e=r.b -q=r.c -if(!e){h.a=8 -h.c=q}else{h.a=h.a&1|16 -h.c=q}f.a=h -e=h}}, -b0Y(a,b){if(t.Hg.b(a))return b.LV(a) -if(t.C_.b(a))return a -throw A.i(A.hm(a,"onError",u.w))}, -bir(){var s,r -for(s=$.zi;s!=null;s=$.zi){$.LL=null -r=s.b -$.zi=r -if(r==null)$.LK=null -s.a.$0()}}, -biK(){$.aT4=!0 -try{A.bir()}finally{$.LL=null -$.aT4=!1 -if($.zi!=null)$.aU_().$1(A.b1k())}}, -b17(a){var s=new A.a0E(a),r=$.LK -if(r==null){$.zi=$.LK=s -if(!$.aT4)$.aU_().$1(A.b1k())}else $.LK=r.b=s}, -biC(a){var s,r,q,p=$.zi -if(p==null){A.b17(a) -$.LL=$.LK -return}s=new A.a0E(a) -r=$.LL -if(r==null){s.b=p -$.zi=$.LL=s}else{q=r.b -s.b=q -$.LL=r.b=s -if(q==null)$.LK=s}}, -fE(a){var s=null,r=$.as -if(B.aR===r){A.nq(s,s,B.aR,a) -return}A.nq(s,s,r,r.It(a))}, -aZA(a,b){var s=null,r=b.i("lg<0>"),q=new A.lg(s,s,s,s,r) -q.n2(a) -q.PM() -return new A.jh(q,r.i("jh<1>"))}, -bbi(a,b){return new A.u3(new A.aw_(a,b),b.i("u3<0>"))}, -bnu(a){return new A.z2(A.kj(a,"stream",t.K))}, -aZz(a,b){return new A.lg(a,null,null,null,b.i("lg<0>"))}, -Ys(a,b){var s=null -return a?new A.Km(s,s,b.i("Km<0>")):new A.GY(s,s,b.i("GY<0>"))}, -abI(a){var s,r,q -if(a==null)return -try{a.$0()}catch(q){s=A.aj(q) -r=A.b3(q) -A.zk(s,r)}}, -bcZ(a,b,c,d,e){var s=$.as,r=e?1:0,q=c!=null?32:0,p=A.azS(s,b),o=A.aSu(s,c),n=d==null?A.b1j():d -return new A.tN(a,p,o,n,s,r|q)}, -azS(a,b){return b==null?A.bj6():b}, -aSu(a,b){if(b==null)b=A.bj7() -if(t.hK.b(b))return a.LV(b) -if(t.lP.b(b))return b -throw A.i(A.c1("handleError callback must take either an Object (the error), or both an Object (the error) and a StackTrace.",null))}, -biu(a){}, -biw(a,b){A.zk(a,b)}, -biv(){}, -b_t(a){var s=new A.yj($.as) -A.fE(s.gSO()) -if(a!=null)s.c=a -return s}, -ber(a,b,c){var s=a.bg() -if(s!==$.uq())s.h9(new A.aM1(b,c)) -else b.n7(c)}, -bdK(a,b,c){return new A.Kg(new A.aJL(a,null,null,c,b),b.i("@<0>").bN(c).i("Kg<1,2>"))}, -ck(a,b){var s=$.as -if(s===B.aR)return A.aSe(a,b) -return A.aSe(a,s.It(b))}, -aZW(a,b){var s=$.as -if(s===B.aR)return A.aZX(a,b) -return A.aZX(a,s.X2(b,t.qe))}, -zk(a,b){A.biC(new A.aO7(a,b))}, -b10(a,b,c,d){var s,r=$.as -if(r===c)return d.$0() -$.as=c -s=r -try{r=d.$0() -return r}finally{$.as=s}}, -b12(a,b,c,d,e){var s,r=$.as -if(r===c)return d.$1(e) -$.as=c -s=r -try{r=d.$1(e) -return r}finally{$.as=s}}, -b11(a,b,c,d,e,f){var s,r=$.as -if(r===c)return d.$2(e,f) -$.as=c -s=r -try{r=d.$2(e,f) -return r}finally{$.as=s}}, -nq(a,b,c,d){if(B.aR!==c){d=c.It(d) -d=d}A.b17(d)}, -azq:function azq(a){this.a=a}, -azp:function azp(a,b,c){this.a=a -this.b=b -this.c=c}, -azr:function azr(a){this.a=a}, -azs:function azs(a){this.a=a}, -Kx:function Kx(a){this.a=a -this.b=null -this.c=0}, -aKQ:function aKQ(a,b){this.a=a -this.b=b}, -aKP:function aKP(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -GX:function GX(a,b){this.a=a -this.b=!1 -this.$ti=b}, -aLX:function aLX(a){this.a=a}, -aLY:function aLY(a){this.a=a}, -aOz:function aOz(a){this.a=a}, -nk:function nk(a){var _=this -_.a=a -_.e=_.d=_.c=_.b=null}, -hi:function hi(a,b){this.a=a -this.$ti=b}, -d7:function d7(a,b){this.a=a -this.b=b}, -e3:function e3(a,b){this.a=a -this.$ti=b}, -tL:function tL(a,b,c,d,e,f,g){var _=this -_.ay=0 -_.CW=_.ch=null -_.w=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.r=_.f=null -_.$ti=g}, -n8:function n8(){}, -Km:function Km(a,b,c){var _=this -_.a=a -_.b=b -_.c=0 -_.r=_.f=_.e=_.d=null -_.$ti=c}, -aK4:function aK4(a,b){this.a=a -this.b=b}, -aK6:function aK6(a,b,c){this.a=a -this.b=b -this.c=c}, -aK5:function aK5(a){this.a=a}, -GY:function GY(a,b,c){var _=this -_.a=a -_.b=b -_.c=0 -_.r=_.f=_.e=_.d=null -_.$ti=c}, -vj:function vj(a){this.a=a}, -aiK:function aiK(a,b){this.a=a -this.b=b}, -aiJ:function aiJ(a,b,c){this.a=a -this.b=b -this.c=c}, -aiM:function aiM(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aiL:function aiL(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -yb:function yb(){}, -bC:function bC(a,b){this.a=a -this.$ti=b}, -li:function li(a,b,c,d,e){var _=this -_.a=null -_.b=a -_.c=b -_.d=c -_.e=d -_.$ti=e}, -ax:function ax(a,b){var _=this -_.a=0 -_.b=a -_.c=null -_.$ti=b}, -aCo:function aCo(a,b){this.a=a -this.b=b}, -aCw:function aCw(a,b){this.a=a -this.b=b}, -aCt:function aCt(a){this.a=a}, -aCu:function aCu(a){this.a=a}, -aCv:function aCv(a,b,c){this.a=a -this.b=b -this.c=c}, -aCs:function aCs(a,b){this.a=a -this.b=b}, -aCq:function aCq(a,b){this.a=a -this.b=b}, -aCp:function aCp(a,b){this.a=a -this.b=b}, -aCz:function aCz(a,b,c){this.a=a -this.b=b -this.c=c}, -aCA:function aCA(a,b){this.a=a -this.b=b}, -aCB:function aCB(a){this.a=a}, -aCy:function aCy(a,b){this.a=a -this.b=b}, -aCx:function aCx(a,b){this.a=a -this.b=b}, -a0E:function a0E(a){this.a=a -this.b=null}, -d1:function d1(){}, -aw_:function aw_(a,b){this.a=a -this.b=b}, -aw0:function aw0(a,b,c){this.a=a -this.b=b -this.c=c}, -avZ:function avZ(a,b,c){this.a=a -this.b=b -this.c=c}, -aw3:function aw3(a,b){this.a=a -this.b=b}, -aw4:function aw4(a,b){this.a=a -this.b=b}, -aw5:function aw5(a,b){this.a=a -this.b=b}, -aw6:function aw6(a,b){this.a=a -this.b=b}, -aw1:function aw1(a){this.a=a}, -aw2:function aw2(a,b,c){this.a=a -this.b=b -this.c=c}, -FA:function FA(){}, -Yt:function Yt(){}, -ud:function ud(){}, -aJK:function aJK(a){this.a=a}, -aJJ:function aJJ(a){this.a=a}, -a0F:function a0F(){}, -lg:function lg(a,b,c,d,e){var _=this -_.a=null -_.b=0 -_.c=null -_.d=a -_.e=b -_.f=c -_.r=d -_.$ti=e}, -jh:function jh(a,b){this.a=a -this.$ti=b}, -tN:function tN(a,b,c,d,e,f){var _=this -_.w=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.r=_.f=null}, -iI:function iI(){}, -azU:function azU(a,b,c){this.a=a -this.b=b -this.c=c}, -azT:function azT(a){this.a=a}, -Kh:function Kh(){}, -a1W:function a1W(){}, -tQ:function tQ(a){this.b=a -this.a=null}, -yh:function yh(a,b){this.b=a -this.c=b -this.a=null}, -aBn:function aBn(){}, -IR:function IR(){this.a=0 -this.c=this.b=null}, -aFb:function aFb(a,b){this.a=a -this.b=b}, -yj:function yj(a){this.a=1 -this.b=a -this.c=null}, -z2:function z2(a){this.a=null -this.b=a -this.c=!1}, -HM:function HM(a){this.$ti=a}, -u3:function u3(a,b){this.b=a -this.$ti=b}, -aES:function aES(a,b){this.a=a -this.b=b}, -IA:function IA(a,b,c,d,e){var _=this -_.a=null -_.b=0 -_.c=null -_.d=a -_.e=b -_.f=c -_.r=d -_.$ti=e}, -aM1:function aM1(a,b){this.a=a -this.b=b}, -HN:function HN(a){this.a=a}, -z1:function z1(a,b,c,d,e){var _=this -_.w=$ -_.x=null -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.r=_.f=null}, -Ki:function Ki(){}, -n6:function n6(a,b,c){this.a=a -this.b=b -this.$ti=c}, -yr:function yr(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.$ti=e}, -Kg:function Kg(a,b){this.a=a -this.$ti=b}, -aJL:function aJL(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -aLO:function aLO(){}, -aGM:function aGM(){}, -aGQ:function aGQ(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aGN:function aGN(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -aGO:function aGO(a,b){this.a=a -this.b=b}, -aGP:function aGP(a,b,c){this.a=a -this.b=b -this.c=c}, -aO7:function aO7(a,b){this.a=a -this.b=b}, -h0(a,b,c,d,e){if(c==null)if(b==null){if(a==null)return new A.nd(d.i("@<0>").bN(e).i("nd<1,2>")) -b=A.aTc()}else{if(A.b1r()===b&&A.b1q()===a)return new A.p5(d.i("@<0>").bN(e).i("p5<1,2>")) -if(a==null)a=A.aTb()}else{if(b==null)b=A.aTc() -if(a==null)a=A.aTb()}return A.bd_(a,b,c,d,e)}, -aSw(a,b){var s=a[b] -return s===a?null:s}, -aSy(a,b,c){if(c==null)a[b]=a -else a[b]=c}, -aSx(){var s=Object.create(null) -A.aSy(s,"",s) -delete s[""] -return s}, -bd_(a,b,c,d,e){var s=c!=null?c:new A.aB9(d) -return new A.Hv(a,b,s,d.i("@<0>").bN(e).i("Hv<1,2>"))}, -al5(a,b,c,d){if(b==null){if(a==null)return new A.fJ(c.i("@<0>").bN(d).i("fJ<1,2>")) -b=A.aTc()}else{if(A.b1r()===b&&A.b1q()===a)return new A.Cj(c.i("@<0>").bN(d).i("Cj<1,2>")) -if(a==null)a=A.aTb()}return A.bdg(a,b,null,c,d)}, -aG(a,b,c){return A.b1C(a,new A.fJ(b.i("@<0>").bN(c).i("fJ<1,2>")))}, -t(a,b){return new A.fJ(a.i("@<0>").bN(b).i("fJ<1,2>"))}, -bdg(a,b,c,d,e){return new A.Ij(a,b,new A.aDP(d),d.i("@<0>").bN(e).i("Ij<1,2>"))}, -dv(a){return new A.p2(a.i("p2<0>"))}, -aSz(){var s=Object.create(null) -s[""]=s -delete s[""] -return s}, -kN(a){return new A.hK(a.i("hK<0>"))}, -aU(a){return new A.hK(a.i("hK<0>"))}, -cy(a,b){return A.bjS(a,new A.hK(b.i("hK<0>")))}, -aSB(){var s=Object.create(null) -s[""]=s -delete s[""] -return s}, -cl(a,b,c){var s=new A.p8(a,b,c.i("p8<0>")) -s.c=a.e -return s}, -beL(a,b){return J.b(a,b)}, -beM(a){return J.D(a)}, -aQY(a,b){var s,r,q=A.dv(b) -for(s=a.length,r=0;r=a.length)return null -return J.uw(a,b)}s=J.bG(a) -do if(!s.v())return null -while(--b,b>=0) -return s.gT()}, -vX(a,b,c){var s=A.al5(null,null,b,c) -a.aL(0,new A.al6(s,b,c)) -return s}, -kM(a,b,c){var s=A.al5(null,null,b,c) -s.a_(0,a) -return s}, -vY(a,b){var s,r,q=A.kN(b) -for(s=a.length,r=0;r"))}, -b8I(a,b){var s=t.b8 -return J.ac7(s.a(a),s.a(b))}, -RI(a){var s,r -if(A.aTu(a))return"{...}" -s=new A.cf("") -try{r={} -$.uk.push(a) -s.a+="{" -r.a=!0 -a.aL(0,new A.als(r,s)) -s.a+="}"}finally{$.uk.pop()}r=s.a -return r.charCodeAt(0)==0?r:r}, -o6(a,b){return new A.Cv(A.bO(A.b8K(a),null,!1,b.i("0?")),b.i("Cv<0>"))}, -b8K(a){if(a==null||a<8)return 8 -else if((a&a-1)>>>0!==0)return A.aWG(a) -return a}, -aWG(a){var s -a=(a<<1>>>0)-1 -for(;;a=s){s=(a&a-1)>>>0 -if(s===0)return a}}, -beQ(a,b){return J.ac7(a,b)}, -b0w(a){if(a.i("o(0,0)").b(A.b1n()))return A.b1n() -return A.bjl()}, -aZy(a,b){var s=A.b0w(a) -return new A.Fx(s,a.i("@<0>").bN(b).i("Fx<1,2>"))}, -avM(a,b,c){var s=a==null?A.b0w(c):a -return new A.xp(s,b,c.i("xp<0>"))}, -nd:function nd(a){var _=this -_.a=0 -_.e=_.d=_.c=_.b=null -_.$ti=a}, -aCJ:function aCJ(a){this.a=a}, -p5:function p5(a){var _=this -_.a=0 -_.e=_.d=_.c=_.b=null -_.$ti=a}, -Hv:function Hv(a,b,c,d){var _=this -_.f=a -_.r=b -_.w=c -_.a=0 -_.e=_.d=_.c=_.b=null -_.$ti=d}, -aB9:function aB9(a){this.a=a}, -tX:function tX(a,b){this.a=a -this.$ti=b}, -ys:function ys(a,b,c){var _=this -_.a=a -_.b=b -_.c=0 -_.d=null -_.$ti=c}, -Ij:function Ij(a,b,c,d){var _=this -_.w=a -_.x=b -_.y=c -_.a=0 -_.f=_.e=_.d=_.c=_.b=null -_.r=0 -_.$ti=d}, -aDP:function aDP(a){this.a=a}, -p2:function p2(a){var _=this -_.a=0 -_.e=_.d=_.c=_.b=null -_.$ti=a}, -hI:function hI(a,b,c){var _=this -_.a=a -_.b=b -_.c=0 -_.d=null -_.$ti=c}, -hK:function hK(a){var _=this -_.a=0 -_.f=_.e=_.d=_.c=_.b=null -_.r=0 -_.$ti=a}, -aDQ:function aDQ(a){this.a=a -this.c=this.b=null}, -p8:function p8(a,b,c){var _=this -_.a=a -_.b=b -_.d=_.c=null -_.$ti=c}, -al6:function al6(a,b,c){this.a=a -this.b=b -this.c=c}, -mb:function mb(a){var _=this -_.b=_.a=0 -_.c=null -_.$ti=a}, -yB:function yB(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=null -_.d=c -_.e=!1 -_.$ti=d}, -ft:function ft(){}, -aX:function aX(){}, -bz:function bz(){}, -alr:function alr(a){this.a=a}, -als:function als(a,b){this.a=a -this.b=b}, -xZ:function xZ(){}, -In:function In(a,b){this.a=a -this.$ti=b}, -a3G:function a3G(a,b,c){var _=this -_.a=a -_.b=b -_.c=null -_.$ti=c}, -KH:function KH(){}, -CF:function CF(){}, -n2:function n2(a,b){this.a=a -this.$ti=b}, -HC:function HC(){}, -HB:function HB(a,b,c){var _=this -_.c=a -_.d=b -_.b=_.a=null -_.$ti=c}, -HD:function HD(a){this.b=this.a=null -this.$ti=a}, -Bf:function Bf(a,b){this.a=a -this.b=0 -this.$ti=b}, -a26:function a26(a,b,c){var _=this -_.a=a -_.b=b -_.c=null -_.$ti=c}, -Cv:function Cv(a,b){var _=this -_.a=a -_.d=_.c=_.b=0 -_.$ti=b}, -a3v:function a3v(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=null -_.$ti=e}, -j9:function j9(){}, -z_:function z_(){}, -K9:function K9(){}, -hh:function hh(a,b){var _=this -_.a=a -_.c=_.b=null -_.$ti=b}, -hg:function hg(a,b,c){var _=this -_.d=a -_.a=b -_.c=_.b=null -_.$ti=c}, -pk:function pk(){}, -Fx:function Fx(a,b){var _=this -_.d=null -_.e=a -_.c=_.b=_.a=0 -_.$ti=b}, -ki:function ki(){}, -ni:function ni(a,b){this.a=a -this.$ti=b}, -ub:function ub(a,b){this.a=a -this.$ti=b}, -K7:function K7(a,b){this.a=a -this.$ti=b}, -nj:function nj(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=null -_.d=c -_.$ti=d}, -Kc:function Kc(a,b,c,d){var _=this -_.e=null -_.a=a -_.b=b -_.c=null -_.d=c -_.$ti=d}, -ua:function ua(a,b,c,d){var _=this -_.e=null -_.a=a -_.b=b -_.c=null -_.d=c -_.$ti=d}, -xp:function xp(a,b,c){var _=this -_.d=null -_.e=a -_.f=b -_.c=_.b=_.a=0 -_.$ti=c}, -K8:function K8(){}, -Ka:function Ka(){}, -Kb:function Kb(){}, -KI:function KI(){}, -LM(a,b){var s,r,q,p=null -try{p=JSON.parse(a)}catch(r){s=A.aj(r) -q=A.ca(String(s),null,null) -throw A.i(q)}q=A.aM7(p) -return q}, -aM7(a){var s -if(a==null)return null -if(typeof a!="object")return a -if(!Array.isArray(a))return new A.a3m(a,Object.create(null)) -for(s=0;s>>2,k=3-(h&3) -for(s=J.bk(b),r=f.$flags|0,q=c,p=0;q>>0 -l=(l<<8|o)&16777215;--k -if(k===0){n=g+1 -r&2&&A.az(f) -f[g]=a.charCodeAt(l>>>18&63) -g=n+1 -f[n]=a.charCodeAt(l>>>12&63) -n=g+1 -f[g]=a.charCodeAt(l>>>6&63) -g=n+1 -f[n]=a.charCodeAt(l&63) -l=0 -k=3}}if(p>=0&&p<=255){if(e&&k<3){n=g+1 -m=n+1 -if(3-k===1){r&2&&A.az(f) -f[g]=a.charCodeAt(l>>>2&63) -f[n]=a.charCodeAt(l<<4&63) -f[m]=61 -f[m+1]=61}else{r&2&&A.az(f) -f[g]=a.charCodeAt(l>>>10&63) -f[n]=a.charCodeAt(l>>>4&63) -f[m]=a.charCodeAt(l<<2&63) -f[m+1]=61}return 0}return(l<<2|3-k)>>>0}for(q=c;q255)break;++q}throw A.i(A.hm(b,"Not a byte value at index "+q+": 0x"+B.j.oc(s.h(b,q),16),null))}, -bcW(a,b,c,d,e,f){var s,r,q,p,o,n,m,l="Invalid encoding before padding",k="Invalid character",j=B.j.fU(f,2),i=f&3,h=$.aU0() -for(s=d.$flags|0,r=b,q=0;r=0){j=(j<<6|o)&16777215 -i=i+1&3 -if(i===0){n=e+1 -s&2&&A.az(d) -d[e]=j>>>16&255 -e=n+1 -d[n]=j>>>8&255 -n=e+1 -d[e]=j&255 -e=n -j=0}continue}else if(o===-1&&i>1){if(q>127)break -if(i===3){if((j&3)!==0)throw A.i(A.ca(l,a,r)) -s&2&&A.az(d) -d[e]=j>>>10 -d[e+1]=j>>>2}else{if((j&15)!==0)throw A.i(A.ca(l,a,r)) -s&2&&A.az(d) -d[e]=j>>>4}m=(3-i)*3 -if(p===37)m+=2 -return A.b_o(a,r+1,c,-m-1)}throw A.i(A.ca(k,a,r))}if(q>=0&&q<=127)return(j<<2|i)>>>0 -for(r=b;r127)break -throw A.i(A.ca(k,a,r))}, -bcU(a,b,c,d){var s=A.bcV(a,b,c),r=(d&3)+(s-b),q=B.j.fU(r,2)*3,p=r&3 -if(p!==0&&s0)return new Uint8Array(q) -return $.b3C()}, -bcV(a,b,c){var s,r=c,q=r,p=0 -for(;;){if(!(q>b&&p<2))break -A:{--q -s=a.charCodeAt(q) -if(s===61){++p -r=q -break A}if((s|32)===100){if(q===b)break;--q -s=a.charCodeAt(q)}if(s===51){if(q===b)break;--q -s=a.charCodeAt(q)}if(s===37){++p -r=q -break A}break}}return r}, -b_o(a,b,c,d){var s,r -if(b===c)return d -s=-d-1 -while(s>0){r=a.charCodeAt(b) -if(s===3){if(r===61){s-=3;++b -break}if(r===37){--s;++b -if(b===c)break -r=a.charCodeAt(b)}else break}if((s>3?s-3:s)===2){if(r!==51)break;++b;--s -if(b===c)break -r=a.charCodeAt(b)}if((r|32)!==100)break;++b;--s -if(b===c)break}if(b!==c)throw A.i(A.ca("Invalid padding character",a,b)) -return-s-1}, -aWv(a,b,c){return new A.Ck(a,b)}, -b1Q(a,b){return B.ca.JO(a,b)}, -beN(a){return a.kC()}, -bdf(a,b){var s=b==null?A.bjv():b -return new A.aDF(a,[],s)}, -b_E(a,b,c){var s,r=new A.cf("") -A.aSA(a,r,b,c) -s=r.a -return s.charCodeAt(0)==0?s:s}, -aSA(a,b,c,d){var s=A.bdf(b,c) -s.Dj(a)}, -b0i(a){switch(a){case 65:return"Missing extension byte" -case 67:return"Unexpected extension byte" -case 69:return"Invalid UTF-8 byte" -case 71:return"Overlong encoding" -case 73:return"Out of unicode range" -case 75:return"Encoded surrogate" -case 77:return"Unfinished UTF-8 octet sequence" -default:return""}}, -a3m:function a3m(a,b){this.a=a -this.b=b -this.c=null}, -aDE:function aDE(a){this.a=a}, -a3n:function a3n(a){this.a=a}, -yz:function yz(a,b,c){this.b=a -this.c=b -this.a=c}, -aLw:function aLw(){}, -aLv:function aLv(){}, -acT:function acT(){}, -MH:function MH(){}, -H0:function H0(a){this.a=0 -this.b=a}, -azR:function azR(a){this.c=null -this.a=0 -this.b=a}, -azE:function azE(){}, -azj:function azj(a,b){this.a=a -this.b=b}, -aLt:function aLt(a,b){this.a=a -this.b=b}, -MG:function MG(){}, -a0K:function a0K(){this.a=0}, -a0L:function a0L(a,b){this.a=a -this.b=b}, -adG:function adG(){}, -a0Z:function a0Z(a){this.a=a}, -H7:function H7(a,b){this.a=a -this.b=b -this.c=0}, -N9:function N9(){}, -a8E:function a8E(a,b,c){this.a=a -this.b=b -this.$ti=c}, -tO:function tO(a,b){this.a=a -this.b=b}, -Nr:function Nr(){}, -cP:function cP(){}, -aeO:function aeO(a){this.a=a}, -HW:function HW(a,b,c){this.a=a -this.b=b -this.$ti=c}, -vs:function vs(){}, -Ck:function Ck(a,b){this.a=a -this.b=b}, -Rj:function Rj(a,b){this.a=a -this.b=b}, -akw:function akw(){}, -Rl:function Rl(a){this.b=a}, -aDD:function aDD(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=!1}, -Rk:function Rk(a){this.a=a}, -aDG:function aDG(){}, -aDH:function aDH(a,b){this.a=a -this.b=b}, -aDF:function aDF(a,b,c){this.c=a -this.a=b -this.b=c}, -l4:function l4(){}, -aAz:function aAz(a,b){this.a=a -this.b=b}, -aJP:function aJP(a,b){this.a=a -this.b=b}, -z3:function z3(){}, -Kk:function Kk(a){this.a=a}, -aah:function aah(a,b,c){this.a=a -this.b=b -this.c=c}, -aLu:function aLu(a,b,c){this.a=a -this.b=b -this.c=c}, -Z7:function Z7(){}, -Z8:function Z8(){}, -aaf:function aaf(a){this.b=this.a=0 -this.c=a}, -aag:function aag(a,b){var _=this -_.d=a -_.b=_.a=0 -_.c=b}, -Gv:function Gv(a){this.a=a}, -zd:function zd(a){this.a=a -this.b=16 -this.c=0}, -aby:function aby(){}, -bke(a){return A.pA(a)}, -aVW(){return new A.vy(new WeakMap())}, -qj(a){var s=!0 -s=typeof a=="string" -if(s)A.Qe(a)}, -Qe(a){throw A.i(A.hm(a,"object","Expandos are not allowed on strings, numbers, bools, records or null"))}, -beb(){if(typeof WeakRef=="function")return WeakRef -var s=function LeakRef(a){this._=a} -s.prototype={ -deref(){return this._}} -return s}, -fU(a,b){var s=A.DE(a,b) -if(s!=null)return s -throw A.i(A.ca(a,null,null))}, -bjM(a){var s=A.Ur(a) -if(s!=null)return s -throw A.i(A.ca("Invalid double",a,null))}, -b7S(a,b){a=A.eh(a,new Error()) -a.stack=b.k(0) -throw a}, -bO(a,b,c,d){var s,r=c?J.vP(a,d):J.Ce(a,d) -if(a!==0&&b!=null)for(s=0;s")) -for(s=J.bG(a);s.v();)r.push(s.gT()) -if(b)return r -r.$flags=1 -return r}, -aa(a,b){var s,r -if(Array.isArray(a))return A.c(a.slice(0),b.i("z<0>")) -s=A.c([],b.i("z<0>")) -for(r=J.bG(a);r.v();)s.push(r.gT()) -return s}, -aRh(a,b,c,d){var s,r=c?J.vP(a,d):J.Ce(a,d) -for(s=0;s0||c0)a=J.uy(a,b) -s=A.aa(a,t.S) -return A.aXt(s)}, -aS1(a){return A.eV(a)}, -bbl(a,b,c){var s=a.length -if(b>=s)return"" -return A.ba4(a,b,c==null||c>s?s:c)}, -cS(a,b,c){return new A.vS(a,A.aRa(a,!1,b,c,!1,""))}, -bkd(a,b){return a==null?b==null:a===b}, -bbk(a){return new A.cf(a)}, -aw7(a,b,c){var s=J.bG(b) -if(!s.v())return a -if(c.length===0){do a+=A.j(s.gT()) -while(s.v())}else{a+=A.j(s.gT()) -while(s.v())a=a+c+A.j(s.gT())}return a}, -kP(a,b){return new A.TO(a,b.ga02(),b.gax5(),b.gavQ())}, -aSl(){var s,r,q=A.ba_() -if(q==null)throw A.i(A.c2("'Uri.base' is not supported")) -s=$.b_7 -if(s!=null&&q===$.b_6)return s -r=A.iD(q,0,null) -$.b_7=r -$.b_6=q -return r}, -zc(a,b,c,d){var s,r,q,p,o,n="0123456789ABCDEF" -if(c===B.ao){s=$.b3T() -s=s.b.test(b)}else s=!1 -if(s)return b -r=c.rE(b) -for(s=r.length,q=0,p="";q>>4&15]+n[o&15]}return p.charCodeAt(0)==0?p:p}, -be5(a){var s,r,q -if(!$.b3U())return A.be6(a) -s=new URLSearchParams() -a.aL(0,new A.aLr(s)) -r=s.toString() -q=r.length -if(q>0&&r[q-1]==="=")r=B.c.a6(r,0,q-1) -return r.replace(/=&|\*|%7E/g,b=>b==="=&"?"&":b==="*"?"%2A":"~")}, -iy(){return A.b3(new Error())}, -b6V(a,b,c,d,e,f,g,h,i){var s=A.aRC(a,b,c,d,e,f,g,h,i) -if(s==null)return null -return new A.fY(A.aVv(s,h,i),h,i)}, -b6p(a,b){return J.ac7(a,b)}, -b6T(a,b,c,d,e,f,g){var s=A.aRC(a,b,c,d,e,f,g,0,!1) -return new A.fY(s==null?new A.Px(a,b,c,d,e,f,g,0).$0():s,0,!1)}, -b6U(a,b,c,d,e,f,g){var s=A.aRC(a,b,c,d,e,f,g,0,!0) -return new A.fY(s==null?new A.Px(a,b,c,d,e,f,g,0).$0():s,0,!0)}, -b6X(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=null,b=$.b2j().pv(a) -if(b!=null){s=new A.af8() -r=b.b -q=r[1] -q.toString -p=A.fU(q,c) -q=r[2] -q.toString -o=A.fU(q,c) -q=r[3] -q.toString -n=A.fU(q,c) -m=s.$1(r[4]) -l=s.$1(r[5]) -k=s.$1(r[6]) -j=new A.af9().$1(r[7]) -i=B.j.el(j,1000) -h=r[8]!=null -if(h){g=r[9] -if(g!=null){f=g==="-"?-1:1 -q=r[10] -q.toString -e=A.fU(q,c) -l-=f*(s.$1(r[11])+60*e)}}d=A.b6V(p,o,n,m,l,k,i,j%1000,h) -if(d==null)throw A.i(A.ca("Time out of range",a,c)) -return d}else throw A.i(A.ca("Invalid date format",a,c))}, -vf(a){var s,r -try{s=A.b6X(a) -return s}catch(r){if(t.bE.b(A.aj(r)))return null -else throw r}}, -aVv(a,b,c){var s="microsecond" -if(b<0||b>999)throw A.i(A.cR(b,0,999,s,null)) -if(a<-864e13||a>864e13)throw A.i(A.cR(a,-864e13,864e13,"millisecondsSinceEpoch",null)) -if(a===864e13&&b!==0)throw A.i(A.hm(b,s,"Time including microseconds is outside valid range")) -A.kj(c,"isUtc",t.y) -return a}, -aVu(a){var s=Math.abs(a),r=a<0?"-":"" -if(s>=1000)return""+a -if(s>=100)return r+"0"+s -if(s>=10)return r+"00"+s -return r+"000"+s}, -b6W(a){var s=Math.abs(a),r=a<0?"-":"+" -if(s>=1e5)return r+s -return r+"0"+s}, -af7(a){if(a>=100)return""+a -if(a>=10)return"0"+a -return"00"+a}, -lO(a){if(a>=10)return""+a -return"0"+a}, -cI(a,b){return new A.b5(a+1000*b)}, -b7R(a,b){var s,r -for(s=0;s<4;++s){r=a[s] -if(r.b===b)return r}throw A.i(A.hm(b,"name","No enum value with that name"))}, -qg(a){if(typeof a=="number"||A.LJ(a)||a==null)return J.cB(a) -if(typeof a=="string")return JSON.stringify(a) -return A.aXs(a)}, -aVV(a,b){A.kj(a,"error",t.K) -A.kj(b,"stackTrace",t.Km) -A.b7S(a,b)}, -ko(a){return new A.pG(a)}, -c1(a,b){return new A.iS(!1,null,b,a)}, -hm(a,b,c){return new A.iS(!0,a,b,c)}, -lE(a,b){return a}, -fu(a){var s=null -return new A.wD(s,s,!1,s,s,a)}, -aq5(a,b){return new A.wD(null,null,!0,a,b,"Value not in range")}, -cR(a,b,c,d,e){return new A.wD(b,c,!0,a,d,"Invalid value")}, -aXx(a,b,c,d){if(ac)throw A.i(A.cR(a,b,c,d,null)) -return a}, -fv(a,b,c,d,e){if(0>a||a>c)throw A.i(A.cR(a,0,c,d==null?"start":d,null)) -if(b!=null){if(a>b||b>c)throw A.i(A.cR(b,a,c,e==null?"end":e,null)) -return b}return c}, -dk(a,b){if(a<0)throw A.i(A.cR(a,0,null,b,null)) -return a}, -aR4(a,b,c,d,e){var s=e==null?b.gH(b):e -return new A.C3(s,!0,a,c,"Index out of range")}, -R7(a,b,c,d,e){return new A.C3(b,!0,a,e,"Index out of range")}, -aR5(a,b,c,d){if(0>a||a>=b)throw A.i(A.R7(a,b,c,null,d==null?"index":d)) -return a}, -c2(a){return new A.Gt(a)}, -fc(a){return new A.Z1(a)}, -aL(a){return new A.fM(a)}, -cd(a){return new A.Nx(a)}, -cX(a){return new A.a2q(a)}, -ca(a,b,c){return new A.eO(a,b,c)}, -aWp(a,b,c){if(a<=0)return new A.i0(c.i("i0<0>")) -return new A.HX(a,b,c.i("HX<0>"))}, -aWq(a,b,c){var s,r -if(A.aTu(a)){if(b==="("&&c===")")return"(...)" -return b+"..."+c}s=A.c([],t.s) -$.uk.push(a) -try{A.bij(a,s)}finally{$.uk.pop()}r=A.aw7(b,s,", ")+c -return r.charCodeAt(0)==0?r:r}, -o_(a,b,c){var s,r -if(A.aTu(a))return b+"..."+c -s=new A.cf(b) -$.uk.push(a) -try{r=s -r.a=A.aw7(r.a,a,", ")}finally{$.uk.pop()}s.a+=c -r=s.a -return r.charCodeAt(0)==0?r:r}, -bij(a,b){var s,r,q,p,o,n,m,l=J.bG(a),k=0,j=0 -for(;;){if(!(k<80||j<3))break -if(!l.v())return -s=A.j(l.gT()) -b.push(s) -k+=s.length+2;++j}if(!l.v()){if(j<=5)return -r=b.pop() -q=b.pop()}else{p=l.gT();++j -if(!l.v()){if(j<=4){b.push(A.j(p)) -return}r=A.j(p) -q=b.pop() -k+=r.length+2}else{o=l.gT();++j -for(;l.v();p=o,o=n){n=l.gT();++j -if(j>100){for(;;){if(!(k>75&&j>3))break -k-=b.pop().length+2;--j}b.push("...") -return}}q=A.j(p) -r=A.j(o) -k+=r.length+q.length+4}}if(j>b.length+2){k+=5 -m="..."}else m=null -for(;;){if(!(k>80&&b.length>3))break -k-=b.pop().length+2 -if(m==null){k+=5 -m="..."}}if(m!=null)b.push(m) -b.push(q) -b.push(r)}, -aWN(a,b,c,d,e){return new A.pS(a,b.i("@<0>").bN(c).bN(d).bN(e).i("pS<1,2,3,4>"))}, -N(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,a0,a1){var s -if(B.a===c)return A.aZF(J.D(a),J.D(b),$.eI()) -if(B.a===d){s=J.D(a) -b=J.D(b) -c=J.D(c) -return A.eZ(A.O(A.O(A.O($.eI(),s),b),c))}if(B.a===e){s=J.D(a) -b=J.D(b) -c=J.D(c) -d=J.D(d) -return A.eZ(A.O(A.O(A.O(A.O($.eI(),s),b),c),d))}if(B.a===f){s=J.D(a) -b=J.D(b) -c=J.D(c) -d=J.D(d) -e=J.D(e) -return A.eZ(A.O(A.O(A.O(A.O(A.O($.eI(),s),b),c),d),e))}if(B.a===g){s=J.D(a) -b=J.D(b) -c=J.D(c) -d=J.D(d) -e=J.D(e) -f=J.D(f) -return A.eZ(A.O(A.O(A.O(A.O(A.O(A.O($.eI(),s),b),c),d),e),f))}if(B.a===h){s=J.D(a) -b=J.D(b) -c=J.D(c) -d=J.D(d) -e=J.D(e) -f=J.D(f) -g=J.D(g) -return A.eZ(A.O(A.O(A.O(A.O(A.O(A.O(A.O($.eI(),s),b),c),d),e),f),g))}if(B.a===i){s=J.D(a) -b=J.D(b) -c=J.D(c) -d=J.D(d) -e=J.D(e) -f=J.D(f) -g=J.D(g) -h=J.D(h) -return A.eZ(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O($.eI(),s),b),c),d),e),f),g),h))}if(B.a===j){s=J.D(a) -b=J.D(b) -c=J.D(c) -d=J.D(d) -e=J.D(e) -f=J.D(f) -g=J.D(g) -h=J.D(h) -i=J.D(i) -return A.eZ(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O($.eI(),s),b),c),d),e),f),g),h),i))}if(B.a===k){s=J.D(a) -b=J.D(b) -c=J.D(c) -d=J.D(d) -e=J.D(e) -f=J.D(f) -g=J.D(g) -h=J.D(h) -i=J.D(i) -j=J.D(j) -return A.eZ(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O($.eI(),s),b),c),d),e),f),g),h),i),j))}if(B.a===l){s=J.D(a) -b=J.D(b) -c=J.D(c) -d=J.D(d) -e=J.D(e) -f=J.D(f) -g=J.D(g) -h=J.D(h) -i=J.D(i) -j=J.D(j) -k=J.D(k) -return A.eZ(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O($.eI(),s),b),c),d),e),f),g),h),i),j),k))}if(B.a===m){s=J.D(a) -b=J.D(b) -c=J.D(c) -d=J.D(d) -e=J.D(e) -f=J.D(f) -g=J.D(g) -h=J.D(h) -i=J.D(i) -j=J.D(j) -k=J.D(k) -l=J.D(l) -return A.eZ(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O($.eI(),s),b),c),d),e),f),g),h),i),j),k),l))}if(B.a===n){s=J.D(a) -b=J.D(b) -c=J.D(c) -d=J.D(d) -e=J.D(e) -f=J.D(f) -g=J.D(g) -h=J.D(h) -i=J.D(i) -j=J.D(j) -k=J.D(k) -l=J.D(l) -m=J.D(m) -return A.eZ(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O($.eI(),s),b),c),d),e),f),g),h),i),j),k),l),m))}if(B.a===o){s=J.D(a) -b=J.D(b) -c=J.D(c) -d=J.D(d) -e=J.D(e) -f=J.D(f) -g=J.D(g) -h=J.D(h) -i=J.D(i) -j=J.D(j) -k=J.D(k) -l=J.D(l) -m=J.D(m) -n=J.D(n) -return A.eZ(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O($.eI(),s),b),c),d),e),f),g),h),i),j),k),l),m),n))}if(B.a===p){s=J.D(a) -b=J.D(b) -c=J.D(c) -d=J.D(d) -e=J.D(e) -f=J.D(f) -g=J.D(g) -h=J.D(h) -i=J.D(i) -j=J.D(j) -k=J.D(k) -l=J.D(l) -m=J.D(m) -n=J.D(n) -o=J.D(o) -return A.eZ(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O($.eI(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o))}if(B.a===q){s=J.D(a) -b=J.D(b) -c=J.D(c) -d=J.D(d) -e=J.D(e) -f=J.D(f) -g=J.D(g) -h=J.D(h) -i=J.D(i) -j=J.D(j) -k=J.D(k) -l=J.D(l) -m=J.D(m) -n=J.D(n) -o=J.D(o) -p=J.D(p) -return A.eZ(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O($.eI(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p))}if(B.a===r){s=J.D(a) -b=J.D(b) -c=J.D(c) -d=J.D(d) -e=J.D(e) -f=J.D(f) -g=J.D(g) -h=J.D(h) -i=J.D(i) -j=J.D(j) -k=J.D(k) -l=J.D(l) -m=J.D(m) -n=J.D(n) -o=J.D(o) -p=J.D(p) -q=J.D(q) -return A.eZ(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O($.eI(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q))}if(B.a===a0){s=J.D(a) -b=J.D(b) -c=J.D(c) -d=J.D(d) -e=J.D(e) -f=J.D(f) -g=J.D(g) -h=J.D(h) -i=J.D(i) -j=J.D(j) -k=J.D(k) -l=J.D(l) -m=J.D(m) -n=J.D(n) -o=J.D(o) -p=J.D(p) -q=J.D(q) -r=J.D(r) -return A.eZ(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O($.eI(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q),r))}if(B.a===a1){s=J.D(a) -b=J.D(b) -c=J.D(c) -d=J.D(d) -e=J.D(e) -f=J.D(f) -g=J.D(g) -h=J.D(h) -i=J.D(i) -j=J.D(j) -k=J.D(k) -l=J.D(l) -m=J.D(m) -n=J.D(n) -o=J.D(o) -p=J.D(p) -q=J.D(q) -r=J.D(r) -a0=J.D(a0) -return A.eZ(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O($.eI(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q),r),a0))}s=J.D(a) -b=J.D(b) -c=J.D(c) -d=J.D(d) -e=J.D(e) -f=J.D(f) -g=J.D(g) -h=J.D(h) -i=J.D(i) -j=J.D(j) -k=J.D(k) -l=J.D(l) -m=J.D(m) -n=J.D(n) -o=J.D(o) -p=J.D(p) -q=J.D(q) -r=J.D(r) -a0=J.D(a0) -a1=J.D(a1) -return A.eZ(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O(A.O($.eI(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q),r),a0),a1))}, -bh(a){var s,r=$.eI() -for(s=J.bG(a);s.v();)r=A.O(r,J.D(s.gT())) -return A.eZ(r)}, -aRs(a){var s,r,q,p,o -for(s=a.gai(a),r=0,q=0;s.v();){p=J.D(s.gT()) -o=((p^p>>>16)>>>0)*569420461>>>0 -o=((o^o>>>15)>>>0)*3545902487>>>0 -r=r+((o^o>>>15)>>>0)&1073741823;++q}return A.aZF(r,q,0)}, -aTB(a){A.b21(A.j(a))}, -aXU(a,b,c,d){return new A.lL(a,b,c.i("@<0>").bN(d).i("lL<1,2>"))}, -bbh(){$.ur() -return new A.tv()}, -bez(a,b){return 65536+((a&1023)<<10)+(b&1023)}, -iD(a4,a5,a6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=null -a6=a4.length -s=a5+5 -if(a6>=s){r=((a4.charCodeAt(a5+4)^58)*3|a4.charCodeAt(a5)^100|a4.charCodeAt(a5+1)^97|a4.charCodeAt(a5+2)^116|a4.charCodeAt(a5+3)^97)>>>0 -if(r===0)return A.b_5(a5>0||a6=14)q[7]=a6 -o=q[1] -if(o>=a5)if(A.b16(a4,a5,o,20,q)===20)q[7]=o -n=q[2]+1 -m=q[3] -l=q[4] -k=q[5] -j=q[6] -if(jo+3)){p=m>a5 -g=0 -if(!(p&&m+1===l)){if(!B.c.dP(a4,"\\",l))if(n>a5)f=B.c.dP(a4,"\\",n-1)||B.c.dP(a4,"\\",n-2) -else f=!1 -else f=!0 -if(!f){if(!(kl+2&&B.c.dP(a4,"/..",k-3) -else f=!0 -if(!f)if(o===a5+4){if(B.c.dP(a4,"file",a5)){if(n<=a5){if(!B.c.dP(a4,"/",l)){e="file:///" -r=3}else{e="file://" -r=2}a4=e+B.c.a6(a4,l,a6) -o-=a5 -s=r-a5 -k+=s -j+=s -a6=a4.length -a5=g -n=7 -m=7 -l=7}else if(l===k){s=a5===0 -s -if(s){a4=B.c.ky(a4,l,k,"/");++k;++j;++a6}else{a4=B.c.a6(a4,a5,l)+"/"+B.c.a6(a4,k,a6) -o-=a5 -n-=a5 -m-=a5 -l-=a5 -s=1-a5 -k+=s -j+=s -a6=a4.length -a5=g}}h="file"}else if(B.c.dP(a4,"http",a5)){if(p&&m+3===l&&B.c.dP(a4,"80",m+1)){s=a5===0 -s -if(s){a4=B.c.ky(a4,m,l,"") -l-=3 -k-=3 -j-=3 -a6-=3}else{a4=B.c.a6(a4,a5,m)+B.c.a6(a4,l,a6) -o-=a5 -n-=a5 -m-=a5 -s=3+a5 -l-=s -k-=s -j-=s -a6=a4.length -a5=g}}h="http"}}else if(o===s&&B.c.dP(a4,"https",a5)){if(p&&m+4===l&&B.c.dP(a4,"443",m+1)){s=a5===0 -s -if(s){a4=B.c.ky(a4,m,l,"") -l-=4 -k-=4 -j-=4 -a6-=3}else{a4=B.c.a6(a4,a5,m)+B.c.a6(a4,l,a6) -o-=a5 -n-=a5 -m-=a5 -s=4+a5 -l-=s -k-=s -j-=s -a6=a4.length -a5=g}}h="https"}i=!f}}}}if(i){if(a5>0||a6a5)h=A.aSR(a4,a5,o) -else{if(o===a5)A.zb(a4,a5,"Invalid empty scheme") -h=""}d=a3 -if(n>a5){c=o+3 -b=c=c?0:a.charCodeAt(q) -m=n^48 -if(m<=9){if(o!==0||q===r){o=o*10+m -if(o<=255){++q -continue}A.Z5("each part must be in the range 0..255",a,r)}A.Z5("parts must not have leading zeros",a,r)}if(q===r){if(q===c)break -A.Z5(k,a,q)}l=p+1 -s&2&&A.az(d) -d[e+p]=o -if(n===46){if(l<4){++q -p=l -r=q -o=0 -continue}break}if(q===c){if(l===4)return -break}A.Z5(k,a,q) -p=l}A.Z5("IPv4 address should contain exactly 4 parts",a,q)}, -bc5(a,b,c){var s -if(b===c)throw A.i(A.ca("Empty IP address",a,b)) -if(a.charCodeAt(b)===118){s=A.bc6(a,b,c) -if(s!=null)throw A.i(s) -return!1}A.b_9(a,b,c) -return!0}, -bc6(a,b,c){var s,r,q,p,o="Missing hex-digit in IPvFuture address";++b -for(s=b;;s=r){if(s=97&&p<=102)continue -if(q===46){if(r-1===b)return new A.eO(o,a,r) -s=r -break}return new A.eO("Unexpected character",a,r-1)}if(s-1===b)return new A.eO(o,a,s) -return new A.eO("Missing '.' in IPvFuture address",a,s)}if(s===c)return new A.eO("Missing address in IPvFuture address, host, cursor",null,null) -for(;;){if((u.S.charCodeAt(a.charCodeAt(s))&16)!==0){++s -if(s=a3?0:a1.charCodeAt(p) -A:{k=l^48 -j=!1 -if(k<=9)i=k -else{h=l|32 -if(h>=97&&h<=102)i=h-87 -else break A -m=j}if(po){if(l===46){if(m){if(q<=6){A.bc4(a1,o,a3,s,q*2) -q+=2 -p=a3 -break}a0.$2(a,o)}break}g=q*2 -s[g]=B.j.fU(n,8) -s[g+1]=n&255;++q -if(l===58){if(q<8){++p -o=p -n=0 -m=!0 -continue}a0.$2(a,p)}break}if(l===58){if(r<0){f=q+1;++p -r=q -q=f -o=p -continue}a0.$2("only one wildcard `::` is allowed",p)}if(r!==q-1)a0.$2("missing part",p) -break}if(p0){c=e*2 -b=16-d*2 -B.a0.ej(s,b,16,s,c) -B.a0.ask(s,c,b,0)}}return s}, -KM(a,b,c,d,e,f,g){return new A.KL(a,b,c,d,e,f,g)}, -aad(a,b,c){var s,r,q,p=null,o=A.b0b(p,0,0),n=A.b09(p,0,0,!1),m=A.b0a(p,0,0,c) -a=A.b08(a,0,a==null?0:a.length) -s=A.aLo(p,"") -if(n==null)if(o.length===0)r=s!=null -else r=!0 -else r=!1 -if(r)n="" -r=n==null -q=!r -b=A.aSQ(b,0,b.length,p,"",q) -if(r&&!B.c.c8(b,"/"))b=A.aST(b,q) -else b=A.uf(b) -return A.KM("",o,r&&B.c.c8(b,"//")?"":n,s,b,m,a)}, -b05(a){if(a==="http")return 80 -if(a==="https")return 443 -return 0}, -zb(a,b,c){throw A.i(A.ca(c,a,b))}, -be0(a,b){var s,r,q -for(s=a.length,r=0;r=b&&s=b&&s=p){if(i==null)i=new A.cf("") -if(r=o){if(q==null)q=new A.cf("") -if(r=a.length)return"%" -s=a.charCodeAt(b+1) -r=a.charCodeAt(n) -q=A.aP4(s) -p=A.aP4(r) -if(q<0||p<0)return"%" -o=q*16+p -if(o<127&&(u.S.charCodeAt(o)&1)!==0)return A.eV(c&&65<=o&&90>=o?(o|32)>>>0:o) -if(s>=97||r>=97)return B.c.a6(a,b,b+3).toUpperCase() -return null}, -aSP(a){var s,r,q,p,o,n="0123456789ABCDEF" -if(a<=127){s=new Uint8Array(3) -s[0]=37 -s[1]=n.charCodeAt(a>>>4) -s[2]=n.charCodeAt(a&15)}else{if(a>2047)if(a>65535){r=240 -q=4}else{r=224 -q=3}else{r=192 -q=2}s=new Uint8Array(3*q) -for(p=0;--q,q>=0;r=128){o=B.j.alS(a,6*q)&63|r -s[p]=37 -s[p+1]=n.charCodeAt(o>>>4) -s[p+2]=n.charCodeAt(o&15) -p+=3}}return A.oO(s,0,null)}, -KN(a,b,c,d,e,f){var s=A.b0d(a,b,c,d,e,f) -return s==null?B.c.a6(a,b,c):s}, -b0d(a,b,c,d,e,f){var s,r,q,p,o,n,m,l,k,j=null,i=u.S -for(s=!e,r=b,q=r,p=j;r=2&&A.b07(a.charCodeAt(0)))for(s=1;s127||(u.S.charCodeAt(r)&8)===0)break}return a}, -be8(a,b){if(a.auN("package")&&a.c==null)return A.b19(b,0,b.length) -return-1}, -be3(){return A.c([],t.s)}, -b0g(a){var s,r,q,p,o,n=A.t(t.N,t.yp),m=new A.aLs(a,B.ao,n) -for(s=a.length,r=0,q=0,p=-1;r127)throw A.i(A.c1("Illegal percent encoding in URI",null)) -if(r===37){if(o+3>q)throw A.i(A.c1("Truncated URI",null)) -p.push(A.be4(a,o+1)) -o+=2}else if(e&&r===43)p.push(32) -else p.push(r)}}return d.ic(p)}, -b07(a){var s=a|32 -return 97<=s&&s<=122}, -b_5(a,b,c){var s,r,q,p,o,n,m,l,k="Invalid MIME type",j=A.c([b-1],t.t) -for(s=a.length,r=b,q=-1,p=null;rb)throw A.i(A.ca(k,a,r)) -while(p!==44){j.push(r);++r -for(o=-1;r=0)j.push(o) -else{n=B.b.gaC(j) -if(p!==44||r!==n+7||!B.c.dP(a,"base64",n+1))throw A.i(A.ca("Expecting '='",a,r)) -break}}j.push(r) -m=r+1 -if((j.length&1)===1)a=B.Le.avR(a,m,s) -else{l=A.b0d(a,m,s,256,!0,!1) -if(l!=null)a=B.c.ky(a,m,s,l)}return new A.axJ(a,j,c)}, -b16(a,b,c,d,e){var s,r,q -for(s=b;s95)r=31 -q='\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\xe1\xe1\xe1\x01\xe1\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\xe1\xe3\xe1\xe1\x01\xe1\x01\xe1\xcd\x01\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x0e\x03\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01"\x01\xe1\x01\xe1\xac\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\xe1\xe1\xe1\x01\xe1\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\xe1\xea\xe1\xe1\x01\xe1\x01\xe1\xcd\x01\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x01\n\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01"\x01\xe1\x01\xe1\xac\xeb\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\xeb\xeb\xeb\x8b\xeb\xeb\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\xeb\x83\xeb\xeb\x8b\xeb\x8b\xeb\xcd\x8b\xeb\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x92\x83\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\x8b\xeb\x8b\xeb\x8b\xeb\xac\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xeb\xeb\v\xeb\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xebD\xeb\xeb\v\xeb\v\xeb\xcd\v\xeb\v\v\v\v\v\v\v\v\x12D\v\v\v\v\v\v\v\v\v\v\xeb\v\xeb\v\xeb\xac\xe5\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\xe5\xe5\xe5\x05\xe5D\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe8\x8a\xe5\xe5\x05\xe5\x05\xe5\xcd\x05\xe5\x05\x05\x05\x05\x05\x05\x05\x05\x05\x8a\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05f\x05\xe5\x05\xe5\xac\xe5\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\xe5\xe5\xe5\x05\xe5D\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\xe5\x8a\xe5\xe5\x05\xe5\x05\xe5\xcd\x05\xe5\x05\x05\x05\x05\x05\x05\x05\x05\x05\x8a\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05f\x05\xe5\x05\xe5\xac\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7D\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\x8a\xe7\xe7\xe7\xe7\xe7\xe7\xcd\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\x8a\xe7\x07\x07\x07\x07\x07\x07\x07\x07\x07\xe7\xe7\xe7\xe7\xe7\xac\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7D\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\x8a\xe7\xe7\xe7\xe7\xe7\xe7\xcd\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\xe7\x8a\x07\x07\x07\x07\x07\x07\x07\x07\x07\x07\xe7\xe7\xe7\xe7\xe7\xac\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\x05\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xeb\xeb\v\xeb\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xea\xeb\xeb\v\xeb\v\xeb\xcd\v\xeb\v\v\v\v\v\v\v\v\x10\xea\v\v\v\v\v\v\v\v\v\v\xeb\v\xeb\v\xeb\xac\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xeb\xeb\v\xeb\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xea\xeb\xeb\v\xeb\v\xeb\xcd\v\xeb\v\v\v\v\v\v\v\v\x12\n\v\v\v\v\v\v\v\v\v\v\xeb\v\xeb\v\xeb\xac\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xeb\xeb\v\xeb\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xea\xeb\xeb\v\xeb\v\xeb\xcd\v\xeb\v\v\v\v\v\v\v\v\v\n\v\v\v\v\v\v\v\v\v\v\xeb\v\xeb\v\xeb\xac\xec\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\xec\xec\xec\f\xec\xec\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\f\xec\xec\xec\xec\f\xec\f\xec\xcd\f\xec\f\f\f\f\f\f\f\f\f\xec\f\f\f\f\f\f\f\f\f\f\xec\f\xec\f\xec\f\xed\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\xed\xed\xed\r\xed\xed\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\xed\xed\xed\xed\r\xed\r\xed\xed\r\xed\r\r\r\r\r\r\r\r\r\xed\r\r\r\r\r\r\r\r\r\r\xed\r\xed\r\xed\r\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\xe1\xe1\xe1\x01\xe1\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\xe1\xea\xe1\xe1\x01\xe1\x01\xe1\xcd\x01\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x0f\xea\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01"\x01\xe1\x01\xe1\xac\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\xe1\xe1\xe1\x01\xe1\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\xe1\xe9\xe1\xe1\x01\xe1\x01\xe1\xcd\x01\xe1\x01\x01\x01\x01\x01\x01\x01\x01\x01\t\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01"\x01\xe1\x01\xe1\xac\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xeb\xeb\v\xeb\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xea\xeb\xeb\v\xeb\v\xeb\xcd\v\xeb\v\v\v\v\v\v\v\v\x11\xea\v\v\v\v\v\v\v\v\v\v\xeb\v\xeb\v\xeb\xac\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xeb\xeb\v\xeb\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xe9\xeb\xeb\v\xeb\v\xeb\xcd\v\xeb\v\v\v\v\v\v\v\v\v\t\v\v\v\v\v\v\v\v\v\v\xeb\v\xeb\v\xeb\xac\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xeb\xeb\v\xeb\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xea\xeb\xeb\v\xeb\v\xeb\xcd\v\xeb\v\v\v\v\v\v\v\v\x13\xea\v\v\v\v\v\v\v\v\v\v\xeb\v\xeb\v\xeb\xac\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xeb\xeb\v\xeb\xeb\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\xeb\xea\xeb\xeb\v\xeb\v\xeb\xcd\v\xeb\v\v\v\v\v\v\v\v\v\xea\v\v\v\v\v\v\v\v\v\v\xeb\v\xeb\v\xeb\xac\xf5\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\x15\xf5\x15\x15\xf5\x15\x15\x15\x15\x15\x15\x15\x15\x15\x15\xf5\xf5\xf5\xf5\xf5\xf5'.charCodeAt(d*96+r) -d=q&31 -e[q>>>5]=s}return d}, -b_X(a){if(a.b===7&&B.c.c8(a.a,"package")&&a.c<=0)return A.b19(a.a,a.e,a.f) -return-1}, -biT(a,b){return A.al9(b,t.N)}, -b19(a,b,c){var s,r,q -for(s=b,r=0;s=1)return a.$1(b) -return a.$0()}, -ben(a,b,c,d){if(d>=2)return a.$2(b,c) -if(d===1)return a.$1(b) -return a.$0()}, -beo(a,b,c,d,e){if(e>=3)return a.$3(b,c,d) -if(e===2)return a.$2(b,c) -if(e===1)return a.$1(b) -return a.$0()}, -b0U(a){return a==null||A.LJ(a)||typeof a=="number"||typeof a=="string"||t.pT.b(a)||t.H3.b(a)||t.Po.b(a)||t.JZ.b(a)||t.w7.b(a)||t.XO.b(a)||t.rd.b(a)||t.s4.b(a)||t.OE.b(a)||t.pI.b(a)||t.V4.b(a)}, -ac(a){if(A.b0U(a))return a -return new A.aPe(new A.p5(t.Fy)).$1(a)}, -M(a,b){return a[b]}, -LH(a,b){return a[b]}, -hj(a,b,c){return a[b].apply(a,c)}, -bep(a,b,c){return a[b](c)}, -beq(a,b,c,d){return a[b](c,d)}, -bjf(a,b){var s,r -if(b==null)return new a() -if(b instanceof Array)switch(b.length){case 0:return new a() -case 1:return new a(b[0]) -case 2:return new a(b[0],b[1]) -case 3:return new a(b[0],b[1],b[2]) -case 4:return new a(b[0],b[1],b[2],b[3])}s=[null] -B.b.a_(s,b) -r=a.bind.apply(a,s) -String(r) -return new r()}, -bek(a,b){return new a(b)}, -b0q(a,b,c){return new a(b,c)}, -hS(a,b){var s=new A.ax($.as,b.i("ax<0>")),r=new A.bC(s,b.i("bC<0>")) -a.then(A.jp(new A.aPv(r),1),A.jp(new A.aPw(r),1)) -return s}, -b0T(a){return a==null||typeof a==="boolean"||typeof a==="number"||typeof a==="string"||a instanceof Int8Array||a instanceof Uint8Array||a instanceof Uint8ClampedArray||a instanceof Int16Array||a instanceof Uint16Array||a instanceof Int32Array||a instanceof Uint32Array||a instanceof Float32Array||a instanceof Float64Array||a instanceof ArrayBuffer||a instanceof DataView}, -aTj(a){if(A.b0T(a))return a -return new A.aOK(new A.p5(t.Fy)).$1(a)}, -aPe:function aPe(a){this.a=a}, -aPv:function aPv(a){this.a=a}, -aPw:function aPw(a){this.a=a}, -aOK:function aOK(a){this.a=a}, -b5V(a){return J.zC(a,0,null)}, -aQg(a){var s=a.BYTES_PER_ELEMENT,r=A.fv(0,null,B.j.qx(a.byteLength,s),null,null) -return J.zC(B.a0.gcF(a),a.byteOffset+0*s,r*s)}, -aSk(a,b,c){var s=J.py(a),r=s.gYO(a) -c=A.fv(b,c,B.j.qx(a.byteLength,r),null,null) -return J.jr(s.gcF(a),a.byteOffset+b*r,(c-b)*r)}, -Q6:function Q6(){}, -rm(a,b,c){if(b==null)if(a==null)return null -else return a.ak(0,1-c) -else if(a==null)return b.ak(0,c) -else return new A.h(A.hO(a.a,b.a,c),A.hO(a.b,b.b,c))}, -bb2(a,b){return new A.L(a,b)}, -xi(a,b,c){if(b==null)if(a==null)return null -else return a.ak(0,1-c) -else if(a==null)return b.ak(0,c) -else return new A.L(A.hO(a.a,b.a,c),A.hO(a.b,b.b,c))}, -oo(a,b){var s=a.a,r=b*2/2,q=a.b -return new A.w(s-r,q-r,s+r,q+r)}, -aXC(a,b,c){var s=a.a,r=c/2,q=a.b,p=b/2 -return new A.w(s-r,q-p,s+r,q+p)}, -rI(a,b){var s=a.a,r=b.a,q=a.b,p=b.b -return new A.w(Math.min(s,r),Math.min(q,p),Math.max(s,r),Math.max(q,p))}, -bah(a,b,c){var s,r,q,p,o -if(b==null)if(a==null)return null -else{s=1-c -return new A.w(a.a*s,a.b*s,a.c*s,a.d*s)}else{r=b.a -q=b.b -p=b.c -o=b.d -if(a==null)return new A.w(r*c,q*c,p*c,o*c) -else return new A.w(A.hO(a.a,r,c),A.hO(a.b,q,c),A.hO(a.c,p,c),A.hO(a.d,o,c))}}, -wC(a,b,c){var s,r,q -if(b==null)if(a==null)return null -else{s=1-c -return new A.aR(a.a*s,a.b*s)}else{r=b.a -q=b.b -if(a==null)return new A.aR(r*c,q*c) -else return new A.aR(A.hO(a.a,r,c),A.hO(a.b,q,c))}}, -aXw(a,b,c,d,e){var s=e.a,r=e.b -return new A.jW(a,b,c,d,s,r,s,r,s,r,s,r)}, -kT(a,b){var s=b.a,r=b.b -return new A.jW(a.a,a.b,a.c,a.d,s,r,s,r,s,r,s,r)}, -aXv(a,b,c,d,e,f,g,h){return new A.jW(a,b,c,d,g.a,g.b,h.a,h.b,f.a,f.b,e.a,e.b)}, -aRF(a,b,c,d,e){return new A.jW(a.a,a.b,a.c,a.d,d.a,d.b,e.a,e.b,c.a,c.b,b.a,b.b)}, -ba8(a,b,c,d,e,f,g,h,i,j,k,l){return new A.jW(f,j,g,c,h,i,k,l,d,e,a,b)}, -ba9(a,b,c,d,e,f,g,h,i,j,k,l,m){return new A.rG(m,f,j,g,c,h,i,k,l,d,e,a,b)}, -Ux(a,b){return a>0&&b>0?new A.an(a,b):B.a4Y}, -DG(a,b,c,d){var s=a+b -if(s>c)return Math.min(d,c/s) -return d}, -Y(a,b,c){var s -if(a!=b){s=a==null?null:isNaN(a) -if(s===!0){s=b==null?null:isNaN(b) -s=s===!0}else s=!1}else s=!0 -if(s)return a==null?null:a -if(a==null)a=0 -if(b==null)b=0 -return a*(1-c)+b*c}, -hO(a,b,c){return a*(1-c)+b*c}, -E(a,b,c){if(ac)return c -if(isNaN(a))return c -return a}, -b15(a,b){return a.bT(B.d.eX(a.goY()*b,0,1))}, -bu(a){return new A.x((B.j.fU(a,24)&255)/255,(B.j.fU(a,16)&255)/255,(B.j.fU(a,8)&255)/255,(a&255)/255,B.e)}, -ar(a,b,c,d){return new A.x((a&255)/255,(b&255)/255,(c&255)/255,(d&255)/255,B.e)}, -b6j(a,b,c,d){return new A.x(d,(a&255)/255,(b&255)/255,(c&255)/255,B.e)}, -aQo(a){if(a<=0.03928)return a/12.92 -return Math.pow((a+0.055)/1.055,2.4)}, -k(a,b,c){if(b==null)if(a==null)return null -else return A.b15(a,1-c) -else if(a==null)return A.b15(b,c) -else return new A.x(B.d.eX(A.hO(a.goY(),b.goY(),c),0,1),B.d.eX(A.hO(a.go6(),b.go6(),c),0,1),B.d.eX(A.hO(a.gmH(),b.gmH(),c),0,1),B.d.eX(A.hO(a.gnt(),b.gnt(),c),0,1),a.gvt())}, -aQp(a,b){var s,r,q,p=a.goY() -if(p===0)return b -s=1-p -r=b.goY() -if(r===1)return new A.x(1,p*a.go6()+s*b.go6(),p*a.gmH()+s*b.gmH(),p*a.gnt()+s*b.gnt(),a.gvt()) -else{r*=s -q=p+r -return new A.x(q,(a.go6()*p+b.go6()*r)/q,(a.gmH()*p+b.gmH()*r)/q,(a.gnt()*p+b.gnt()*r)/q,a.gvt())}}, -aQX(a,b,c,d,e,f){var s -$.ab() -s=new A.aef(a,b,c,d,e,null) -s.a8u() -return s}, -ak2(a,b){$.ab() -return new A.Hc(a,b,null)}, -aWj(a,b){var s -$.ab() -s=new Float64Array(A.iN(a)) -A.zw(a) -return new A.He(s,b)}, -baY(a){return a>0?a*0.57735+0.5:0}, -baZ(a,b,c){var s,r,q=A.k(a.a,b.a,c) -q.toString -s=A.rm(a.b,b.b,c) -s.toString -r=A.hO(a.c,b.c,c) -return new A.k2(q,s,r)}, -aZj(a,b,c){var s,r,q,p,o,n=a==null -if(n&&b==null)return null -if(n)a=A.c([],t.kO) -if(b==null)b=A.c([],t.kO) -s=A.c([],t.kO) -n=J.bk(a) -r=J.bk(b) -q=Math.min(n.gH(a),r.gH(b)) -for(p=0;p=15)return new A.an(1.07-Math.exp(1.307649835)*Math.pow(a,-0.8568516731),-0.01+Math.exp(-0.9287690322)*Math.pow(a,-0.6120901398)) -s=B.d.eX((a-2)/1,0,13) -r=B.j.eX(B.d.ih(s),0,12) -q=s-r -p=1-q -o=B.wr[r] -n=B.wr[r+1] -return new A.an(p*o.a+q*n.a,p*o.b+q*n.b)}, -bdp(a){var s,r,q,p,o,n,m -if(a>5){s=a-5 -return new A.an(1.559599389*s+6.43023796,1-1/(0.522807185*s+2.98020421))}a=B.d.eX(a,2,5) -r=a<2.5?(a-2)*10:(a-2.5)*2+6-1 -q=B.j.eX(B.d.ih(r),0,9) -p=r-q -s=1-p -o=B.tZ[q] -n=o[0] -m=B.tZ[q+1] -return new A.an(s*n+p*m[0],1-1/(s*o[1]+p*m[1]))}, -a58(a,b,c,d){var s,r=b.ac(0,a),q=new A.L(Math.abs(c.a),Math.abs(c.b)),p=q.gft(),o=p===0?B.l4:q.d7(0,p),n=r.a,m=Math.abs(n)/o.a,l=r.b,k=Math.abs(l)/o.b -n/=m -l/=k -n=isFinite(n)?n:d.a -l=isFinite(l)?l:d.b -s=m-k -return new A.aFB(a,new A.h(n,l),A.b_O(new A.h(0,-s),m,p),A.b_O(new A.h(s,0),k,p))}, -aFz(a,b,c,d){if(c===0&&d===0)return(a+b)/2 -return(a*d+b*c)/(c+d)}, -aXS(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4){return new A.EM(d,s,e,a2,f,r,g,c,a1,k,h,p,a4,a3,i,j,n,a,o,q,m,a0,l,b)}, -aQT(a,b,c){var s,r=a==null -if(r&&b==null)return null -r=r?null:a.a -if(r==null)r=400 -s=b==null?null:b.a -r=A.Y(r,s==null?400:s,c) -r.toString -return new A.fp(B.j.eX(B.d.aY(r),100,900))}, -aW4(a,b,c){var s=a==null,r=s?null:a.a,q=b==null -if(r==(q?null:b.a))s=s&&q -else s=!0 -if(s)return c<0.5?a:b -s=a.a -r=A.Y(a.b,b.b,c) -r.toString -return new A.jI(s,A.E(r,-32768,32767.99998474121))}, -aZU(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,a0,a1,a2){var s -$.ab() -if(A.dU().gnv()===B.d7)s=A.aSo(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,a0,a1,a2) -else{s=A.aM5(g) -if($.iA==null)$.iA=B.dP -s=A.aQn(a,b,c,d,e,f,s,h,i,j,k,l,m,n,o,p,q,r,g,h,a0,a1,a2)}return s}, -aXf(a,b,c,d,e,f,g,h,i,a0,a1,a2){var s,r,q,p,o,n,m,l,k,j=null -$.ab() -if(A.dU().gnv()===B.d7){t.BM.a(i) -s=A.aSo(j,j,j,j,j,j,b,j,j,c,d,j,e,j,f,j,j,g,j,j,j) -r=a1==null?B.i:a1 -s=new A.GA(s,r,a0,h,a,a2,i)}else{s=A.aM5(b) -r=f===0 -q=r?j:f -p={} -p.textAlign=$.b4O()[a0.a] -if(a1!=null)p.textDirection=$.aPY()[a1.a] -if(h!=null)p.maxLines=h -o=q!=null -if(o)p.heightMultiplier=q -if(a2!=null)p.textHeightBehavior=$.b4Q()[0] -if(a!=null)p.ellipsis=a -if(i!=null)p.strutStyle=A.b6a(i,a2) -p.replaceTabCharacters=!0 -n={} -m=e==null -if(!m||d!=null)n.fontStyle=A.aTE(e,d) -l=m?j:e.a -if(l==null)l=400 -k={} -k.axis="wght" -k.value=l -A.aZr(n,A.c([k],t.O)) -if(c!=null)n.fontSize=c -if(o)n.heightMultiplier=q -A.aZq(n,A.aSW(s,j)) -p.textStyle=n -p.applyRoundingHack=!1 -s=$.bx.cj().ParagraphStyle(p) -q=A.aM5(b) -s=new A.Au(s,a0,a1,e,d,h,b,q,c,r?j:f,a2,i,a,g)}return s}, -aPm(a,b){var s=0,r=A.I(t.H) -var $async$aPm=A.J(function(c,d){if(c===1)return A.F(d,r) -for(;;)switch(s){case 0:s=2 -return A.p($.ab().gus().pO(a,b),$async$aPm) -case 2:A.aPA() -return A.G(null,r)}}) -return A.H($async$aPm,r)}, -b9J(a){throw A.i(A.fc(null))}, -b9I(a){throw A.i(A.fc(null))}, -aep:function aep(a,b){this.a=a -this.b=b}, -Ub:function Ub(a,b){this.a=a -this.b=b}, -aAs:function aAs(a,b){this.a=a -this.b=b}, -Kf:function Kf(a,b,c){this.a=a -this.b=b -this.c=c}, -n9:function n9(a,b){var _=this -_.a=a -_.c=b -_.d=!1 -_.e=null}, -aea:function aea(a){this.a=a}, -aeb:function aeb(){}, -aec:function aec(){}, -TV:function TV(){}, -h:function h(a,b){this.a=a -this.b=b}, -L:function L(a,b){this.a=a -this.b=b}, -w:function w(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aR:function aR(a,b){this.a=a -this.b=b}, -yQ:function yQ(){}, -jW:function jW(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l}, -rG:function rG(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.as=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k -_.z=l -_.Q=m}, -Cn:function Cn(a,b){this.a=a -this.b=b}, -akA:function akA(a,b){this.a=a -this.b=b}, -hw:function hw(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.d=c -_.e=d -_.f=e -_.r=f}, -akz:function akz(){}, -x:function x(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -FE:function FE(a,b){this.a=a -this.b=b}, -Yx:function Yx(a,b){this.a=a -this.b=b}, -U8:function U8(a,b){this.a=a -this.b=b}, -A7:function A7(a,b){this.a=a -this.b=b}, -uX:function uX(a,b){this.a=a -this.b=b}, -MN:function MN(a,b){this.a=a -this.b=b}, -w7:function w7(a,b){this.a=a -this.b=b}, -qn:function qn(a,b){this.a=a -this.b=b}, -aR3:function aR3(){}, -aeE:function aeE(a,b){this.a=a -this.b=b}, -k2:function k2(a,b,c){this.a=a -this.b=b -this.c=c}, -apC:function apC(){}, -nS:function nS(a){this.a=a}, -jw:function jw(a,b){this.a=a -this.b=b}, -zY:function zY(a,b){this.a=a -this.b=b}, -md:function md(a,b,c){this.a=a -this.b=b -this.c=c}, -af4:function af4(a,b){this.a=a -this.b=b}, -oB:function oB(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -y2:function y2(a,b,c){this.a=a -this.b=b -this.c=c}, -Zb:function Zb(a,b){this.a=a -this.b=b}, -Gy:function Gy(a,b){this.a=a -this.b=b}, -mp:function mp(a,b){this.a=a -this.b=b}, -kS:function kS(a,b){this.a=a -this.b=b}, -ww:function ww(a,b){this.a=a -this.b=b}, -j4:function j4(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1){var _=this -_.a=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j -_.Q=k -_.as=l -_.at=m -_.ax=n -_.ay=o -_.ch=p -_.CW=q -_.cx=r -_.cy=s -_.db=a0 -_.dx=a1 -_.dy=a2 -_.fr=a3 -_.fx=a4 -_.fy=a5 -_.go=a6 -_.id=a7 -_.k1=a8 -_.k2=a9 -_.p2=b0 -_.p4=b1}, -oj:function oj(a){this.a=a}, -aLc:function aLc(a,b){this.a=a -this.b=b}, -aLf:function aLf(a){this.a=a}, -aLd:function aLd(a){this.a=a}, -aLb:function aLb(){}, -a57:function a57(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.e=d -_.f=e -_.r=f}, -aFB:function aFB(a,b,c,d){var _=this -_.a=a -_.b=b -_.d=c -_.e=d}, -aSF:function aSF(a){this.a=a}, -IW:function IW(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aFy:function aFy(a,b){this.a=a -this.b=b}, -d0:function d0(a,b){this.a=a -this.b=b}, -uQ:function uQ(a,b){this.a=a -this.b=b}, -Gp:function Gp(a,b){this.a=a -this.b=b}, -EM:function EM(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4}, -ir:function ir(a,b){this.a=a -this.b=b}, -t5:function t5(a,b){this.a=a -this.b=b}, -EP:function EP(a,b){this.a=a -this.b=b}, -VS:function VS(a,b){this.a=a -this.b=b}, -au9:function au9(a){this.a=a}, -qu:function qu(a,b){this.a=a -this.b=b}, -oi:function oi(a,b){this.a=a -this.b=b}, -fp:function fp(a){this.a=a}, -jI:function jI(a,b){this.a=a -this.b=b}, -nT:function nT(a,b,c){this.a=a -this.b=b -this.c=c}, -mV:function mV(a,b){this.a=a -this.b=b}, -k8:function k8(a,b){this.a=a -this.b=b}, -l8:function l8(a){this.a=a}, -oR:function oR(a,b){this.a=a -this.b=b}, -G0:function G0(a,b){this.a=a -this.b=b}, -FZ:function FZ(a){this.c=a}, -FW:function FW(a,b){this.a=a -this.b=b}, -eC:function eC(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -FS:function FS(a,b){this.a=a -this.b=b}, -ap:function ap(a,b){this.a=a -this.b=b}, -bI:function bI(a,b){this.a=a -this.b=b}, -og:function og(a){this.a=a}, -Ad:function Ad(a,b){this.a=a -this.b=b}, -MV:function MV(a,b){this.a=a -this.b=b}, -Gb:function Gb(a,b){this.a=a -this.b=b}, -afU:function afU(){}, -N0:function N0(a,b){this.a=a -this.b=b}, -adN:function adN(a){this.a=a}, -BQ:function BQ(a){this.a=a}, -Qw:function Qw(){}, -aOA(a,b){var s=0,r=A.I(t.H),q,p,o -var $async$aOA=A.J(function(c,d){if(c===1)return A.F(d,r) -for(;;)switch(s){case 0:q=new A.acA(new A.aOB(),new A.aOC(a,b)) -p=v.G._flutter -o=p==null?null:p.loader -s=o==null||!("didCreateEngineInitializer" in o)?2:4 -break -case 2:s=5 -return A.p(q.rl(),$async$aOA) -case 5:s=3 -break -case 4:o.didCreateEngineInitializer(q.axa()) -case 3:return A.G(null,r)}}) -return A.H($async$aOA,r)}, -bbt(){var s=$.iA -return s==null?$.iA=B.dP:s}, -acK:function acK(a){this.b=a}, -Ae:function Ae(a,b){this.a=a -this.b=b}, -mk:function mk(a,b){this.a=a -this.b=b}, -adk:function adk(){this.f=this.d=this.b=$}, -aOB:function aOB(){}, -aOC:function aOC(a,b){this.a=a -this.b=b}, -adA:function adA(){}, -adC:function adC(a){this.a=a}, -adB:function adB(a){this.a=a}, -QH:function QH(){}, -ajk:function ajk(a){this.a=a}, -ajj:function ajj(a,b){this.a=a -this.b=b}, -aji:function aji(a,b){this.a=a -this.b=b}, -awy:function awy(){}, -N4:function N4(a,b){this.a=a -this.$ti=b}, -N3:function N3(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.e=!0 -_.f=$ -_.$ti=d}, -adQ:function adQ(a){this.a=a}, -adR:function adR(a){this.a=a}, -N_:function N_(a,b,c,d){var _=this -_.e=null -_.r=a -_.x=null -_.cS$=b -_.aJ$=c -_.a=d}, -TP:function TP(a,b,c,d){var _=this -_.e=null -_.r=a -_.x=null -_.cS$=b -_.aJ$=c -_.a=d}, -nC:function nC(a,b,c,d){var _=this -_.f=!1 -_.a=a -_.b=b -_.c=c -_.e=d}, -wK:function wK(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){var _=this -_.n=a -_.U=b -_.a3=_.a0=null -_.azN$=c -_.azO$=d -_.ps$=e -_.l5$=f -_.rP$=g -_.nN$=h -_.K8$=i -_.asg$=j -_.Z6$=k -_.ash$=l -_.l4$=m -_.K9$=n -_.azM$=o -_.Z7$=p -_.dJ$=q -_.al$=r -_.dn$=s -_.dy=a0 -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=a1 -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$ -_.$ti=a2}, -aqW:function aqW(a){this.a=a}, -aqO:function aqO(a,b,c){this.a=a -this.b=b -this.c=c}, -aqS:function aqS(a,b){this.a=a -this.b=b}, -aqQ:function aqQ(a,b){this.a=a -this.b=b}, -aqR:function aqR(a,b){this.a=a -this.b=b}, -aqP:function aqP(a,b){this.a=a -this.b=b}, -aqN:function aqN(a,b){this.a=a -this.b=b}, -aqV:function aqV(a){this.a=a}, -aqT:function aqT(a,b){this.a=a -this.b=b}, -aqU:function aqU(a,b){this.a=a -this.b=b}, -MR:function MR(){}, -MX:function MX(){}, -H5:function H5(){}, -J5:function J5(){}, -J6:function J6(){}, -J7:function J7(){}, -aVp(a,b,c,d,e,f){var s,r=new A.aeX(d) -if(d instanceof A.A||A.bM(f)===B.afC)s=new A.nC(b,c,r.$1$0(t.x),e) -else if(d instanceof A.dc||A.bM(f)===B.agg)s=new A.Fq(b,c,r.$1$0(t.nl),e) -else if(A.bM(f)===B.afB)s=new A.lF(b,c,d,e) -else throw A.i(A.h_("A "+c.ghE().gW().k(0)+" widget was given a child with an unknown type: "+A.j(d)+"\nNo child factory is available for "+A.bM(f).k(0)+"\n")) -return f.a(s)}, -Pu:function Pu(){}, -aeX:function aeX(a){this.a=a}, -a1J:function a1J(a,b,c,d){var _=this -_.w=a -_.e=b -_.c=c -_.a=d}, -ho:function ho(){}, -wL:function wL(){}, -aqM:function aqM(a,b,c){this.a=a -this.b=b -this.c=c}, -nD:function nD(a,b){this.a=a -this.b=b}, -ade:function ade(a){this.a=a}, -adf:function adf(a,b){this.a=a -this.b=b}, -lF:function lF(a,b,c,d){var _=this -_.f=!1 -_.a=a -_.b=b -_.c=c -_.e=d}, -acU:function acU(a){this.a=a}, -ek:function ek(){}, -qU:function qU(){}, -p6:function p6(a,b){var _=this -_.a=a -_.b=b -_.ie$=_.h1$=_.fl$=null}, -dF:function dF(){}, -i7:function i7(){}, -akb:function akb(a){this.a=a}, -akd:function akd(a){this.a=a}, -akc:function akc(a){this.a=a}, -ake:function ake(a){this.a=a}, -R9:function R9(a,b,c,d,e){var _=this -_.p1=null -_.p2=a -_.p3=b -_.p4=c -_.c=_.b=_.a=_.CW=_.ay=null -_.d=$ -_.e=d -_.r=_.f=null -_.w=e -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.at=!1}, -ak8:function ak8(a,b){this.a=a -this.b=b}, -aka:function aka(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -ak9:function ak9(a){this.a=a}, -ak7:function ak7(a,b){this.a=a -this.b=b}, -Fq:function Fq(a,b,c,d){var _=this -_.f=!1 -_.a=a -_.b=b -_.c=c -_.e=d}, -aQf(a,b,c,d){return new A.MW(B.L,c,d,b,null,B.d_,B.L7,null,a,null)}, -b1a(a,b,c){switch(a.a){case 0:switch(b){case B.i:return!0 -case B.aj:return!1 -case null:case void 0:return null}break -case 1:switch(c.a){case 1:return!0 -case 0:return!1}break}}, -bak(a,b,c,d,e,f,g,h){var s,r,q=null,p=J.aR9(4,t.iy) -for(s=0;s<4;++s)p[s]=new A.xG(q,B.aN,B.i,new A.iJ(1),q,q,q,q,B.al,q) -r=new A.DT(b,d,e,a,g,h,f,c,p,!0,0,q,q,new A.b8(),A.at()) -r.be() -r.a_(0,q) -return r}, -add:function add(a,b){this.a=a -this.b=b}, -MY:function MY(){}, -MW:function MW(a,b,c,d,e,f,g,h,i,j){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.x=e -_.y=f -_.z=g -_.Q=h -_.c=i -_.a=j}, -jy:function jy(a,b,c){var _=this -_.f=_.e=_.as=_.Q=_.z=_.y=null -_.cS$=a -_.aJ$=b -_.a=c}, -MZ:function MZ(a,b,c){this.x=a -this.b=b -this.a=c}, -DT:function DT(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.n=a -_.U=b -_.a0=c -_.a3=d -_.a5=e -_.au=f -_.L=g -_.P=h -_.ao=0 -_.JX$=i -_.asa$=j -_.dJ$=k -_.al$=l -_.dn$=m -_.dy=n -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=o -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -aqK:function aqK(){}, -aqI:function aqI(){}, -aqJ:function aqJ(){}, -aqH:function aqH(){}, -aqG:function aqG(){}, -aqL:function aqL(){}, -aDM:function aDM(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -a5u:function a5u(){}, -a5v:function a5v(){}, -a5w:function a5w(){}, -Yb:function Yb(a,b){this.a=a -this.b=b}, -Fr:function Fr(a,b){this.a=a -this.b=b}, -aw8(a,b){var s,r=a.length -A.fv(b,null,r,"startIndex","endIndex") -s=A.bkL(a,0,r,b) -return new A.FD(a,s,b!==s?A.bkF(a,0,r,b):b)}, -bf2(a,b,c,d,e){var s,r,q,p -if(b===c)return B.c.ky(a,b,b,e) -s=B.c.a6(a,0,b) -r=new A.jz(a,c,b,240) -for(q=e;p=r.j6(),p>=0;q=d,b=p)s=s+q+B.c.a6(a,b,p) -s=s+e+B.c.cD(a,c) -return s.charCodeAt(0)==0?s:s}, -bhW(a,b,c,d){var s,r,q,p=b.length -if(p===0)return c -s=d-p -if(s=0}else q=!1 -if(!q)break -if(r>s)return-1 -if(A.aTt(a,c,d,r)&&A.aTt(a,c,d,r+p))return r -c=r+1}return-1}return A.bhH(a,b,c,d)}, -bhH(a,b,c,d){var s,r,q,p=new A.jz(a,d,c,260) -for(s=b.length;r=p.j6(),r>=0;){q=r+s -if(q>d)break -if(B.c.dP(a,b,r)&&A.aTt(a,c,d,q))return r}return-1}, -f8:function f8(a){this.a=a}, -FD:function FD(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null}, -aTt(a,b,c,d){var s,r,q,p -if(b2047){q=k.charCodeAt(l.charCodeAt(s>>>5)+(s&31)) -p=d}else{q=1 -if(r<=1023){o=d+1 -if(o>>8)+(r<<2>>>0)))+(n&255)):1}p=d}else{p=d-1 -m=a.charCodeAt(p)^55296 -r&=1023 -if(m<=1023)q=k.charCodeAt(l.charCodeAt(2048+((r>>>8)+(m<<2>>>0)))+(r&255)) -else p=d}}return new A.pJ(a,b,p,u.t.charCodeAt(240+q)).j6()}return d}, -bkF(a,b,c,d){var s,r,q,p,o,n -if(d===b||d===c)return d -s=new A.jz(a,c,d,280) -r=s.Vj(b) -q=s.j6() -p=s.d -if((p&3)===1)return q -o=new A.pJ(a,b,r,p) -o.GF() -n=o.d -if((n&1)!==0)return q -if(p===342)s.d=220 -else s.d=n -return s.j6()}, -jz:function jz(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -pJ:function pJ(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -c4:function c4(){}, -adS:function adS(a){this.a=a}, -adT:function adT(a){this.a=a}, -adU:function adU(a,b){this.a=a -this.b=b}, -adV:function adV(a){this.a=a}, -adW:function adW(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -adX:function adX(a,b,c){this.a=a -this.b=b -this.c=c}, -adY:function adY(a){this.a=a}, -PD:function PD(){}, -pm:function pm(){}, -y_:function y_(a,b){this.a=a -this.$ti=b}, -x0:function x0(a,b){this.a=a -this.$ti=b}, -yC:function yC(a,b,c){this.a=a -this.b=b -this.c=c}, -r2:function r2(a,b,c){this.a=a -this.b=b -this.$ti=c}, -PB:function PB(){}, -QJ:function QJ(a,b,c){var _=this -_.a=a -_.b=b -_.d=_.c=0 -_.$ti=c}, -b0H(a){var s,r,q,p,o="0123456789abcdef",n=a.length,m=new Uint8Array(n*2) -for(s=0,r=0;s>>4&15) -r=p+1 -m[p]=o.charCodeAt(q&15)}return A.oO(m,0,null)}, -q9:function q9(a){this.a=a}, -aft:function aft(){this.a=null}, -QG:function QG(){}, -ajh:function ajh(){}, -bdH(a){var s=new Uint32Array(A.iN(A.c([1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],t.t))),r=new Uint32Array(64),q=new Uint8Array(64) -return new A.a6x(s,r,a,q,new Uint32Array(16))}, -a6w:function a6w(){}, -aHr:function aHr(){}, -a6x:function a6x(a,b,c,d,e){var _=this -_.y=a -_.z=b -_.a=c -_.c=null -_.d=d -_.e=0 -_.f=e -_.r=0 -_.w=!1}, -mD:function mD(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.f=e -_.r=f}, -bd3(a){switch(a.a){case 0:return"connection timeout" -case 1:return"send timeout" -case 2:return"receive timeout" -case 3:return"bad certificate" -case 4:return"bad response" -case 5:return"request cancelled" -case 6:return"connection error" -case 7:return"unknown"}}, -PR(a,b,c,d,e,f){var s=c.ch -if(s==null)s=A.iy() -return new A.hs(c,d,f,a,s,b)}, -aVy(a,b){return A.PR(null,"The request connection took longer than "+b.k(0)+" and it was aborted. To get rid of this exception, try raising the RequestOptions.connectTimeout above the duration of "+b.k(0)+u.v,a,null,null,B.Oo)}, -aQB(a,b){return A.PR(null,"The request took longer than "+b.k(0)+" to receive data. It was aborted. To get rid of this exception, try raising the RequestOptions.receiveTimeout above the duration of "+b.k(0)+u.v,a,null,null,B.Op)}, -b7a(a,b){return A.PR(null,"The connection errored: "+a+" This indicates an error which most likely cannot be solved by the library.",b,null,null,B.Os)}, -b1z(a){var s="DioException ["+A.bd3(a.c)+"]: "+A.j(a.f),r=a.d -if(r!=null)s=s+"\n"+("Error: "+A.j(r)) -return s.charCodeAt(0)==0?s:s}, -nK:function nK(a,b){this.a=a -this.b=b}, -hs:function hs(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -aQD(a,b,c){return b}, -aVA(a,b){b=A.b9C() -b.a=a -return b}, -aQC(a,b){if(a instanceof A.hs)return a -return A.PR(a,null,b,null,null,B.Ot)}, -aVz(a,b,c){var s,r,q,p,o=null -if(!(a instanceof A.hA))return A.aRI(c.a(a),o,o,!1,B.Xm,b,o,o,c) -else if(!c.i("hA<0>").b(a)){s=c.i("0?").a(a.a) -if(s instanceof A.mD){r=s.f -q=b.c -q===$&&A.a() -p=A.aWd(r,q)}else p=a.e -return A.aRI(s,a.w,p,a.f,a.r,a.b,a.c,a.d,c)}return a}, -afv:function afv(){}, -afC:function afC(a){this.a=a}, -afE:function afE(a,b){this.a=a -this.b=b}, -afD:function afD(a,b){this.a=a -this.b=b}, -afF:function afF(a){this.a=a}, -afH:function afH(a,b){this.a=a -this.b=b}, -afG:function afG(a,b){this.a=a -this.b=b}, -afz:function afz(a){this.a=a}, -afA:function afA(a,b){this.a=a -this.b=b}, -afB:function afB(a,b){this.a=a -this.b=b}, -afx:function afx(a){this.a=a}, -afy:function afy(a,b,c){this.a=a -this.b=b -this.c=c}, -afw:function afw(a){this.a=a}, -vO:function vO(a,b){this.a=a -this.b=b}, -ea:function ea(a,b,c){this.a=a -this.b=b -this.$ti=c}, -azH:function azH(){}, -mC:function mC(a){this.a=a}, -rR:function rR(a){this.a=a}, -qf:function qf(a){this.a=a}, -fH:function fH(){}, -Rf:function Rf(a){this.a=a}, -aWd(a,b){var s=t.yp -return new A.QI(A.aOD(a.mn(0,new A.ajn(),t.N,s),s))}, -QI:function QI(a){this.b=a}, -ajn:function ajn(){}, -ajo:function ajo(a){this.a=a}, -C2:function C2(){}, -f_(a){}, -CD:function CD(a,b,c){this.c=a -this.f=b -this.w=c}, -b5J(a,b,c,d){var s=null,r=t.N,q=t.z,p=new A.acW($,$,s,"GET",!1,s,d,B.hX,A.bkI(),!0,A.t(r,q),!0,5,!0,s,s,B.rT) -p.OG(s,s,s,c,s,s,s,s,!1,s,d,s,s,B.hX,s,s) -p.sX0(a) -p.vV$=A.t(r,q) -p.sXC(b) -return p}, -b9C(){return new A.ap5()}, -beO(a){return a>=200&&a<300}, -wP:function wP(a,b){this.a=a -this.b=b}, -Ry:function Ry(a,b){this.a=a -this.b=b}, -U_:function U_(){}, -acW:function acW(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this -_.B6$=a -_.vV$=b -_.vW$=c -_.a=d -_.b=$ -_.c=e -_.d=f -_.e=g -_.f=null -_.r=h -_.w=i -_.x=j -_.y=k -_.z=l -_.Q=m -_.as=n -_.at=o -_.ax=p -_.ay=q}, -ap5:function ap5(){this.a=null}, -io:function io(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){var _=this -_.ch=null -_.CW=a -_.cx=b -_.cy=c -_.db=d -_.dx=e -_.B6$=f -_.vV$=g -_.vW$=h -_.a=i -_.b=$ -_.c=j -_.d=k -_.e=l -_.f=null -_.r=m -_.w=n -_.x=o -_.y=p -_.z=q -_.Q=r -_.as=s -_.at=a0 -_.ax=a1 -_.ay=a2}, -aGI:function aGI(){}, -a0M:function a0M(){}, -a5V:function a5V(){}, -aRI(a,b,c,d,e,f,g,h,i){var s,r -if(c==null){f.c===$&&A.a() -s=new A.QI(A.aOD(null,t.yp))}else s=c -r=b==null?A.t(t.N,t.z):b -return new A.hA(a,f,g,h,s,d,e,r,i.i("hA<0>"))}, -hA:function hA(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.$ti=i}, -bka(a,b){var s,r,q,p={},o=b.b,n=A.aZz(null,t.H3),m=A.bQ(),l=A.bQ() -p.a=0 -s=a.e -if(s==null)s=B.z -r=new A.tv() -$.ur() -p.b=null -q=new A.aP1(p,null,r) -m.b=o.f8(new A.aOZ(p,new A.aP2(p,s,r,q,b,m,n,a),r,s,n,a,l),!0,new A.aP_(q,m,n),new A.aP0(q,n)) -return new A.jh(n,A.n(n).i("jh<1>"))}, -b0D(a,b,c){if((a.b&4)===0){a.kf(b,c) -a.bn()}}, -aP1:function aP1(a,b,c){this.a=a -this.b=b -this.c=c}, -aP2:function aP2(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -aP3:function aP3(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -aOZ:function aOZ(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -aP0:function aP0(a,b){this.a=a -this.b=b}, -aP_:function aP_(a,b,c){this.a=a -this.b=b -this.c=c}, -bc0(a,b){return A.b1B(a,new A.axw(),!1,b)}, -bc1(a,b){return A.b1B(a,new A.axx(),!0,b)}, -b_0(a){var s,r,q,p -if(a==null)return!1 -try{s=A.b9d(a) -q=s -if(q.a+"/"+q.b!=="application/json"){q=s -q=q.a+"/"+q.b==="text/json"||B.c.l_(s.b,"+json")}else q=!0 -return q}catch(p){r=A.b3(p) -return!1}}, -bc_(a,b){var s,r=a.CW -if(r==null)r="" -if(typeof r!="string"){s=a.b -s===$&&A.a() -s=A.b_0(A.bH(s.h(0,"content-type")))}else s=!1 -if(s)return b.$1(r) -else if(t.f.b(r)){if(t.P.b(r)){s=a.ay -s===$&&A.a() -return A.bc0(r,s)}A.l(r).k(0) -A.iy() -return A.RI(r)}else return J.cB(r)}, -axv:function axv(){}, -axw:function axw(){}, -axx:function axx(){}, -aQV(a){return A.b8d(a)}, -b8d(a){var s=0,r=A.I(t.X),q,p -var $async$aQV=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:if(a.length===0){q=null -s=1 -break}p=$.aPL() -q=A.LM(p.a.e8(a),p.b.a) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$aQV,r)}, -aiI:function aiI(a){this.a=a}, -aff:function aff(){}, -afg:function afg(){}, -yg:function yg(a){this.a=a -this.b=!1}, -b1B(a,b,c,d){var s,r,q={},p=new A.cf("") -q.a=!0 -s=c?"[":"%5B" -r=c?"]":"%5D" -new A.aOP(q,d,c,new A.aOO(c,A.b1o()),s,r,A.b1o(),b,p).$2(a,"") -q=p.a -return q.charCodeAt(0)==0?q:q}, -bhS(a,b){switch(a.a){case 0:return"," -case 1:return b?"%20":" " -case 2:return"\\t" -case 3:return"|" -default:return""}}, -aOD(a,b){var s=A.al5(new A.aOE(),new A.aOF(),t.N,b) -if(a!=null&&a.a!==0)s.a_(0,a) -return s}, -aOO:function aOO(a,b){this.a=a -this.b=b}, -aOP:function aOP(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -aOQ:function aOQ(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -aOE:function aOE(){}, -aOF:function aOF(){}, -bgm(a){var s,r,q,p,o,n,m,l,k,j=a.getAllResponseHeaders(),i=A.t(t.N,t.yp) -if(j.length===0)return i -s=j.split("\r\n") -for(r=s.length,q=t.s,p=0;pb.gp())q.c=B.akc -else q.c=B.akb -s=a}else s=a -s.hk(q.gr7()) -s=q.gI2() -q.a.a9(s) -r=q.b -if(r!=null){r.bC() -r.d_$.G(0,s)}return q}, -aUM(a,b,c){return new A.zR(a,b,new A.bp(A.c([],t.F),t.T),new A.eQ(A.t(t.M,t.S),t.PD),0,c.i("zR<0>"))}, -a0f:function a0f(){}, -a0g:function a0g(){}, -zF:function zF(a,b){this.a=a -this.$ti=b}, -zS:function zS(){}, -rF:function rF(a,b,c){var _=this -_.c=_.b=_.a=null -_.cP$=a -_.d_$=b -_.nM$=c}, -hB:function hB(a,b,c){this.a=a -this.cP$=b -this.nM$=c}, -AY:function AY(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null}, -a9P:function a9P(a,b){this.a=a -this.b=b}, -tH:function tH(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=null -_.d=c -_.f=_.e=null -_.cP$=d -_.d_$=e}, -v6:function v6(){}, -zR:function zR(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.d=_.c=null -_.cP$=c -_.d_$=d -_.nM$=e -_.$ti=f}, -Hg:function Hg(){}, -Hh:function Hh(){}, -Hi:function Hi(){}, -a1I:function a1I(){}, -a51:function a51(){}, -a52:function a52(){}, -a53:function a53(){}, -a60:function a60(){}, -a61:function a61(){}, -a9M:function a9M(){}, -a9N:function a9N(){}, -a9O:function a9O(){}, -Dw:function Dw(){}, -fX:function fX(){}, -Ii:function Ii(){}, -En:function En(a){this.a=a}, -eo:function eo(a,b,c){this.a=a -this.b=b -this.c=c}, -G7:function G7(a){this.a=a}, -e7:function e7(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -G6:function G6(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -jG:function jG(a){this.a=a}, -a1N:function a1N(){}, -zQ:function zQ(){}, -zP:function zP(){}, -pF:function pF(){}, -nx:function nx(){}, -eg(a,b,c){return new A.aA(a,b,c.i("aA<0>"))}, -ey(a){return new A.fm(a)}, -aq:function aq(){}, -aw:function aw(a,b,c){this.a=a -this.b=b -this.$ti=c}, -eE:function eE(a,b,c){this.a=a -this.b=b -this.$ti=c}, -aA:function aA(a,b,c){this.a=a -this.b=b -this.$ti=c}, -Eh:function Eh(a,b,c,d){var _=this -_.c=a -_.a=b -_.b=c -_.$ti=d}, -fV:function fV(a,b){this.a=a -this.b=b}, -Y1:function Y1(a,b){this.a=a -this.b=b}, -DL:function DL(a,b){this.a=a -this.b=b}, -nY:function nY(a,b){this.a=a -this.b=b}, -v8:function v8(a,b,c){this.a=a -this.b=b -this.$ti=c}, -fm:function fm(a){this.a=a}, -L4:function L4(){}, -aSj(a,b){var s=new A.Gq(A.c([],b.i("z>")),A.c([],t.mz),b.i("Gq<0>")) -s.a8z(a,b) -return s}, -b_1(a,b,c){return new A.fA(a,b,c.i("fA<0>"))}, -Gq:function Gq(a,b,c){this.a=a -this.b=b -this.$ti=c}, -fA:function fA(a,b,c){this.a=a -this.b=b -this.$ti=c}, -a3l:function a3l(a,b){this.a=a -this.b=b}, -b6q(a,b){return new A.AK(a,!0,1,b)}, -AK:function AK(a,b,c,d){var _=this -_.c=a -_.d=b -_.f=c -_.a=d}, -a1t:function a1t(a,b){var _=this -_.d=$ -_.dK$=a -_.bu$=b -_.c=_.a=null}, -a1s:function a1s(a,b,c,d,e,f){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.a=f}, -La:function La(){}, -aVh(a,b,c,d,e,f,g,h,i){return new A.AL(c,h,d,e,g,f,i,b,a,null)}, -aVi(){var s,r=A.aT() -A:{if(B.U===r||B.as===r||B.bN===r){s=70 -break A}if(B.b5===r||B.bO===r||B.bP===r){s=0 -break A}s=null}return s}, -va:function va(a,b){this.a=a -this.b=b}, -aAR:function aAR(a,b){this.a=a -this.b=b}, -AL:function AL(a,b,c,d,e,f,g,h,i,j){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.w=e -_.y=f -_.Q=g -_.as=h -_.ax=i -_.a=j}, -Hn:function Hn(a,b,c){var _=this -_.d=a -_.r=_.f=_.e=$ -_.x=_.w=!1 -_.y=$ -_.dK$=b -_.bu$=c -_.c=_.a=null}, -aAK:function aAK(){}, -aAM:function aAM(a){this.a=a}, -aAN:function aAN(a){this.a=a}, -aAL:function aAL(a){this.a=a}, -aAJ:function aAJ(a,b){this.a=a -this.b=b}, -aAO:function aAO(a,b){this.a=a -this.b=b}, -aAP:function aAP(){}, -aAQ:function aAQ(a,b,c){this.a=a -this.b=b -this.c=c}, -Lb:function Lb(){}, -cL:function cL(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k}, -aeQ:function aeQ(a){this.a=a}, -a1w:function a1w(){}, -a1v:function a1v(){}, -aeP:function aeP(){}, -aaD:function aaD(){}, -ND:function ND(a,b,c){this.c=a -this.d=b -this.a=c}, -b6r(a,b){return new A.q4(a,b,null)}, -q4:function q4(a,b,c){this.c=a -this.f=b -this.a=c}, -Ho:function Ho(){this.d=!1 -this.c=this.a=null}, -aAS:function aAS(a){this.a=a}, -aAT:function aAT(a){this.a=a}, -aVj(a,b,c,d,e,f,g,h,i){return new A.NE(h,c,i,d,f,b,e,g,a)}, -NE:function NE(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -a1x:function a1x(){}, -Pt:function Pt(a,b){this.a=a -this.b=b}, -a1y:function a1y(){}, -PC:function PC(){}, -AV:function AV(a,b,c){this.d=a -this.w=b -this.a=c}, -Hq:function Hq(a,b,c){var _=this -_.d=a -_.e=0 -_.w=_.r=_.f=$ -_.dK$=b -_.bu$=c -_.c=_.a=null}, -aB1:function aB1(a){this.a=a}, -aB0:function aB0(){}, -aB_:function aB_(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Pp:function Pp(a,b,c,d){var _=this -_.e=a -_.w=b -_.x=c -_.a=d}, -Lc:function Lc(){}, -b6B(a){var s,r=a.b -r.toString -s=a.CW -s.toString -r.Yv() -return new A.Hm(s,r,new A.aeR(a),new A.aeS(a))}, -b6C(a,b,c,d,e,f){var s=a.b.cy.a -return new A.AU(new A.ye(e,new A.aeT(a),new A.aeU(a,f),null,f.i("ye<0>")),c,d,s,null)}, -b6A(a,b,c,d,e){var s -b=A.cQ(B.mj,c,B.qK) -s=$.aUi() -t.v.a(b) -b.l() -return A.oK(e,new A.aw(b,s,s.$ti.i("aw")),a.aA(t.I).w,!1)}, -aAU(a,b,c){var s,r,q,p,o -if(a==b)return a -if(a==null){s=b.a -if(s==null)s=b -else{r=A.a6(s).i("am<1,x>") -s=A.aa(new A.am(s,new A.aAV(c),r),r.i("aE.E")) -s=new A.kf(s)}return s}if(b==null){s=a.a -if(s==null)s=a -else{r=A.a6(s).i("am<1,x>") -s=A.aa(new A.am(s,new A.aAW(c),r),r.i("aE.E")) -s=new A.kf(s)}return s}s=A.c([],t.t_) -for(r=b.a,q=a.a,p=0;p>>16&255,B.r.A()>>>8&255,B.r.A()&255):null -return new A.a1D(b,c,s,A.v4(d,B.O2.cV(a),!0),null)}, -bdu(a,b,c){var s,r,q,p,o,n,m=b.a,l=b.b,k=b.c,j=b.d,i=[new A.an(new A.h(k,j),new A.aR(-b.x,-b.y)),new A.an(new A.h(m,j),new A.aR(b.z,-b.Q)),new A.an(new A.h(m,l),new A.aR(b.e,b.f)),new A.an(new A.h(k,l),new A.aR(-b.r,b.w))],h=B.d.qx(c,1.5707963267948966) -for(m=4+h,l=a.e,s=h;s"))) -return new A.vz(r)}, -nP(a){return new A.vz(a)}, -aVX(a){return a}, -aVZ(a,b){var s -if(a.r)return -s=$.aQN -if(s===0)A.bjI(J.cB(a.a),100,a.b) -else A.aPu().$1("Another exception was thrown: "+a.ga3Q().k(0)) -$.aQN=$.aQN+1}, -aVY(a){var s,r,q,p,o,n,m,l,k,j,i,h=A.aG(["dart:async-patch",0,"dart:async",0,"package:stack_trace",0,"class _AssertionError",0,"class _FakeAsync",0,"class _FrameCallbackEntry",0,"class _Timer",0,"class _RawReceivePortImpl",0],t.N,t.S),g=A.bbe(J.aQ1(a,"\n")) -for(s=0,r=0;q=g.length,r")).gai(0);j.v();){i=j.d -if(i.b>0)q.push(i.a)}B.b.jZ(q) -if(s===1)k.push("(elided one frame from "+B.b.gcM(q)+")") -else if(s>1){j=q.length -if(j>1)q[j-1]="and "+B.b.gaC(q) -j="(elided "+s -if(q.length>2)k.push(j+" frames from "+B.b.bJ(q,", ")+")") -else k.push(j+" frames from "+B.b.bJ(q," ")+")")}return k}, -dE(a){var s=$.kB -if(s!=null)s.$1(a)}, -bjI(a,b,c){var s,r -A.aPu().$1(a) -s=A.c(B.c.D6((c==null?A.iy():A.aVX(c)).k(0)).split("\n"),t.s) -r=s.length -s=J.Me(r!==0?new A.Fo(s,new A.aOL(),t.Ws):s,b) -A.aPu().$1(B.b.bJ(A.aVY(s),"\n"))}, -b75(a,b,c){A.b76(b,c) -return new A.PO()}, -b76(a,b){if(a==null)return A.c([],t.D) -return J.ju(A.aVY(A.c(B.c.D6(A.j(A.aVX(a))).split("\n"),t.s)),A.bj1(),t.EX).eA(0)}, -b77(a){return A.aVw(a,!1)}, -bd5(a,b,c){return new A.a2B()}, -p1:function p1(){}, -vv:function vv(a,b,c,d,e,f){var _=this -_.y=a -_.z=b -_.as=c -_.at=d -_.ax=!0 -_.ay=null -_.ch=e -_.CW=f}, -Qa:function Qa(a,b,c,d,e,f){var _=this -_.y=a -_.z=b -_.as=c -_.at=d -_.ax=!0 -_.ay=null -_.ch=e -_.CW=f}, -Q9:function Q9(a,b,c,d,e,f){var _=this -_.y=a -_.z=b -_.as=c -_.at=d -_.ax=!0 -_.ay=null -_.ch=e -_.CW=f}, -c9:function c9(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.f=e -_.r=f}, -ahZ:function ahZ(a){this.a=a}, -vz:function vz(a){this.a=a}, -ai_:function ai_(){}, -ai0:function ai0(){}, -ai1:function ai1(){}, -aOL:function aOL(){}, -PO:function PO(){}, -a2B:function a2B(){}, -a2D:function a2D(){}, -a2C:function a2C(){}, -ML:function ML(){}, -ad8:function ad8(a){this.a=a}, -ae:function ae(){}, -aZ:function aZ(a){var _=this -_.L$=0 -_.P$=a -_.av$=_.ao$=0}, -ae9:function ae9(a){this.a=a}, -u1:function u1(a){this.a=a}, -cb:function cb(a,b){var _=this -_.a=a -_.L$=0 -_.P$=b -_.av$=_.ao$=0}, -aVw(a,b){var s=null -return A.kv("",s,b,B.c0,a,s,s,B.bq,!1,!1,!0,B.mq,s)}, -kv(a,b,c,d,e,f,g,h,i,j,k,l,m){var s -if(g==null)s=i?"MISSING":null -else s=g -return new A.ku(s,f,i,b,d,h)}, -aQA(a,b,c){return new A.PM()}, -bF(a){return B.c.mt(B.j.oc(J.D(a)&1048575,16),5,"0")}, -b74(a,b,c,d,e,f,g){return new A.B5()}, -vm:function vm(a,b){this.a=a -this.b=b}, -lQ:function lQ(a,b){this.a=a -this.b=b}, -aEY:function aEY(){}, -ds:function ds(){}, -ku:function ku(a,b,c,d,e,f){var _=this -_.y=a -_.z=b -_.as=c -_.at=d -_.ax=!0 -_.ay=null -_.ch=e -_.CW=f}, -B4:function B4(){}, -PM:function PM(){}, -ad:function ad(){}, -afr:function afr(){}, -iX:function iX(){}, -B5:function B5(){}, -a1Z:function a1Z(){}, -h5:function h5(){}, -RC:function RC(){}, -hc:function hc(){}, -e2:function e2(a,b){this.a=a -this.$ti=b}, -j1:function j1(){}, -Ct:function Ct(){}, -Dn(a){return new A.bp(A.c([],a.i("z<0>")),a.i("bp<0>"))}, -bp:function bp(a,b){var _=this -_.a=a -_.b=!1 -_.c=$ -_.$ti=b}, -eQ:function eQ(a,b){this.a=a -this.$ti=b}, -ajl:function ajl(a,b){this.a=a -this.b=b}, -bip(a){return A.bO(a,null,!1,t.X)}, -Dx:function Dx(a){this.a=a}, -aLg:function aLg(){}, -a2N:function a2N(a){this.a=a}, -p_:function p_(a,b){this.a=a -this.b=b}, -I_:function I_(a,b){this.a=a -this.b=b}, -fO:function fO(a,b){this.a=a -this.b=b}, -ay9(a){var s=new DataView(new ArrayBuffer(8)),r=J.uv(B.aU.gcF(s)) -return new A.ay7(new Uint8Array(a),s,r)}, -ay7:function ay7(a,b,c){var _=this -_.a=a -_.b=0 -_.c=!1 -_.d=b -_.e=c}, -DK:function DK(a){this.a=a -this.b=0}, -bbe(a){var s=t.ZK -s=A.aa(new A.cN(new A.h6(new A.b1(A.c(B.c.hS(a).split("\n"),t.s),new A.avP(),t.Hd),A.bkV(),t.C9),s),s.i("y.E")) -return s}, -bbd(a){var s,r,q="",p=$.b3h().pv(a) -if(p==null)return null -s=A.c(p.b[1].split("."),t.s) -r=s.length>1?B.b.gad(s):q -return new A.k5(a,-1,q,q,q,-1,-1,r,s.length>1?A.fN(s,1,null,t.N).bJ(0,"."):B.b.gcM(s))}, -bbf(a){var s,r,q,p,o,n,m,l,k,j,i=null,h="" -if(a==="")return B.a9G -else if(a==="...")return B.a9H -if(!B.c.c8(a,"#"))return A.bbd(a) -s=A.cS("^#(\\d+) +(.+) \\((.+?):?(\\d+){0,1}:?(\\d+){0,1}\\)$",!0,!1).pv(a).b -r=s[2] -r.toString -q=A.nu(r,".","") -if(B.c.c8(q,"new")){p=q.split(" ").length>1?q.split(" ")[1]:h -if(B.c.q(p,".")){o=p.split(".") -p=o[0] -q=o[1]}else q=""}else if(B.c.q(q,".")){o=q.split(".") -p=o[0] -q=o[1]}else p="" -r=s[3] -r.toString -n=A.iD(r,0,i) -m=n.gfa() -if(n.ghb()==="dart"||n.ghb()==="package"){l=n.gwD()[0] -m=B.c.tk(n.gfa(),n.gwD()[0]+"/","")}else l=h -r=s[1] -r.toString -r=A.fU(r,i) -k=n.ghb() -j=s[4] -if(j==null)j=-1 -else{j=j -j.toString -j=A.fU(j,i)}s=s[5] -if(s==null)s=-1 -else{s=s -s.toString -s=A.fU(s,i)}return new A.k5(a,r,k,l,m,j,s,p,q)}, -k5:function k5(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -avP:function avP(){}, -cF:function cF(a,b){this.a=a -this.$ti=b}, -awe:function awe(a){this.a=a}, -Qv:function Qv(a,b){this.a=a -this.b=b}, -du:function du(){}, -Qu:function Qu(a,b,c){this.a=a -this.b=b -this.c=c}, -yp:function yp(a){var _=this -_.a=a -_.b=!0 -_.d=_.c=!1 -_.e=null}, -aCC:function aCC(a){this.a=a}, -aiO:function aiO(a){this.a=a}, -aiQ:function aiQ(){}, -aiP:function aiP(a,b,c){this.a=a -this.b=b -this.c=c}, -b82(a,b,c,d,e,f,g){return new A.BI(c,g,f,a,e,!1)}, -aGJ:function aGJ(a,b,c,d,e,f){var _=this -_.a=a -_.b=!1 -_.c=b -_.d=c -_.r=d -_.w=e -_.x=f -_.y=null}, -BR:function BR(){}, -aiR:function aiR(a){this.a=a}, -aiS:function aiS(a,b){this.a=a -this.b=b}, -BI:function BI(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.f=e -_.r=f}, -b1c(a,b){switch(b.a){case 1:case 4:return a -case 0:case 2:case 3:return a===0?1:a -case 5:return a===0?1:a}}, -b9M(a,b){var s=A.a6(a) -return new A.cN(new A.h6(new A.b1(a,new A.apP(),s.i("b1<1>")),new A.apQ(b),s.i("h6<1,bE?>")),t.FI)}, -apP:function apP(){}, -apQ:function apQ(a){this.a=a}, -Bg(a,b,c,d,e,f){return new A.vo(b,d==null?b:d,f,a,e,c)}, -lR:function lR(a,b){this.a=a -this.b=b}, -i_:function i_(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -vo:function vo(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -hu:function hu(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -a28:function a28(){}, -a29:function a29(){}, -a2a:function a2a(){}, -a2b:function a2b(){}, -apR(a,b){var s,r -if(a==null)return b -s=new A.fd(new Float64Array(3)) -s.lB(b.a,b.b,0) -r=a.Cv(s).a -return new A.h(r[0],r[1])}, -wv(a,b,c,d){if(a==null)return c -if(b==null)b=A.apR(a,d) -return b.ac(0,A.apR(a,d.ac(0,c)))}, -aRx(a){var s,r,q=new Float64Array(4) -new A.n3(q).Nu(0,0,1,0) -s=new Float64Array(16) -r=new A.bc(s) -r.dl(a) -s[11]=q[3] -s[10]=q[2] -s[9]=q[1] -s[8]=q[0] -s[2]=q[0] -s[6]=q[1] -s[10]=q[2] -s[14]=q[3] -return r}, -b9K(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return new A.rv(o,d,n,0,e,a,h,B.f,0,!1,!1,0,j,i,b,c,0,0,0,l,k,g,m,0,!1,null,null)}, -b9S(a,b,c,d,e,f,g,h,i,j,k,l){return new A.rA(l,c,k,0,d,a,f,B.f,0,!1,!1,0,h,g,0,b,0,0,0,j,i,0,0,0,!1,null,null)}, -b9N(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){return new A.mr(a1,f,a0,0,g,c,j,b,a,!1,!1,0,l,k,d,e,q,m,p,o,n,i,s,0,r,null,null)}, -aXj(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){return new A.ok(a3,g,a2,k,h,c,l,b,a,f,!1,0,n,m,d,e,s,o,r,q,p,j,a1,0,a0,null,null)}, -aXk(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){return new A.ol(a3,g,a2,k,h,c,l,b,a,f,!1,0,n,m,d,e,s,o,r,q,p,j,a1,0,a0,null,null)}, -b9L(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){return new A.mq(a0,d,s,h,e,b,i,B.f,a,!0,!1,j,l,k,0,c,q,m,p,o,n,g,r,0,!1,null,null)}, -b9O(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){return new A.rx(a3,e,a2,j,f,c,k,b,a,!0,!1,l,n,m,0,d,s,o,r,q,p,h,a1,i,a0,null,null)}, -b9W(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){return new A.mt(a1,e,a0,i,f,b,j,B.f,a,!1,!1,k,m,l,c,d,r,n,q,p,o,h,s,0,!1,null,null)}, -b9U(a,b,c,d,e,f,g,h){return new A.rB(f,d,h,b,g,0,c,a,e,B.f,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,!1,null,null)}, -b9V(a,b,c,d,e,f){return new A.rC(f,b,e,0,c,a,d,B.f,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,!1,null,null)}, -b9T(a,b,c,d,e,f,g){return new A.Uj(e,g,b,f,0,c,a,d,B.f,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,!1,null,null)}, -b9Q(a,b,c,d,e,f,g){return new A.ms(g,b,f,c,B.bt,a,d,B.f,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,e,null,null)}, -b9R(a,b,c,d,e,f,g,h,i,j,k){return new A.rz(c,d,h,g,k,b,j,e,B.bt,a,f,B.f,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,i,null,null)}, -b9P(a,b,c,d,e,f,g){return new A.ry(g,b,f,c,B.bt,a,d,B.f,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,e,null,null)}, -aXh(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){return new A.rw(a0,e,s,i,f,b,j,B.f,a,!1,!1,0,l,k,c,d,q,m,p,o,n,h,r,0,!1,null,null)}, -pw(a,b){var s -switch(a.a){case 1:return 1 -case 2:case 3:case 5:case 0:case 4:s=b==null?null:b.a -return s==null?18:s}}, -aTf(a,b){var s -switch(a.a){case 1:return 2 -case 2:case 3:case 5:case 0:case 4:if(b==null)s=null -else{s=b.a -s=s!=null?s*2:null}return s==null?36:s}}, -bE:function bE(){}, -eu:function eu(){}, -a09:function a09(){}, -a9V:function a9V(){}, -a1b:function a1b(){}, -rv:function rv(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -a9R:function a9R(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -a1l:function a1l(){}, -rA:function rA(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -aa1:function aa1(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -a1g:function a1g(){}, -mr:function mr(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -a9X:function a9X(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -a1e:function a1e(){}, -ok:function ok(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -a9U:function a9U(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -a1f:function a1f(){}, -ol:function ol(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -a9W:function a9W(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -a1d:function a1d(){}, -mq:function mq(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -a9T:function a9T(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -a1h:function a1h(){}, -rx:function rx(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -a9Y:function a9Y(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -a1p:function a1p(){}, -mt:function mt(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -aa5:function aa5(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -fK:function fK(){}, -Jr:function Jr(){}, -a1n:function a1n(){}, -rB:function rB(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9){var _=this -_.au=a -_.L=b -_.a=c -_.b=d -_.c=e -_.d=f -_.e=g -_.f=h -_.r=i -_.w=j -_.x=k -_.y=l -_.z=m -_.Q=n -_.as=o -_.at=p -_.ax=q -_.ay=r -_.ch=s -_.CW=a0 -_.cx=a1 -_.cy=a2 -_.db=a3 -_.dx=a4 -_.dy=a5 -_.fr=a6 -_.fx=a7 -_.fy=a8 -_.go=a9}, -aa3:function aa3(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -a1o:function a1o(){}, -rC:function rC(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -aa4:function aa4(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -a1m:function a1m(){}, -Uj:function Uj(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8){var _=this -_.au=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k -_.z=l -_.Q=m -_.as=n -_.at=o -_.ax=p -_.ay=q -_.ch=r -_.CW=s -_.cx=a0 -_.cy=a1 -_.db=a2 -_.dx=a3 -_.dy=a4 -_.fr=a5 -_.fx=a6 -_.fy=a7 -_.go=a8}, -aa2:function aa2(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -a1j:function a1j(){}, -ms:function ms(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -aa_:function aa_(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -a1k:function a1k(){}, -rz:function rz(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1){var _=this -_.id=a -_.k1=b -_.k2=c -_.k3=d -_.a=e -_.b=f -_.c=g -_.d=h -_.e=i -_.f=j -_.r=k -_.w=l -_.x=m -_.y=n -_.z=o -_.Q=p -_.as=q -_.at=r -_.ax=s -_.ay=a0 -_.ch=a1 -_.CW=a2 -_.cx=a3 -_.cy=a4 -_.db=a5 -_.dx=a6 -_.dy=a7 -_.fr=a8 -_.fx=a9 -_.fy=b0 -_.go=b1}, -aa0:function aa0(a,b){var _=this -_.d=_.c=$ -_.e=a -_.f=b -_.b=_.a=$}, -a1i:function a1i(){}, -ry:function ry(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -a9Z:function a9Z(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -a1c:function a1c(){}, -rw:function rw(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7}, -a9S:function a9S(a,b){var _=this -_.c=a -_.d=b -_.b=_.a=$}, -a4q:function a4q(){}, -a4r:function a4r(){}, -a4s:function a4s(){}, -a4t:function a4t(){}, -a4u:function a4u(){}, -a4v:function a4v(){}, -a4w:function a4w(){}, -a4x:function a4x(){}, -a4y:function a4y(){}, -a4z:function a4z(){}, -a4A:function a4A(){}, -a4B:function a4B(){}, -a4C:function a4C(){}, -a4D:function a4D(){}, -a4E:function a4E(){}, -a4F:function a4F(){}, -a4G:function a4G(){}, -a4H:function a4H(){}, -a4I:function a4I(){}, -a4J:function a4J(){}, -a4K:function a4K(){}, -a4L:function a4L(){}, -a4M:function a4M(){}, -a4N:function a4N(){}, -a4O:function a4O(){}, -a4P:function a4P(){}, -a4Q:function a4Q(){}, -a4R:function a4R(){}, -a4S:function a4S(){}, -a4T:function a4T(){}, -a4U:function a4U(){}, -a4V:function a4V(){}, -abf:function abf(){}, -abg:function abg(){}, -abh:function abh(){}, -abi:function abi(){}, -abj:function abj(){}, -abk:function abk(){}, -abl:function abl(){}, -abm:function abm(){}, -abn:function abn(){}, -abo:function abo(){}, -abp:function abp(){}, -abq:function abq(){}, -abr:function abr(){}, -abs:function abs(){}, -abt:function abt(){}, -abu:function abu(){}, -abv:function abv(){}, -abw:function abw(){}, -abx:function abx(){}, -b89(a,b,c,d){var s=t.S -return new A.jJ(c,b,B.pf,A.t(s,t.SP),A.dv(s),a,d,A.LU(),A.t(s,t.g))}, -aW5(a,b,c){var s=(c-a)/(b-a) -return!isNaN(s)?A.E(s,0,1):s}, -tV:function tV(a,b){this.a=a -this.b=b}, -qv:function qv(a,b,c){this.a=a -this.b=b -this.c=c}, -jJ:function jJ(a,b,c,d,e,f,g,h,i){var _=this -_.ch=_.ay=_.ax=_.at=null -_.CW=a -_.cx=b -_.dx=_.db=$ -_.dy=c -_.f=d -_.r=e -_.a=f -_.b=null -_.c=g -_.d=h -_.e=i}, -aio:function aio(a,b){this.a=a -this.b=b}, -aim:function aim(a){this.a=a}, -ain:function ain(a){this.a=a}, -a2M:function a2M(){}, -vl:function vl(a){this.a=a}, -QL(){var s=A.c([],t.om),r=new A.bc(new Float64Array(16)) -r.ei() -return new A.m3(s,A.c([r],t.Xr),A.c([],t.cR))}, -i5:function i5(a,b){this.a=a -this.b=null -this.$ti=b}, -z9:function z9(){}, -It:function It(a){this.a=a}, -yJ:function yJ(a){this.a=a}, -m3:function m3(a,b,c){this.a=a -this.b=b -this.c=c}, -ali(a,b,c){var s=b==null?B.hk:b,r=t.S -return new A.jO(s,-1,null,B.dY,A.t(r,t.SP),A.dv(r),a,c,A.bky(),A.t(r,t.g))}, -b8Q(a){return a===1||a===2||a===4}, -RE:function RE(a,b,c){this.a=a -this.b=b -this.c=c}, -w1:function w1(a,b){this.a=a -this.b=b}, -CE:function CE(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -w0:function w0(a,b,c){this.a=a -this.b=b -this.c=c}, -jO:function jO(a,b,c,d,e,f,g,h,i,j){var _=this -_.k2=!1 -_.a5=_.a3=_.a0=_.U=_.n=_.aB=_.aH=_.y2=_.y1=_.xr=_.x2=_.x1=_.to=_.ry=_.rx=_.RG=_.R8=_.p4=_.p3=_.p2=_.p1=_.ok=_.k4=_.k3=null -_.at=a -_.ax=b -_.ay=c -_.ch=d -_.cx=_.CW=null -_.cy=!1 -_.db=null -_.f=e -_.r=f -_.a=g -_.b=null -_.c=h -_.d=i -_.e=j}, -alj:function alj(a,b){this.a=a -this.b=b}, -alm:function alm(a,b){this.a=a -this.b=b}, -all:function all(a,b){this.a=a -this.b=b}, -alk:function alk(a,b){this.a=a -this.b=b}, -a3B:function a3B(){}, -a3C:function a3C(){}, -a3D:function a3D(){}, -a3E:function a3E(){}, -nm:function nm(a,b,c){this.a=a -this.b=b -this.c=c}, -aSD:function aSD(a,b){this.a=a -this.b=b}, -DA:function DA(a){this.a=a -this.b=$}, -apX:function apX(){}, -Rv:function Rv(a,b,c){this.a=a -this.b=b -this.c=c}, -b7s(a){return new A.kc(a.gdd(),A.bO(20,null,!1,t.av))}, -b7t(a){return a===1}, -b_c(a,b){var s=t.S -return new A.iF(B.W,B.fo,A.abS(),B.d0,A.t(s,t.GY),A.t(s,t.o),B.f,A.c([],t.t),A.t(s,t.SP),A.dv(s),a,b,A.abT(),A.t(s,t.g))}, -aR1(a,b){var s=t.S -return new A.i6(B.W,B.fo,A.abS(),B.d0,A.t(s,t.GY),A.t(s,t.o),B.f,A.c([],t.t),A.t(s,t.SP),A.dv(s),a,b,A.abT(),A.t(s,t.g))}, -aXe(a,b){var s=t.S -return new A.jV(B.W,B.fo,A.abS(),B.d0,A.t(s,t.GY),A.t(s,t.o),B.f,A.c([],t.t),A.t(s,t.SP),A.dv(s),a,b,A.abT(),A.t(s,t.g))}, -HE:function HE(a,b){this.a=a -this.b=b}, -hZ:function hZ(){}, -ag4:function ag4(a,b){this.a=a -this.b=b}, -ag9:function ag9(a,b){this.a=a -this.b=b}, -aga:function aga(a,b){this.a=a -this.b=b}, -ag5:function ag5(){}, -ag6:function ag6(a,b){this.a=a -this.b=b}, -ag7:function ag7(a){this.a=a}, -ag8:function ag8(a,b){this.a=a -this.b=b}, -iF:function iF(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this -_.at=a -_.ax=b -_.dy=_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=null -_.fr=!1 -_.fx=c -_.fy=d -_.k1=_.id=_.go=$ -_.k4=_.k3=_.k2=null -_.ok=$ -_.p1=!1 -_.p2=e -_.p3=f -_.p4=null -_.R8=g -_.RG=h -_.rx=null -_.f=i -_.r=j -_.a=k -_.b=null -_.c=l -_.d=m -_.e=n}, -i6:function i6(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this -_.at=a -_.ax=b -_.dy=_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=null -_.fr=!1 -_.fx=c -_.fy=d -_.k1=_.id=_.go=$ -_.k4=_.k3=_.k2=null -_.ok=$ -_.p1=!1 -_.p2=e -_.p3=f -_.p4=null -_.R8=g -_.RG=h -_.rx=null -_.f=i -_.r=j -_.a=k -_.b=null -_.c=l -_.d=m -_.e=n}, -jV:function jV(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this -_.at=a -_.ax=b -_.dy=_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=null -_.fr=!1 -_.fx=c -_.fy=d -_.k1=_.id=_.go=$ -_.k4=_.k3=_.k2=null -_.ok=$ -_.p1=!1 -_.p2=e -_.p3=f -_.p4=null -_.R8=g -_.RG=h -_.rx=null -_.f=i -_.r=j -_.a=k -_.b=null -_.c=l -_.d=m -_.e=n}, -a27:function a27(a,b){this.a=a -this.b=b}, -b7q(a,b){var s=t.S -return new A.jE(A.t(s,t.HE),a,b,A.bkD(),A.t(s,t.g))}, -b7r(a){return a===1}, -a1r:function a1r(){this.a=!1}, -z4:function z4(a,b,c,d,e){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=!1}, -jE:function jE(a,b,c,d,e){var _=this -_.y=_.x=_.w=_.r=_.f=null -_.z=a -_.a=b -_.b=null -_.c=c -_.d=d -_.e=e}, -ag3:function ag3(a,b){this.a=a -this.b=b}, -apS:function apS(a,b){this.a=a -this.b=b}, -apU:function apU(){}, -apT:function apT(a,b,c){this.a=a -this.b=b -this.c=c}, -apV:function apV(){this.b=this.a=null}, -b8e(a){return!0}, -PZ:function PZ(a,b){this.a=a -this.b=b}, -TF:function TF(a,b){this.a=a -this.b=b}, -dj:function dj(){}, -Dp:function Dp(){}, -BS:function BS(a,b){this.a=a -this.b=b}, -wx:function wx(){}, -aq1:function aq1(a,b){this.a=a -this.b=b}, -eU:function eU(a,b){this.a=a -this.b=b}, -a2R:function a2R(){}, -FP(a,b,c){var s=t.S -return new A.hF(B.bi,-1,b,B.dY,A.t(s,t.SP),A.dv(s),a,c,A.LU(),A.t(s,t.g))}, -oP:function oP(a,b,c){this.a=a -this.b=b -this.c=c}, -mU:function mU(a,b,c){this.a=a -this.b=b -this.c=c}, -FQ:function FQ(a){this.a=a}, -MK:function MK(){}, -hF:function hF(a,b,c,d,e,f,g,h,i,j){var _=this -_.bL=_.b8=_.av=_.ao=_.P=_.L=_.au=_.a5=_.a3=_.a0=_.U=_.n=null -_.k3=_.k2=!1 -_.ok=_.k4=null -_.at=a -_.ax=b -_.ay=c -_.ch=d -_.cx=_.CW=null -_.cy=!1 -_.db=null -_.f=e -_.r=f -_.a=g -_.b=null -_.c=h -_.d=i -_.e=j}, -awo:function awo(a,b){this.a=a -this.b=b}, -awp:function awp(a,b){this.a=a -this.b=b}, -awr:function awr(a,b){this.a=a -this.b=b}, -aws:function aws(a,b){this.a=a -this.b=b}, -awt:function awt(a){this.a=a}, -awq:function awq(a,b){this.a=a -this.b=b}, -a99:function a99(){}, -a9f:function a9f(){}, -HF:function HF(a,b){this.a=a -this.b=b}, -FK:function FK(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -FN:function FN(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -FM:function FM(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -FO:function FO(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.f=e -_.r=f -_.w=g -_.x=h}, -FL:function FL(a,b,c,d){var _=this -_.a=a -_.b=b -_.d=c -_.e=d}, -Kn:function Kn(){}, -A5:function A5(){}, -ad4:function ad4(a){this.a=a}, -ad5:function ad5(a,b){this.a=a -this.b=b}, -ad2:function ad2(a,b){this.a=a -this.b=b}, -ad3:function ad3(a,b){this.a=a -this.b=b}, -ad0:function ad0(a,b){this.a=a -this.b=b}, -ad1:function ad1(a,b){this.a=a -this.b=b}, -ad_:function ad_(a,b){this.a=a -this.b=b}, -l6:function l6(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this -_.at=a -_.ch=!0 -_.dy=_.dx=_.db=_.cy=_.cx=_.CW=null -_.fy=_.fx=_.fr=!1 -_.id=_.go=null -_.k2=b -_.k3=null -_.p2=_.p1=_.ok=_.k4=$ -_.p4=_.p3=null -_.R8=c -_.m9$=d -_.rN$=e -_.l3$=f -_.Bc$=g -_.vX$=h -_.pq$=i -_.vY$=j -_.Bd$=k -_.Be$=l -_.f=m -_.r=n -_.a=o -_.b=null -_.c=p -_.d=q -_.e=r}, -l7:function l7(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this -_.at=a -_.ch=!0 -_.dy=_.dx=_.db=_.cy=_.cx=_.CW=null -_.fy=_.fx=_.fr=!1 -_.id=_.go=null -_.k2=b -_.k3=null -_.p2=_.p1=_.ok=_.k4=$ -_.p4=_.p3=null -_.R8=c -_.m9$=d -_.rN$=e -_.l3$=f -_.Bc$=g -_.vX$=h -_.pq$=i -_.vY$=j -_.Bd$=k -_.Be$=l -_.f=m -_.r=n -_.a=o -_.b=null -_.c=p -_.d=q -_.e=r}, -H1:function H1(){}, -a9a:function a9a(){}, -a9b:function a9b(){}, -a9c:function a9c(){}, -a9d:function a9d(){}, -a9e:function a9e(){}, -b8o(a){var s=t.av -return new A.qH(A.bO(20,null,!1,s),a,A.bO(20,null,!1,s))}, -iE:function iE(a){this.a=a}, -oX:function oX(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -IT:function IT(a,b){this.a=a -this.b=b}, -kc:function kc(a,b){var _=this -_.a=a -_.b=null -_.c=b -_.d=0}, -axN:function axN(a,b,c){this.a=a -this.b=b -this.c=c}, -axO:function axO(a,b,c){this.a=a -this.b=b -this.c=c}, -qH:function qH(a,b,c){var _=this -_.e=a -_.a=b -_.b=null -_.c=c -_.d=0}, -w2:function w2(a,b,c){var _=this -_.e=a -_.a=b -_.b=null -_.c=c -_.d=0}, -a0a:function a0a(){}, -ayQ:function ayQ(a,b){this.a=a -this.b=b}, -tJ:function tJ(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -MC:function MC(a){this.a=a}, -acP:function acP(){}, -acQ:function acQ(){}, -acR:function acR(){}, -MB:function MB(a,b,c,d,e,f,g,h,i,j){var _=this -_.k2=a -_.c=b -_.e=c -_.w=d -_.z=e -_.ax=f -_.db=g -_.dy=h -_.fr=i -_.a=j}, -No:function No(a){this.a=a}, -aeA:function aeA(){}, -aeB:function aeB(){}, -aeC:function aeC(){}, -Nn:function Nn(a,b,c,d,e,f,g,h,i,j){var _=this -_.k2=a -_.c=b -_.e=c -_.w=d -_.z=e -_.ax=f -_.db=g -_.dy=h -_.fr=i -_.a=j}, -Q0:function Q0(a){this.a=a}, -agc:function agc(){}, -agd:function agd(){}, -age:function age(){}, -Q_:function Q_(a,b,c,d,e,f,g,h,i,j){var _=this -_.k2=a -_.c=b -_.e=c -_.w=d -_.z=e -_.ax=f -_.db=g -_.dy=h -_.fr=i -_.a=j}, -Q5:function Q5(a){this.a=a}, -ahd:function ahd(){}, -ahe:function ahe(){}, -ahf:function ahf(){}, -Q4:function Q4(a,b,c,d,e,f,g,h,i,j){var _=this -_.k2=a -_.c=b -_.e=c -_.w=d -_.z=e -_.ax=f -_.db=g -_.dy=h -_.fr=i -_.a=j}, -b5u(a,b,c){var s,r,q,p,o=null,n=a==null -if(n&&b==null)return o -s=c<0.5 -if(s)r=n?o:a.a -else r=b==null?o:b.a -if(s)q=n?o:a.b -else q=b==null?o:b.b -if(s)p=n?o:a.c -else p=b==null?o:b.c -if(s)n=n?o:a.d -else n=b==null?o:b.d -return new A.uA(r,q,p,n)}, -uA:function uA(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -a0c:function a0c(){}, -aUJ(a){return new A.Mj(a.gIS(),a.gXH(),null)}, -aQ5(a,b){var s=b.c -if(s!=null)return s -switch(A.P(a).w.a){case 2:case 4:return A.aVo(a,b) -case 0:case 1:case 3:case 5:s=A.j2(a,B.cC,t.c4) -s.toString -switch(b.b.a){case 0:s=s.gY() -break -case 1:s=s.gX() -break -case 2:s=s.gZ() -break -case 3:s=s.gV() -break -case 4:s=s.gaG().toUpperCase() -break -case 5:s=s.gB() -break -case 6:s=s.gI() -break -case 7:s=s.gF() -break -case 8:s=s.gaE() -break -case 9:s="" -break -default:s=null}return s}}, -b5w(a,b){var s,r,q,p,o,n,m=null -switch(A.P(a).w.a){case 2:return new A.am(b,new A.acp(),A.a6(b).i("am<1,e>")) -case 1:case 0:s=A.c([],t.p) -for(r=0;q=b.length,r")) -case 4:return new A.am(b,new A.acr(a),A.a6(b).i("am<1,e>"))}}, -Mj:function Mj(a,b,c){this.c=a -this.e=b -this.a=c}, -acp:function acp(){}, -acq:function acq(a){this.a=a}, -acr:function acr(a){this.a=a}, -b8T(){return new A.vI(new A.alw(),A.t(t.K,t.Qu))}, -lb:function lb(a,b){this.a=a -this.b=b}, -CI:function CI(a,b,c,d,e,f){var _=this -_.e=a -_.CW=b -_.db=c -_.k2=d -_.R8=e -_.a=f}, -alw:function alw(){}, -anG:function anG(){}, -Io:function Io(){this.d=$ -this.c=this.a=null}, -aE9:function aE9(a,b){this.a=a -this.b=b}, -aE8:function aE8(){}, -yE:function yE(a,b,c,d,e,f,g,h){var _=this -_.y=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.a=h}, -aUN(a,b,c,d){return new A.zX(c,d,b,a,new A.a4Z(null,null,1/0,56),null)}, -b5G(a,b){var s=A.aUO(a).as -if(s==null)s=56 -return s+0}, -aKR:function aKR(a){this.b=a}, -a4Z:function a4Z(a,b,c,d){var _=this -_.e=a -_.f=b -_.a=c -_.b=d}, -zX:function zX(a,b,c,d,e,f){var _=this -_.c=a -_.e=b -_.y=c -_.ay=d -_.fy=e -_.a=f}, -acz:function acz(a,b){this.a=a -this.b=b}, -GV:function GV(){var _=this -_.d=null -_.e=!1 -_.c=_.a=null}, -azi:function azi(){}, -a0y:function a0y(a,b){this.c=a -this.a=b}, -a5t:function a5t(a,b,c,d,e){var _=this -_.D=null -_.a4=a -_.am=b -_.u$=c -_.dy=d -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -azh:function azh(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this -_.CW=a -_.db=_.cy=_.cx=$ -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k -_.z=l -_.Q=m -_.as=n -_.at=o -_.ax=p -_.ay=q -_.ch=r}, -aUO(a){var s -a.aA(t.qH) -s=A.P(a) -return s.p3}, -b5E(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){return new A.ny(c,f,e,i,j,l,k,g,a,d,n,h,p,q,o,m,b)}, -b5F(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d -if(a===b)return a -s=A.k(a.gcb(),b.gcb(),c) -r=A.k(a.gdi(),b.gdi(),c) -q=A.Y(a.c,b.c,c) -p=A.Y(a.d,b.d,c) -o=A.k(a.gcz(),b.gcz(),c) -n=A.k(a.gd2(),b.gd2(),c) -m=A.dy(a.r,b.r,c) -l=A.m7(a.gjG(),b.gjG(),c) -k=A.m7(a.glS(),b.glS(),c) -j=c<0.5 -i=j?a.y:b.y -h=A.Y(a.z,b.z,c) -g=A.Y(a.Q,b.Q,c) -f=A.Y(a.as,b.as,c) -e=A.ag(a.god(),b.god(),c) -d=A.ag(a.gjb(),b.gjb(),c) -j=j?a.ay:b.ay -return A.b5E(k,A.aI(a.giP(),b.giP(),c),s,i,q,r,l,g,p,o,m,n,j,h,d,f,e)}, -ny:function ny(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q}, -a0x:function a0x(){}, -biq(a,b){var s,r,q,p,o=A.bQ() -for(s=null,r=0;r<4;++r){q=a[r] -p=b.$1(q) -if(s==null||p>s){o.b=q -s=p}}return o.bc()}, -CS:function CS(a,b){var _=this -_.c=!0 -_.r=_.f=_.e=_.d=null -_.a=a -_.b=b}, -anE:function anE(a,b){this.a=a -this.b=b}, -yd:function yd(a,b){this.a=a -this.b=b}, -nb:function nb(a,b){this.a=a -this.b=b}, -wa:function wa(a,b){var _=this -_.e=!0 -_.r=_.f=$ -_.a=a -_.b=b}, -anF:function anF(a,b){this.a=a -this.b=b}, -b5I(a,b,c){var s,r,q,p,o,n,m -if(a===b)return a -s=A.k(a.a,b.a,c) -r=A.k(a.b,b.b,c) -q=A.Y(a.c,b.c,c) -p=A.Y(a.d,b.d,c) -o=A.ag(a.e,b.e,c) -n=A.aI(a.f,b.f,c) -m=A.jv(a.r,b.r,c) -return new A.A4(s,r,q,p,o,n,m,A.rm(a.w,b.w,c))}, -A4:function A4(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -a0J:function a0J(){}, -CJ:function CJ(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -a3I:function a3I(){}, -b5N(a,b,c){var s,r,q,p,o,n -if(a===b)return a -s=A.k(a.a,b.a,c) -r=A.Y(a.b,b.b,c) -if(c<0.5)q=a.c -else q=b.c -p=A.Y(a.d,b.d,c) -o=A.k(a.e,b.e,c) -n=A.k(a.f,b.f,c) -return new A.A9(s,r,q,p,o,n,A.aI(a.r,b.r,c))}, -A9:function A9(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -a0R:function a0R(){}, -b5O(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f -if(a===b)return a -s=A.k(a.a,b.a,c) -r=A.Y(a.b,b.b,c) -q=A.m7(a.c,b.c,c) -p=A.m7(a.d,b.d,c) -o=A.k(a.e,b.e,c) -n=A.k(a.f,b.f,c) -m=A.ag(a.r,b.r,c) -l=A.ag(a.w,b.w,c) -k=c<0.5 -if(k)j=a.x -else j=b.x -if(k)i=a.y -else i=b.y -if(k)h=a.z -else h=b.z -if(k)g=a.Q -else g=b.Q -if(k)f=a.as -else f=b.as -if(k)k=a.at -else k=b.at -return new A.Aa(s,r,q,p,o,n,m,l,j,i,h,g,f,k)}, -Aa:function Aa(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n}, -a0T:function a0T(){}, -b5P(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h -if(a===b)return a -s=A.k(a.a,b.a,c) -r=A.k(a.b,b.b,c) -q=A.Y(a.c,b.c,c) -p=A.k(a.d,b.d,c) -o=A.k(a.e,b.e,c) -n=A.k(a.f,b.f,c) -m=A.Y(a.r,b.r,c) -l=A.dy(a.w,b.w,c) -k=c<0.5 -if(k)j=a.x -else j=b.x -i=A.k(a.y,b.y,c) -h=A.xi(a.z,b.z,c) -if(k)k=a.Q -else k=b.Q -return new A.Ab(s,r,q,p,o,n,m,l,j,i,h,k,A.dC(a.as,b.as,c))}, -Ab:function Ab(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m}, -a0U:function a0U(){}, -b5U(a,b,c){var s,r,q,p,o,n,m,l,k -if(a===b)return a -s=c<0.5 -if(s)r=a.a -else r=b.a -if(s)q=a.b -else q=b.b -if(s)p=a.c -else p=b.c -o=A.Y(a.d,b.d,c) -n=A.Y(a.e,b.e,c) -m=A.aI(a.f,b.f,c) -if(s)l=a.r -else l=b.r -if(s)k=a.w -else k=b.w -if(s)s=a.x -else s=b.x -return new A.Af(r,q,p,o,n,m,l,k,s)}, -Af:function Af(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -a0W:function a0W(){}, -uM(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5){return new A.bU(a4,d,i,p,r,a2,e,q,n,g,m,k,l,j,a0,s,o,a5,a3,b,f,a,a1,c,h)}, -kq(a9,b0,b1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8=null -if(a9==b0)return a9 -s=a9==null -r=s?a8:a9.gkB() -q=b0==null -p=q?a8:b0.gkB() -p=A.b9(r,p,b1,A.zv(),t.p8) -r=s?a8:a9.gcb() -o=q?a8:b0.gcb() -n=t._ -o=A.b9(r,o,b1,A.cc(),n) -r=s?a8:a9.gdi() -r=A.b9(r,q?a8:b0.gdi(),b1,A.cc(),n) -m=s?a8:a9.geg() -m=A.b9(m,q?a8:b0.geg(),b1,A.cc(),n) -l=s?a8:a9.gcz() -l=A.b9(l,q?a8:b0.gcz(),b1,A.cc(),n) -k=s?a8:a9.gd2() -k=A.b9(k,q?a8:b0.gd2(),b1,A.cc(),n) -j=s?a8:a9.ge9() -i=q?a8:b0.ge9() -h=t.PM -i=A.b9(j,i,b1,A.zy(),h) -j=s?a8:a9.gcH() -g=q?a8:b0.gcH() -g=A.b9(j,g,b1,A.aTl(),t.pc) -j=s?a8:a9.ghK() -f=q?a8:b0.ghK() -e=t.tW -f=A.b9(j,f,b1,A.zx(),e) -j=s?a8:a9.y -j=A.b9(j,q?a8:b0.y,b1,A.zx(),e) -d=s?a8:a9.ghJ() -e=A.b9(d,q?a8:b0.ghJ(),b1,A.zx(),e) -d=s?a8:a9.gdL() -n=A.b9(d,q?a8:b0.gdL(),b1,A.cc(),n) -d=s?a8:a9.ghG() -h=A.b9(d,q?a8:b0.ghG(),b1,A.zy(),h) -d=b1<0.5 -if(d)c=s?a8:a9.at -else c=q?a8:b0.at -b=s?a8:a9.giD() -b=A.aSp(b,q?a8:b0.giD(),b1) -a=s?a8:a9.gdt() -a0=q?a8:b0.gdt() -a0=A.b9(a,a0,b1,A.abK(),t.KX) -if(d)a=s?a8:a9.geQ() -else a=q?a8:b0.geQ() -if(d)a1=s?a8:a9.ghT() -else a1=q?a8:b0.ghT() -if(d)a2=s?a8:a9.ghO() -else a2=q?a8:b0.ghO() -if(d)a3=s?a8:a9.cy -else a3=q?a8:b0.cy -if(d)a4=s?a8:a9.db -else a4=q?a8:b0.db -a5=s?a8:a9.dx -a5=A.jv(a5,q?a8:b0.dx,b1) -if(d)a6=s?a8:a9.ghx() -else a6=q?a8:b0.ghx() -if(d)a7=s?a8:a9.fr -else a7=q?a8:b0.fr -if(d)s=s?a8:a9.fx -else s=q?a8:b0.fx -return A.uM(a5,a3,a7,o,i,a4,j,s,r,c,n,h,e,f,a,m,g,l,a0,b,a6,k,a2,p,a1)}, -bU:function bU(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5}, -a0X:function a0X(){}, -pP(a,b){if((a==null?b:a)==null)return null -return new A.iH(A.aG([B.K,b,B.ix,a],t.Ag,t._),t.GC)}, -aV2(a,b,c,d){var s -A:{if(d<=1){s=a -break A}if(d<2){s=A.aI(a,b,d-1) -s.toString -break A}if(d<3){s=A.aI(b,c,d-2) -s.toString -break A}s=c -break A}return s}, -Ag:function Ag(){}, -H6:function H6(a,b){var _=this -_.r=_.f=_.e=_.d=null -_.dB$=a -_.bl$=b -_.c=_.a=null}, -aAp:function aAp(){}, -aAm:function aAm(a,b,c){this.a=a -this.b=b -this.c=c}, -aAn:function aAn(a,b){this.a=a -this.b=b}, -aAo:function aAo(a,b,c){this.a=a -this.b=b -this.c=c}, -aAl:function aAl(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -azY:function azY(){}, -azZ:function azZ(){}, -aA_:function aA_(){}, -aAa:function aAa(){}, -aAe:function aAe(){}, -aAf:function aAf(){}, -aAg:function aAg(){}, -aAh:function aAh(){}, -aAi:function aAi(){}, -aAj:function aAj(){}, -aAk:function aAk(){}, -aA0:function aA0(){}, -aA1:function aA1(){}, -aAc:function aAc(a){this.a=a}, -azW:function azW(a){this.a=a}, -aAd:function aAd(a){this.a=a}, -azV:function azV(a){this.a=a}, -aA2:function aA2(){}, -aA3:function aA3(){}, -aA4:function aA4(){}, -aA5:function aA5(){}, -aA6:function aA6(){}, -aA7:function aA7(){}, -aA8:function aA8(){}, -aA9:function aA9(){}, -aAb:function aAb(a){this.a=a}, -azX:function azX(){}, -a3W:function a3W(a){this.a=a}, -a3h:function a3h(a,b,c){this.e=a -this.c=b -this.a=c}, -Jf:function Jf(a,b,c,d){var _=this -_.D=a -_.u$=b -_.dy=c -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -aGa:function aGa(a,b){this.a=a -this.b=b}, -L7:function L7(){}, -adF:function adF(a,b){this.a=a -this.b=b}, -N2:function N2(a,b,c,d,e,f,g,h){var _=this -_.w=a -_.x=b -_.y=c -_.z=d -_.Q=e -_.as=f -_.at=g -_.ax=h}, -a0Y:function a0Y(){}, -b5Y(a,b,c){var s,r,q,p,o,n -if(a===b)return a -if(c<0.5)s=a.a -else s=b.a -r=A.k(a.b,b.b,c) -q=A.k(a.c,b.c,c) -p=A.k(a.d,b.d,c) -o=A.Y(a.e,b.e,c) -n=A.aI(a.f,b.f,c) -return new A.Aj(s,r,q,p,o,n,A.dy(a.r,b.r,c))}, -Aj:function Aj(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -a1_:function a1_(){}, -b5Z(a,b,c){var s,r,q,p,o,n -if(a===b)return a -s=A.k(a.b,b.b,c) -r=A.Y(a.c,b.c,c) -q=t.KX.a(A.dy(a.d,b.d,c)) -p=A.b9(a.f,b.f,c,A.cc(),t._) -o=A.Bm(a.a,b.a,c) -if(c<0.5)n=a.e -else n=b.e -return new A.Ak(o,s,r,q,n,p)}, -Ak:function Ak(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -a10:function a10(){}, -b62(a,b,c){var s,r,q,p,o,n,m,l -if(a===b)return a -s=c<0.5 -if(s)r=a.a -else r=b.a -q=t._ -p=A.b9(a.b,b.b,c,A.cc(),q) -o=A.b9(a.c,b.c,c,A.cc(),q) -q=A.b9(a.d,b.d,c,A.cc(),q) -n=A.Y(a.e,b.e,c) -if(s)m=a.f -else m=b.f -if(s)s=a.r -else s=b.r -l=t.KX.a(A.dy(a.w,b.w,c)) -return new A.Ao(r,p,o,q,n,m,s,l,A.b61(a.x,b.x,c))}, -b61(a,b,c){if(a==null&&b==null)return null -if(a instanceof A.jm)a=a.x.$1(B.cB) -if(b instanceof A.jm)b=b.x.$1(B.cB) -if(a==null)a=new A.bl(b.a.e_(0),0,B.F,-1) -return A.bb(a,b==null?new A.bl(a.a.e_(0),0,B.F,-1):b,c)}, -Ao:function Ao(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -a12:function a12(){}, -b67(a3,a4,a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2 -if(a3===a4)return a3 -s=A.b9(a3.a,a4.a,a5,A.cc(),t._) -r=A.k(a3.b,a4.b,a5) -q=A.k(a3.c,a4.c,a5) -p=A.k(a3.d,a4.d,a5) -o=A.k(a3.e,a4.e,a5) -n=A.k(a3.f,a4.f,a5) -m=A.k(a3.r,a4.r,a5) -l=A.k(a3.w,a4.w,a5) -k=A.k(a3.x,a4.x,a5) -j=a5<0.5 -if(j)i=a3.y!==!1 -else i=a4.y!==!1 -h=A.k(a3.z,a4.z,a5) -g=A.aI(a3.Q,a4.Q,a5) -f=A.aI(a3.as,a4.as,a5) -e=A.b66(a3.at,a4.at,a5) -d=A.aRu(a3.ax,a4.ax,a5) -c=A.ag(a3.ay,a4.ay,a5) -b=A.ag(a3.ch,a4.ch,a5) -if(j){j=a3.CW -if(j==null)j=B.ar}else{j=a4.CW -if(j==null)j=B.ar}a=A.Y(a3.cx,a4.cx,a5) -a0=A.Y(a3.cy,a4.cy,a5) -a1=a3.db -if(a1==null)a2=a4.db!=null -else a2=!0 -if(a2)a1=A.m7(a1,a4.db,a5) -else a1=null -a2=A.dC(a3.dx,a4.dx,a5) -return new A.Ap(s,r,q,p,o,n,m,l,k,i,h,g,f,e,d,c,b,j,a,a0,a1,a2,A.dC(a3.dy,a4.dy,a5))}, -b66(a,b,c){if(a==null&&b==null)return null -if(a instanceof A.jm)a=a.x.$1(B.cB) -if(b instanceof A.jm)b=b.x.$1(B.cB) -if(a==null)a=new A.bl(b.a.e_(0),0,B.F,-1) -return A.bb(a,b==null?new A.bl(a.a.e_(0),0,B.F,-1):b,c)}, -Ap:function Ap(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3}, -a13:function a13(){}, -aQj(a,b,c){return new A.Na(b,a,c,null)}, -Na:function Na(a,b,c,d){var _=this -_.c=a -_.d=b -_.y=c -_.a=d}, -Ns(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0){return new A.v1(b,a7,k,a8,l,a9,b0,m,n,b2,o,b3,p,b4,b5,q,r,c7,a1,c8,a2,c9,d0,a3,a4,c,h,d,i,b7,s,c6,c4,b8,c3,c2,b9,c0,c1,a0,a5,a6,b6,b1,f,j,e,c5,a,g)}, -b6k(d1,d2,d3,d4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0=A.b6l(d1,d4,B.OP,0) -if(d3==null){s=$.LX().bK(d0).d -s===$&&A.a() -s=A.bu(s)}else s=d3 -if(d2==null){r=$.b2F().bK(d0).d -r===$&&A.a() -r=A.bu(r)}else r=d2 -q=$.LY().bK(d0).d -q===$&&A.a() -q=A.bu(q) -p=$.b2G().bK(d0).d -p===$&&A.a() -p=A.bu(p) -o=$.LZ().bK(d0).d -o===$&&A.a() -o=A.bu(o) -n=$.M_().bK(d0).d -n===$&&A.a() -n=A.bu(n) -m=$.b2H().bK(d0).d -m===$&&A.a() -m=A.bu(m) -l=$.b2I().bK(d0).d -l===$&&A.a() -l=A.bu(l) -k=$.ac_().bK(d0).d -k===$&&A.a() -k=A.bu(k) -j=$.b2J().bK(d0).d -j===$&&A.a() -j=A.bu(j) -i=$.M0().bK(d0).d -i===$&&A.a() -i=A.bu(i) -h=$.b2K().bK(d0).d -h===$&&A.a() -h=A.bu(h) -g=$.M1().bK(d0).d -g===$&&A.a() -g=A.bu(g) -f=$.M2().bK(d0).d -f===$&&A.a() -f=A.bu(f) -e=$.b2L().bK(d0).d -e===$&&A.a() -e=A.bu(e) -d=$.b2M().bK(d0).d -d===$&&A.a() -d=A.bu(d) -c=$.ac0().bK(d0).d -c===$&&A.a() -c=A.bu(c) -b=$.b2P().bK(d0).d -b===$&&A.a() -b=A.bu(b) -a=$.M3().bK(d0).d -a===$&&A.a() -a=A.bu(a) -a0=$.b2Q().bK(d0).d -a0===$&&A.a() -a0=A.bu(a0) -a1=$.M4().bK(d0).d -a1===$&&A.a() -a1=A.bu(a1) -a2=$.M5().bK(d0).d -a2===$&&A.a() -a2=A.bu(a2) -a3=$.b2R().bK(d0).d -a3===$&&A.a() -a3=A.bu(a3) -a4=$.b2S().bK(d0).d -a4===$&&A.a() -a4=A.bu(a4) -a5=$.abY().bK(d0).d -a5===$&&A.a() -a5=A.bu(a5) -a6=$.b2D().bK(d0).d -a6===$&&A.a() -a6=A.bu(a6) -a7=$.abZ().bK(d0).d -a7===$&&A.a() -a7=A.bu(a7) -a8=$.b2E().bK(d0).d -a8===$&&A.a() -a8=A.bu(a8) -a9=$.b2T().bK(d0).d -a9===$&&A.a() -a9=A.bu(a9) -b0=$.b2U().bK(d0).d -b0===$&&A.a() -b0=A.bu(b0) -b1=$.b2X().bK(d0).d -b1===$&&A.a() -b1=A.bu(b1) -b2=$.aTT().bK(d0).d -b2===$&&A.a() -b2=A.bu(b2) -b3=$.aTS().bK(d0).d -b3===$&&A.a() -b3=A.bu(b3) -b4=$.b31().bK(d0).d -b4===$&&A.a() -b4=A.bu(b4) -b5=$.b30().bK(d0).d -b5===$&&A.a() -b5=A.bu(b5) -b6=$.b2Y().bK(d0).d -b6===$&&A.a() -b6=A.bu(b6) -b7=$.b2Z().bK(d0).d -b7===$&&A.a() -b7=A.bu(b7) -b8=$.b3_().bK(d0).d -b8===$&&A.a() -b8=A.bu(b8) -b9=$.b2N().bK(d0).d -b9===$&&A.a() -b9=A.bu(b9) -c0=$.b2O().bK(d0).d -c0===$&&A.a() -c0=A.bu(c0) -c1=$.aPN().bK(d0).d -c1===$&&A.a() -c1=A.bu(c1) -c2=$.b2A().bK(d0).d -c2===$&&A.a() -c2=A.bu(c2) -c3=$.b2B().bK(d0).d -c3===$&&A.a() -c3=A.bu(c3) -c4=$.b2W().bK(d0).d -c4===$&&A.a() -c4=A.bu(c4) -c5=$.b2V().bK(d0).d -c5===$&&A.a() -c5=A.bu(c5) -c6=$.LX().bK(d0).d -c6===$&&A.a() -c6=A.bu(c6) -c7=$.aTR().bK(d0).d -c7===$&&A.a() -c7=A.bu(c7) -c8=$.b2C().bK(d0).d -c8===$&&A.a() -c8=A.bu(c8) -c9=$.b32().bK(d0).d -c9===$&&A.a() -c9=A.bu(c9) -return A.Ns(c7,d1,a5,a7,c3,c1,c8,a6,a8,c2,r,p,m,l,j,h,e,d,b9,c0,b,a0,a3,a4,a9,b0,s,q,o,n,c5,k,i,g,f,c4,b1,b3,b6,b7,b8,b5,b4,b2,c6,c9,c,a,a1,a2)}, -b6m(d5,d6,d7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4 -if(d5===d6)return d5 -s=d7<0.5?d5.a:d6.a -r=d5.b -q=d6.b -p=A.k(r,q,d7) -p.toString -o=d5.c -n=d6.c -m=A.k(o,n,d7) -m.toString -l=d5.d -if(l==null)l=r -k=d6.d -l=A.k(l,k==null?q:k,d7) -k=d5.e -if(k==null)k=o -j=d6.e -k=A.k(k,j==null?n:j,d7) -j=d5.f -if(j==null)j=r -i=d6.f -j=A.k(j,i==null?q:i,d7) -i=d5.r -if(i==null)i=r -h=d6.r -i=A.k(i,h==null?q:h,d7) -h=d5.w -if(h==null)h=o -g=d6.w -h=A.k(h,g==null?n:g,d7) -g=d5.x -if(g==null)g=o -f=d6.x -g=A.k(g,f==null?n:f,d7) -f=d5.y -e=d6.y -d=A.k(f,e,d7) -d.toString -c=d5.z -b=d6.z -a=A.k(c,b,d7) -a.toString -a0=d5.Q -if(a0==null)a0=f -a1=d6.Q -a0=A.k(a0,a1==null?e:a1,d7) -a1=d5.as -if(a1==null)a1=c -a2=d6.as -a1=A.k(a1,a2==null?b:a2,d7) -a2=d5.at -if(a2==null)a2=f -a3=d6.at -a2=A.k(a2,a3==null?e:a3,d7) -a3=d5.ax -if(a3==null)a3=f -a4=d6.ax -a3=A.k(a3,a4==null?e:a4,d7) -a4=d5.ay -if(a4==null)a4=c -a5=d6.ay -a4=A.k(a4,a5==null?b:a5,d7) -a5=d5.ch -if(a5==null)a5=c -a6=d6.ch -a5=A.k(a5,a6==null?b:a6,d7) -a6=d5.CW -a7=a6==null -a8=a7?f:a6 -a9=d6.CW -b0=a9==null -a8=A.k(a8,b0?e:a9,d7) -b1=d5.cx -b2=b1==null -b3=b2?c:b1 -b4=d6.cx -b5=b4==null -b3=A.k(b3,b5?b:b4,d7) -b6=d5.cy -if(b6==null)b6=a7?f:a6 -b7=d6.cy -if(b7==null)b7=b0?e:a9 -b7=A.k(b6,b7,d7) -b6=d5.db -if(b6==null)b6=b2?c:b1 -b8=d6.db -if(b8==null)b8=b5?b:b4 -b8=A.k(b6,b8,d7) -b6=d5.dx -if(b6==null)b6=a7?f:a6 -b9=d6.dx -if(b9==null)b9=b0?e:a9 -b9=A.k(b6,b9,d7) -b6=d5.dy -if(b6==null)f=a7?f:a6 -else f=b6 -a6=d6.dy -if(a6==null)e=b0?e:a9 -else e=a6 -e=A.k(f,e,d7) -f=d5.fr -if(f==null)f=b2?c:b1 -a6=d6.fr -if(a6==null)a6=b5?b:b4 -a6=A.k(f,a6,d7) -f=d5.fx -if(f==null)f=b2?c:b1 -c=d6.fx -if(c==null)c=b5?b:b4 -c=A.k(f,c,d7) -f=d5.fy -b=d6.fy -a7=A.k(f,b,d7) -a7.toString -a9=d5.go -b0=d6.go -b1=A.k(a9,b0,d7) -b1.toString -b2=d5.id -f=b2==null?f:b2 -b2=d6.id -f=A.k(f,b2==null?b:b2,d7) -b=d5.k1 -if(b==null)b=a9 -a9=d6.k1 -b=A.k(b,a9==null?b0:a9,d7) -a9=d5.k2 -b0=d6.k2 -b2=A.k(a9,b0,d7) -b2.toString -b4=d5.k3 -b5=d6.k3 -b6=A.k(b4,b5,d7) -b6.toString -c0=d5.ok -if(c0==null)c0=a9 -c1=d6.ok -c0=A.k(c0,c1==null?b0:c1,d7) -c1=d5.p1 -if(c1==null)c1=a9 -c2=d6.p1 -c1=A.k(c1,c2==null?b0:c2,d7) -c2=d5.p2 -if(c2==null)c2=a9 -c3=d6.p2 -c2=A.k(c2,c3==null?b0:c3,d7) -c3=d5.p3 -if(c3==null)c3=a9 -c4=d6.p3 -c3=A.k(c3,c4==null?b0:c4,d7) -c4=d5.p4 -if(c4==null)c4=a9 -c5=d6.p4 -c4=A.k(c4,c5==null?b0:c5,d7) -c5=d5.R8 -if(c5==null)c5=a9 -c6=d6.R8 -c5=A.k(c5,c6==null?b0:c6,d7) -c6=d5.RG -if(c6==null)c6=a9 -c7=d6.RG -c6=A.k(c6,c7==null?b0:c7,d7) -c7=d5.rx -if(c7==null)c7=b4 -c8=d6.rx -c7=A.k(c7,c8==null?b5:c8,d7) -c8=d5.ry -if(c8==null){c8=d5.n -if(c8==null)c8=b4}c9=d6.ry -if(c9==null){c9=d6.n -if(c9==null)c9=b5}c9=A.k(c8,c9,d7) -c8=d5.to -if(c8==null){c8=d5.n -if(c8==null)c8=b4}d0=d6.to -if(d0==null){d0=d6.n -if(d0==null)d0=b5}d0=A.k(c8,d0,d7) -c8=d5.x1 -if(c8==null)c8=B.r -d1=d6.x1 -c8=A.k(c8,d1==null?B.r:d1,d7) -d1=d5.x2 -if(d1==null)d1=B.r -d2=d6.x2 -d1=A.k(d1,d2==null?B.r:d2,d7) -d2=d5.xr -if(d2==null)d2=b4 -d3=d6.xr -d2=A.k(d2,d3==null?b5:d3,d7) -d3=d5.y1 -if(d3==null)d3=a9 -d4=d6.y1 -d3=A.k(d3,d4==null?b0:d4,d7) -d4=d5.y2 -o=d4==null?o:d4 -d4=d6.y2 -o=A.k(o,d4==null?n:d4,d7) -n=d5.aH -r=n==null?r:n -n=d6.aH -r=A.k(r,n==null?q:n,d7) -q=d5.aB -if(q==null)q=a9 -n=d6.aB -q=A.k(q,n==null?b0:n,d7) -n=d5.n -if(n==null)n=b4 -b4=d6.n -n=A.k(n,b4==null?b5:b4,d7) -b4=d5.k4 -a9=b4==null?a9:b4 -b4=d6.k4 -return A.Ns(q,s,a7,f,o,d2,n,b1,b,d3,m,k,h,g,a,a1,a4,a5,b6,c7,b3,b8,a6,c,c9,d0,p,l,j,i,d1,d,a0,a2,a3,c8,b2,c1,c4,c5,c6,c3,c2,c0,r,A.k(a9,b4==null?b0:b4,d7),a8,b7,b9,e)}, -b6l(a,b,c,d){var s,r,q,p,o,n,m=a===B.R,l=A.vH(b.gp()) -switch(c.a){case 0:s=l.a -s===$&&A.a() -s=A.bP(s,36) -r=A.bP(l.a,16) -q=A.bP(A.CT(l.a+60),24) -p=A.bP(l.a,6) -o=A.bP(l.a,8) -l.d===$&&A.a() -n=A.bP(25,84) -s=new A.Vv(l,B.agN,m,d,s,r,q,p,o,n) -break -case 1:s=l.a -s===$&&A.a() -r=l.b -r===$&&A.a() -r=A.bP(s,r) -s=l.a -q=l.b -q=A.bP(s,Math.max(q-32,q*0.5)) -s=A.aZY(A.aQH(A.aZJ(l).gapK())) -p=A.bP(l.a,l.b/8) -o=A.bP(l.a,l.b/8+4) -l.d===$&&A.a() -n=A.bP(25,84) -s=new A.Vq(l,B.es,m,d,r,q,s,p,o,n) -break -case 6:s=l.a -s===$&&A.a() -r=l.b -r===$&&A.a() -r=A.bP(s,r) -s=l.a -q=l.b -q=A.bP(s,Math.max(q-32,q*0.5)) -s=A.aZY(A.aQH(B.b.gaC(A.aZJ(l).aoz(3,6)))) -p=A.bP(l.a,l.b/8) -o=A.bP(l.a,l.b/8+4) -l.d===$&&A.a() -n=A.bP(25,84) -s=new A.Vo(l,B.er,m,d,r,q,s,p,o,n) -break -case 2:s=l.a -s===$&&A.a() -s=A.bP(s,0) -r=A.bP(l.a,0) -q=A.bP(l.a,0) -p=A.bP(l.a,0) -o=A.bP(l.a,0) -l.d===$&&A.a() -n=A.bP(25,84) -s=new A.Vs(l,B.ax,m,d,s,r,q,p,o,n) -break -case 3:s=l.a -s===$&&A.a() -s=A.bP(s,12) -r=A.bP(l.a,8) -q=A.bP(l.a,16) -p=A.bP(l.a,2) -o=A.bP(l.a,2) -l.d===$&&A.a() -n=A.bP(25,84) -s=new A.Vt(l,B.agM,m,d,s,r,q,p,o,n) -break -case 4:s=l.a -s===$&&A.a() -s=A.bP(s,200) -r=A.bP(A.agg(l,B.v0,B.SJ),24) -q=A.bP(A.agg(l,B.v0,B.Wy),32) -p=A.bP(l.a,10) -o=A.bP(l.a,12) -l.d===$&&A.a() -n=A.bP(25,84) -s=new A.Vw(l,B.agO,m,d,s,r,q,p,o,n) -break -case 5:s=l.a -s===$&&A.a() -s=A.bP(A.CT(s+240),40) -r=A.bP(A.agg(l,B.vd,B.Zd),24) -q=A.bP(A.agg(l,B.vd,B.Zg),32) -p=A.bP(l.a+15,8) -o=A.bP(l.a+15,12) -l.d===$&&A.a() -n=A.bP(25,84) -s=new A.Vp(l,B.agP,m,d,s,r,q,p,o,n) -break -case 7:s=l.a -s===$&&A.a() -s=A.bP(s,48) -r=A.bP(l.a,16) -q=A.bP(A.CT(l.a+60),24) -p=A.bP(l.a,0) -o=A.bP(l.a,0) -l.d===$&&A.a() -n=A.bP(25,84) -s=new A.Vu(l,B.agQ,m,d,s,r,q,p,o,n) -break -case 8:s=l.a -s===$&&A.a() -s=A.bP(A.CT(s-50),48) -r=A.bP(A.CT(l.a-50),36) -q=A.bP(l.a,36) -p=A.bP(l.a,10) -o=A.bP(l.a,16) -l.d===$&&A.a() -n=A.bP(25,84) -s=new A.Vr(l,B.agR,m,d,s,r,q,p,o,n) -break -default:s=null}return s}, -agf:function agf(a,b){this.a=a -this.b=b}, -v1:function v1(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7 -_.id=a8 -_.k1=a9 -_.k2=b0 -_.k3=b1 -_.k4=b2 -_.ok=b3 -_.p1=b4 -_.p2=b5 -_.p3=b6 -_.p4=b7 -_.R8=b8 -_.RG=b9 -_.rx=c0 -_.ry=c1 -_.to=c2 -_.x1=c3 -_.x2=c4 -_.xr=c5 -_.y1=c6 -_.y2=c7 -_.aH=c8 -_.aB=c9 -_.n=d0}, -a18:function a18(){}, -w8:function w8(a,b,c,d,e,f){var _=this -_.f=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f}, -b6M(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e -if(a===b)return a -s=A.afe(a.a,b.a,c) -r=t._ -q=A.b9(a.b,b.b,c,A.cc(),r) -p=A.Y(a.c,b.c,c) -o=A.Y(a.d,b.d,c) -n=A.ag(a.e,b.e,c) -r=A.b9(a.f,b.f,c,A.cc(),r) -m=A.Y(a.r,b.r,c) -l=A.ag(a.w,b.w,c) -k=A.Y(a.x,b.x,c) -j=A.Y(a.y,b.y,c) -i=A.Y(a.z,b.z,c) -h=A.Y(a.Q,b.Q,c) -g=c<0.5 -f=g?a.as:b.as -e=g?a.at:b.at -g=g?a.ax:b.ax -return new A.B1(s,q,p,o,n,r,m,l,k,j,i,h,f,e,g)}, -B1:function B1(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o}, -a1K:function a1K(){}, -b6S(c1,c2,c3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0 -if(c1===c2)return c1 -s=A.k(c1.a,c2.a,c3) -r=A.Y(c1.b,c2.b,c3) -q=A.k(c1.c,c2.c,c3) -p=A.k(c1.d,c2.d,c3) -o=A.dy(c1.e,c2.e,c3) -n=A.k(c1.f,c2.f,c3) -m=A.k(c1.r,c2.r,c3) -l=A.ag(c1.w,c2.w,c3) -k=A.ag(c1.x,c2.x,c3) -j=A.ag(c1.y,c2.y,c3) -i=A.ag(c1.z,c2.z,c3) -h=t._ -g=A.b9(c1.Q,c2.Q,c3,A.cc(),h) -f=A.b9(c1.as,c2.as,c3,A.cc(),h) -e=A.b9(c1.at,c2.at,c3,A.cc(),h) -d=t.KX -c=A.b9(c1.ax,c2.ax,c3,A.abK(),d) -b=A.b9(c1.ay,c2.ay,c3,A.cc(),h) -a=A.b9(c1.ch,c2.ch,c3,A.cc(),h) -a0=A.b6R(c1.CW,c2.CW,c3) -a1=A.ag(c1.cx,c2.cx,c3) -a2=A.b9(c1.cy,c2.cy,c3,A.cc(),h) -a3=A.b9(c1.db,c2.db,c3,A.cc(),h) -a4=A.b9(c1.dx,c2.dx,c3,A.cc(),h) -d=A.b9(c1.dy,c2.dy,c3,A.abK(),d) -a5=A.k(c1.fr,c2.fr,c3) -a6=A.Y(c1.fx,c2.fx,c3) -a7=A.k(c1.fy,c2.fy,c3) -a8=A.k(c1.go,c2.go,c3) -a9=A.dy(c1.id,c2.id,c3) -b0=A.k(c1.k1,c2.k1,c3) -b1=A.k(c1.k2,c2.k2,c3) -b2=A.ag(c1.k3,c2.k3,c3) -b3=A.ag(c1.k4,c2.k4,c3) -b4=A.k(c1.ok,c2.ok,c3) -h=A.b9(c1.p1,c2.p1,c3,A.cc(),h) -b5=A.k(c1.p2,c2.p2,c3) -b6=c3<0.5 -if(b6)b7=c1.gh3() -else b7=c2.gh3() -b8=A.kq(c1.p4,c2.p4,c3) -b9=A.kq(c1.R8,c2.R8,c3) -if(b6)b6=c1.RG -else b6=c2.RG -c0=A.ag(c1.rx,c2.rx,c3) -return new A.B2(s,r,q,p,o,n,m,l,k,j,i,g,f,e,c,b,a,a0,a1,a2,a3,a4,d,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,h,b5,b7,b8,b9,b6,c0,A.k(c1.ry,c2.ry,c3))}, -b6R(a,b,c){if(a==b)return a -if(a==null)return A.bb(new A.bl(b.a.e_(0),0,B.F,-1),b,c) -return A.bb(a,new A.bl(a.a.e_(0),0,B.F,-1),c)}, -B2:function B2(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7 -_.id=a8 -_.k1=a9 -_.k2=b0 -_.k3=b1 -_.k4=b2 -_.ok=b3 -_.p1=b4 -_.p2=b5 -_.p3=b6 -_.p4=b7 -_.R8=b8 -_.RG=b9 -_.rx=c0 -_.ry=c1}, -a1M:function a1M(){}, -a1Y:function a1Y(){}, -afq:function afq(){}, -aaE:function aaE(){}, -PK:function PK(a,b,c){this.c=a -this.d=b -this.a=c}, -b73(a,b,c){var s=null -return new A.vk(b,A.ai(c,s,B.bd,s,B.JA.c3(A.P(a).ax.a===B.R?B.l:B.a8),s,s),s)}, -vk:function vk(a,b,c){this.c=a -this.d=b -this.a=c}, -PP(a,b){return new A.nJ(a,b,null)}, -nJ:function nJ(a,b,c){this.c=a -this.as=b -this.a=c}, -aBo:function aBo(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.ax=a -_.ch=_.ay=$ -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k -_.z=l -_.Q=m -_.as=n -_.at=o}, -b79(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g -if(a===b)return a -s=A.k(a.a,b.a,c) -r=A.Y(a.b,b.b,c) -q=A.k(a.c,b.c,c) -p=A.k(a.d,b.d,c) -o=A.dy(a.e,b.e,c) -n=A.jv(a.f,b.f,c) -m=A.k(a.y,b.y,c) -l=A.ag(a.r,b.r,c) -k=A.ag(a.w,b.w,c) -j=A.aI(a.x,b.x,c) -i=A.k(a.z,b.z,c) -h=A.Bm(a.Q,b.Q,c) -if(c<0.5)g=a.as -else g=b.as -return new A.vn(s,r,q,p,o,n,l,k,j,m,i,h,g,A.dC(a.at,b.at,c))}, -vn:function vn(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n}, -a2_:function a2_(){}, -b7d(a,b,c){var s,r,q,p,o=A.aVI(a) -A.P(a) -s=A.b_s(a) -if(b==null){r=o.a -q=r}else q=b -if(q==null)q=s==null?null:s.gdQ() -p=c -if(q==null)return new A.bl(B.r,p,B.F,-1) -return new A.bl(q,p,B.F,-1)}, -b_s(a){return new A.aBs(a,null,16,1,0,0,null)}, -qa:function qa(a,b,c){this.c=a -this.w=b -this.a=c}, -aBs:function aBs(a,b,c,d,e,f,g){var _=this -_.r=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g}, -b7c(a,b,c){var s,r,q,p,o -if(a===b)return a -s=A.k(a.a,b.a,c) -r=A.Y(a.b,b.b,c) -q=A.Y(a.c,b.c,c) -p=A.Y(a.d,b.d,c) -o=A.Y(a.e,b.e,c) -return new A.qb(s,r,q,p,o,A.fj(a.f,b.f,c))}, -aVI(a){var s -a.aA(t.Jj) -s=A.P(a) -return s.n}, -qb:function qb(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -a25:function a25(){}, -b7w(a,b,c){var s,r,q,p,o,n,m,l,k -if(a===b)return a -s=A.k(a.a,b.a,c) -r=A.k(a.b,b.b,c) -q=A.Y(a.c,b.c,c) -p=A.k(a.d,b.d,c) -o=A.k(a.e,b.e,c) -n=A.dy(a.f,b.f,c) -m=A.dy(a.r,b.r,c) -l=A.Y(a.w,b.w,c) -if(c<0.5)k=a.x -else k=b.x -return new A.Bh(s,r,q,p,o,n,m,l,k)}, -Bh:function Bh(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -a2c:function a2c(){}, -b7x(a,b,c){var s,r,q -if(a===b)return a -s=A.ag(a.a,b.a,c) -if(c<0.5)r=a.gh3() -else r=b.gh3() -q=A.aRl(a.c,b.c,c) -return new A.Bi(s,r,q,A.k(a.d,b.d,c))}, -Bi:function Bi(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -a2d:function a2d(){}, -b7J(a,b,c,d,e,f,g,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2){var s,r,q,p,o,n,m,l,k,j,i,h=null -A:{s=h -if(a2==null)break A -r=new A.iH(A.aG([B.a2,a2.aI(0.1),B.I,a2.aI(0.08),B.J,a2.aI(0.1)],t.EK,t._),t.GC) -s=r -break A}if(g!=null){r=g+2 -q=new A.iH(A.aG([B.K,0,B.a2,g+6,B.I,r,B.J,r,B.ix,g],t.Ag,t.i),t.JI)}else q=h -r=A.pP(c,d) -p=A.pP(a2,e) -o=a6==null?h:new A.bB(a6,t.De) -n=A.pP(h,h) -m=a5==null?h:new A.bB(a5,t.mD) -l=a4==null?h:new A.bB(a4,t.W7) -k=a3==null?h:new A.bB(a3,t.W7) -j=a8==null?h:new A.bB(a8,t.y2) -i=a7==null?h:new A.bB(a7,t.li) -return A.uM(a,b,h,r,q,a0,h,h,p,h,n,h,k,l,new A.iH(A.aG([B.K,f,B.ix,a1],t.Ag,t.WV),t.ZX),s,m,o,i,j,a9,h,b0,new A.bB(b1,t.RP),b2)}, -biB(a){var s=A.P(a),r=s.ok.as,q=r==null?null:r.r -if(q==null)q=14 -r=A.c_(a,B.dK) -r=r==null?null:r.gdO() -return A.aV2(new A.a2(24,0,24,0),new A.a2(12,0,12,0),new A.a2(6,0,6,0),(r==null?B.bz:r).bi(q)/14)}, -vr:function vr(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.at=k -_.ax=l -_.a=m}, -a2k:function a2k(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this -_.fy=a -_.go=$ -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k -_.z=l -_.Q=m -_.as=n -_.at=o -_.ax=p -_.ay=q -_.ch=r -_.CW=s -_.cx=a0 -_.cy=a1 -_.db=a2 -_.dx=a3 -_.dy=a4 -_.fr=a5 -_.fx=a6}, -aBw:function aBw(a){this.a=a}, -aBy:function aBy(a){this.a=a}, -aBA:function aBA(a){this.a=a}, -aBx:function aBx(){}, -aBz:function aBz(a){this.a=a}, -b7I(a,b,c){if(a===b)return a -return new A.Bq(A.kq(a.a,b.a,c))}, -Bq:function Bq(a){this.a=a}, -a2l:function a2l(){}, -aVS(a,b,c){if(b!=null&&!b.j(0,B.D))return A.aQp(b.aI(A.b7K(c)),a) -return a}, -b7K(a){var s,r,q,p,o,n -if(a<0)return 0 -for(s=0;r=B.v1[s],q=r.a,a>=q;){if(a===q||s+1===6)return r.b;++s}p=B.v1[s-1] -o=p.a -n=p.b -return n+(a-o)/(q-o)*(r.b-n)}, -nc:function nc(a,b){this.a=a -this.b=b}, -b7T(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g -if(a===b)return a -s=A.k(a.a,b.a,c) -r=A.k(a.b,b.b,c) -q=A.aI(a.c,b.c,c) -p=A.jv(a.d,b.d,c) -o=A.aI(a.e,b.e,c) -n=A.k(a.f,b.f,c) -m=A.k(a.r,b.r,c) -l=A.k(a.w,b.w,c) -k=A.k(a.x,b.x,c) -j=A.dy(a.y,b.y,c) -i=A.dy(a.z,b.z,c) -h=c<0.5 -if(h)g=a.Q -else g=b.Q -if(h)h=a.as -else h=b.as -return new A.By(s,r,q,p,o,n,m,l,k,j,i,g,h)}, -By:function By(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m}, -a2s:function a2s(){}, -b7V(a,b,c){if(a===b)return a -return new A.BA(A.kq(a.a,b.a,c))}, -BA:function BA(a){this.a=a}, -a2w:function a2w(){}, -BE:function BE(a,b,c,d,e,f,g,h){var _=this -_.f=a -_.r=b -_.w=c -_.x=d -_.y=e -_.z=f -_.b=g -_.a=h}, -bbg(a,b){return a.r.a-16-a.e.c-a.a.a+b}, -b_l(a,b,c,d,e){return new A.GU(c,d,a,b,new A.bp(A.c([],t.F),t.T),new A.eQ(A.t(t.M,t.S),t.PD),0,e.i("GU<0>"))}, -ahT:function ahT(){}, -avQ:function avQ(){}, -ahI:function ahI(){}, -ahH:function ahH(){}, -aBC:function aBC(){}, -ahS:function ahS(){}, -aH7:function aH7(){}, -GU:function GU(a,b,c,d,e,f,g,h){var _=this -_.w=a -_.x=b -_.a=c -_.b=d -_.d=_.c=null -_.cP$=e -_.d_$=f -_.nM$=g -_.$ti=h}, -aaF:function aaF(){}, -aaG:function aaG(){}, -b7X(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){return new A.BF(k,a,i,m,a1,c,j,n,b,l,r,d,o,s,a0,p,g,e,f,h,q)}, -b7Y(a2,a3,a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1 -if(a2===a3)return a2 -s=A.k(a2.a,a3.a,a4) -r=A.k(a2.b,a3.b,a4) -q=A.k(a2.c,a3.c,a4) -p=A.k(a2.d,a3.d,a4) -o=A.k(a2.e,a3.e,a4) -n=A.Y(a2.f,a3.f,a4) -m=A.Y(a2.r,a3.r,a4) -l=A.Y(a2.w,a3.w,a4) -k=A.Y(a2.x,a3.x,a4) -j=A.Y(a2.y,a3.y,a4) -i=A.dy(a2.z,a3.z,a4) -h=a4<0.5 -if(h)g=a2.Q -else g=a3.Q -f=A.Y(a2.as,a3.as,a4) -e=A.dC(a2.at,a3.at,a4) -d=A.dC(a2.ax,a3.ax,a4) -c=A.dC(a2.ay,a3.ay,a4) -b=A.dC(a2.ch,a3.ch,a4) -a=A.Y(a2.CW,a3.CW,a4) -a0=A.aI(a2.cx,a3.cx,a4) -a1=A.ag(a2.cy,a3.cy,a4) -if(h)h=a2.db -else h=a3.db -return A.b7X(r,k,n,g,a,a0,b,a1,q,m,s,j,p,l,f,c,h,i,e,d,o)}, -BF:function BF(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1}, -a2A:function a2A(){}, -BX(a,b,c,d,e,f,g,h,i){return new A.BW(d,g,c,a,f,i,b,h,e)}, -vK(a,b,c,d,e,f,g,h,i,j,a0,a1,a2,a3,a4,a5,a6){var s,r,q,p,o,n,m,l,k=null -if(h!=null){A:{s=h.aI(0.1) -r=h.aI(0.08) -q=h.aI(0.1) -q=new A.iH(A.aG([B.a2,s,B.I,r,B.J,q],t.EK,t._),t.GC) -s=q -break A}p=s}else p=k -s=A.pP(b,k) -r=A.pP(h,c) -q=a3==null?k:new A.bB(a3,t.mD) -o=a2==null?k:new A.bB(a2,t.W7) -n=a1==null?k:new A.bB(a1,t.W7) -m=a0==null?k:new A.bB(a0,t.XR) -l=a4==null?k:new A.bB(a4,t.y2) -return A.uM(a,k,k,s,k,e,k,k,r,k,k,m,n,o,k,p,q,k,k,l,k,k,a5,k,a6)}, -aDa:function aDa(a,b){this.a=a -this.b=b}, -BW:function BW(a,b,c,d,e,f,g,h,i){var _=this -_.c=a -_.e=b -_.w=c -_.z=d -_.ax=e -_.db=f -_.dy=g -_.fr=h -_.a=i}, -JL:function JL(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.a=l}, -a6k:function a6k(){this.c=this.a=this.d=null}, -a3a:function a3a(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.ch=a -_.CW=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.at=m -_.ax=n -_.a=o}, -a39:function a39(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this -_.fy=a -_.id=$ -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k -_.z=l -_.Q=m -_.as=n -_.at=o -_.ax=p -_.ay=q -_.ch=r -_.CW=s -_.cx=a0 -_.cy=a1 -_.db=a2 -_.dx=a3 -_.dy=a4 -_.fr=a5 -_.fx=a6}, -aD8:function aD8(a){this.a=a}, -aD9:function aD9(a){this.a=a}, -a2x:function a2x(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.fy=a -_.go=b -_.id=$ -_.a=c -_.b=d -_.c=e -_.d=f -_.e=g -_.f=h -_.r=i -_.w=j -_.x=k -_.y=l -_.z=m -_.Q=n -_.as=o -_.at=p -_.ax=q -_.ay=r -_.ch=s -_.CW=a0 -_.cx=a1 -_.cy=a2 -_.db=a3 -_.dx=a4 -_.dy=a5 -_.fr=a6 -_.fx=a7}, -aBJ:function aBJ(a){this.a=a}, -aBK:function aBK(a){this.a=a}, -aBL:function aBL(a){this.a=a}, -a2y:function a2y(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.fy=a -_.go=b -_.id=$ -_.a=c -_.b=d -_.c=e -_.d=f -_.e=g -_.f=h -_.r=i -_.w=j -_.x=k -_.y=l -_.z=m -_.Q=n -_.as=o -_.at=p -_.ax=q -_.ay=r -_.ch=s -_.CW=a0 -_.cx=a1 -_.cy=a2 -_.db=a3 -_.dx=a4 -_.dy=a5 -_.fr=a6 -_.fx=a7}, -aBM:function aBM(a){this.a=a}, -aBN:function aBN(a){this.a=a}, -aBO:function aBO(a){this.a=a}, -a4i:function a4i(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this -_.fy=a -_.id=$ -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k -_.z=l -_.Q=m -_.as=n -_.at=o -_.ax=p -_.ay=q -_.ch=r -_.CW=s -_.cx=a0 -_.cy=a1 -_.db=a2 -_.dx=a3 -_.dy=a4 -_.fr=a5 -_.fx=a6}, -aF0:function aF0(a){this.a=a}, -aF1:function aF1(a){this.a=a}, -aF2:function aF2(a){this.a=a}, -aF3:function aF3(a){this.a=a}, -b8p(a,b,c){if(a===b)return a -return new A.m5(A.kq(a.a,b.a,c))}, -R4(a,b){return new A.BY(b,a,null)}, -aR2(a){var s=a.aA(t.g5),r=s==null?null:s.w -return r==null?A.P(a).P:r}, -m5:function m5(a){this.a=a}, -BY:function BY(a,b,c){this.w=a -this.b=b -this.a=c}, -a3b:function a3b(){}, -nW:function nW(a,b,c,d,e,f,g,h,i,j){var _=this -_.z=a -_.Q=b -_.as=c -_.at=d -_.ax=e -_.ch=_.ay=$ -_.CW=!0 -_.e=f -_.f=g -_.a=h -_.b=i -_.c=j}, -bhQ(a,b,c){if(c!=null)return c -if(b)return new A.aNz(a) -return null}, -aNz:function aNz(a){this.a=a}, -aDm:function aDm(){}, -C8:function C8(a,b,c,d,e,f,g,h,i,j){var _=this -_.z=a -_.Q=b -_.as=c -_.at=d -_.ax=e -_.db=_.cy=_.cx=_.CW=_.ch=_.ay=$ -_.e=f -_.f=g -_.a=h -_.b=i -_.c=j}, -bhP(a,b,c){if(c!=null)return c -if(b)return new A.aNy(a) -return null}, -bhT(a,b,c,d){var s,r,q,p,o,n -if(b){if(c!=null){s=c.$0() -r=new A.L(s.c-s.a,s.d-s.b)}else r=a.gC() -q=d.ac(0,B.f).gd3() -p=d.ac(0,new A.h(0+r.a,0)).gd3() -o=d.ac(0,new A.h(0,0+r.b)).gd3() -n=d.ac(0,r.A5(B.f)).gd3() -return Math.ceil(Math.max(Math.max(q,p),Math.max(o,n)))}return 35}, -aNy:function aNy(a){this.a=a}, -aDn:function aDn(){}, -C9:function C9(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.z=a -_.Q=b -_.as=c -_.at=d -_.ax=e -_.ay=f -_.cx=_.CW=_.ch=$ -_.cy=null -_.e=g -_.f=h -_.a=i -_.b=j -_.c=k}, -akg(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var s=null -return new A.Rb(d,m,s,s,s,s,l,s,s,s,s,s,s,k,i,!0,B.G,s,b,e,s,s,h,n,s,o,f,!1,j,!1,g,c,p,s,s)}, -nZ:function nZ(){}, -vN:function vN(){}, -IQ:function IQ(a,b,c){this.f=a -this.b=b -this.a=c}, -C7:function C7(){}, -Ic:function Ic(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ay=n -_.ch=o -_.CW=p -_.cx=q -_.cy=r -_.db=s -_.dx=a0 -_.dy=a1 -_.fr=a2 -_.fx=a3 -_.fy=a4 -_.go=a5 -_.id=a6 -_.k1=a7 -_.k2=a8 -_.k3=a9 -_.k4=b0 -_.ok=b1 -_.p1=b2 -_.p2=b3 -_.p3=b4 -_.R8=b5 -_.RG=b6 -_.a=b7}, -p3:function p3(a,b){this.a=a -this.b=b}, -Ib:function Ib(a,b,c){var _=this -_.e=_.d=null -_.f=!1 -_.r=a -_.w=$ -_.x=null -_.y=b -_.z=null -_.Q=!1 -_.dh$=c -_.c=_.a=null}, -aDk:function aDk(){}, -aDg:function aDg(a){this.a=a}, -aDj:function aDj(){}, -aDl:function aDl(a,b){this.a=a -this.b=b}, -aDf:function aDf(a,b){this.a=a -this.b=b}, -aDi:function aDi(a){this.a=a}, -aDh:function aDh(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -Rb:function Rb(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ay=n -_.ch=o -_.CW=p -_.cx=q -_.cy=r -_.db=s -_.dx=a0 -_.dy=a1 -_.fr=a2 -_.fx=a3 -_.fy=a4 -_.go=a5 -_.id=a6 -_.k1=a7 -_.k2=a8 -_.k3=a9 -_.k4=b0 -_.ok=b1 -_.p1=b2 -_.p2=b3 -_.p3=b4 -_.a=b5}, -Lk:function Lk(){}, -j_:function j_(){}, -a49:function a49(a){this.a=a}, -ka:function ka(a,b){this.b=a -this.a=b}, -b7Z(a){var s -A:{if(-1===a){s="FloatingLabelAlignment.start" -break A}if(0===a){s="FloatingLabelAlignment.center" -break A}s="FloatingLabelAlignment(x: "+B.j.aq(a,1)+")" -break A}return s}, -ji(a,b){var s=a==null?null:a.aO(B.bR,b,a.gcG()) -return s==null?0:s}, -yU(a,b){var s=a==null?null:a.aO(B.aK,b,a.gc2()) -return s==null?0:s}, -yV(a,b){var s=a==null?null:a.aO(B.by,b,a.gcA()) -return s==null?0:s}, -iK(a){var s=a==null?null:a.gC() -return s==null?B.Q:s}, -bdv(a,b){var s=a.qc(B.u,!0) -return s==null?a.gC().b:s}, -bdw(a,b){var s=a.f5(b,B.u) -return s==null?a.aO(B.S,b,a.gcu()).b:s}, -Rc(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8){return new A.vM(b5,b6,b9,c1,c0,a0,a4,a7,a6,a5,b2,a8,b1,b3,b0,a9,!0,!0,!1,k,o,n,m,s,r,b8,d,b7,c6,c8,c5,d0,c9,c7,d3,d2,d7,d6,d4,d5,g,e,f,q,p,a1,b4,l,a2,a3,h,j,b,!0,d1,a,c,d8)}, -aR7(a){var s -a.aA(t.lA) -s=A.P(a) -return s.e}, -Id:function Id(a){var _=this -_.a=null -_.L$=_.b=0 -_.P$=a -_.av$=_.ao$=0}, -Ie:function Ie(a,b){this.a=a -this.b=b}, -a3f:function a3f(a,b,c,d,e,f,g,h,i){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.a=i}, -H4:function H4(a,b,c,d,e,f,g){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.a=g}, -a0P:function a0P(a,b){var _=this -_.x=_.w=_.r=_.f=_.e=_.d=$ -_.dB$=a -_.bl$=b -_.c=_.a=null}, -I0:function I0(a,b,c,d,e,f,g,h,i,j){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.a=j}, -I1:function I1(a,b){var _=this -_.d=$ -_.f=_.e=null -_.dK$=a -_.bu$=b -_.c=_.a=null}, -aCL:function aCL(){}, -aCK:function aCK(a,b,c){this.a=a -this.b=b -this.c=c}, -BH:function BH(a,b){this.a=a -this.b=b}, -Qk:function Qk(){}, -fe:function fe(a,b){this.a=a -this.b=b}, -a1O:function a1O(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5}, -aG1:function aG1(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -Ja:function Ja(a,b,c,d,e,f,g,h,i,j){var _=this -_.n=a -_.U=b -_.a0=c -_.a3=d -_.a5=e -_.au=f -_.L=g -_.P=null -_.ht$=h -_.dy=i -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=j -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -aG7:function aG7(a){this.a=a}, -aG6:function aG6(a){this.a=a}, -aG5:function aG5(a,b){this.a=a -this.b=b}, -aG4:function aG4(a){this.a=a}, -aG2:function aG2(a){this.a=a}, -aG3:function aG3(){}, -a1R:function a1R(a,b,c,d,e,f,g){var _=this -_.d=a -_.e=b -_.f=c -_.r=d -_.w=e -_.x=f -_.a=g}, -qL:function qL(a,b,c,d,e,f,g,h,i,j){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.a=j}, -If:function If(a,b,c){var _=this -_.f=_.e=_.d=$ -_.r=a -_.y=_.x=_.w=$ -_.Q=_.z=null -_.dB$=b -_.bl$=c -_.c=_.a=null}, -aDz:function aDz(){}, -vM:function vM(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7 -_.id=a8 -_.k1=a9 -_.k2=b0 -_.k3=b1 -_.k4=b2 -_.ok=b3 -_.p1=b4 -_.p2=b5 -_.p3=b6 -_.p4=b7 -_.R8=b8 -_.RG=b9 -_.rx=c0 -_.ry=c1 -_.to=c2 -_.x1=c3 -_.x2=c4 -_.xr=c5 -_.y1=c6 -_.y2=c7 -_.aH=c8 -_.aB=c9 -_.n=d0 -_.U=d1 -_.a0=d2 -_.a3=d3 -_.a5=d4 -_.au=d5 -_.L=d6 -_.P=d7 -_.ao=d8}, -Ca:function Ca(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7 -_.id=a8 -_.k1=a9 -_.k2=b0 -_.k3=b1 -_.k4=b2 -_.ok=b3 -_.p1=b4 -_.p2=b5 -_.p3=b6 -_.p4=b7}, -aDo:function aDo(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8){var _=this -_.R8=a -_.rx=_.RG=$ -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k -_.z=l -_.Q=m -_.as=n -_.at=o -_.ax=p -_.ay=q -_.ch=r -_.CW=s -_.cx=a0 -_.cy=a1 -_.db=a2 -_.dx=a3 -_.dy=a4 -_.fr=a5 -_.fx=a6 -_.fy=a7 -_.go=a8 -_.id=a9 -_.k1=b0 -_.k2=b1 -_.k3=b2 -_.k4=b3 -_.ok=b4 -_.p1=b5 -_.p2=b6 -_.p3=b7 -_.p4=b8}, -aDu:function aDu(a){this.a=a}, -aDr:function aDr(a){this.a=a}, -aDp:function aDp(a){this.a=a}, -aDw:function aDw(a){this.a=a}, -aDx:function aDx(a){this.a=a}, -aDy:function aDy(a){this.a=a}, -aDv:function aDv(a){this.a=a}, -aDs:function aDs(a){this.a=a}, -aDt:function aDt(a){this.a=a}, -aDq:function aDq(a){this.a=a}, -a3g:function a3g(){}, -L6:function L6(){}, -Li:function Li(){}, -Ll:function Ll(){}, -aaU:function aaU(){}, -b8L(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){return new A.Cw(c,o,p,m,f,r,a1,q,h,a,s,n,e,k,i,j,d,l,a2,a0,b,g)}, -b8M(a3,a4,a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2 -if(a3===a4)return a3 -s=a5<0.5 -if(s)r=a3.a -else r=a4.a -q=A.dy(a3.b,a4.b,a5) -if(s)p=a3.c -else p=a4.c -o=A.k(a3.d,a4.d,a5) -n=A.k(a3.e,a4.e,a5) -m=A.k(a3.f,a4.f,a5) -l=A.ag(a3.r,a4.r,a5) -k=A.ag(a3.w,a4.w,a5) -j=A.ag(a3.x,a4.x,a5) -i=A.aI(a3.y,a4.y,a5) -h=A.k(a3.z,a4.z,a5) -g=A.k(a3.Q,a4.Q,a5) -f=A.Y(a3.as,a4.as,a5) -e=A.Y(a3.at,a4.at,a5) -d=A.Y(a3.ax,a4.ax,a5) -c=A.Y(a3.ay,a4.ay,a5) -if(s)b=a3.ch -else b=a4.ch -if(s)a=a3.CW -else a=a4.CW -if(s)a0=a3.cx -else a0=a4.cx -if(s)a1=a3.cy -else a1=a4.cy -if(s)a2=a3.db -else a2=a4.db -if(s)s=a3.dx -else s=a4.dx -return A.b8L(i,a2,r,b,f,n,s,j,d,c,e,a,o,g,q,p,k,m,h,a1,l,a0)}, -Cw:function Cw(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2}, -a3w:function a3w(){}, -G1:function G1(a,b){this.c=a -this.a=b}, -ax2:function ax2(){}, -Kr:function Kr(a){var _=this -_.e=_.d=null -_.f=a -_.c=_.a=null}, -aKy:function aKy(a){this.a=a}, -aKx:function aKx(a){this.a=a}, -aKz:function aKz(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -RG:function RG(a,b){this.c=a -this.a=b}, -mf(a,b,c,d,e,f,g,h,i,j,k,l,m,n){return new A.CH(e,n,!1,h,g,j,l,m,k,c,f,b,d,i)}, -b8t(a,b){var s,r,q,p,o,n,m,l,k,j,i=t.TT,h=A.c([a],i),g=A.c([b],i) -for(s=b,r=a;r!==s;){q=r.c -p=s.c -if(q>=p){o=r.gbk() -if(!(o instanceof A.r)||!o.pY(r))return null -h.push(o) -r=o}if(q<=p){n=s.gbk() -if(!(n instanceof A.r)||!n.pY(s))return null -g.push(n) -s=n}}m=new A.bc(new Float64Array(16)) -m.ei() -l=new A.bc(new Float64Array(16)) -l.ei() -for(k=g.length-1;k>0;k=j){j=k-1 -g[k].dz(g[j],m)}for(k=h.length-1;k>0;k=j){j=k-1 -h[k].dz(h[j],l)}if(l.ia(l)!==0){l.f2(m) -i=l}else i=null -return i}, -r5:function r5(a,b){this.a=a -this.b=b}, -CH:function CH(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.a=n}, -a3N:function a3N(a,b,c){var _=this -_.d=a -_.dB$=b -_.bl$=c -_.c=_.a=null}, -aEq:function aEq(a){this.a=a}, -Je:function Je(a,b,c,d,e){var _=this -_.D=a -_.am=b -_.bw=null -_.u$=c -_.dy=d -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -a3e:function a3e(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e}, -m9:function m9(){}, -tp:function tp(a,b){this.a=a -this.b=b}, -Ip:function Ip(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.r=a -_.w=b -_.x=c -_.y=d -_.z=e -_.Q=f -_.as=g -_.at=h -_.c=i -_.d=j -_.e=k -_.a=l}, -a3J:function a3J(a,b){var _=this -_.db=_.cy=_.cx=_.CW=null -_.e=_.d=$ -_.dK$=a -_.bu$=b -_.c=_.a=null}, -aEa:function aEa(){}, -aEb:function aEb(){}, -aEc:function aEc(){}, -aEd:function aEd(){}, -K1:function K1(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -K2:function K2(a,b,c){this.b=a -this.c=b -this.a=c}, -aaI:function aaI(){}, -a3K:function a3K(){}, -PE:function PE(){}, -b9e(a,b,c){if(a===b)return a -return new A.TA(A.aRl(a.a,b.a,c),null)}, -TA:function TA(a,b){this.a=a -this.b=b}, -b9f(a,b,c){if(a===b)return a -return new A.CX(A.kq(a.a,b.a,c))}, -CX:function CX(a){this.a=a}, -a3Q:function a3Q(){}, -aRl(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=null -if(a==b)return a -s=a==null -r=s?e:a.a -q=b==null -p=q?e:b.a -o=t._ -p=A.b9(r,p,c,A.cc(),o) -r=s?e:a.b -r=A.b9(r,q?e:b.b,c,A.cc(),o) -n=s?e:a.c -o=A.b9(n,q?e:b.c,c,A.cc(),o) -n=s?e:a.d -m=q?e:b.d -m=A.b9(n,m,c,A.zy(),t.PM) -n=s?e:a.e -l=q?e:b.e -l=A.b9(n,l,c,A.aTl(),t.pc) -n=s?e:a.f -k=q?e:b.f -j=t.tW -k=A.b9(n,k,c,A.zx(),j) -n=s?e:a.r -n=A.b9(n,q?e:b.r,c,A.zx(),j) -i=s?e:a.w -j=A.b9(i,q?e:b.w,c,A.zx(),j) -i=s?e:a.x -i=A.aSp(i,q?e:b.x,c) -h=s?e:a.y -g=q?e:b.y -g=A.b9(h,g,c,A.abK(),t.KX) -h=c<0.5 -if(h)f=s?e:a.z -else f=q?e:b.z -if(h)h=s?e:a.Q -else h=q?e:b.Q -s=s?e:a.as -return new A.TB(p,r,o,m,l,k,n,j,i,g,f,h,A.jv(s,q?e:b.as,c))}, -TB:function TB(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m}, -a3T:function a3T(){}, -b9g(a,b,c){var s,r -if(a===b)return a -s=A.aRl(a.a,b.a,c) -if(c<0.5)r=a.b -else r=b.b -return new A.wd(s,r)}, -wd:function wd(a,b){this.a=a -this.b=b}, -a3U:function a3U(){}, -b9x(a,b,c){var s,r,q,p,o,n,m,l,k,j,i -if(a===b)return a -s=A.Y(a.a,b.a,c) -r=A.k(a.b,b.b,c) -q=A.Y(a.c,b.c,c) -p=A.k(a.d,b.d,c) -o=A.k(a.e,b.e,c) -n=A.k(a.f,b.f,c) -m=A.dy(a.r,b.r,c) -l=A.b9(a.w,b.w,c,A.zv(),t.p8) -k=A.b9(a.x,b.x,c,A.b1M(),t.lF) -if(c<0.5)j=a.y -else j=b.y -i=A.b9(a.z,b.z,c,A.cc(),t._) -return new A.Dg(s,r,q,p,o,n,m,l,k,j,i,A.aI(a.Q,b.Q,c))}, -Dg:function Dg(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l}, -a43:function a43(){}, -b9y(a,b,c){var s,r,q,p,o,n,m,l,k -if(a===b)return a -s=A.Y(a.a,b.a,c) -r=A.k(a.b,b.b,c) -q=A.Y(a.c,b.c,c) -p=A.k(a.d,b.d,c) -o=A.k(a.e,b.e,c) -n=A.k(a.f,b.f,c) -m=A.dy(a.r,b.r,c) -l=a.w -l=A.xi(l,l,c) -k=A.b9(a.x,b.x,c,A.zv(),t.p8) -return new A.Dh(s,r,q,p,o,n,m,l,k,A.b9(a.y,b.y,c,A.b1M(),t.lF))}, -Dh:function Dh(a,b,c,d,e,f,g,h,i,j){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j}, -a44:function a44(){}, -b9z(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h -if(a===b)return a -s=A.k(a.a,b.a,c) -r=A.Y(a.b,b.b,c) -q=A.ag(a.c,b.c,c) -p=A.ag(a.d,b.d,c) -o=a.e -if(o==null)n=b.e==null -else n=!1 -if(n)o=null -else o=A.m7(o,b.e,c) -n=a.f -if(n==null)m=b.f==null -else m=!1 -if(m)n=null -else n=A.m7(n,b.f,c) -m=A.Y(a.r,b.r,c) -l=c<0.5 -if(l)k=a.w -else k=b.w -if(l)l=a.x -else l=b.x -j=A.k(a.y,b.y,c) -i=A.dy(a.z,b.z,c) -h=A.Y(a.Q,b.Q,c) -return new A.Di(s,r,q,p,o,n,m,k,l,j,i,h,A.Y(a.as,b.as,c))}, -Di:function Di(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m}, -a45:function a45(){}, -b9D(a,b,c){if(a===b)return a -return new A.Dr(A.kq(a.a,b.a,c))}, -Dr:function Dr(a){this.a=a}, -a4h:function a4h(){}, -w9(a,b,c){var s=null,r=A.c([],t.Zt),q=$.as,p=A.mw(B.dQ),o=A.c([],t.wi),n=$.af(),m=$.as,l=c.i("ax<0?>"),k=c.i("bC<0?>"),j=b==null?B.HQ:b -return new A.hx(a,!1,!0,!1,s,s,s,r,A.aU(t.f9),new A.by(s,c.i("by>")),new A.by(s,t.A),new A.U4(),s,0,new A.bC(new A.ax(q,c.i("ax<0?>")),c.i("bC<0?>")),p,o,s,j,new A.cb(s,n),new A.bC(new A.ax(m,l),k),new A.bC(new A.ax(m,l),k),c.i("hx<0>"))}, -b96(a,b,c,d,e){var s,r -A.P(a) -s=B.kj.h(0,A.P(a).w) -r=(s==null?B.fY:s).gjC() -return r!=null?r.$5(a,b,c,d,e):null}, -hx:function hx(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){var _=this -_.pp=a -_.bU=b -_.aK=c -_.c_=d -_.k3=e -_.k4=f -_.ok=g -_.p1=null -_.p2=!1 -_.p4=_.p3=null -_.R8=h -_.RG=i -_.rx=j -_.ry=k -_.to=l -_.x1=$ -_.x2=null -_.xr=$ -_.m8$=m -_.Bb$=n -_.at=o -_.ax=null -_.ay=!1 -_.CW=_.ch=null -_.cx=p -_.dy=_.dx=_.db=null -_.r=q -_.a=r -_.b=null -_.c=s -_.d=a0 -_.e=a1 -_.f=a2 -_.$ti=a3}, -Tw:function Tw(){}, -Iq:function Iq(){}, -b7U(a,b,c,d){var s=new A.nL(new A.hB(b,new A.bp(A.c([],t.F),t.T),0),new A.ahJ(),new A.ahK(),d,null),r=A.wg(a,B.ajw,t.X) -r=r==null?null:r.glh() -if(r===!1)return s -if(b.gba().gjK())r=A.P(a).ax.k2 -else r=B.D -return A.v4(s,r,!0)}, -b_h(a,b,c,d,e,f,g){var s=g==null?A.P(a).ax.k2:g -return new A.nL(new A.hB(c,new A.bp(A.c([],t.F),t.T),0),new A.aya(e,!0,s),new A.ayb(e),d,null)}, -b0z(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j -if(c<=0||d<=0)return -$.ab() -s=A.bt() -s.Q=B.j9 -s.r=A.b6j(0,0,0,d).gp() -r=b.b -r===$&&A.a() -q=r.a -q===$&&A.a() -p=J.b4(q.a.width())/e -q=r.a -q===$&&A.a() -o=J.b4(q.a.height())/e -n=p*c -m=o*c -l=(p-n)/2 -k=(o-m)/2 -q=a.gcw() -j=r.a -j===$&&A.a() -j=J.b4(j.a.width()) -r=r.a -r===$&&A.a() -q.AP(b,new A.w(0,0,j,J.b4(r.a.height())),new A.w(l,k,l+n,k+m),s)}, -b1e(a,b,c){var s,r -a.ei() -if(b===1)return -a.oq(b,b,b,1) -s=c.a -r=c.b -a.eh(-((s*b-s)/2),-((r*b-r)/2),0,1)}, -b0m(a,b,c,d,e){var s=new A.L1(d,a,e,c,b,new A.bc(new Float64Array(16)),A.at(),A.at(),$.af()),r=s.gdN() -a.a9(r) -a.hk(s.guK()) -e.a.a9(r) -c.a9(r) -return s}, -b0n(a,b,c,d){var s=new A.L2(c,d,b,a,new A.bc(new Float64Array(16)),A.at(),A.at(),$.af()),r=s.gdN() -d.a.a9(r) -b.a9(r) -a.hk(s.guK()) -return s}, -aaA:function aaA(a,b,c,d,e,f,g){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.a=g}, -aLR:function aLR(a,b){this.a=a -this.b=b}, -aLS:function aLS(a){this.a=a}, -pr:function pr(a,b,c,d,e,f){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.a=f}, -aay:function aay(a,b,c){var _=this -_.d=$ -_.pt$=a -_.mb$=b -_.nO$=c -_.c=_.a=null}, -ps:function ps(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -aaz:function aaz(a,b,c){var _=this -_.d=$ -_.pt$=a -_.mb$=b -_.nO$=c -_.c=_.a=null}, -a2t:function a2t(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -aBG:function aBG(){}, -aBH:function aBH(){}, -ahJ:function ahJ(){}, -ahK:function ahK(){}, -a08:function a08(){}, -ayc:function ayc(a){this.a=a}, -aya:function aya(a,b,c){this.a=a -this.b=b -this.c=c}, -ayb:function ayb(a){this.a=a}, -Pq:function Pq(){}, -U5:function U5(){}, -api:function api(a){this.a=a}, -yN:function yN(a,b,c,d,e,f,g){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.a=f -_.$ti=g}, -IP:function IP(a){var _=this -_.c=_.a=_.d=null -_.$ti=a}, -zg:function zg(){}, -L1:function L1(a,b,c,d,e,f,g,h,i){var _=this -_.r=a -_.w=b -_.x=c -_.y=d -_.z=e -_.Q=f -_.as=g -_.at=h -_.L$=0 -_.P$=i -_.av$=_.ao$=0}, -aLP:function aLP(a,b){this.a=a -this.b=b}, -L2:function L2(a,b,c,d,e,f,g,h){var _=this -_.r=a -_.w=b -_.x=c -_.y=d -_.z=e -_.Q=f -_.as=g -_.L$=0 -_.P$=h -_.av$=_.ao$=0}, -aLQ:function aLQ(a,b){this.a=a -this.b=b}, -a4m:function a4m(){}, -LE:function LE(){}, -LF:function LF(){}, -b9Y(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h -if(a===b)return a -s=A.k(a.a,b.a,c) -r=A.dy(a.b,b.b,c) -q=A.aI(a.c,b.c,c) -p=A.Y(a.d,b.d,c) -o=A.k(a.e,b.e,c) -n=A.k(a.f,b.f,c) -m=A.ag(a.r,b.r,c) -l=A.b9(a.w,b.w,c,A.zv(),t.p8) -k=c<0.5 -if(k)j=a.x -else j=b.x -if(k)i=a.y -else i=b.y -if(k)k=a.z -else k=b.z -h=A.k(a.Q,b.Q,c) -return new A.DB(s,r,q,p,o,n,m,l,j,i,k,h,A.Y(a.as,b.as,c))}, -DB:function DB(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m}, -a4W:function a4W(){}, -Um:function Um(){}, -apZ:function apZ(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -ng:function ng(a,b){this.a=a -this.b=b}, -IU:function IU(a,b,c){this.c=a -this.d=b -this.a=c}, -a4X:function a4X(a){var _=this -_.d=a -_.c=_.a=_.f=_.e=null}, -aFo:function aFo(a,b){this.a=a -this.b=b}, -aFp:function aFp(a,b){this.a=a -this.b=b}, -aFn:function aFn(a,b){this.a=a -this.b=b}, -IV:function IV(a,b,c,d,e,f){var _=this -_.d=a -_.f=b -_.r=c -_.w=d -_.x=e -_.a=f}, -a4Y:function a4Y(a,b,c,d,e,f,g,h,i){var _=this -_.d=a -_.e=b -_.f=c -_.r=d -_.w=e -_.x=0 -_.y=f -_.Q=_.z=null -_.as=$ -_.at=g -_.dK$=h -_.bu$=i -_.c=_.a=null}, -aFq:function aFq(a){this.a=a}, -aaQ:function aaQ(){}, -Ls:function Ls(){}, -bcY(a,b,c,d,e,f,g,h,i,j,k,l){var s=j!=null,r=s?-1.5707963267948966:-1.5707963267948966+g*3/2*3.141592653589793+c*3.141592653589793*2+b*0.5*3.141592653589793 -return new A.ya(h,k,j,a,g,b,c,f,d,r,s?A.E(j,0,1)*6.282185307179586:Math.max(a*3/2*3.141592653589793-g*3/2*3.141592653589793,0.001),e,i,!0,null)}, -b68(a,b,c,d,e,f,g,h,i,j){return new A.jA(h,f,g,i,a,b,j,d,e,c)}, -b_p(a,b){var s=null -return new A.aAt(a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -b_q(a,b){var s=null -return new A.aAu(a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -ayS:function ayS(a,b){this.a=a -this.b=b}, -Ut:function Ut(){}, -ya:function ya(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j -_.Q=k -_.as=l -_.at=m -_.ax=n -_.a=o}, -jA:function jA(a,b,c,d,e,f,g,h,i,j){var _=this -_.z=a -_.Q=b -_.as=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.a=j}, -Hb:function Hb(a,b){var _=this -_.d=$ -_.dK$=a -_.bu$=b -_.c=_.a=null}, -aAv:function aAv(a){this.a=a}, -aAw:function aAw(a){this.a=a}, -a5q:function a5q(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this -_.ch=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.a=p}, -DN:function DN(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.fy=a -_.z=b -_.Q=c -_.as=d -_.c=e -_.d=f -_.e=g -_.f=h -_.r=i -_.w=j -_.a=k}, -a5r:function a5r(a,b){var _=this -_.z=_.y=$ -_.Q=null -_.d=$ -_.dK$=a -_.bu$=b -_.c=_.a=null}, -aFJ:function aFJ(a){this.a=a}, -aAt:function aAt(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this -_.ch=a -_.CW=$ -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k -_.z=l -_.Q=m -_.as=n -_.at=o -_.ax=p -_.ay=q}, -aAu:function aAu(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this -_.ch=a -_.CW=$ -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k -_.z=l -_.Q=m -_.as=n -_.at=o -_.ax=p -_.ay=q}, -L9:function L9(){}, -ba6(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){return new A.wB(d,h,g,b,i,a,j,k,n,l,m,e,o,c,p,f)}, -ba7(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d -if(a===b)return a -s=A.k(a.a,b.a,c) -r=A.k(a.b,b.b,c) -q=A.Y(a.c,b.c,c) -p=A.k(a.d,b.d,c) -o=A.k(a.e,b.e,c) -n=A.fj(a.f,b.f,c) -m=A.k(a.r,b.r,c) -l=A.Y(a.w,b.w,c) -k=A.Y(a.x,b.x,c) -j=A.Y(a.y,b.y,c) -i=c<0.5 -if(i)h=a.z -else h=b.z -g=A.dC(a.Q,b.Q,c) -f=A.Y(a.as,b.as,c) -e=A.aI(a.at,b.at,c) -if(i)d=a.ax -else d=b.ax -if(i)i=a.ay -else i=b.ay -return A.ba6(n,p,e,s,g,i,q,r,o,m,l,j,h,k,f,d)}, -aRE(a){var s -a.aA(t.C0) -s=A.P(a) -return s.c_}, -wB:function wB(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p}, -a50:function a50(){}, -baa(a,b,c){if(a==null&&b==null)return null -if(a instanceof A.jm)a=a.x.$1(B.cB) -if(b instanceof A.jm)b=b.x.$1(B.cB) -if(a==null)a=new A.bl(b.a.e_(0),0,B.F,-1) -return A.bb(a,b==null?new A.bl(a.a.e_(0),0,B.F,-1):b,c)}, -bab(a,b,c){var s,r,q,p,o,n,m,l -if(a===b)return a -s=c<0.5 -if(s)r=a.a -else r=b.a -q=t._ -p=A.b9(a.b,b.b,c,A.cc(),q) -if(s)o=a.e -else o=b.e -n=A.b9(a.c,b.c,c,A.cc(),q) -m=A.Y(a.d,b.d,c) -if(s)s=a.f -else s=b.f -q=A.b9(a.r,b.r,c,A.cc(),q) -l=A.baa(a.w,b.w,c) -return new A.DH(r,p,n,m,o,s,q,l,A.b9(a.x,b.x,c,A.zy(),t.PM))}, -DH:function DH(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -a59:function a59(){}, -aqt(a,b,c,d){return new A.rJ(b,d,c,a,null)}, -oq:function oq(a,b){this.a=a -this.b=b}, -aqB:function aqB(a,b){this.a=a -this.b=b}, -aDc:function aDc(a,b){this.a=a -this.b=b}, -rJ:function rJ(a,b,c,d,e){var _=this -_.c=a -_.f=b -_.w=c -_.x=d -_.a=e}, -DM:function DM(a,b){var _=this -_.x=_.w=_.r=_.f=_.e=_.d=$ -_.as=_.Q=_.y=null -_.at=$ -_.dB$=a -_.bl$=b -_.c=_.a=null}, -aqw:function aqw(a){this.a=a}, -aqu:function aqu(a,b){this.a=a -this.b=b}, -aqv:function aqv(a){this.a=a}, -aqz:function aqz(a,b){this.a=a -this.b=b}, -aqx:function aqx(a){this.a=a}, -aqy:function aqy(a,b){this.a=a -this.b=b}, -aqA:function aqA(a,b){this.a=a -this.b=b}, -J3:function J3(){}, -ow(a,b,c,d){return new A.wU(a,c,b,d,null)}, -asl(a){var s=a.l6(t.Np) -if(s!=null)return s -throw A.i(A.nP(A.c([A.kz("Scaffold.of() called with a context that does not contain a Scaffold."),A.bZ("No Scaffold ancestor could be found starting from the context that was passed to Scaffold.of(). This usually happens when the context provided is from the same StatefulWidget as that whose build function actually creates the Scaffold widget being sought."),A.Bw('There are several ways to avoid this problem. The simplest is to use a Builder to get a context that is "under" the Scaffold. For an example of this, please see the documentation for Scaffold.of():\n https://api.flutter.dev/flutter/material/Scaffold/of.html'),A.Bw("A more efficient solution is to split your build function into several widgets. This introduces a new context from which you can obtain the Scaffold. In this solution, you would have an outer widget that creates the Scaffold populated by instances of your new inner widgets, and then in these inner widgets you would use Scaffold.of().\nA less elegant but more expedient solution is assign a GlobalKey to the Scaffold, then use the key.currentState property to obtain the ScaffoldState rather than using the Scaffold.of() function."),a.arj("The context used was")],t.D)))}, -bav(a,b){return A.hU(b,new A.ask(b),null)}, -bde(a){var s,r,q,p=$.a1.ap$.x.h(0,a) -if(p==null)return!1 -s=p.ga1() -s.toString -t.kQ.a(s) -r=A.ld(p).a -q=A.QL() -$.a1.rV(q,B.f,r) -return B.b.i8(q.a,new A.aCT(s))}, -hM:function hM(a,b){this.a=a -this.b=b}, -Ep:function Ep(a,b){this.c=a -this.a=b}, -Eq:function Eq(a,b,c,d,e){var _=this -_.d=a -_.e=b -_.r=c -_.x=_.w=null -_.y=$ -_.dB$=d -_.bl$=e -_.c=_.a=null}, -ase:function ase(a){this.a=a}, -asf:function asf(a,b){this.a=a -this.b=b}, -asa:function asa(a){this.a=a}, -asb:function asb(){}, -asd:function asd(a,b){this.a=a -this.b=b}, -asc:function asc(a,b){this.a=a -this.b=b}, -Jy:function Jy(a,b,c){this.f=a -this.b=b -this.a=c}, -asg:function asg(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.y=i}, -Vm:function Vm(a,b){this.a=a -this.b=b}, -a68:function a68(a,b){var _=this -_.b=null -_.c=a -_.L$=0 -_.P$=b -_.av$=_.ao$=0}, -H3:function H3(a,b,c,d,e,f,g){var _=this -_.e=a -_.f=b -_.r=c -_.a=d -_.b=e -_.c=f -_.d=g}, -a0O:function a0O(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -aH5:function aH5(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.d=a -_.e=b -_.f=c -_.r=d -_.w=e -_.x=f -_.y=g -_.z=h -_.Q=i -_.as=j -_.at=k -_.ax=l -_.ay=m -_.b=null}, -HQ:function HQ(a,b,c,d,e,f){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.a=f}, -HR:function HR(a,b){var _=this -_.d=$ -_.r=_.f=_.e=null -_.Q=_.z=_.y=_.x=_.w=$ -_.as=null -_.dB$=a -_.bl$=b -_.c=_.a=null}, -aBP:function aBP(a,b){this.a=a -this.b=b}, -wU:function wU(a,b,c,d,e){var _=this -_.f=a -_.r=b -_.cy=c -_.db=d -_.a=e}, -ask:function ask(a){this.a=a}, -Er:function Er(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this -_.d=a -_.e=b -_.f=c -_.r=$ -_.w=null -_.x=d -_.y=e -_.as=_.Q=_.z=null -_.at=f -_.ax=null -_.ay=g -_.ch=null -_.cx=_.CW=$ -_.db=_.cy=null -_.fr=_.dy=_.dx=$ -_.fx=!1 -_.bD$=h -_.eZ$=i -_.l1$=j -_.dU$=k -_.f_$=l -_.dB$=m -_.bl$=n -_.c=_.a=null}, -asi:function asi(a,b){this.a=a -this.b=b}, -ash:function ash(a,b){this.a=a -this.b=b}, -asj:function asj(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -a23:function a23(a,b){this.e=a -this.a=b -this.b=null}, -Eo:function Eo(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.$ti=d}, -a69:function a69(a,b,c){this.f=a -this.b=b -this.a=c}, -a3_:function a3_(a,b){this.c=a -this.a=b}, -aCT:function aCT(a){this.a=a}, -aH6:function aH6(){}, -Jz:function Jz(){}, -JA:function JA(){}, -JB:function JB(){}, -a6a:function a6a(){}, -Lg:function Lg(){}, -aXP(a,b){return new A.VG(a,b,null)}, -VG:function VG(a,b,c){this.c=a -this.d=b -this.a=c}, -yF:function yF(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this -_.c=a -_.d=b -_.e=c -_.r=d -_.w=e -_.Q=f -_.ay=g -_.ch=h -_.cx=i -_.cy=j -_.db=k -_.dx=l -_.fr=m -_.a=n}, -a3M:function a3M(a,b,c,d){var _=this -_.fr=$ -_.fy=_.fx=!1 -_.k1=_.id=_.go=$ -_.w=_.r=_.f=_.e=_.d=null -_.y=_.x=$ -_.z=a -_.Q=!1 -_.as=null -_.at=!1 -_.ay=_.ax=null -_.ch=b -_.CW=$ -_.dB$=c -_.bl$=d -_.c=_.a=null}, -aEj:function aEj(a){this.a=a}, -aEg:function aEg(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aEi:function aEi(a,b,c){this.a=a -this.b=b -this.c=c}, -aEh:function aEh(a,b,c){this.a=a -this.b=b -this.c=c}, -aEf:function aEf(a){this.a=a}, -aEp:function aEp(a){this.a=a}, -aEo:function aEo(a){this.a=a}, -aEn:function aEn(a){this.a=a}, -aEl:function aEl(a){this.a=a}, -aEm:function aEm(a){this.a=a}, -aEk:function aEk(a){this.a=a}, -baD(a,b,c){var s,r,q,p,o,n,m,l,k,j -if(a===b)return a -s=t.X7 -r=A.b9(a.a,b.a,c,A.b25(),s) -q=A.b9(a.b,b.b,c,A.zy(),t.PM) -s=A.b9(a.c,b.c,c,A.b25(),s) -p=a.d -o=b.d -p=c<0.5?p:o -o=A.wC(a.e,b.e,c) -n=t._ -m=A.b9(a.f,b.f,c,A.cc(),n) -l=A.b9(a.r,b.r,c,A.cc(),n) -n=A.b9(a.w,b.w,c,A.cc(),n) -k=A.Y(a.x,b.x,c) -j=A.Y(a.y,b.y,c) -return new A.wX(r,q,s,p,o,m,l,n,k,j,A.Y(a.z,b.z,c))}, -bim(a,b,c){return c<0.5?a:b}, -wX:function wX(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k}, -a6f:function a6f(){}, -baE(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h -if(a===b)return a -s=A.b9(a.a,b.a,c,A.zy(),t.PM) -r=t._ -q=A.b9(a.b,b.b,c,A.cc(),r) -p=A.b9(a.c,b.c,c,A.cc(),r) -o=A.b9(a.d,b.d,c,A.cc(),r) -r=A.b9(a.e,b.e,c,A.cc(),r) -n=A.aSp(a.f,b.f,c) -m=A.b9(a.r,b.r,c,A.abK(),t.KX) -l=A.b9(a.w,b.w,c,A.aTl(),t.pc) -k=t.p8 -j=A.b9(a.x,b.x,c,A.zv(),k) -k=A.b9(a.y,b.y,c,A.zv(),k) -i=A.dC(a.z,b.z,c) -if(c<0.5)h=a.Q -else h=b.Q -return new A.EB(s,q,p,o,r,n,m,l,j,k,i,h)}, -EB:function EB(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l}, -a6g:function a6g(){}, -baG(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h -if(a===b)return a -s=A.k(a.a,b.a,c) -r=A.Y(a.b,b.b,c) -q=A.k(a.c,b.c,c) -p=A.baF(a.d,b.d,c) -o=A.aRu(a.e,b.e,c) -n=A.Y(a.f,b.f,c) -m=a.r -l=b.r -k=A.ag(m,l,c) -m=A.ag(m,l,c) -l=A.dC(a.x,b.x,c) -j=A.aI(a.y,b.y,c) -i=A.aI(a.z,b.z,c) -if(c<0.5)h=a.Q -else h=b.Q -return new A.EC(s,r,q,p,o,n,k,m,l,j,i,h,A.k(a.as,b.as,c))}, -baF(a,b,c){if(a==null&&b==null)return null -if(a instanceof A.jm)a=a.x.$1(B.cB) -if(b instanceof A.jm)b=b.x.$1(B.cB) -if(a==null)a=new A.bl(b.a.e_(0),0,B.F,-1) -return A.bb(a,b==null?new A.bl(a.a.e_(0),0,B.F,-1):b,c)}, -EC:function EC(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m}, -a6h:function a6h(){}, -baI(a,b,c){var s,r -if(a===b)return a -s=A.kq(a.a,b.a,c) -if(c<0.5)r=a.b -else r=b.b -return new A.ED(s,r)}, -ED:function ED(a,b){this.a=a -this.b=b}, -a6i:function a6i(){}, -bb5(b7,b8,b9){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6 -if(b7===b8)return b7 -s=A.Y(b7.a,b8.a,b9) -r=A.k(b7.b,b8.b,b9) -q=A.k(b7.c,b8.c,b9) -p=A.k(b7.d,b8.d,b9) -o=A.k(b7.e,b8.e,b9) -n=A.k(b7.r,b8.r,b9) -m=A.k(b7.f,b8.f,b9) -l=A.k(b7.w,b8.w,b9) -k=A.k(b7.x,b8.x,b9) -j=A.k(b7.y,b8.y,b9) -i=A.k(b7.z,b8.z,b9) -h=A.k(b7.Q,b8.Q,b9) -g=A.k(b7.as,b8.as,b9) -f=A.k(b7.at,b8.at,b9) -e=A.k(b7.ax,b8.ax,b9) -d=A.k(b7.ay,b8.ay,b9) -c=A.k(b7.ch,b8.ch,b9) -b=b9<0.5 -a=b?b7.CW:b8.CW -a0=b?b7.cx:b8.cx -a1=b?b7.cy:b8.cy -a2=b?b7.db:b8.db -a3=b?b7.dx:b8.dx -a4=b?b7.dy:b8.dy -a5=b?b7.fr:b8.fr -a6=b?b7.fx:b8.fx -a7=b?b7.fy:b8.fy -a8=b?b7.go:b8.go -a9=A.ag(b7.id,b8.id,b9) -b0=A.Y(b7.k1,b8.k1,b9) -b1=b?b7.k2:b8.k2 -b2=b?b7.k3:b8.k3 -b3=b?b7.k4:b8.k4 -b4=A.aI(b7.ok,b8.ok,b9) -b5=A.b9(b7.p1,b8.p1,b9,A.zx(),t.tW) -b6=A.Y(b7.p2,b8.p2,b9) -return new A.Fp(s,r,q,p,o,m,n,l,k,j,i,h,g,f,e,d,c,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b?b7.p3:b8.p3)}, -Fp:function Fp(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7 -_.id=a8 -_.k1=a9 -_.k2=b0 -_.k3=b1 -_.k4=b2 -_.ok=b3 -_.p1=b4 -_.p2=b5 -_.p3=b6}, -a8J:function a8J(){}, -avG(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){return new A.mQ(h,d,k,n,p,a0,r,l,e,a,b,s,g,j,q===!0,c,o,i,f,m)}, -l3:function l3(a,b){this.a=a -this.b=b}, -mQ:function mQ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ay=n -_.ch=o -_.CW=p -_.cx=q -_.cy=r -_.db=s -_.a=a0}, -K6:function K6(a){var _=this -_.d=!1 -_.x=_.w=_.r=_.f=_.e=null -_.y=a -_.c=_.a=null}, -aJE:function aJE(a){this.a=a}, -aJD:function aJD(a){this.a=a}, -aJF:function aJF(){}, -aJG:function aJG(){}, -aJH:function aJH(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.ay=a -_.CW=_.ch=$ -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o}, -aJI:function aJI(a){this.a=a}, -bb8(a,b,c,d,e,f,g,h,i,j,k,l,m,n){return new A.xm(d,c,i,g,k,m,e,n,l,f,b,a,h,j)}, -bb9(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f -if(a===b)return a -s=A.k(a.a,b.a,c) -r=A.k(a.b,b.b,c) -q=A.k(a.c,b.c,c) -p=A.ag(a.d,b.d,c) -o=A.Y(a.e,b.e,c) -n=A.dy(a.f,b.f,c) -m=c<0.5 -if(m)l=a.r -else l=b.r -k=A.Y(a.w,b.w,c) -j=A.Bm(a.x,b.x,c) -i=A.k(a.z,b.z,c) -h=A.Y(a.Q,b.Q,c) -g=A.k(a.as,b.as,c) -f=A.k(a.at,b.at,c) -if(m)m=a.ax -else m=b.ax -return A.bb8(g,h,r,s,l,i,p,f,q,m,o,j,n,k)}, -aZw(a){var s -a.aA(t.fO) -s=A.P(a) -return s.dC}, -Yg:function Yg(a,b){this.a=a -this.b=b}, -xm:function xm(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.z=j -_.Q=k -_.as=l -_.at=m -_.ax=n}, -a8P:function a8P(){}, -aSM(a){var s=null -return new A.a8Z(a,s,s,s,s,s,s,s,s,s,s)}, -aK3:function aK3(a,b){this.a=a -this.b=b}, -Yy:function Yy(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.r=d -_.a=e}, -Ir:function Ir(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ay=n -_.ch=o -_.cx=p -_.cy=q -_.db=r -_.dx=s -_.dy=a0 -_.fr=a1 -_.fx=a2 -_.fy=a3 -_.go=a4 -_.id=a5 -_.k1=a6 -_.k2=a7 -_.a=a8}, -Is:function Is(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this -_.d=a -_.f=_.e=!1 -_.rO$=b -_.ma$=c -_.pr$=d -_.K2$=e -_.K3$=f -_.K4$=g -_.K5$=h -_.K6$=i -_.asf$=j -_.K7$=k -_.Bf$=l -_.vZ$=m -_.w_$=n -_.dB$=o -_.bl$=p -_.c=_.a=null}, -aEs:function aEs(a){this.a=a}, -aEt:function aEt(a){this.a=a}, -aEr:function aEr(a){this.a=a}, -aEu:function aEu(a,b){this.a=a -this.b=b}, -Kl:function Kl(a,b){var _=this -_.U=_.n=_.aB=_.aH=_.y2=_.y1=_.xr=_.x2=_.x1=_.to=_.ry=_.rx=_.RG=_.R8=_.p4=_.p3=_.p2=_.p1=_.ok=_.k4=_.k3=_.k2=_.k1=_.id=_.go=_.fy=_.fx=_.fr=_.dy=_.dx=null -_.a5=_.a3=_.a0=null -_.au=a -_.av=_.ao=_.P=_.L=null -_.bL=_.b8=!1 -_.bE=_.bz=null -_.bv=$ -_.at=_.as=_.Q=_.z=_.y=_.x=_.w=_.r=_.f=_.e=_.d=_.c=_.b=_.a=null -_.L$=0 -_.P$=b -_.av$=_.ao$=0}, -aK2:function aK2(a,b,c){this.a=a -this.b=b -this.c=c}, -a9_:function a9_(){}, -a8X:function a8X(){}, -a8Y:function a8Y(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.z=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k}, -aJV:function aJV(){}, -aJX:function aJX(a){this.a=a}, -aJW:function aJW(a){this.a=a}, -aJS:function aJS(a){this.b=a}, -aJT:function aJT(a){this.a=a}, -a8Z:function a8Z(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.z=a -_.Q=$ -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k}, -aK_:function aK_(a){this.a=a}, -aK0:function aK0(a){this.a=a}, -aK1:function aK1(a){this.a=a}, -aJZ:function aJZ(a){this.a=a}, -aJY:function aJY(){}, -ue:function ue(a){this.b=a}, -aJU:function aJU(a){this.a=a}, -Ln:function Ln(){}, -Lo:function Lo(){}, -abc:function abc(){}, -abd:function abd(){}, -bbo(a,b,c){var s,r,q,p,o,n,m,l,k -if(a===b)return a -s=t._ -r=A.b9(a.a,b.a,c,A.cc(),s) -q=A.b9(a.b,b.b,c,A.cc(),s) -p=A.b9(a.c,b.c,c,A.cc(),s) -o=A.b9(a.d,b.d,c,A.zy(),t.PM) -n=c<0.5 -if(n)m=a.e -else m=b.e -if(n)l=a.f -else l=b.f -s=A.b9(a.r,b.r,c,A.cc(),s) -k=A.Y(a.w,b.w,c) -if(n)n=a.x -else n=b.x -return new A.k6(r,q,p,o,m,l,s,k,n,A.aI(a.y,b.y,c))}, -aZC(a){var s -a.aA(t.OJ) -s=A.P(a) -return s.d4}, -k6:function k6(a,b,c,d,e,f,g,h,i,j){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j}, -a90:function a90(){}, -bbs(a,b,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c -if(a===b)return a -s=A.afe(a.a,b.a,a0) -r=A.k(a.b,b.b,a0) -q=a0<0.5 -p=q?a.c:b.c -o=A.k(a.d,b.d,a0) -n=q?a.e:b.e -m=A.k(a.f,b.f,a0) -l=A.aI(a.r,b.r,a0) -k=A.ag(a.w,b.w,a0) -j=A.k(a.x,b.x,a0) -i=A.ag(a.y,b.y,a0) -h=A.b9(a.z,b.z,a0,A.cc(),t._) -g=q?a.Q:b.Q -f=q?a.as:b.as -e=q?a.at:b.at -d=q?a.ax:b.ax -q=q?a.ay:b.ay -c=a.ch -return new A.FJ(s,r,p,o,n,m,l,k,j,i,h,g,f,e,d,q,A.el(c,c,a0))}, -FJ:function FJ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q}, -a97:function a97(){}, -awz(a,b,c){var s=null -return new A.YG(b,s,s,s,c,s,s,!1,s,!0,s,a,s)}, -aS5(a,b,c,d,e,f,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3){var s,r,q,p,o,n,m,l,k,j,i,h,g=null -A:{if(c!=null)s=d==null -else s=!1 -if(s){s=new A.bB(c,t.rc) -break A}s=A.pP(c,d) -break A}B:{r=A.pP(g,g) -break B}C:{q=g -if(a3==null)break C -p=new A.iH(A.aG([B.a2,a3.aI(0.1),B.I,a3.aI(0.08),B.J,a3.aI(0.1)],t.EK,t._),t.GC) -q=p -break C}p=b2==null?g:new A.bB(b2,t.uE) -o=A.pP(a3,e) -n=a7==null?g:new A.bB(a7,t.De) -m=a0==null?g:new A.bB(a0,t.XR) -l=a6==null?g:new A.bB(a6,t.mD) -k=a5==null?g:new A.bB(a5,t.W7) -j=a4==null?g:new A.bB(a4,t.W7) -i=a9==null?g:new A.bB(a9,t.y2) -h=a8==null?g:new A.bB(a8,t.li) -return A.uM(a,b,g,s,m,a1,g,g,o,g,r,g,j,k,new A.iH(A.aG([B.K,f,B.ix,a2],t.Ag,t.WV),t.ZX),q,l,n,h,i,b0,g,b1,p,b3)}, -biA(a){var s=A.P(a).ok.as,r=s==null?null:s.r -if(r==null)r=14 -s=A.c_(a,B.dK) -s=s==null?null:s.gdO() -s=(s==null?B.bz:s).bi(r) -return A.aV2(B.cp,B.mw,B.hr,s/14)}, -YG:function YG(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.at=k -_.ax=l -_.a=m}, -a9g:function a9g(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this -_.fy=a -_.go=$ -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k -_.z=l -_.Q=m -_.as=n -_.at=o -_.ax=p -_.ay=q -_.ch=r -_.CW=s -_.cx=a0 -_.cy=a1 -_.db=a2 -_.dx=a3 -_.dy=a4 -_.fr=a5 -_.fx=a6}, -aKa:function aKa(a){this.a=a}, -aKc:function aKc(a){this.a=a}, -aKb:function aKb(a){this.a=a}, -bbv(a,b,c){if(a===b)return a -return new A.FT(A.kq(a.a,b.a,c))}, -FT:function FT(a){this.a=a}, -a9h:function a9h(){}, -aS6(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1,f2,f3,f4){var s,r,q,p -if(e1==null)s=c0?B.oH:B.oI -else s=e1 -if(e2==null)r=c0?B.oJ:B.oK -else r=e2 -if(b3==null)q=b7===1?B.Jw:B.l8 -else q=b3 -if(a3==null)p=!0 -else p=a3 -return new A.FX(b4,a8,i,a7,a0,q,f2,f0,e6,e5,e8,e9,f1,!1,e4,c1,c0,a,s,r,!0,b7,b8,!1,!1,f3,e0,b5,b6,c3,c4,c5,c2,b1,a5,b0,o,l,n,m,j,k,d8,d9,b2,d4,p,d6,d7,a1,c6,!1,c8,c9,b9,d,d5,d3,b,f,d1,!0,!0,!0,g,h,!0,f4,a9,e3,null)}, -bbz(a,b){var s -if(!b.a.x){s=b.c -s.toString -s=A.aZE(s)}else s=!1 -if(s)return A.aZD(b) -return A.aUJ(b)}, -bbA(a){return B.i9}, -bio(a){return A.KT(new A.aO2(a))}, -a9j:function a9j(a,b){var _=this -_.x=a -_.a=b -_.c=_.b=!0 -_.d=!1 -_.f=_.e=0 -_.r=null -_.w=!1}, -FX:function FX(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ay=n -_.ch=o -_.CW=p -_.cx=q -_.cy=r -_.db=s -_.dx=a0 -_.dy=a1 -_.fr=a2 -_.fx=a3 -_.fy=a4 -_.go=a5 -_.id=a6 -_.k1=a7 -_.k2=a8 -_.k3=a9 -_.k4=b0 -_.ok=b1 -_.p1=b2 -_.p2=b3 -_.p3=b4 -_.p4=b5 -_.R8=b6 -_.RG=b7 -_.rx=b8 -_.ry=b9 -_.to=c0 -_.x1=c1 -_.x2=c2 -_.xr=c3 -_.y1=c4 -_.y2=c5 -_.aH=c6 -_.aB=c7 -_.n=c8 -_.U=c9 -_.a0=d0 -_.a3=d1 -_.a5=d2 -_.au=d3 -_.L=d4 -_.P=d5 -_.ao=d6 -_.av=d7 -_.b8=d8 -_.bL=d9 -_.bz=e0 -_.bE=e1 -_.bv=e2 -_.bU=e3 -_.aK=e4 -_.c_=e5 -_.bo=e6 -_.cB=e7 -_.bq=e8 -_.u=e9 -_.c0=f0 -_.a=f1}, -Kp:function Kp(a,b,c,d,e,f){var _=this -_.e=_.d=null -_.r=_.f=!1 -_.x=_.w=$ -_.y=a -_.z=null -_.bD$=b -_.eZ$=c -_.l1$=d -_.dU$=e -_.f_$=f -_.c=_.a=null}, -aKf:function aKf(){}, -aKh:function aKh(a,b){this.a=a -this.b=b}, -aKg:function aKg(a,b){this.a=a -this.b=b}, -aKi:function aKi(){}, -aKl:function aKl(a){this.a=a}, -aKm:function aKm(a){this.a=a}, -aKn:function aKn(a){this.a=a}, -aKo:function aKo(a){this.a=a}, -aKp:function aKp(a){this.a=a}, -aKq:function aKq(a){this.a=a}, -aKr:function aKr(a,b,c){this.a=a -this.b=b -this.c=c}, -aKt:function aKt(a){this.a=a}, -aKu:function aKu(a){this.a=a}, -aKs:function aKs(a,b){this.a=a -this.b=b}, -aKk:function aKk(a){this.a=a}, -aKj:function aKj(a){this.a=a}, -aO2:function aO2(a){this.a=a}, -aLW:function aLW(){}, -LC:function LC(){}, -aS7(a,b,c,d,e){var s=null,r=a.a.a -return new A.FY(a,new A.awE(b,s,s,B.ep,s,s,s,s,d,s,B.aN,s,s,B.l7,!1,s,s,!1,s,"\u2022",c,!0,s,s,!0,s,1,s,!1,s,s,!1,s,s,s,s,s,s,s,2,s,s,s,s,B.iZ,s,s,s,s,s,s,s,s,!0,s,A.bl0(),s,s,s,s,s,s,s,B.W,s,B.N,!0,!0,!0,s),s,s,e,r,!0,B.fU,s,s)}, -bbB(a,b){var s -if(!b.a.x){s=b.c -s.toString -s=A.aZE(s)}else s=!1 -if(s)return A.aZD(b) -return A.aUJ(b)}, -FY:function FY(a,b,c,d,e,f,g,h,i,j){var _=this -_.at=a -_.c=b -_.d=c -_.f=d -_.r=e -_.x=f -_.y=g -_.z=h -_.Q=i -_.a=j}, -awE:function awE(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7 -_.id=a8 -_.k1=a9 -_.k2=b0 -_.k3=b1 -_.k4=b2 -_.ok=b3 -_.p1=b4 -_.p2=b5 -_.p3=b6 -_.p4=b7 -_.R8=b8 -_.RG=b9 -_.rx=c0 -_.ry=c1 -_.to=c2 -_.x1=c3 -_.x2=c4 -_.xr=c5 -_.y1=c6 -_.y2=c7 -_.aH=c8 -_.aB=c9 -_.n=d0 -_.U=d1 -_.a0=d2 -_.a3=d3 -_.a5=d4 -_.au=d5 -_.L=d6 -_.P=d7 -_.ao=d8 -_.av=d9 -_.b8=e0 -_.bL=e1 -_.bz=e2 -_.bE=e3 -_.bv=e4 -_.bU=e5 -_.aK=e6 -_.c_=e7 -_.bo=e8 -_.cB=e9 -_.bq=f0}, -awF:function awF(a,b){this.a=a -this.b=b}, -z5:function z5(a,b,c,d,e,f,g){var _=this -_.ay=null -_.e=_.d=$ -_.f=a -_.r=b -_.bD$=c -_.eZ$=d -_.l1$=e -_.dU$=f -_.f_$=g -_.c=_.a=null}, -Tx:function Tx(){}, -anH:function anH(){}, -a9l:function a9l(a,b){this.b=a -this.a=b}, -a3O:function a3O(){}, -bbE(a,b,c){var s,r -if(a===b)return a -s=A.k(a.a,b.a,c) -r=A.k(a.b,b.b,c) -return new A.xI(s,r,A.k(a.c,b.c,c))}, -xI:function xI(a,b,c){this.a=a -this.b=b -this.c=c}, -a9m:function a9m(){}, -bbF(a,b,c){return new A.YQ(a,b,c,null)}, -bbM(a,b){return new A.a9n(b,null)}, -bdM(a){var s,r=null,q=a.a.a -switch(q){case 1:s=A.xK(r,r,r,r,r,r,r,r,r).ax.k2===a.k2 -break -case 0:s=A.xK(B.R,r,r,r,r,r,r,r,r).ax.k2===a.k2 -break -default:s=r}if(!s)return a.k2 -switch(q){case 1:q=B.l -break -case 0:q=B.da -break -default:q=r}return q}, -YQ:function YQ(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -Ku:function Ku(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -a9r:function a9r(a,b,c){var _=this -_.d=!1 -_.e=a -_.dB$=b -_.bl$=c -_.c=_.a=null}, -aKL:function aKL(a){this.a=a}, -aKK:function aKK(a){this.a=a}, -a9s:function a9s(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -a9t:function a9t(a,b,c,d,e){var _=this -_.D=null -_.a4=a -_.am=b -_.u$=c -_.dy=d -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -aKM:function aKM(a){this.a=a}, -a9o:function a9o(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e}, -a9p:function a9p(a,b,c){var _=this -_.p1=$ -_.p2=a -_.c=_.b=_.a=_.CW=_.ay=null -_.d=$ -_.e=b -_.r=_.f=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.at=!1}, -a5Q:function a5Q(a,b,c,d,e,f,g,h){var _=this -_.n=-1 -_.U=a -_.a0=b -_.a3=c -_.dJ$=d -_.al$=e -_.dn$=f -_.dy=g -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=h -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -aGu:function aGu(a,b,c){this.a=a -this.b=b -this.c=c}, -aGv:function aGv(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aGw:function aGw(a,b,c){this.a=a -this.b=b -this.c=c}, -aGx:function aGx(a,b,c){this.a=a -this.b=b -this.c=c}, -aGz:function aGz(a,b){this.a=a -this.b=b}, -aGy:function aGy(a){this.a=a}, -aGA:function aGA(a){this.a=a}, -a9n:function a9n(a,b){this.c=a -this.a=b}, -a9q:function a9q(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -ab1:function ab1(){}, -abe:function abe(){}, -bbL(a){if(a===B.Ke||a===B.ps)return 14.5 -return 9.5}, -bbI(a){if(a===B.Kf||a===B.ps)return 14.5 -return 9.5}, -bbK(a,b){if(a===0)return b===1?B.ps:B.Ke -if(a===b-1)return B.Kf -return B.ak8}, -bbJ(a){var s,r=null,q=a.a.a -switch(q){case 1:s=A.xK(r,r,r,r,r,r,r,r,r).ax.k3===a.k3 -break -case 0:s=A.xK(B.R,r,r,r,r,r,r,r,r).ax.k3===a.k3 -break -default:s=r}if(!s)return a.k3 -switch(q){case 1:q=B.r -break -case 0:q=B.l -break -default:q=r}return q}, -z7:function z7(a,b){this.a=a -this.b=b}, -YS:function YS(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -aSa(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return new A.er(d,e,f,g,h,i,m,n,o,a,b,c,j,k,l)}, -xJ(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f -if(a===b)return a -s=A.ag(a.a,b.a,c) -r=A.ag(a.b,b.b,c) -q=A.ag(a.c,b.c,c) -p=A.ag(a.d,b.d,c) -o=A.ag(a.e,b.e,c) -n=A.ag(a.f,b.f,c) -m=A.ag(a.r,b.r,c) -l=A.ag(a.w,b.w,c) -k=A.ag(a.x,b.x,c) -j=A.ag(a.y,b.y,c) -i=A.ag(a.z,b.z,c) -h=A.ag(a.Q,b.Q,c) -g=A.ag(a.as,b.as,c) -f=A.ag(a.at,b.at,c) -return A.aSa(j,i,h,s,r,q,p,o,n,g,f,A.ag(a.ax,b.ax,c),m,l,k)}, -er:function er(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o}, -a9v:function a9v(){}, -P(a){var s,r,q,p,o,n,m=null,l=a.aA(t.Nr),k=A.j2(a,B.cC,t.c4),j=k==null?m:k.gb0() -if(j==null)j=B.B -s=a.aA(t.ri) -r=l==null?m:l.w.c -if(r==null)if(s!=null){q=s.w.c -p=q.gf3() -o=q.giU() -n=q.gf3() -p=A.xK(m,A.b6k(o,q.gjO(),n,p),m,m,m,m,m,m,m) -r=p}else{q=$.b3l() -r=q}return A.bbS(r,r.p1.a27(j))}, -bbT(a){var s=a.aA(t.Nr),r=s==null?null:s.w.c.ax.a -if(r==null){r=A.c_(a,B.fR) -r=r==null?null:r.e -if(r==null)r=B.ar}return r}, -aQ8(a,b,c,d){return new A.zN(c,a,b,d,null,null)}, -tD:function tD(a,b,c){this.c=a -this.d=b -this.a=c}, -Ia:function Ia(a,b,c){this.w=a -this.b=b -this.a=c}, -tE:function tE(a,b){this.a=a -this.b=b}, -zN:function zN(a,b,c,d,e,f){var _=this -_.r=a -_.w=b -_.c=c -_.d=d -_.e=e -_.a=f}, -a0q:function a0q(a,b){var _=this -_.CW=null -_.e=_.d=$ -_.dK$=a -_.bu$=b -_.c=_.a=null}, -azf:function azf(){}, -xK(c9,d0,d1,d2,d3,d4,d5,d6,d7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5=null,c6=A.c([],t.FO),c7=A.c([],t.lY),c8=A.aT() -switch(c8.a){case 0:case 1:case 2:s=B.DS -break -case 3:case 4:case 5:s=B.a2K -break -default:s=c5}if(d5==null)d5=B.a5K -r=A.bcb(c8) -d7=d7!==!1 -if(d7)q=B.Mh -else q=B.Mi -if(c9==null){p=d0==null?c5:d0.a -o=p}else o=c9 -if(o==null)o=B.ar -n=o===B.R -if(d7){if(d0==null)d0=n?B.MH:B.MG -m=n?d0.k2:d0.b -l=n?d0.k3:d0.c -k=d0.k2 -if(d4==null)d4=k -j=d0.ry -if(j==null){p=d0.n -j=p==null?d0.k3:p}i=c9===B.R -h=m -g=l -f=k -e=f}else{h=c5 -g=h -j=g -f=j -e=f -k=e -i=k}if(h==null)h=n?B.q4:B.kl -d=A.YT(h) -c=n?B.m9:B.qz -b=n?B.r:B.qC -a=d===B.R -a0=n?A.ar(31,B.l.A()>>>16&255,B.l.A()>>>8&255,B.l.A()&255):A.ar(31,B.r.A()>>>16&255,B.r.A()>>>8&255,B.r.A()&255) -a1=n?A.ar(10,B.l.A()>>>16&255,B.l.A()>>>8&255,B.l.A()&255):A.ar(10,B.r.A()>>>16&255,B.r.A()>>>8&255,B.r.A()&255) -if(k==null)k=n?B.m3:B.qr -if(d4==null)d4=k -if(e==null)e=n?B.da:B.l -if(j==null)j=n?B.NA:B.No -if(d0==null){a2=n?B.N1:B.qe -p=n?B.eI:B.qj -a3=A.YT(B.kl)===B.R -a4=A.YT(a2) -a5=a3?B.l:B.r -a4=a4===B.R?B.l:B.r -a6=n?B.l:B.r -a7=n?B.r:B.l -d0=A.Ns(p,o,B.N3,c5,c5,c5,a3?B.l:B.r,a7,c5,c5,a5,c5,c5,c5,a4,c5,c5,c5,a6,c5,c5,c5,c5,c5,c5,c5,B.kl,c5,c5,c5,c5,a2,c5,c5,c5,c5,e,c5,c5,c5,c5,c5,c5,c5,c5,c5,c5,c5,c5,c5)}a8=n?B.ab:B.aa -a9=n?B.eI:B.q1 -b0=n?B.ND:A.ar(153,B.r.A()>>>16&255,B.r.A()>>>8&255,B.r.A()&255) -b1=new A.N2(n?B.qq:B.qt,c5,a0,a1,c5,c5,d0,s) -b2=n?B.NB:B.Nv -b3=n?B.qo:B.m5 -b4=n?B.qo:B.MW -if(d7){b5=A.b_3(c8,c5,c5,B.aes,B.aeA,B.aeC) -p=d0.a===B.ar -b6=p?d0.k3:d0.k2 -b7=p?d0.k2:d0.k3 -p=b5.a.WI(b6,b6,b6) -a4=b5.b.WI(b7,b7,b7) -b8=new A.xR(p,a4,b5.c,b5.d,b5.e)}else b8=A.bc2(c8) -b9=n?b8.b:b8.a -c0=a?b8.b:b8.a -if(d2!=null){b9=b9.WH(d2) -c0=c0.WH(d2)}c1=b9.E(c5) -c2=c0.E(c5) -if(d3==null)d3=n?new A.dw(c5,c5,c5,c5,c5,$.aUt(),c5,c5,c5):new A.dw(c5,c5,c5,c5,c5,$.aUs(),c5,c5,c5) -c3=a?B.PP:B.PQ -if(d1==null)d1=B.Ow -if(d6==null)d6=B.aas -if(f==null)f=n?B.da:B.l -if(g==null){g=d0.y -if(g.j(0,h))g=B.l}p=A.bbO(c7) -a4=A.bbQ(c6) -c4=A.aSb(c5,p,B.Kn,i===!0,B.Ku,B.a2J,B.KK,B.KL,B.KM,B.L8,b1,k,e,B.Mv,B.Mw,B.Mz,B.MA,d0,c5,B.O8,B.O9,f,B.On,b2,j,d1,B.Oz,B.OA,B.Pb,B.Pf,a4,B.Pj,B.Pl,a0,b3,b0,a1,B.Pw,d3,g,B.PX,B.Qu,s,B.a2N,B.a2O,B.a2P,B.a33,B.a34,B.a36,B.a44,B.LT,c8,B.a4S,h,b,c,c3,c2,B.a4T,B.a4U,d4,d5,B.a5L,B.a5M,a9,B.a5N,B.r,B.a9p,B.a9w,b4,q,B.Jf,B.aa0,B.aa1,d6,c1,B.afk,B.afl,B.afr,b8,a8,d7,r) -return c4}, -aSb(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1,f2,f3,f4,f5,f6,f7,f8,f9,g0,g1,g2,g3){return new A.je(d,s,b1,b,c1,c3,d1,d2,e2,f1,!0,g3,l,m,r,a4,a5,b4,b5,b6,b7,d4,d5,d6,e1,e5,e7,f0,g1,b9,d7,d8,f6,g0,a,c,e,f,g,h,i,k,n,o,p,q,a0,a1,a3,a6,a7,a8,a9,b0,b2,b3,b8,c2,c4,c5,c6,c7,c8,c9,d0,d3,d9,e0,e3,e4,e6,e8,e9,f2,f3,f4,f5,f7,f8,f9,j,a2,c0)}, -bbN(){var s=null -return A.xK(B.ar,s,s,s,s,s,s,s,s)}, -bbO(a){var s,r,q=A.t(t.u,t.gj) -for(s=0;!1;++s){r=a[s] -q.m(0,A.bM(A.a6(r).i("lC.T")),r)}return q}, -bbS(a,b){return $.b3k().cl(new A.yv(a,b),new A.axi(a,b))}, -YT(a){var s=a.IN()+0.05 -if(s*s>0.15)return B.ar -return B.R}, -bbP(a,b,c){var s=a.c.mn(0,new A.axf(b,c),t.K,t.zo),r=b.c.gfj() -s.Ws(r.lw(r,new A.axg(a))) -return s}, -bbQ(a){var s,r,q=t.K,p=t.ZF,o=A.t(q,p) -for(s=0;!1;++s){r=a[s] -o.m(0,r.gD8(),p.a(r))}return A.Ny(o,q,t.zo)}, -bbR(h0,h1,h2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1,f2,f3,f4,f5,f6,f7,f8,f9,g0,g1,g2,g3,g4,g5,g6,g7,g8,g9 -if(h0===h1)return h0 -s=h2<0.5 -r=s?h0.d:h1.d -q=s?h0.a:h1.a -p=s?h0.b:h1.b -o=A.bbP(h0,h1,h2) -n=s?h0.e:h1.e -m=s?h0.f:h1.f -l=s?h0.r:h1.r -k=s?h0.w:h1.w -j=A.baD(h0.x,h1.x,h2) -i=s?h0.y:h1.y -h=A.bcc(h0.Q,h1.Q,h2) -g=A.k(h0.as,h1.as,h2) -g.toString -f=A.k(h0.at,h1.at,h2) -f.toString -e=A.b6m(h0.ax,h1.ax,h2) -d=A.k(h0.ay,h1.ay,h2) -d.toString -c=A.k(h0.ch,h1.ch,h2) -c.toString -b=A.k(h0.CW,h1.CW,h2) -b.toString -a=A.k(h0.cx,h1.cx,h2) -a.toString -a0=A.k(h0.cy,h1.cy,h2) -a0.toString -a1=A.k(h0.db,h1.db,h2) -a1.toString -a2=A.k(h0.dx,h1.dx,h2) -a2.toString -a3=A.k(h0.dy,h1.dy,h2) -a3.toString -a4=A.k(h0.fr,h1.fr,h2) -a4.toString -a5=A.k(h0.fx,h1.fx,h2) -a5.toString -a6=A.k(h0.fy,h1.fy,h2) -a6.toString -a7=A.k(h0.go,h1.go,h2) -a7.toString -a8=A.k(h0.id,h1.id,h2) -a8.toString -a9=A.k(h0.k1,h1.k1,h2) -a9.toString -b0=A.m7(h0.k2,h1.k2,h2) -b1=A.m7(h0.k3,h1.k3,h2) -b2=A.xJ(h0.k4,h1.k4,h2) -b3=A.xJ(h0.ok,h1.ok,h2) -b4=A.bc3(h0.p1,h1.p1,h2) -b5=A.b5u(h0.p2,h1.p2,h2) -b6=A.b5F(h0.p3,h1.p3,h2) -b7=A.b5I(h0.p4,h1.p4,h2) -b8=h0.R8 -b9=h1.R8 -c0=A.k(b8.a,b9.a,h2) -c1=A.k(b8.b,b9.b,h2) -c2=A.k(b8.c,b9.c,h2) -c3=A.k(b8.d,b9.d,h2) -c4=A.ag(b8.e,b9.e,h2) -c5=A.Y(b8.f,b9.f,h2) -c6=A.aI(b8.r,b9.r,h2) -b8=A.aI(b8.w,b9.w,h2) -b9=A.b5N(h0.RG,h1.RG,h2) -c7=A.b5O(h0.rx,h1.rx,h2) -c8=A.b5P(h0.ry,h1.ry,h2) -s=s?h0.to:h1.to -c9=A.b5Y(h0.x1,h1.x1,h2) -d0=A.b5Z(h0.x2,h1.x2,h2) -d1=A.b62(h0.xr,h1.xr,h2) -d2=A.b67(h0.y1,h1.y1,h2) -d3=A.b6M(h0.y2,h1.y2,h2) -d4=A.b6S(h0.aH,h1.aH,h2) -d5=A.b79(h0.aB,h1.aB,h2) -d6=A.b7c(h0.n,h1.n,h2) -d7=A.b7w(h0.U,h1.U,h2) -d8=A.b7x(h0.a0,h1.a0,h2) -d9=A.b7I(h0.a3,h1.a3,h2) -e0=A.b7T(h0.a5,h1.a5,h2) -e1=A.b7V(h0.au,h1.au,h2) -e2=A.b7Y(h0.L,h1.L,h2) -e3=A.b8p(h0.P,h1.P,h2) -e4=A.b8M(h0.ao,h1.ao,h2) -e5=A.b9e(h0.av,h1.av,h2) -e6=A.b9f(h0.b8,h1.b8,h2) -e7=A.b9g(h0.bL,h1.bL,h2) -e8=A.b9x(h0.bz,h1.bz,h2) -e9=A.b9y(h0.bE,h1.bE,h2) -f0=A.b9z(h0.bv,h1.bv,h2) -f1=A.b9D(h0.bU,h1.bU,h2) -f2=A.b9Y(h0.aK,h1.aK,h2) -f3=A.ba7(h0.c_,h1.c_,h2) -f4=A.bab(h0.bo,h1.bo,h2) -f5=A.baE(h0.cB,h1.cB,h2) -f6=A.baG(h0.bq,h1.bq,h2) -f7=A.baI(h0.u,h1.u,h2) -f8=A.bb5(h0.c0,h1.c0,h2) -f9=A.bb9(h0.dC,h1.dC,h2) -g0=A.bbo(h0.d4,h1.d4,h2) -g1=A.bbs(h0.ap,h1.ap,h2) -g2=A.bbv(h0.eN,h1.eN,h2) -g3=A.bbE(h0.bI,h1.bI,h2) -g4=A.bbU(h0.D,h1.D,h2) -g5=A.bbV(h0.a4,h1.a4,h2) -g6=A.bbY(h0.am,h1.am,h2) -g7=A.b5U(h0.bw,h1.bw,h2) -g8=A.k(h0.bQ,h1.bQ,h2) -g8.toString -g9=A.k(h0.bR,h1.bR,h2) -g9.toString -return A.aSb(b5,r,b6,q,b7,new A.CJ(c0,c1,c2,c3,c4,c5,c6,b8),b9,c7,c8,g7,s,g,f,c9,d0,d1,d2,e,p,d3,d4,g8,d5,d,c,d6,d7,d8,d9,e0,o,e1,e2,b,a,a0,a1,e3,b0,g9,n,e4,m,e5,e6,e7,e8,e9,f0,f1,l,k,f2,a2,a3,a4,b1,b2,f3,f4,a5,j,f5,f6,a6,f7,a7,f8,f9,a8,i,g0,g1,g2,g3,b3,g4,g5,g6,b4,a9,!0,h)}, -b8W(a,b){var s=b.r -if(s==null)s=a.bI.c -return new A.RK(a,b,B.pc,b.a,b.b,b.c,b.d,b.e,b.f,s,b.w)}, -bcb(a){var s -A:{if(B.as===a||B.U===a||B.bN===a){s=B.ie -break A}if(B.bO===a||B.b5===a||B.bP===a){s=B.agW -break A}s=null}return s}, -bcc(a,b,c){var s,r -if(a===b)return a -s=A.Y(a.a,b.a,c) -s.toString -r=A.Y(a.b,b.b,c) -r.toString -return new A.n4(s,r)}, -lC:function lC(){}, -r4:function r4(a,b){this.a=a -this.b=b}, -je:function je(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1,f2,f3,f4,f5,f6,f7,f8,f9,g0,g1,g2,g3){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7 -_.id=a8 -_.k1=a9 -_.k2=b0 -_.k3=b1 -_.k4=b2 -_.ok=b3 -_.p1=b4 -_.p2=b5 -_.p3=b6 -_.p4=b7 -_.R8=b8 -_.RG=b9 -_.rx=c0 -_.ry=c1 -_.to=c2 -_.x1=c3 -_.x2=c4 -_.xr=c5 -_.y1=c6 -_.y2=c7 -_.aH=c8 -_.aB=c9 -_.n=d0 -_.U=d1 -_.a0=d2 -_.a3=d3 -_.a5=d4 -_.au=d5 -_.L=d6 -_.P=d7 -_.ao=d8 -_.av=d9 -_.b8=e0 -_.bL=e1 -_.bz=e2 -_.bE=e3 -_.bv=e4 -_.bU=e5 -_.aK=e6 -_.c_=e7 -_.bo=e8 -_.cB=e9 -_.bq=f0 -_.u=f1 -_.c0=f2 -_.dC=f3 -_.d4=f4 -_.ap=f5 -_.eN=f6 -_.bI=f7 -_.D=f8 -_.a4=f9 -_.am=g0 -_.bw=g1 -_.bQ=g2 -_.bR=g3}, -axh:function axh(a,b){this.a=a -this.b=b}, -axi:function axi(a,b){this.a=a -this.b=b}, -axf:function axf(a,b){this.a=a -this.b=b}, -axg:function axg(a){this.a=a}, -RK:function RK(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.CW=a -_.cx=b -_.x=c -_.a=d -_.b=e -_.c=f -_.d=g -_.e=h -_.f=i -_.r=j -_.w=k}, -aQt:function aQt(a){this.a=a}, -yv:function yv(a,b){this.a=a -this.b=b}, -a2v:function a2v(a,b,c){this.a=a -this.b=b -this.$ti=c}, -n4:function n4(a,b){this.a=a -this.b=b}, -a9x:function a9x(){}, -aal:function aal(){}, -bbU(a4,a5,a6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3 -if(a4===a5)return a4 -s=a4.d -if(s==null)r=a5.d==null -else r=!1 -if(r)s=null -else if(s==null)s=a5.d -else{r=a5.d -if(!(r==null)){s.toString -r.toString -s=A.bb(s,r,a6)}}r=A.k(a4.a,a5.a,a6) -q=A.kq(a4.b,a5.b,a6) -p=A.kq(a4.c,a5.c,a6) -o=a4.gvD() -n=a5.gvD() -o=A.k(o,n,a6) -n=t.KX.a(A.dy(a4.f,a5.f,a6)) -m=A.k(a4.r,a5.r,a6) -l=A.ag(a4.w,a5.w,a6) -k=A.k(a4.x,a5.x,a6) -j=A.k(a4.y,a5.y,a6) -i=A.k(a4.z,a5.z,a6) -h=A.ag(a4.Q,a5.Q,a6) -g=A.Y(a4.as,a5.as,a6) -f=A.k(a4.at,a5.at,a6) -e=A.ag(a4.ax,a5.ax,a6) -d=A.k(a4.ay,a5.ay,a6) -c=A.dy(a4.ch,a5.ch,a6) -b=A.k(a4.CW,a5.CW,a6) -a=A.ag(a4.cx,a5.cx,a6) -if(a6<0.5)a0=a4.gh3() -else a0=a5.gh3() -a1=A.aI(a4.db,a5.db,a6) -a2=A.dy(a4.dx,a5.dx,a6) -a3=A.b9(a4.dy,a5.dy,a6,A.cc(),t._) -return new A.Gc(r,q,p,s,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,A.b9(a4.fr,a5.fr,a6,A.zv(),t.p8))}, -Gc:function Gc(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4}, -axm:function axm(a){this.a=a}, -a9A:function a9A(){}, -bbV(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f -if(a===b)return a -s=A.ag(a.a,b.a,c) -r=A.dC(a.b,b.b,c) -q=A.k(a.c,b.c,c) -p=A.k(a.d,b.d,c) -o=A.k(a.e,b.e,c) -n=A.k(a.f,b.f,c) -m=A.k(a.r,b.r,c) -l=A.k(a.w,b.w,c) -k=A.k(a.y,b.y,c) -j=A.k(a.x,b.x,c) -i=A.k(a.z,b.z,c) -h=A.k(a.Q,b.Q,c) -g=A.k(a.as,b.as,c) -f=A.el(a.ax,b.ax,c) -return new A.Ge(s,r,q,p,o,n,m,l,j,k,i,h,g,A.Y(a.at,b.at,c),f)}, -Ge:function Ge(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o}, -a9C:function a9C(){}, -bbW(a,b){return new A.Gi(b,a,null)}, -aZZ(a){var s -A:{if(B.b5===a||B.bO===a||B.bP===a){s=12 -break A}if(B.as===a||B.bN===a||B.U===a){s=14 -break A}s=null}return s}, -Gi:function Gi(a,b,c){this.c=a -this.Q=b -this.a=c}, -Gj:function Gj(a,b,c){var _=this -_.d=a -_.f=_.e=$ -_.dK$=b -_.bu$=c -_.c=_.a=null}, -axs:function axs(a,b){this.a=a -this.b=b}, -a9D:function a9D(a,b,c,d,e,f,g,h){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.a=h}, -a9E:function a9E(){}, -bbY(a,b,c){var s,r,q,p,o,n,m,l,k,j -if(a===b)return a -s=A.Y(a.a,b.a,c) -r=A.dC(a.b,b.b,c) -q=A.aI(a.c,b.c,c) -p=A.aI(a.d,b.d,c) -o=A.Y(a.e,b.e,c) -n=c<0.5 -if(n)m=a.f -else m=b.f -if(n)l=a.r -else l=b.r -k=A.afe(a.w,b.w,c) -j=A.ag(a.x,b.x,c) -if(n)n=a.y -else n=b.y -return new A.Gk(s,r,q,p,o,m,l,k,j,n)}, -Gk:function Gk(a,b,c,d,e,f,g,h,i,j){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j}, -a9F:function a9F(){}, -bc2(a){return A.b_3(a,null,null,B.aeD,B.aew,B.aey)}, -b_3(a,b,c,d,e,f){switch(a){case B.U:b=B.aet -c=B.aeB -break -case B.as:case B.bN:b=B.aeG -c=B.aez -break -case B.bP:b=B.aeE -c=B.aex -break -case B.b5:b=B.aeH -c=B.aev -break -case B.bO:b=B.aeu -c=B.aeF -break -case null:case void 0:break}b.toString -c.toString -return new A.xR(b,c,d,e,f)}, -bc3(a,b,c){if(a===b)return a -return new A.xR(A.xJ(a.a,b.a,c),A.xJ(a.b,b.b,c),A.xJ(a.c,b.c,c),A.xJ(a.d,b.d,c),A.xJ(a.e,b.e,c))}, -Et:function Et(a,b){this.a=a -this.b=b}, -xR:function xR(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -aa6:function aa6(){}, -jv(a,b,c){var s,r,q -if(a==b)return a -if(a==null)return b.ak(0,c) -if(b==null)return a.ak(0,1-c) -if(a instanceof A.dn&&b instanceof A.dn)return A.Mm(a,b,c) -if(a instanceof A.eK&&b instanceof A.eK)return A.b5x(a,b,c) -s=A.Y(a.gi5(),b.gi5(),c) -s.toString -r=A.Y(a.gi4(),b.gi4(),c) -r.toString -q=A.Y(a.gi6(),b.gi6(),c) -q.toString -return new A.Ix(s,r,q)}, -Mm(a,b,c){var s,r -if(a==b)return a -if(a==null){s=A.Y(0,b.a,c) -s.toString -r=A.Y(0,b.b,c) -r.toString -return new A.dn(s,r)}if(b==null){s=A.Y(a.a,0,c) -s.toString -r=A.Y(a.b,0,c) -r.toString -return new A.dn(s,r)}s=A.Y(a.a,b.a,c) -s.toString -r=A.Y(a.b,b.b,c) -r.toString -return new A.dn(s,r)}, -aQ7(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g=null -A:{s=-1===a -r=s -q=g -if(r){q=-1===b -r=q -p=b -o=!0 -n=!0}else{p=g -o=!1 -n=!1 -r=!1}if(r){r="Alignment.topLeft" -break A}m=0===a -r=m -if(r)if(o)r=q -else{if(n)r=p -else{r=b -p=r -n=!0}q=-1===r -r=q -o=!0}else r=!1 -if(r){r="Alignment.topCenter" -break A}l=1===a -r=l -if(r)if(o)r=q -else{if(n)r=p -else{r=b -p=r -n=!0}q=-1===r -r=q}else r=!1 -if(r){r="Alignment.topRight" -break A}k=g -if(s){if(n)r=p -else{r=b -p=r -n=!0}k=0===r -r=k -j=!0}else{j=!1 -r=!1}if(r){r="Alignment.centerLeft" -break A}if(m)if(j)r=k -else{if(n)r=p -else{r=b -p=r -n=!0}k=0===r -r=k -j=!0}else r=!1 -if(r){r="Alignment.center" -break A}if(l)if(j)r=k -else{if(n)r=p -else{r=b -p=r -n=!0}k=0===r -r=k}else r=!1 -if(r){r="Alignment.centerRight" -break A}i=g -if(s){if(n)r=p -else{r=b -p=r -n=!0}i=1===r -r=i -h=!0}else{h=!1 -r=!1}if(r){r="Alignment.bottomLeft" -break A}if(m)if(h)r=i -else{if(n)r=p -else{r=b -p=r -n=!0}i=1===r -r=i -h=!0}else r=!1 -if(r){r="Alignment.bottomCenter" -break A}if(l)if(h)r=i -else{i=1===(n?p:b) -r=i}else r=!1 -if(r){r="Alignment.bottomRight" -break A}r="Alignment("+B.d.aq(a,1)+", "+B.d.aq(b,1)+")" -break A}return r}, -b5x(a,b,c){var s,r -if(a===b)return a -s=A.Y(a.a,b.a,c) -s.toString -r=A.Y(a.b,b.b,c) -r.toString -return new A.eK(s,r)}, -aQ6(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g=null -A:{s=-1===a -r=s -q=g -if(r){q=-1===b -r=q -p=b -o=!0 -n=!0}else{p=g -o=!1 -n=!1 -r=!1}if(r){r="AlignmentDirectional.topStart" -break A}m=0===a -r=m -if(r)if(o)r=q -else{if(n)r=p -else{r=b -p=r -n=!0}q=-1===r -r=q -o=!0}else r=!1 -if(r){r="AlignmentDirectional.topCenter" -break A}l=1===a -r=l -if(r)if(o)r=q -else{if(n)r=p -else{r=b -p=r -n=!0}q=-1===r -r=q}else r=!1 -if(r){r="AlignmentDirectional.topEnd" -break A}k=g -if(s){if(n)r=p -else{r=b -p=r -n=!0}k=0===r -r=k -j=!0}else{j=!1 -r=!1}if(r){r="AlignmentDirectional.centerStart" -break A}if(m)if(j)r=k -else{if(n)r=p -else{r=b -p=r -n=!0}k=0===r -r=k -j=!0}else r=!1 -if(r){r="AlignmentDirectional.center" -break A}if(l)if(j)r=k -else{if(n)r=p -else{r=b -p=r -n=!0}k=0===r -r=k}else r=!1 -if(r){r="AlignmentDirectional.centerEnd" -break A}i=g -if(s){if(n)r=p -else{r=b -p=r -n=!0}i=1===r -r=i -h=!0}else{h=!1 -r=!1}if(r){r="AlignmentDirectional.bottomStart" -break A}if(m)if(h)r=i -else{if(n)r=p -else{r=b -p=r -n=!0}i=1===r -r=i -h=!0}else r=!1 -if(r){r="AlignmentDirectional.bottomCenter" -break A}if(l)if(h)r=i -else{i=1===(n?p:b) -r=i}else r=!1 -if(r){r="AlignmentDirectional.bottomEnd" -break A}r="AlignmentDirectional("+B.d.aq(a,1)+", "+B.d.aq(b,1)+")" -break A}return r}, -hk:function hk(){}, -dn:function dn(a,b){this.a=a -this.b=b}, -eK:function eK(a,b){this.a=a -this.b=b}, -Ix:function Ix(a,b,c){this.a=a -this.b=b -this.c=c}, -YF:function YF(a){this.a=a}, -b1E(a){var s -switch(a.a){case 0:s=B.L -break -case 1:s=B.am -break -default:s=null}return s}, -bg(a){var s -A:{if(B.b_===a||B.aV===a){s=B.L -break A}if(B.bh===a||B.cl===a){s=B.am -break A}s=null}return s}, -aTD(a){var s -switch(a.a){case 0:s=B.bh -break -case 1:s=B.cl -break -default:s=null}return s}, -bjT(a){var s -switch(a.a){case 0:s=B.aV -break -case 1:s=B.bh -break -case 2:s=B.b_ -break -case 3:s=B.cl -break -default:s=null}return s}, -LO(a){var s -A:{if(B.b_===a||B.bh===a){s=!0 -break A}if(B.aV===a||B.cl===a){s=!1 -break A}s=null}return s}, -DU:function DU(a,b){this.a=a -this.b=b}, -MA:function MA(a,b){this.a=a -this.b=b}, -Z9:function Z9(a,b){this.a=a -this.b=b}, -uJ:function uJ(a,b){this.a=a -this.b=b}, -apl:function apl(){}, -a94:function a94(a){this.a=a}, -fj(a,b,c){if(a==b)return a -if(a==null)a=B.ah -return a.G(0,(b==null?B.ah:b).E2(a).ak(0,c))}, -MO(a){return new A.ch(a,a,a,a)}, -bK(a){var s=new A.aR(a,a) -return new A.ch(s,s,s,s)}, -aUT(a){return new A.ch(a,a,B.H,B.H)}, -el(a,b,c){var s,r,q,p -if(a==b)return a -if(a==null)return b.ak(0,c) -if(b==null)return a.ak(0,1-c) -s=A.wC(a.a,b.a,c) -s.toString -r=A.wC(a.b,b.b,c) -r.toString -q=A.wC(a.c,b.c,c) -q.toString -p=A.wC(a.d,b.d,c) -p.toString -return new A.ch(s,r,q,p)}, -A8:function A8(){}, -ch:function ch(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Iy:function Iy(a,b,c,d,e,f,g,h){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h}, -jx(a,b){var s=a.c,r=s===B.aW&&a.b===0,q=b.c===B.aW&&b.b===0 -if(r&&q)return B.x -if(r)return b -if(q)return a -return new A.bl(a.a,a.b+b.b,s,Math.max(a.d,b.d))}, -lG(a,b){var s,r=a.c -if(!(r===B.aW&&a.b===0))s=b.c===B.aW&&b.b===0 -else s=!0 -if(s)return!0 -return r===b.c&&a.a.j(0,b.a)}, -bb(a,b,c){var s,r,q,p,o -if(a===b)return a -if(c===0)return a -if(c===1)return b -s=A.Y(a.b,b.b,c) -s.toString -if(s<0)return B.x -r=a.c -q=b.c -if(r===q&&a.d===b.d){q=A.k(a.a,b.a,c) -q.toString -return new A.bl(q,s,r,a.d)}switch(r.a){case 1:r=a.a -break -case 0:r=a.a.e_(0) -break -default:r=null}switch(q.a){case 1:q=b.a -break -case 0:q=b.a.e_(0) -break -default:q=null}p=a.d -o=b.d -if(p!==o){r=A.k(r,q,c) -r.toString -o=A.Y(p,o,c) -o.toString -return new A.bl(r,s,B.F,o)}r=A.k(r,q,c) -r.toString -return new A.bl(r,s,B.F,p)}, -dy(a,b,c){var s,r -if(a==b)return a -s=b==null?null:b.dW(a,c) -if(s==null)s=a==null?null:a.dX(b,c) -if(s==null)r=c<0.5?a:b -else r=s -return r}, -aRu(a,b,c){var s,r -if(a==b)return a -s=b==null?null:b.dW(a,c) -if(s==null)s=a==null?null:a.dX(b,c) -if(s==null)r=c<0.5?a:b -else r=s -return r}, -b_r(a,b,c){var s,r,q,p,o,n,m=a instanceof A.jg?a.a:A.c([a],t.Fi),l=b instanceof A.jg?b.a:A.c([b],t.Fi),k=A.c([],t.N_),j=Math.max(m.length,l.length) -for(s=1-c,r=0;r>>16&255)/255,o=(a.A()>>>8&255)/255,n=(a.A()&255)/255,m=Math.max(p,Math.max(o,n)),l=Math.min(p,Math.min(o,n)),k=m-l,j=a.A(),i=A.bQ() -if(m===0)i.b=0 -else if(m===p)i.b=60*B.d.cn((o-n)/k,6) -else if(m===o)i.b=60*((n-p)/k+2) -else if(m===n)i.b=60*((p-o)/k+4) -i.b=isNaN(i.bc())?0:i.bc() -s=i.bc() -r=(m+l)/2 -q=l===m?0:A.E(k/(1-Math.abs(2*r-1)),0,1) -return new A.vG((j>>>24&255)/255,s,q,r)}, -vG:function vG(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -nG:function nG(){}, -afe(a,b,c){var s,r=null -if(a==b)return a -if(a==null){s=b.dW(r,c) -return s==null?b:s}if(b==null){s=a.dX(r,c) -return s==null?a:s}if(c===0)return a -if(c===1)return b -s=b.dW(a,c) -if(s==null)s=a.dX(b,c) -if(s==null)if(c<0.5){s=a.dX(r,c*2) -if(s==null)s=a}else{s=b.dW(r,(c-0.5)*2) -if(s==null)s=b}return s}, -iW:function iW(){}, -MS:function MS(){}, -a1Q:function a1Q(){}, -afd(a,b,c){if(a==b||c===0)return a -if(c===1)return b -return new A.a0N(a,b,c)}, -a0N:function a0N(a,b,c){this.a=a -this.b=b -this.c=c}, -azK:function azK(a,b,c){this.a=a -this.b=b -this.c=c}, -aI(a,b,c){var s,r,q,p,o,n -if(a==b)return a -if(a==null)return b.ak(0,c) -if(b==null)return a.ak(0,1-c) -if(a instanceof A.a2&&b instanceof A.a2)return A.Bm(a,b,c) -if(a instanceof A.dt&&b instanceof A.dt)return A.b7y(a,b,c) -s=A.Y(a.gfQ(),b.gfQ(),c) -s.toString -r=A.Y(a.gfR(),b.gfR(),c) -r.toString -q=A.Y(a.gi_(),b.gi_(),c) -q.toString -p=A.Y(a.gi0(),b.gi0(),c) -p.toString -o=A.Y(a.gcR(),b.gcR(),c) -o.toString -n=A.Y(a.gcX(),b.gcX(),c) -n.toString -return new A.p9(s,r,q,p,o,n)}, -agi(a,b){return new A.a2(a.a/b,a.b/b,a.c/b,a.d/b)}, -Bm(a,b,c){var s,r,q,p -if(a==b)return a -if(a==null)return b.ak(0,c) -if(b==null)return a.ak(0,1-c) -s=A.Y(a.a,b.a,c) -s.toString -r=A.Y(a.b,b.b,c) -r.toString -q=A.Y(a.c,b.c,c) -q.toString -p=A.Y(a.d,b.d,c) -p.toString -return new A.a2(s,r,q,p)}, -b7y(a,b,c){var s,r,q,p -if(a===b)return a -s=A.Y(a.a,b.a,c) -s.toString -r=A.Y(a.b,b.b,c) -r.toString -q=A.Y(a.c,b.c,c) -q.toString -p=A.Y(a.d,b.d,c) -p.toString -return new A.dt(s,r,q,p)}, -dh:function dh(){}, -a2:function a2(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -dt:function dt(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -p9:function p9(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -b14(a,b,c){var s,r,q,p,o -if(c<=B.b.gad(b))return B.b.gad(a) -if(c>=B.b.gaC(b))return B.b.gaC(a) -s=B.b.auW(b,new A.aO8(c)) -r=a[s] -q=s+1 -p=a[q] -o=b[s] -o=A.k(r,p,(c-o)/(b[q]-o)) -o.toString -return o}, -bi1(a,b,c,d,e){var s,r,q=A.avM(null,null,t.i) -q.a_(0,b) -q.a_(0,d) -s=A.aa(q,q.$ti.c) -s.$flags=1 -r=s -s=A.a6(r).i("am<1,x>") -s=A.aa(new A.am(r,new A.aNF(a,b,c,d,e),s),s.i("aE.E")) -s.$flags=1 -return new A.aAB(s,r)}, -vF(a,b,c){var s -if(a==b)return a -s=b!=null?b.dW(a,c):null -if(s==null&&a!=null)s=a.dX(b,c) -if(s!=null)return s -return c<0.5?a.bi(1-c*2):b.bi((c-0.5)*2)}, -aWE(a,b,c){var s,r,q,p,o -if(a==b)return a -if(a==null)return b.bi(c) -if(b==null)return a.bi(1-c) -s=A.bi1(a.a,a.Gn(),b.a,b.Gn(),c) -r=A.jv(a.d,b.d,c) -r.toString -q=A.jv(a.e,b.e,c) -q.toString -p=c<0.5 -o=p?a.f:b.f -p=p?a.c:b.c -return new A.ia(r,q,o,s.a,s.b,p)}, -aAB:function aAB(a,b){this.a=a -this.b=b}, -aO8:function aO8(a){this.a=a}, -aNF:function aNF(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -ajb:function ajb(){}, -ia:function ia(a,b,c,d,e,f){var _=this -_.d=a -_.e=b -_.f=c -_.a=d -_.b=e -_.c=f}, -al3:function al3(a){this.a=a}, -ak0:function ak0(a,b,c){this.a=a -this.b=b -this.c=c}, -C0:function C0(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -aWk(a,b,c,d,e){return new A.ma(a,d,c,b,!1,!1,e)}, -aTe(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=null,e=A.c([],t.O_),d=t.oU,c=A.c([],d) -for(s=a.length,r="",q="",p=0;pq.gH(b)?r.gH(a):q.gH(b))){n=t.N -m=A.dv(n) -l=t.kr -k=A.h0(f,f,f,n,l) -for(j=o;j")),r=r.c;q.v();){n=q.d -if(n==null)n=r.a(n) -g=A.aW4(k.h(0,n),i.h(0,n),c) -if(g!=null)s.push(g)}}return s}, -q:function q(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6}, -axc:function axc(a){this.a=a}, -a9u:function a9u(){}, -b0R(a,b,c,d,e){var s,r -for(s=c,r=0;r0){n=-n -l=2*l -s=(n-Math.sqrt(j))/l -r=(n+Math.sqrt(j))/l -q=(c-s*b)/(r-s) -l=new A.aF4(s,r,b-q,q) -n=l -break A}if(j<0){p=Math.sqrt(k-m)/(2*l) -o=-(n/2/l) -n=new A.aLj(p,o,b,(c-o*b)/p) -break A}o=-n/(2*l) -n=new A.aAG(o,b,c-o*b) -break A}return n}, -avN:function avN(a,b,c){this.a=a -this.b=b -this.c=c}, -Fy:function Fy(a,b){this.a=a -this.b=b}, -ts:function ts(a,b,c){this.b=a -this.c=b -this.a=c}, -rY:function rY(a,b,c){this.b=a -this.c=b -this.a=c}, -aAG:function aAG(a,b,c){this.a=a -this.b=b -this.c=c}, -aF4:function aF4(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aLj:function aLj(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Gg:function Gg(a,b){this.a=a -this.c=b}, -baj(a,b,c,d,e,f,g,h){var s=null,r=new A.DR(new A.Y1(s,s),B.HK,b,h,A.at(),a,g,s,new A.b8(),A.at()) -r.be() -r.sR(s) -r.a8p(a,s,b,c,d,e,f,g,h) -return r}, -wJ:function wJ(a,b){this.a=a -this.b=b}, -DR:function DR(a,b,c,d,e,f,g,h,i,j){var _=this -_.ci=_.bX=$ -_.c9=a -_.ea=$ -_.eb=null -_.fE=b -_.fk=c -_.m7=d -_.as8=null -_.JU=$ -_.YW=e -_.D=null -_.a4=f -_.am=g -_.u$=h -_.dy=i -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=j -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -aqD:function aqD(a){this.a=a}, -bd0(a){}, -Ee:function Ee(){}, -arN:function arN(a){this.a=a}, -arP:function arP(a){this.a=a}, -arO:function arO(a){this.a=a}, -arM:function arM(a){this.a=a}, -arL:function arL(a){this.a=a}, -H2:function H2(a,b){var _=this -_.a=a -_.L$=0 -_.P$=b -_.av$=_.ao$=0}, -a1S:function a1S(a,b,c,d,e,f,g,h){var _=this -_.b=a -_.c=b -_.d=c -_.e=null -_.f=!1 -_.r=d -_.z=e -_.Q=f -_.at=null -_.ch=g -_.CW=h -_.cx=null}, -a6_:function a6_(a,b,c,d){var _=this -_.U=!1 -_.dy=a -_.fr=null -_.fx=b -_.go=null -_.u$=c -_.b=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -pM(a){var s=a.a,r=a.b -return new A.al(s,s,r,r)}, -lH(a,b){var s,r,q=b==null,p=q?0:b -q=q?1/0:b -s=a==null -r=s?0:a -return new A.al(p,q,r,s?1/0:a)}, -pN(a,b){var s,r,q=b!==1/0,p=q?b:0 -q=q?b:1/0 -s=a!==1/0 -r=s?a:0 -return new A.al(p,q,r,s?a:1/0)}, -adb(a){return new A.al(0,a.a,0,a.b)}, -dC(a,b,c){var s,r,q,p -if(a==b)return a -if(a==null)return b.ak(0,c) -if(b==null)return a.ak(0,1-c) -s=a.a -if(isFinite(s)){s=A.Y(s,b.a,c) -s.toString}else s=1/0 -r=a.b -if(isFinite(r)){r=A.Y(r,b.b,c) -r.toString}else r=1/0 -q=a.c -if(isFinite(q)){q=A.Y(q,b.c,c) -q.toString}else q=1/0 -p=a.d -if(isFinite(p)){p=A.Y(p,b.d,c) -p.toString}else p=1/0 -return new A.al(s,r,q,p)}, -aV1(a){return new A.nB(a.a,a.b,a.c)}, -b5K(a,b){return a==null?null:a+b}, -A6(a,b){var s,r,q,p,o,n -A:{s=a!=null -r=null -q=!1 -if(s){q=b!=null -r=b -p=a}else p=null -o=null -if(q){n=s?r:b -q=p>=(n==null?A.cG(n):n)?b:a -break A}q=!1 -if(a!=null){if(s)q=r -else{q=b -r=q -s=!0}q=q==null -p=a}else p=o -if(q){q=p -break A}q=a==null -if(q)if(!s){r=b -s=!0}if(q){n=s?r:b -q=n -break A}q=o}return q}, -al:function al(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -adc:function adc(){}, -nB:function nB(a,b,c){this.a=a -this.b=b -this.c=c}, -lI:function lI(a,b){this.c=a -this.a=b -this.b=null}, -eM:function eM(a){this.a=a}, -AI:function AI(){}, -aBu:function aBu(){}, -aBv:function aBv(a,b){this.a=a -this.b=b}, -azI:function azI(){}, -azJ:function azJ(a,b){this.a=a -this.b=b}, -tZ:function tZ(a,b){this.a=a -this.b=b}, -aDB:function aDB(a,b){this.a=a -this.b=b}, -b8:function b8(){var _=this -_.d=_.c=_.b=_.a=null}, -A:function A(){}, -aqF:function aqF(a){this.a=a}, -dH:function dH(){}, -aqE:function aqE(a){this.a=a}, -Hj:function Hj(){}, -ih:function ih(a,b,c){var _=this -_.e=null -_.cS$=a -_.aJ$=b -_.a=c}, -aoc:function aoc(){}, -DW:function DW(a,b,c,d,e,f){var _=this -_.n=a -_.dJ$=b -_.al$=c -_.dn$=d -_.dy=e -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=f -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -J9:function J9(){}, -a5z:function a5z(){}, -aXF(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f -if(a==null)a=B.no -s=J.bk(a) -r=s.gH(a)-1 -q=A.bO(0,null,!1,t.LQ) -p=0<=r -for(;;){if(!!1)break -s.h(a,0) -b[0].gBQ() -break}for(;;){if(!!1)break -s.h(a,r) -b[-1].gBQ() -break}o=A.bQ() -n=0 -if(p){o.sed(A.t(t.D2,t.bu)) -for(m=o.a;n<=r;){l=s.h(a,n) -k=l.a -if(k!=null){j=o.b -if(j===o)A.a0(A.qT(m)) -J.lw(j,k,l)}++n}}for(m=o.a,i=0;!1;){h=b[i] -l=null -if(p){g=h.gBQ() -k=o.b -if(k===o)A.a0(A.qT(m)) -f=J.iQ(k,g) -if(f!=null)h.gBQ() -else l=f}q[i]=A.aXE(l,h);++i}s.gH(a) -for(;;){if(!!1)break -q[i]=A.aXE(s.h(a,n),b[i]);++i;++n}return new A.fk(q,A.a6(q).i("fk<1,cM>"))}, -aXE(a,b){var s=a==null?A.EN(b.gBQ(),null):a,r=b.ga0N(),q=A.hD() -r.gayc() -q.aH=r.gayc() -q.r=!0 -r.ga3C() -q.p3=r.ga3C() -q.r=!0 -r.gapr() -q.sauz(r.gapr()) -r.gavK() -q.sauy(r.gavK()) -r.gtN() -q.sauP(r.gtN()) -r.gapc() -q.sa_u(r.gapc()) -r.gas1() -q.sauB(r.gas1()) -r.gpN() -q.sauK(r.gpN()) -r.gL1() -q.sL1(r.gL1()) -r.gayt() -q.sa_H(r.gayt()) -r.ga3A() -q.sauQ(r.ga3A()) -r.gauV() -q.sauJ(r.gauV()) -r.gLP() -q.sa_E(r.gLP()) -r.gasy() -q.sKR(r.gasy()) -r.gasz() -q.spI(r.gasz()) -r.gzO() -q.szO(r.gzO()) -r.gnK() -q.sa_x(r.gnK()) -r.gau6() -q.sauF(r.gau6()) -r.gpV() -q.sa_B(r.gpV()) -r.gavO() -q.sa_A(r.gavO()) -r.gatN() -q.sa_z(r.gatN()) -r.gatK() -q.sa_y(r.gatK()) -r.gKE() -q.sKE(r.gKE()) -r.gxt() -q.sxt(r.gxt()) -r.gC0() -q.sC0(r.gC0()) -r.gBW() -q.sBW(r.gBW()) -r.gKV() -q.sKV(r.gKV()) -r.gLa() -q.sLa(r.gLa()) -r.gAy() -q.sAy(r.gAy()) -r.gayz() -q.sa_J(r.gayz()) -r.gau4() -q.sauE(r.gau4()) -r.gKY() -q.aB=new A.d8(r.gKY(),B.aY) -q.r=!0 -r.gp() -q.n=new A.d8(r.gp(),B.aY) -q.r=!0 -r.gaug() -q.U=new A.d8(r.gaug(),B.aY) -q.r=!0 -r.garg() -q.a0=new A.d8(r.garg(),B.aY) -q.r=!0 -r.gKF() -q.a3=new A.d8(r.gKF(),B.aY) -q.r=!0 -r.gau3() -q.xr=r.gau3() -q.r=!0 -r.gD5() -q.sD5(r.gD5()) -r.gD4() -q.sD4(r.gD4()) -r.gayD() -q.a5=r.gayD() -q.r=!0 -r.gKG() -q.sKG(r.gKG()) -r.gayn() -q.zW(r.gayn()) -r.gapT() -q.bv=r.gapT() -q.r=!0 -r.gKF() -q.a3=new A.d8(r.gKF(),B.aY) -q.r=!0 -r.gce() -q.L=r.gce() -q.r=!0 -r.gaz2() -q.bU=r.gaz2() -q.r=!0 -r.gatV() -q.aK=r.gatV() -q.r=!0 -r.gaum() -q.c_=r.gaum() -q.r=!0 -r.gavI() -q.cB=r.gavI() -q.r=!0 -r.gavB() -q.bo=r.gavB() -q.r=!0 -r.glg() -q.slg(r.glg()) -r.go0() -q.so0(r.go0()) -r.gCl() -q.sCl(r.gCl()) -r.gCm() -q.sCm(r.gCm()) -r.gCn() -q.sCn(r.gCn()) -r.gCk() -q.sCk(r.gCk()) -r.gLs() -q.sLs(r.gLs()) -r.gLo() -q.sLo(r.gLo()) -r.gC3() -q.sC3(r.gC3()) -r.gC4() -q.sC4(r.gC4()) -r.gCh() -q.sCh(r.gCh()) -r.gCf() -q.sCf(r.gCf()) -r.gCd() -q.sCd(r.gCd()) -r.gCg() -q.sCg(r.gCg()) -r.gCe() -q.sCe(r.gCe()) -r.gCo() -q.sCo(r.gCo()) -r.gCp() -q.sCp(r.gCp()) -r.gC5() -q.sC5(r.gC5()) -r.gC6() -q.sC6(r.gC6()) -r.gCa() -q.sCa(r.gCa()) -r.gC7() -q.sC7(r.gC7()) -r.gLq() -q.sLq(r.gLq()) -r.gLm() -q.sLm(r.gLm()) -s.mE(B.no,q) -s.sbS(b.gbS()) -s.scC(b.gcC()) -s.fx=b.gaA1() -return s}, -Pv:function Pv(){}, -DX:function DX(a,b,c,d,e,f,g,h){var _=this -_.D=a -_.a4=b -_.am=c -_.bw=d -_.bQ=e -_.fF=_.h2=_.ec=_.bR=null -_.u$=f -_.dy=g -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=h -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -Py:function Py(){}, -aXG(a,b){return new A.h(A.E(a.a,b.a,b.c),A.E(a.b,b.b,b.d))}, -b_Q(a){var s=new A.a5A(a,new A.b8(),A.at()) -s.be() -return s}, -b_Z(){$.ab() -return new A.Kq(A.bt(),B.fW,B.d4,$.af())}, -tA:function tA(a,b){this.a=a -this.b=b}, -axP:function axP(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=!0 -_.r=f}, -rN:function rN(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6){var _=this -_.a3=_.a0=_.U=_.n=null -_.a5=$ -_.au=a -_.L=b -_.ao=_.P=null -_.av=c -_.b8=d -_.bL=e -_.bz=f -_.bE=g -_.bv=h -_.bU=i -_.aK=j -_.cB=_.bo=_.c_=null -_.bq=k -_.u=l -_.c0=m -_.dC=n -_.d4=o -_.ap=p -_.eN=q -_.bI=r -_.D=s -_.a4=a0 -_.am=a1 -_.bw=a2 -_.bQ=a3 -_.bR=a4 -_.ec=a5 -_.fF=!1 -_.pu=$ -_.kk=a6 -_.ev=0 -_.dq=a7 -_.rQ=_.mc=_.ew=null -_.Z9=_.Z8=$ -_.asi=_.w1=_.fm=null -_.md=$ -_.eO=a8 -_.vS=null -_.pp=!0 -_.AZ=_.rJ=_.rI=_.vT=!1 -_.cg=null -_.dI=a9 -_.bX=b0 -_.dJ$=b1 -_.al$=b2 -_.dn$=b3 -_.B5$=b4 -_.dy=b5 -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=b6 -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -ar0:function ar0(a){this.a=a}, -ar_:function ar_(){}, -aqX:function aqX(a,b){this.a=a -this.b=b}, -ar1:function ar1(){}, -aqZ:function aqZ(){}, -aqY:function aqY(){}, -a5A:function a5A(a,b,c){var _=this -_.n=a -_.dy=b -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=c -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -or:function or(){}, -Kq:function Kq(a,b,c,d){var _=this -_.r=a -_.x=_.w=null -_.y=b -_.z=c -_.L$=0 -_.P$=d -_.av$=_.ao$=0}, -H8:function H8(a,b,c){var _=this -_.r=!0 -_.w=!1 -_.x=a -_.y=$ -_.Q=_.z=null -_.as=b -_.ax=_.at=null -_.L$=0 -_.P$=c -_.av$=_.ao$=0}, -yc:function yc(a,b){var _=this -_.r=a -_.L$=0 -_.P$=b -_.av$=_.ao$=0}, -Jb:function Jb(){}, -Jc:function Jc(){}, -a5B:function a5B(){}, -DZ:function DZ(a,b,c){var _=this -_.n=a -_.U=$ -_.dy=b -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=c -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -azD(a,b){var s -switch(b.a){case 0:s=a -break -case 1:s=new A.L(a.b,a.a) -break -default:s=null}return s}, -bcT(a,b,c){var s -switch(c.a){case 0:s=b -break -case 1:s=b.gZh() -break -default:s=null}return s.bx(a)}, -bcS(a,b){return new A.L(a.a+b.a,Math.max(a.b,b.b))}, -b_m(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=null -A:{s=a==null -if(s){r=b -q=r}else{r=d -q=r}if(!s){p=!1 -p=b==null -q=b -r=a -s=!0}else p=!0 -if(p){p=r -break A}p=t.mi -o=d -n=!1 -m=d -l=d -k=d -j=!1 -if(p.b(a)){i=!0 -h=a.a -g=h -if(typeof g=="number"){A.cG(h) -f=a.b -g=f -if(typeof g=="number"){A.cG(f) -if(s)g=q -else{g=b -s=i -q=g}if(p.b(g)){if(s)g=q -else{g=b -s=i -q=g}e=(g==null?p.a(g):g).a -g=e -n=typeof g=="number" -if(n){A.cG(e) -if(s)j=q -else{j=b -s=i -q=j}o=(j==null?p.a(j):j).b -j=o -j=typeof j=="number" -k=e}}l=f}m=h}}if(j){if(n)p=o -else{j=s?q:b -o=(j==null?p.a(j):j).b -p=o}A.cG(p) -a=new A.an(Math.max(A.hP(m),A.hP(k)),Math.max(A.hP(l),p)) -p=a -break A}p=d}return p}, -bal(a,b,c,d,e,f,g,h,i){var s,r=null,q=A.at(),p=J.aR9(4,t.iy) -for(s=0;s<4;++s)p[s]=new A.xG(r,B.aN,B.i,new A.iJ(1),r,r,r,r,B.al,r) -q=new A.E_(c,d,e,b,h,i,g,a,f,q,p,!0,0,r,r,new A.b8(),A.at()) -q.be() -q.a_(0,r) -return q}, -aXH(a){var s=a.b -s.toString -s=t.J.a(s).e -return s==null?0:s}, -aDL:function aDL(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Qj:function Qj(a,b){this.a=a -this.b=b}, -dP:function dP(a,b,c){var _=this -_.f=_.e=null -_.cS$=a -_.aJ$=b -_.a=c}, -RH:function RH(a,b){this.a=a -this.b=b}, -o8:function o8(a,b){this.a=a -this.b=b}, -q3:function q3(a,b){this.a=a -this.b=b}, -E_:function E_(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this -_.n=a -_.U=b -_.a0=c -_.a3=d -_.a5=e -_.au=f -_.L=g -_.P=0 -_.ao=h -_.av=i -_.b8=j -_.JX$=k -_.asa$=l -_.dJ$=m -_.al$=n -_.dn$=o -_.dy=p -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=q -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -ar4:function ar4(a,b){this.a=a -this.b=b}, -ar8:function ar8(){}, -ar6:function ar6(){}, -ar7:function ar7(){}, -ar5:function ar5(){}, -ar3:function ar3(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -ar2:function ar2(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -a5D:function a5D(){}, -a5E:function a5E(){}, -Jd:function Jd(){}, -ak1:function ak1(){}, -a21:function a21(a){this.a=a}, -at(){return new A.Rr()}, -aX7(a){return new A.jT(a,A.t(t.S,t.M),A.at())}, -aSi(a,b){return new A.xQ(b,a,A.t(t.S,t.M),A.at())}, -aRt(){return new A.TZ(B.f,A.t(t.S,t.M),A.at())}, -aUR(a){return new A.A3(a,B.c8,A.t(t.S,t.M),A.at())}, -al2(a,b){return new A.Cs(a,b,A.t(t.S,t.M),A.at())}, -aW3(a){var s,r,q=new A.bc(new Float64Array(16)) -q.ei() -for(s=a.length-1;s>0;--s){r=a[s] -if(r!=null)r.rj(a[s-1],q)}return q}, -aif(a,b,c,d){var s,r -if(a==null||b==null)return null -if(a===b)return a -s=a.z -r=b.z -if(sr){c.push(a.r) -return A.aif(a.r,b,c,d)}c.push(a.r) -d.push(b.r) -return A.aif(a.r,b.r,c,d)}, -zV:function zV(a,b,c){this.a=a -this.b=b -this.$ti=c}, -Mt:function Mt(a,b){this.a=a -this.$ti=b}, -eR:function eR(){}, -akY:function akY(a,b){this.a=a -this.b=b}, -akZ:function akZ(a,b){this.a=a -this.b=b}, -Rr:function Rr(){this.a=null}, -Ue:function Ue(a,b,c){var _=this -_.ax=a -_.ay=null -_.CW=_.ch=!1 -_.a=b -_.b=0 -_.e=c -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.as=_.Q=null}, -fl:function fl(){}, -jT:function jT(a,b,c){var _=this -_.k3=a -_.ay=_.ax=null -_.a=b -_.b=0 -_.e=c -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.as=_.Q=null}, -Az:function Az(a,b,c){var _=this -_.k3=null -_.k4=a -_.ay=_.ax=null -_.a=b -_.b=0 -_.e=c -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.as=_.Q=null}, -Ay:function Ay(a,b,c){var _=this -_.k3=null -_.k4=a -_.ay=_.ax=null -_.a=b -_.b=0 -_.e=c -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.as=_.Q=null}, -Ax:function Ax(a,b,c){var _=this -_.k3=null -_.k4=a -_.ay=_.ax=null -_.a=b -_.b=0 -_.e=c -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.as=_.Q=null}, -C1:function C1(a,b,c,d){var _=this -_.aH=a -_.k3=b -_.ay=_.ax=null -_.a=c -_.b=0 -_.e=d -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.as=_.Q=null}, -xQ:function xQ(a,b,c,d){var _=this -_.aH=a -_.n=_.aB=null -_.U=!0 -_.k3=b -_.ay=_.ax=null -_.a=c -_.b=0 -_.e=d -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.as=_.Q=null}, -TZ:function TZ(a,b,c){var _=this -_.aH=null -_.k3=a -_.ay=_.ax=null -_.a=b -_.b=0 -_.e=c -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.as=_.Q=null}, -A3:function A3(a,b,c,d){var _=this -_.k3=a -_.k4=b -_.ay=_.ax=_.ok=null -_.a=c -_.b=0 -_.e=d -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.as=_.Q=null}, -vV:function vV(){this.d=this.a=null}, -Cs:function Cs(a,b,c,d){var _=this -_.k3=a -_.k4=b -_.ay=_.ax=null -_.a=c -_.b=0 -_.e=d -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.as=_.Q=null}, -BL:function BL(a,b,c,d,e,f){var _=this -_.k3=a -_.k4=b -_.ok=c -_.p1=d -_.p4=_.p3=_.p2=null -_.R8=!0 -_.ay=_.ax=null -_.a=e -_.b=0 -_.e=f -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.as=_.Q=null}, -zU:function zU(a,b,c,d,e,f){var _=this -_.k3=a -_.k4=b -_.ok=c -_.ay=_.ax=null -_.a=d -_.b=0 -_.e=e -_.f=0 -_.r=null -_.w=!0 -_.y=_.x=null -_.z=0 -_.as=_.Q=null -_.$ti=f}, -a3q:function a3q(){}, -b9i(a,b){var s -if(a==null)return!0 -s=a.b -if(t.ks.b(b))return!1 -return t.ge.b(s)||t.PB.b(b)||!s.gbV().j(0,b.gbV())}, -b9h(a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=a5.d -if(a4==null)a4=a5.c -s=a5.a -r=a5.b -q=a4.gog() -p=a4.gja() -o=a4.gbM() -n=a4.gdd() -m=a4.giX() -l=a4.gbV() -k=a4.gm1() -j=a4.ge7() -a4.gpV() -i=a4.gtb() -h=a4.gq1() -g=a4.gd3() -f=a4.gvK() -e=a4.gC() -d=a4.gwN() -c=a4.gwQ() -b=a4.gwP() -a=a4.gwO() -a0=a4.gmr() -a1=a4.gwY() -s.aL(0,new A.ao5(r,A.aXk(j,k,m,g,f,a4.grC(),0,n,!1,a0,o,l,h,i,d,a,b,c,e,a4.goG(),a1,p,q).bW(a4.gcC()),s)) -q=A.n(r).i("bD<1>") -p=q.i("b1") -a2=A.aa(new A.b1(new A.bD(r,q),new A.ao6(s),p),p.i("y.E")) -q=a4.gog() -p=a4.gja() -o=a4.gbM() -n=a4.gdd() -m=a4.giX() -l=a4.gbV() -k=a4.gm1() -j=a4.ge7() -a4.gpV() -i=a4.gtb() -h=a4.gq1() -g=a4.gd3() -f=a4.gvK() -e=a4.gC() -d=a4.gwN() -c=a4.gwQ() -b=a4.gwP() -a=a4.gwO() -a0=a4.gmr() -a1=a4.gwY() -a3=A.aXj(j,k,m,g,f,a4.grC(),0,n,!1,a0,o,l,h,i,d,a,b,c,e,a4.goG(),a1,p,q).bW(a4.gcC()) -for(q=A.a6(a2).i("cu<1>"),p=new A.cu(a2,q),p=new A.bf(p,p.gH(0),q.i("bf")),q=q.i("aE.E");p.v();){o=p.d -if(o==null)o=q.a(o) -if(o.gMr()){n=o.gC8() -if(n!=null)n.$1(a3.bW(r.h(0,o)))}}}, -a3Y:function a3Y(a,b){this.a=a -this.b=b}, -a3Z:function a3Z(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -TD:function TD(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.L$=0 -_.P$=d -_.av$=_.ao$=0}, -ao7:function ao7(){}, -aoa:function aoa(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -ao9:function ao9(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -ao8:function ao8(a){this.a=a}, -ao5:function ao5(a,b,c){this.a=a -this.b=b -this.c=c}, -ao6:function ao6(a){this.a=a}, -aaL:function aaL(){}, -aXd(a,b){var s,r,q=a.ch,p=t.dJ.a(q.a) -if(p==null){s=a.tz(null) -q.saR(s) -p=s}else{p.LW() -a.tz(p)}a.db=!1 -r=new A.rr(p,a.glj()) -a.H_(r,B.f) -r.tX()}, -b9F(a){var s=a.ch.a -s.toString -a.tz(t.gY.a(s)) -a.db=!1}, -b9G(a,b,c){var s=t.TT -return new A.mn(a,c,b,A.c([],s),A.c([],s),A.c([],s),A.aU(t.I9),A.aU(t.sv))}, -bdx(a){return a.gauI()}, -aSL(d4,d5,d6,d7,d8){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0=null,d1=d4.b,d2=d5.b,d3=A.c([d1],t.TT) -for(s=d1;s.c>d2.c;s=r){r=s.gbk() -r.toString -d3.push(r)}q=new Float64Array(16) -p=new A.bc(q) -p.ei() -for(o=d3.length-1,n=d0,m=n;o>0;){l=d3[o];--o -k=d3[o] -j=A.aHl(l.m3(k),p,A.aPr()) -i=A.aHl(l.Jk(k),p,A.aPr()) -m=A.aSK(m,j) -if(i==null)if(n==null)n=d0 -else{r=n.f0(j==null?n:j) -n=r}else n=i -l.dz(k,p)}if(n==null)n=A.aSK(m,d7) -m=A.aSK(m,d6) -if(m!=null||n!=null){h=new A.bc(new Float64Array(16)) -h.dl(p) -g=h.ia(h)!==0 -n=g?A.aHl(n,h,A.aPr()):d0 -m=g?A.aHl(m,h,A.aPr()):d0}if(d8!=null){f=d8.a -e=f[0] -d=f[4] -c=f[8] -b=f[12] -a=f[1] -a0=f[5] -a1=f[9] -a2=f[13] -a3=f[2] -a4=f[6] -a5=f[10] -a6=f[14] -a7=f[3] -a8=f[7] -a9=f[11] -b0=f[15] -b1=q[0] -b2=q[4] -b3=q[8] -b4=q[12] -b5=q[1] -b6=q[5] -b7=q[9] -b8=q[13] -b9=q[2] -c0=q[6] -c1=q[10] -c2=q[14] -c3=q[3] -c4=q[7] -c5=q[11] -c6=q[15] -q[0]=e*b1+d*b5+c*b9+b*c3 -q[4]=e*b2+d*b6+c*c0+b*c4 -q[8]=e*b3+d*b7+c*c1+b*c5 -q[12]=e*b4+d*b8+c*c2+b*c6 -q[1]=a*b1+a0*b5+a1*b9+a2*c3 -q[5]=a*b2+a0*b6+a1*c0+a2*c4 -q[9]=a*b3+a0*b7+a1*c1+a2*c5 -q[13]=a*b4+a0*b8+a1*c2+a2*c6 -q[2]=a3*b1+a4*b5+a5*b9+a6*c3 -q[6]=a3*b2+a4*b6+a5*c0+a6*c4 -q[10]=a3*b3+a4*b7+a5*c1+a6*c5 -q[14]=a3*b4+a4*b8+a5*c2+a6*c6 -q[3]=a7*b1+a8*b5+a9*b9+b0*c3 -q[7]=a7*b2+a8*b6+a9*c0+b0*c4 -q[11]=a7*b3+a8*b7+a9*c1+b0*c5 -q[15]=a7*b4+a8*b8+a9*c2+b0*c6}c7=n==null?d0:n.f0(d1.gjd()) -if(c7==null)c7=d1.gjd() -if(m!=null){c8=m.f0(c7) -c9=c8.gan(0)&&!c7.gan(0) -if(!c9)c7=c8}else c9=!1 -return new A.a6t(p,n,m,c7,c9)}, -aHl(a,b,c){if(a==null)return null -if(a.gan(0)||b.a_N())return B.ag -return c.$2(b,a)}, -aSK(a,b){var s -if(b==null)return a -s=a==null?null:a.f0(b) -return s==null?b:s}, -cE:function cE(){}, -rr:function rr(a,b){var _=this -_.a=a -_.b=b -_.e=_.d=_.c=null}, -apo:function apo(a,b,c){this.a=a -this.b=b -this.c=c}, -apn:function apn(a,b,c){this.a=a -this.b=b -this.c=c}, -apm:function apm(a,b,c){this.a=a -this.b=b -this.c=c}, -lM:function lM(){}, -mn:function mn(a,b,c,d,e,f,g,h){var _=this -_.b=a -_.c=b -_.d=c -_.e=null -_.f=!1 -_.r=d -_.z=e -_.Q=f -_.at=null -_.ch=g -_.CW=h -_.cx=null}, -apw:function apw(){}, -apv:function apv(){}, -apx:function apx(){}, -apy:function apy(a){this.a=a}, -apz:function apz(){}, -r:function r(){}, -arf:function arf(a){this.a=a}, -arj:function arj(a,b,c){this.a=a -this.b=b -this.c=c}, -arg:function arg(a){this.a=a}, -arh:function arh(a){this.a=a}, -ari:function ari(){}, -b2:function b2(){}, -ard:function ard(){}, -are:function are(a){this.a=a}, -dq:function dq(){}, -ao:function ao(){}, -wI:function wI(){}, -aqC:function aqC(a){this.a=a}, -VQ:function VQ(){}, -JS:function JS(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -aHj:function aHj(a){var _=this -_.a=a -_.b=!1 -_.d=_.c=null}, -aHk:function aHk(a){this.a=a}, -e4:function e4(){}, -I5:function I5(a,b){this.b=a -this.c=b}, -hf:function hf(a,b,c,d,e,f,g){var _=this -_.b=a -_.c=!1 -_.d=null -_.f=_.e=!1 -_.r=null -_.w=b -_.x=c -_.y=d -_.z=e -_.Q=f -_.at=_.as=null -_.ax=g}, -aGk:function aGk(a){this.a=a}, -aGl:function aGl(){}, -aGm:function aGm(a){this.a=a}, -aGn:function aGn(a){this.a=a}, -aGo:function aGo(a){this.a=a}, -aGp:function aGp(a){this.a=a}, -aGe:function aGe(a){this.a=a}, -aGc:function aGc(a,b){this.a=a -this.b=b}, -aGd:function aGd(a,b){this.a=a -this.b=b}, -aGh:function aGh(){}, -aGi:function aGi(){}, -aGf:function aGf(){}, -aGg:function aGg(){}, -aGj:function aGj(a){this.a=a}, -a6t:function a6t(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -PN:function PN(a,b,c,d,e,f){var _=this -_.y=a -_.z=b -_.as=c -_.at=d -_.ax=!0 -_.ay=null -_.ch=e -_.CW=f}, -a4o:function a4o(){}, -a5G:function a5G(){}, -ab_:function ab_(){}, -bam(a,b,c,d){var s,r,q,p,o=a.b -o.toString -s=t.ot.a(o).b -if(s==null)o=B.a4M -else{o=c.$2(a,b) -r=s.b -q=s.c -A:{p=null -if(B.HB===r||B.HC===r||B.fw===r||B.HE===r||B.HD===r)break A -if(B.HA===r){q.toString -p=d.$3(a,b,q) -break A}}q=new A.wu(o,r,p,q) -o=q}return o}, -aSJ(a,b){var s=a.a,r=b.a -if(sr)return-1 -else{s=a.b -if(s===b.b)return 0 -else return s===B.at?1:-1}}, -mo:function mo(a,b){this.b=a -this.a=b}, -jd:function jd(a,b){var _=this -_.b=_.a=null -_.cS$=a -_.aJ$=b}, -UU:function UU(){}, -arb:function arb(a){this.a=a}, -aLm:function aLm(){}, -os:function os(a,b,c,d,e,f,g,h,i,j){var _=this -_.n=a -_.au=_.a5=_.a3=_.a0=_.U=null -_.L=b -_.P=c -_.ao=d -_.av=!1 -_.bE=_.bz=_.bL=_.b8=null -_.B5$=e -_.dJ$=f -_.al$=g -_.dn$=h -_.dy=i -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=j -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -arn:function arn(){}, -arp:function arp(){}, -arm:function arm(){}, -arl:function arl(){}, -aro:function aro(){}, -ark:function ark(a,b){this.a=a -this.b=b}, -ln:function ln(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.e=_.d=null -_.f=!1 -_.w=_.r=null -_.x=$ -_.z=_.y=null -_.L$=0 -_.P$=d -_.av$=_.ao$=0}, -Ji:function Ji(){}, -a5H:function a5H(){}, -a5I:function a5I(){}, -Ks:function Ks(){}, -ab4:function ab4(){}, -ab5:function ab5(){}, -ab6:function ab6(){}, -aXD(a){var s=new A.DV(a,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -arc(a,b){return a}, -ban(a,b,c,d,e,f){var s=b==null?B.aG:b -s=new A.E3(!0,c,e,d,a,s,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -V0:function V0(){}, -f5:function f5(){}, -BU:function BU(a,b){this.a=a -this.b=b}, -E7:function E7(){}, -DV:function DV(a,b,c,d){var _=this -_.D=a -_.u$=b -_.dy=c -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -UW:function UW(a,b,c,d,e){var _=this -_.D=a -_.a4=b -_.u$=c -_.dy=d -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -E1:function E1(a,b,c,d,e){var _=this -_.D=a -_.a4=b -_.u$=c -_.dy=d -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -UX:function UX(a,b,c,d,e,f){var _=this -_.D=a -_.a4=b -_.am=c -_.u$=d -_.dy=e -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=f -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -DQ:function DQ(){}, -UI:function UI(a,b,c,d,e,f,g){var _=this -_.rL$=a -_.K0$=b -_.rM$=c -_.K1$=d -_.u$=e -_.dy=f -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=g -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -UJ:function UJ(a,b,c,d,e,f,g){var _=this -_.D=a -_.a4=b -_.am=c -_.bw=d -_.u$=e -_.dy=f -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=g -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -AZ:function AZ(){}, -oH:function oH(a,b,c){this.b=a -this.c=b -this.a=c}, -yT:function yT(){}, -UN:function UN(a,b,c,d,e){var _=this -_.D=a -_.a4=null -_.am=b -_.bQ=null -_.u$=c -_.dy=d -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -UM:function UM(a,b,c,d,e,f,g){var _=this -_.c9=a -_.ea=b -_.D=c -_.a4=null -_.am=d -_.bQ=null -_.u$=e -_.dy=f -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=g -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -UL:function UL(a,b,c,d,e){var _=this -_.D=a -_.a4=null -_.am=b -_.bQ=null -_.u$=c -_.dy=d -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -Jj:function Jj(){}, -UY:function UY(a,b,c,d,e,f,g,h,i,j){var _=this -_.JV=a -_.JW=b -_.c9=c -_.ea=d -_.eb=e -_.D=f -_.a4=null -_.am=g -_.bQ=null -_.u$=h -_.dy=i -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=j -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -arq:function arq(a,b){this.a=a -this.b=b}, -UZ:function UZ(a,b,c,d,e,f,g,h){var _=this -_.c9=a -_.ea=b -_.eb=c -_.D=d -_.a4=null -_.am=e -_.bQ=null -_.u$=f -_.dy=g -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=h -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -arr:function arr(a,b){this.a=a -this.b=b}, -PA:function PA(a,b){this.a=a -this.b=b}, -UP:function UP(a,b,c,d,e,f){var _=this -_.D=null -_.a4=a -_.am=b -_.bw=c -_.u$=d -_.dy=e -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=f -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -V7:function V7(a,b,c,d){var _=this -_.am=_.a4=_.D=null -_.bw=a -_.bR=_.bQ=null -_.u$=b -_.dy=c -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -arG:function arG(a){this.a=a}, -US:function US(a,b,c,d,e){var _=this -_.D=a -_.a4=b -_.u$=c -_.dy=d -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -ara:function ara(a){this.a=a}, -V_:function V_(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.cg=a -_.dI=b -_.bX=c -_.ci=d -_.c9=e -_.ea=f -_.eb=g -_.fE=h -_.fk=i -_.D=j -_.u$=k -_.dy=l -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=m -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -E3:function E3(a,b,c,d,e,f,g,h,i){var _=this -_.cg=a -_.dI=b -_.bX=c -_.ci=d -_.c9=e -_.ea=!0 -_.D=f -_.u$=g -_.dy=h -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=i -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -V2:function V2(a,b,c){var _=this -_.u$=a -_.dy=b -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=c -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -E0:function E0(a,b,c,d,e){var _=this -_.D=a -_.a4=b -_.u$=c -_.dy=d -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -E4:function E4(a,b,c,d){var _=this -_.D=a -_.u$=b -_.dy=c -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -DO:function DO(a,b,c,d,e){var _=this -_.D=a -_.a4=b -_.u$=c -_.dy=d -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -E2:function E2(a,b,c,d,e){var _=this -_.cg=a -_.D=b -_.u$=c -_.dy=d -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -mA:function mA(a,b,c,d){var _=this -_.c9=_.ci=_.bX=_.dI=_.cg=null -_.D=a -_.u$=b -_.dy=c -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -V3:function V3(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.cZ$=a -_.B_$=b -_.B0$=c -_.B1$=d -_.B2$=e -_.B3$=f -_.YX$=g -_.YY$=h -_.YZ$=i -_.Z_$=j -_.Z0$=k -_.B4$=l -_.u$=m -_.dy=n -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=o -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -UK:function UK(a,b,c,d){var _=this -_.D=a -_.u$=b -_.dy=c -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -UQ:function UQ(a,b,c,d){var _=this -_.D=a -_.u$=b -_.dy=c -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -UT:function UT(a,b,c,d){var _=this -_.D=a -_.u$=b -_.dy=c -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -UV:function UV(a,b,c,d){var _=this -_.D=a -_.a4=null -_.u$=b -_.dy=c -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -UR:function UR(a,b,c,d,e,f,g,h){var _=this -_.D=a -_.a4=b -_.am=c -_.bw=d -_.bQ=e -_.u$=f -_.dy=g -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=h -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -ar9:function ar9(a){this.a=a}, -DS:function DS(a,b,c,d,e,f,g){var _=this -_.D=a -_.a4=b -_.am=c -_.u$=d -_.dy=e -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=f -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$ -_.$ti=g}, -a5s:function a5s(){}, -Jk:function Jk(){}, -Jl:function Jl(){}, -a5J:function a5J(){}, -EI(a,b){var s -if(a.q(0,b))return B.a1 -s=b.b -if(sa.d)return B.P -return b.a>=a.c?B.P:B.X}, -EH(a,b,c){var s,r -if(a.q(0,b))return b -s=b.b -r=a.b -if(!(s<=r))s=s<=a.d&&b.a<=a.a -else s=!0 -if(s)return c===B.i?new A.h(a.a,r):new A.h(a.c,r) -else{s=a.d -return c===B.i?new A.h(a.c,s):new A.h(a.a,s)}}, -asQ(a,b){return new A.EF(a,b==null?B.oO:b,B.a5O)}, -asP(a,b){return new A.EF(a,b==null?B.oO:b,B.dz)}, -oy:function oy(a,b){this.a=a -this.b=b}, -eX:function eX(){}, -VK:function VK(){}, -t1:function t1(a,b){this.a=a -this.b=b}, -ty:function ty(a,b){this.a=a -this.b=b}, -asR:function asR(){}, -Aw:function Aw(a){this.a=a}, -EF:function EF(a,b,c){this.b=a -this.c=b -this.a=c}, -wY:function wY(a,b){this.a=a -this.b=b}, -EG:function EG(a,b){this.a=a -this.b=b}, -ox:function ox(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -t2:function t2(a,b,c){this.a=a -this.b=b -this.c=c}, -G4:function G4(a,b){this.a=a -this.b=b}, -a6o:function a6o(){}, -a6p:function a6p(){}, -rO:function rO(){}, -ars:function ars(a){this.a=a}, -E5:function E5(a,b,c,d,e){var _=this -_.D=null -_.a4=a -_.am=b -_.u$=c -_.dy=d -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -UH:function UH(){}, -E6:function E6(a,b,c,d,e,f,g){var _=this -_.bX=a -_.ci=b -_.D=null -_.a4=c -_.am=d -_.u$=e -_.dy=f -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=g -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -ap9:function ap9(a,b){this.a=a -this.b=b}, -UO:function UO(a,b,c,d,e,f,g,h,i,j){var _=this -_.bX=a -_.ci=b -_.c9=c -_.ea=d -_.eb=e -_.D=null -_.a4=f -_.am=g -_.u$=h -_.dy=i -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=j -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -avq:function avq(){}, -DY:function DY(a,b,c,d){var _=this -_.D=a -_.u$=b -_.dy=c -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -Jo:function Jo(){}, -nr(a,b){var s -switch(b.a){case 0:s=a -break -case 1:s=A.bjT(a) -break -default:s=null}return s}, -bj0(a,b){var s -switch(b.a){case 0:s=a -break -case 1:s=A.bjU(a) -break -default:s=null}return s}, -tr(a,b,c,d,e,f,g,h,i){var s=d==null?f:d,r=c==null?f:c,q=a==null?d:a -if(q==null)q=f -return new A.Y8(h,g,f,s,e,r,f>0,b,i,q)}, -aZu(a){return new A.xj(a.a,a.b,a.c)}, -QE:function QE(a,b){this.a=a -this.b=b}, -mN:function mN(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l}, -Y8:function Y8(a,b,c,d,e,f,g,h,i,j){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j}, -xj:function xj(a,b,c){this.a=a -this.b=b -this.c=c}, -Y9:function Y9(a,b,c){var _=this -_.c=a -_.d=b -_.a=c -_.b=null}, -oL:function oL(){}, -mO:function mO(a,b){this.cS$=a -this.aJ$=b -this.a=null}, -oM:function oM(a){this.a=a}, -mP:function mP(a,b,c){this.cS$=a -this.aJ$=b -this.a=c}, -dc:function dc(){}, -arv:function arv(){}, -arw:function arw(a,b){this.a=a -this.b=b}, -a8K:function a8K(){}, -a8L:function a8L(){}, -a8O:function a8O(){}, -V5:function V5(a,b,c,d,e,f){var _=this -_.y1=a -_.y2=b -_.dJ$=c -_.al$=d -_.dn$=e -_.b=_.dy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=f -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -arx:function arx(a,b,c){this.a=a -this.b=b -this.c=c}, -kI:function kI(){}, -arB:function arB(){}, -l2:function l2(a,b,c){var _=this -_.b=null -_.c=!1 -_.w0$=a -_.cS$=b -_.aJ$=c -_.a=null}, -wM:function wM(){}, -ary:function ary(a,b,c){this.a=a -this.b=b -this.c=c}, -arA:function arA(a,b){this.a=a -this.b=b}, -arz:function arz(){}, -Jq:function Jq(){}, -a5M:function a5M(){}, -a5N:function a5N(){}, -a8M:function a8M(){}, -a8N:function a8N(){}, -E8:function E8(){}, -aru:function aru(a,b){this.a=a -this.b=b}, -art:function art(a,b){this.a=a -this.b=b}, -V6:function V6(a,b,c,d){var _=this -_.bq=null -_.u=a -_.c0=b -_.u$=c -_.b=_.dy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -a5L:function a5L(){}, -rP(a,b){var s,r,q,p -for(s=t.B,r=a,q=0;r!=null;){p=r.b -p.toString -s.a(p) -if(!p.gpK())q=Math.max(q,A.hP(b.$1(r))) -r=p.aJ$}return q}, -aXI(a,b,c,d){var s,r,q,p,o,n,m,l,k,j -a.cs(b.LK(c),!0) -A:{s=b.w -r=s!=null -if(r)if(s==null)A.cG(s) -if(r){q=s==null?A.cG(s):s -r=q -break A}p=b.f -r=p!=null -if(r)if(p==null)A.cG(p) -if(r){o=p==null?A.cG(p):p -r=c.a-o-a.gC().a -break A}r=d.ju(t.o.a(c.ac(0,a.gC()))).a -break A}B:{n=b.e -m=n!=null -if(m)if(n==null)A.cG(n) -if(m){l=n==null?A.cG(n):n -m=l -break B}k=b.r -m=k!=null -if(m)if(k==null)A.cG(k) -if(m){j=k==null?A.cG(k):k -m=c.b-j-a.gC().b -break B}m=d.ju(t.o.a(c.ac(0,a.gC()))).b -break B}b.a=new A.h(r,m) -return r<0||r+a.gC().a>c.a||m<0||m+a.gC().b>c.b}, -bao(a,b,c,d,e){var s,r,q,p,o,n,m,l=a.b -l.toString -t.B.a(l) -s=l.gpK()?l.LK(b):c -r=a.f5(s,e) -if(r==null)return null -A:{q=l.e -p=q!=null -if(p)if(q==null)A.cG(q) -if(p){o=q==null?A.cG(q):q -l=o -break A}n=l.r -l=n!=null -if(l)if(n==null)A.cG(n) -if(l){m=n==null?A.cG(n):n -l=b.b-m-a.aO(B.S,s,a.gcu()).b -break A}l=d.ju(t.o.a(b.ac(0,a.aO(B.S,s,a.gcu())))).b -break A}return r+l}, -f7:function f7(a,b,c){var _=this -_.y=_.x=_.w=_.r=_.f=_.e=null -_.cS$=a -_.aJ$=b -_.a=c}, -Yq:function Yq(a,b){this.a=a -this.b=b}, -E9:function E9(a,b,c,d,e,f,g,h,i,j){var _=this -_.n=!1 -_.U=null -_.a0=a -_.a3=b -_.a5=c -_.au=d -_.L=e -_.dJ$=f -_.al$=g -_.dn$=h -_.dy=i -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=j -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -arF:function arF(a){this.a=a}, -arD:function arD(a){this.a=a}, -arE:function arE(a){this.a=a}, -arC:function arC(a){this.a=a}, -a5O:function a5O(){}, -a5P:function a5P(){}, -nv:function nv(a,b){this.a=a -this.b=b}, -bca(a){var s,r,q,p,o,n=$.dm(),m=n.d -if(m==null)m=n.gcN() -s=A.b_d(a.Q,a.gwF().d7(0,m)).ak(0,m) -r=s.a -q=s.b -p=s.c -s=s.d -o=n.d -if(o==null)o=n.gcN() -return new A.Gx(new A.al(r/o,q/o,p/o,s/o),new A.al(r,q,p,s),o)}, -Gx:function Gx(a,b,c){this.a=a -this.b=b -this.c=c}, -rQ:function rQ(){}, -a5R:function a5R(){}, -bai(a){var s -for(s=t.NW;a!=null;){if(s.b(a))return a -a=a.gbk()}return null}, -bas(a,b,c){var s=b.aq.a)return q -else if(a0)return a.azm(0,1e5) -return!0}, -yo:function yo(a){this.a=a}, -rU:function rU(a,b){this.a=a -this.b=b}, -apr:function apr(a){this.a=a}, -kW:function kW(){}, -asr:function asr(a){this.a=a}, -asp:function asp(a){this.a=a}, -ass:function ass(a){this.a=a}, -ast:function ast(a,b){this.a=a -this.b=b}, -asu:function asu(a){this.a=a}, -aso:function aso(a){this.a=a}, -asq:function asq(a){this.a=a}, -aSc(){var s=new A.tF(new A.bC(new A.ax($.as,t.c),t.R)) -s.V9() -return s}, -xL:function xL(a){var _=this -_.a=null -_.c=_.b=!1 -_.d=null -_.e=a -_.f=null}, -tF:function tF(a){this.a=a -this.c=this.b=null}, -axl:function axl(a){this.a=a}, -G8:function G8(a){this.a=a}, -EK:function EK(){}, -atT:function atT(a){this.a=a}, -b6L(a){var s=$.aVr.h(0,a) -if(s==null){s=$.aVs -$.aVs=s+1 -$.aVr.m(0,a,s) -$.aVq.m(0,s,a)}return s}, -baO(a,b){var s,r=a.length -if(r!==b.length)return!1 -for(s=0;s=0 -if(o){B.c.a6(q,0,p).split("\n") -B.c.cD(q,p+2) -m.push(new A.Ct())}else m.push(new A.Ct())}return m}, -baQ(a){var s -A:{if("AppLifecycleState.resumed"===a){s=B.d2 -break A}if("AppLifecycleState.inactive"===a){s=B.is -break A}if("AppLifecycleState.hidden"===a){s=B.it -break A}if("AppLifecycleState.paused"===a){s=B.lJ -break A}if("AppLifecycleState.detached"===a){s=B.dM -break A}s=null -break A}return s}, -EQ:function EQ(){}, -aud:function aud(a){this.a=a}, -auc:function auc(a){this.a=a}, -aBa:function aBa(){}, -aBb:function aBb(a){this.a=a}, -aBc:function aBc(a){this.a=a}, -awj:function awj(){}, -adj:function adj(){}, -v0(a){var s=0,r=A.I(t.H) -var $async$v0=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:s=2 -return A.p(B.bb.dc("Clipboard.setData",A.aG(["text",a.a],t.N,t.z),t.H),$async$v0) -case 2:return A.G(null,r)}}) -return A.H($async$v0,r)}, -aez(a){var s=0,r=A.I(t.VC),q,p -var $async$aez=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:s=3 -return A.p(B.bb.dc("Clipboard.getData",a,t.P),$async$aez) -case 3:p=c -if(p==null){q=null -s=1 -break}q=new A.nF(A.c7(p.h(0,"text"))) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$aez,r)}, -nF:function nF(a){this.a=a}, -aik:function aik(a,b){this.a=a -this.b=!1 -this.c=b}, -ail:function ail(){}, -aWx(a,b,c,d,e){return new A.qQ(c,b,null,e,d)}, -aWw(a,b,c,d,e){return new A.qP(d,c,a,e,!1)}, -b8A(a){var s,r,q=a.d,p=B.a2H.h(0,q) -if(p==null)p=new A.u(q) -q=a.e -s=B.a1_.h(0,q) -if(s==null)s=new A.f(q) -r=a.a -switch(a.b.a){case 0:return new A.kJ(p,s,a.f,r,a.r) -case 1:return A.aWx(B.nf,s,p,a.r,r) -case 2:return A.aWw(a.f,B.nf,s,p,r)}}, -vU:function vU(a,b,c){this.c=a -this.a=b -this.b=c}, -j0:function j0(){}, -kJ:function kJ(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.f=e}, -qQ:function qQ(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.f=e}, -qP:function qP(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.f=e}, -ajg:function ajg(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.e=null}, -Rm:function Rm(a,b){this.a=a -this.b=b}, -Co:function Co(a,b){this.a=a -this.b=b}, -Rn:function Rn(a,b,c,d){var _=this -_.a=null -_.b=a -_.c=b -_.d=null -_.e=c -_.f=d}, -a3o:function a3o(){}, -akQ:function akQ(a,b,c){this.a=a -this.b=b -this.c=c}, -alg(a){var s=A.n(a).i("fo<1,f>") -return A.ep(new A.fo(a,new A.alh(),s),s.i("y.E"))}, -akR:function akR(){}, -f:function f(a){this.a=a}, -alh:function alh(){}, -u:function u(a){this.a=a}, -a3p:function a3p(){}, -aRw(a,b,c,d){return new A.Dz(a,c,b,d)}, -anW(a){return new A.CZ(a)}, -jQ:function jQ(a,b){this.a=a -this.b=b}, -Dz:function Dz(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -CZ:function CZ(a){this.a=a}, -aw9:function aw9(){}, -akq:function akq(){}, -aks:function aks(){}, -avS:function avS(){}, -avT:function avT(a,b){this.a=a -this.b=b}, -avW:function avW(){}, -bd1(a){var s,r,q -for(s=A.n(a),r=new A.w5(J.bG(a.a),a.b,s.i("w5<1,2>")),s=s.y[1];r.v();){q=r.a -if(q==null)q=s.a(q) -if(!q.j(0,B.b2))return q}return null}, -ao4:function ao4(a,b){this.a=a -this.b=b}, -D0:function D0(){}, -dS:function dS(){}, -a1V:function a1V(){}, -a95:function a95(a,b){this.a=a -this.b=b}, -k7:function k7(a){this.a=a}, -a3X:function a3X(){}, -nz:function nz(a,b,c){this.a=a -this.b=b -this.$ti=c}, -ad6:function ad6(a,b){this.a=a -this.b=b}, -we:function we(a,b){this.a=a -this.b=b}, -anV:function anV(a,b){this.a=a -this.b=b}, -hy:function hy(a,b){this.a=a -this.b=b}, -aXl(a){var s,r,q,p=t.wh.a(a.h(0,"touchOffset")) -if(p==null)s=null -else{s=J.bk(p) -r=s.h(p,0) -r.toString -A.fg(r) -s=s.h(p,1) -s.toString -s=new A.h(r,A.fg(s))}r=a.h(0,"progress") -r.toString -A.fg(r) -q=a.h(0,"swipeEdge") -q.toString -return new A.om(s,r,B.Vq[A.eF(q)])}, -FF:function FF(a,b){this.a=a -this.b=b}, -om:function om(a,b,c){this.a=a -this.b=b -this.c=c}, -wA:function wA(a,b){this.a=a -this.b=b}, -afh:function afh(){this.a=$}, -bac(a){var s,r,q,p,o={} -o.a=null -s=new A.aq7(o,a).$0() -r=$.aTW().d -q=A.n(r).i("bD<1>") -p=A.ep(new A.bD(r,q),q.i("y.E")).q(0,s.gks()) -q=a.h(0,"type") -q.toString -A.c7(q) -A:{if("keydown"===q){r=new A.on(o.a,p,s) -break A}if("keyup"===q){r=new A.wG(null,!1,s) -break A}r=A.a0(A.h_("Unknown key event type: "+q))}return r}, -qR:function qR(a,b){this.a=a -this.b=b}, -id:function id(a,b){this.a=a -this.b=b}, -DI:function DI(){}, -my:function my(){}, -aq7:function aq7(a,b){this.a=a -this.b=b}, -on:function on(a,b,c){this.a=a -this.b=b -this.c=c}, -wG:function wG(a,b,c){this.a=a -this.b=b -this.c=c}, -aqa:function aqa(a,b){this.a=a -this.d=b}, -dz:function dz(a,b){this.a=a -this.b=b}, -a5b:function a5b(){}, -a5a:function a5a(){}, -Uz:function Uz(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -Eg:function Eg(a,b){var _=this -_.b=_.a=null -_.f=_.d=_.c=!1 -_.r=a -_.L$=0 -_.P$=b -_.av$=_.ao$=0}, -arW:function arW(a){this.a=a}, -arX:function arX(a){this.a=a}, -e1:function e1(a,b,c,d,e,f){var _=this -_.a=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=!1}, -arT:function arT(){}, -arU:function arU(){}, -arS:function arS(){}, -arV:function arV(){}, -blx(a,b){var s,r,q,p,o=A.c([],t.bt),n=J.bk(a),m=0,l=0 -for(;;){if(!(m1 -if(a0===0)l=0===a0 -else l=!1 -k=m&&a0b -q=!k -h=q&&!l&&sa2||!q||j -if(d===n)return new A.xC(d,o,r) -else if((!p||h)&&s)return new A.YH(new A.bI(!m?b-1:c,b),d,o,r) -else if((c===b||i)&&s)return new A.YI(B.c.a6(a,a2,a2+(a0-a2)),b,d,o,r) -else if(e)return new A.YJ(a,new A.bI(c,b),d,o,r) -return new A.xC(d,o,r)}, -oS:function oS(){}, -YI:function YI(a,b,c,d,e){var _=this -_.d=a -_.e=b -_.a=c -_.b=d -_.c=e}, -YH:function YH(a,b,c,d){var _=this -_.d=a -_.a=b -_.b=c -_.c=d}, -YJ:function YJ(a,b,c,d,e){var _=this -_.d=a -_.e=b -_.a=c -_.b=d -_.c=e}, -xC:function xC(a,b,c){this.a=a -this.b=b -this.c=c}, -a9i:function a9i(){}, -Tz:function Tz(a,b){this.a=a -this.b=b}, -tz:function tz(){}, -a40:function a40(a,b){this.a=a -this.b=b}, -aKe:function aKe(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Qi:function Qi(a,b,c){this.a=a -this.b=b -this.c=c}, -ahM:function ahM(a,b,c){this.a=a -this.b=b -this.c=c}, -aZM(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){return new A.YM(r,k,n,m,c,d,o,p,!0,g,a,j,q,l,!0,b,i,!1)}, -biQ(a){var s -A:{if("TextAffinity.downstream"===a){s=B.k -break A}if("TextAffinity.upstream"===a){s=B.at -break A}s=null -break A}return s}, -aZL(a){var s,r,q,p,o=A.c7(a.h(0,"text")),n=A.d2(a.h(0,"selectionBase")) -if(n==null)n=-1 -s=A.d2(a.h(0,"selectionExtent")) -if(s==null)s=-1 -r=A.biQ(A.bH(a.h(0,"selectionAffinity"))) -if(r==null)r=B.k -q=A.lp(a.h(0,"selectionIsDirectional")) -p=A.cp(r,n,s,q===!0) -n=A.d2(a.h(0,"composingBase")) -if(n==null)n=-1 -s=A.d2(a.h(0,"composingExtent")) -return new A.cA(o,p,new A.bI(n,s==null?-1:s))}, -aZN(a){var s=A.c([],t.u1),r=$.aZO -$.aZO=r+1 -return new A.awJ(s,r,a)}, -biS(a){var s -A:{if("TextInputAction.none"===a){s=B.aaa -break A}if("TextInputAction.unspecified"===a){s=B.aab -break A}if("TextInputAction.go"===a){s=B.aae -break A}if("TextInputAction.search"===a){s=B.aaf -break A}if("TextInputAction.send"===a){s=B.aag -break A}if("TextInputAction.next"===a){s=B.aah -break A}if("TextInputAction.previous"===a){s=B.aai -break A}if("TextInputAction.continueAction"===a){s=B.aaj -break A}if("TextInputAction.join"===a){s=B.aak -break A}if("TextInputAction.route"===a){s=B.aac -break A}if("TextInputAction.emergencyCall"===a){s=B.aad -break A}if("TextInputAction.done"===a){s=B.Jv -break A}if("TextInputAction.newline"===a){s=B.Ju -break A}s=A.a0(A.nP(A.c([A.kz("Unknown text input action: "+a)],t.D)))}return s}, -biR(a){var s -A:{if("FloatingCursorDragState.start"===a){s=B.rr -break A}if("FloatingCursorDragState.update"===a){s=B.ja -break A}if("FloatingCursorDragState.end"===a){s=B.jb -break A}s=A.a0(A.nP(A.c([A.kz("Unknown text cursor action: "+a)],t.D)))}return s}, -Ye:function Ye(a,b){this.a=a -this.b=b}, -Yf:function Yf(a,b){this.a=a -this.b=b}, -l9:function l9(a,b,c){this.a=a -this.b=b -this.c=c}, -ha:function ha(a,b){this.a=a -this.b=b}, -awA:function awA(a,b){this.a=a -this.b=b}, -YM:function YM(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r}, -BG:function BG(a,b){this.a=a -this.b=b}, -wE:function wE(a,b,c){this.a=a -this.b=b -this.c=c}, -cA:function cA(a,b,c){this.a=a -this.b=b -this.c=c}, -awD:function awD(a,b){this.a=a -this.b=b}, -j8:function j8(a,b){this.a=a -this.b=b}, -ax9:function ax9(){}, -awH:function awH(){}, -t3:function t3(a,b,c){this.a=a -this.b=b -this.c=c}, -awJ:function awJ(a,b,c){var _=this -_.d=_.c=_.b=_.a=null -_.e=a -_.f=b -_.r=c}, -YL:function YL(a,b,c){var _=this -_.a=a -_.b=b -_.c=$ -_.d=null -_.e=$ -_.f=c -_.w=_.r=!1}, -awZ:function awZ(a){this.a=a}, -awW:function awW(){}, -awX:function awX(a,b){this.a=a -this.b=b}, -awY:function awY(a){this.a=a}, -ax_:function ax_(a){this.a=a}, -G_:function G_(){}, -a4p:function a4p(){}, -aFc:function aFc(){}, -awk:function awk(a,b){var _=this -_.a=a -_.b=b -_.d=_.c=null -_.f=_.e=!1}, -awl:function awl(){}, -fr:function fr(){}, -QR:function QR(){}, -QS:function QS(){}, -QV:function QV(){}, -QX:function QX(){}, -QU:function QU(a){this.a=a}, -QW:function QW(a){this.a=a}, -QY:function QY(a){this.a=a}, -QT:function QT(){}, -a33:function a33(){}, -a34:function a34(){}, -a35:function a35(){}, -a91:function a91(){}, -a92:function a92(){}, -aaO:function aaO(){}, -YZ:function YZ(a,b){this.a=a -this.b=b}, -Z_:function Z_(){this.a=$ -this.b=null}, -axI:function axI(){}, -bjB(){if(!$.b53())return new A.aax() -return new A.aax()}, -ay5:function ay5(){}, -aax:function aax(){}, -bhR(a){var s=A.bQ() -a.lv(new A.aNA(s)) -return s.bc()}, -uB(a,b){return new A.lA(a,b,null)}, -Mi(a,b){var s,r,q -if(a.e==null)return!1 -s=t.L1 -r=a.fs(s) -while(q=r!=null,q){if(b.$1(r))break -r=A.bhR(r).fs(s)}return q}, -aQ2(a){var s={} -s.a=null -A.Mi(a,new A.ack(s)) -return B.Lc}, -aQ4(a,b,c){var s={} -s.a=null -if((b==null?null:A.l(b))==null)A.bM(c) -A.Mi(a,new A.acn(s,b,a,c)) -return s.a}, -aQ3(a,b){var s={} -s.a=null -A.bM(b) -A.Mi(a,new A.acl(s,null,b)) -return s.a}, -acj(a,b,c){var s,r=b==null?null:A.l(b) -if(r==null)r=A.bM(c) -s=a.r.h(0,r) -if(c.i("bn<0>?").b(s))return s -else return null}, -lB(a,b,c){var s={} -s.a=null -A.Mi(a,new A.acm(s,b,a,c)) -return s.a}, -b5v(a,b,c){var s={} -s.a=null -A.Mi(a,new A.aco(s,b,a,c)) -return s.a}, -aW2(a,b,c,d,e,f,g,h,i){return new A.qr(d,e,!1,a,h,i,g,f,c,null)}, -aVJ(a){return new A.Bb(a,new A.bp(A.c([],t.e),t.d))}, -aNA:function aNA(a){this.a=a}, -be:function be(){}, -bn:function bn(){}, -cW:function cW(){}, -dg:function dg(a,b,c){var _=this -_.c=a -_.a=b -_.b=null -_.$ti=c}, -aci:function aci(){}, -lA:function lA(a,b,c){this.d=a -this.e=b -this.a=c}, -ack:function ack(a){this.a=a}, -acn:function acn(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -acl:function acl(a,b,c){this.a=a -this.b=b -this.c=c}, -acm:function acm(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aco:function aco(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -GQ:function GQ(a,b){var _=this -_.d=a -_.e=b -_.c=_.a=null}, -ayR:function ayR(a){this.a=a}, -GP:function GP(a,b,c,d,e){var _=this -_.f=a -_.r=b -_.w=c -_.b=d -_.a=e}, -qr:function qr(a,b,c,d,e,f,g,h,i,j){var _=this -_.c=a -_.d=b -_.e=c -_.w=d -_.y=e -_.z=f -_.Q=g -_.as=h -_.ax=i -_.a=j}, -HU:function HU(a){var _=this -_.f=_.e=_.d=!1 -_.r=a -_.c=_.a=null}, -aC1:function aC1(a){this.a=a}, -aC_:function aC_(a){this.a=a}, -aBV:function aBV(a){this.a=a}, -aBW:function aBW(a){this.a=a}, -aBU:function aBU(a,b){this.a=a -this.b=b}, -aBZ:function aBZ(a){this.a=a}, -aBX:function aBX(a){this.a=a}, -aBY:function aBY(a,b){this.a=a -this.b=b}, -aC0:function aC0(a,b){this.a=a -this.b=b}, -Zf:function Zf(a){this.a=a -this.b=null}, -Bb:function Bb(a,b){this.c=a -this.a=b -this.b=null}, -uC:function uC(){}, -uL:function uL(){}, -ht:function ht(){}, -PT:function PT(){}, -mv:function mv(){}, -Us:function Us(a){var _=this -_.f=_.e=$ -_.a=a -_.b=null}, -yM:function yM(){}, -IM:function IM(a,b,c,d,e,f,g,h){var _=this -_.e=a -_.f=b -_.asb$=c -_.asc$=d -_.asd$=e -_.ase$=f -_.a=g -_.b=null -_.$ti=h}, -IN:function IN(a,b,c,d,e,f,g,h){var _=this -_.e=a -_.f=b -_.asb$=c -_.asc$=d -_.asd$=e -_.ase$=f -_.a=g -_.b=null -_.$ti=h}, -Hk:function Hk(a,b,c,d){var _=this -_.c=a -_.d=b -_.a=c -_.b=null -_.$ti=d}, -a0d:function a0d(){}, -a0b:function a0b(){}, -a3k:function a3k(){}, -Lq:function Lq(){}, -Lr:function Lr(){}, -aUL(a,b,c){return new A.zM(a,b,c,null)}, -zM:function zM(a,b,c,d){var _=this -_.c=a -_.e=b -_.f=c -_.a=d}, -a0p:function a0p(a,b){var _=this -_.dK$=a -_.bu$=b -_.c=_.a=null}, -a0o:function a0o(a,b,c,d,e,f,g,h,i){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.x=e -_.y=f -_.z=g -_.c=h -_.a=i}, -aaC:function aaC(){}, -zT:function zT(a,b,c,d){var _=this -_.e=a -_.c=b -_.a=c -_.$ti=d}, -bj8(a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=null -if(a1==null||a1.length===0)return B.b.gad(a2) -s=t.N -r=t.da -q=A.h0(a0,a0,a0,s,r) -p=A.h0(a0,a0,a0,s,r) -o=A.h0(a0,a0,a0,s,r) -n=A.h0(a0,a0,a0,s,r) -m=A.h0(a0,a0,a0,t.ob,r) -for(l=0;l<1;++l){k=a2[l] -s=k.a -r=B.ch.h(0,s) -if(r==null)r=s -j=A.j(k.b) -i=k.c -h=B.cO.h(0,i) -if(h==null)h=i -h=r+"_"+j+"_"+A.j(h) -if(q.h(0,h)==null)q.m(0,h,k) -r=B.ch.h(0,s) -r=(r==null?s:r)+"_"+j -if(o.h(0,r)==null)o.m(0,r,k) -r=B.ch.h(0,s) -if(r==null)r=s -j=B.cO.h(0,i) -if(j==null)j=i -j=r+"_"+A.j(j) -if(p.h(0,j)==null)p.m(0,j,k) -r=B.ch.h(0,s) -s=r==null?s:r -if(n.h(0,s)==null)n.m(0,s,k) -s=B.cO.h(0,i) -if(s==null)s=i -if(m.h(0,s)==null)m.m(0,s,k)}for(g=a0,f=g,e=0;e"))}, -b_H(a,b,c,d){var s=null -if(b==null&&a==null&&d==null)return c -return A.b_G(A.ay(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,b,!0,s,a,s,s,s,s,s,d),c)}, -b_G(a,b){var s,r=b.c -if(r==null)r=null -else{s=A.a6(r).i("am<1,ez>") -r=A.aa(new A.am(r,new A.aFa(a),s),s.i("aE.E"))}s=b.a -s=s==null?null:s.E(a) -if(s==null)s=a -return A.ef(r,b.y,b.e,b.f,b.r,b.d,b.x,b.w,b.z,s,b.b)}, -a19:function a19(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -a5x:function a5x(a,b,c,d,e){var _=this -_.D=a -_.a4=null -_.am=b -_.u$=c -_.dy=d -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -eD:function eD(a,b){var _=this -_.a=a -_.L$=0 -_.P$=b -_.av$=_.ao$=0}, -xN:function xN(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -hJ:function hJ(a,b){this.a=a -this.b=b}, -aBp:function aBp(a,b,c){var _=this -_.b=a -_.c=b -_.d=0 -_.a=c}, -vp:function vp(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.x=e -_.z=f -_.Q=g -_.as=h -_.at=i -_.ax=j -_.ay=k -_.ch=l -_.CW=m -_.cx=n -_.cy=o -_.db=p -_.dx=q -_.dy=r -_.go=s -_.id=a0 -_.k1=a1 -_.k2=a2 -_.k3=a3 -_.k4=a4 -_.ok=a5 -_.p1=a6 -_.p2=a7 -_.p3=a8 -_.p4=a9 -_.R8=b0 -_.RG=b1 -_.rx=b2 -_.ry=b3 -_.to=b4 -_.x1=b5 -_.x2=b6 -_.xr=b7 -_.y1=b8 -_.y2=b9 -_.aH=c0 -_.aB=c1 -_.n=c2 -_.U=c3 -_.a0=c4 -_.a3=c5 -_.a5=c6 -_.au=c7 -_.L=c8 -_.P=c9 -_.ao=d0 -_.av=d1 -_.b8=d2 -_.bL=d3 -_.bz=d4 -_.bE=d5 -_.bv=d6 -_.bU=d7 -_.aK=d8 -_.c_=d9 -_.bo=e0 -_.cB=e1 -_.bq=e2 -_.u=e3 -_.c0=e4 -_.dC=e5 -_.d4=e6 -_.ap=e7 -_.eN=e8 -_.bI=e9 -_.a=f0}, -nM:function nM(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.e=_.d=null -_.f=$ -_.r=a -_.w=b -_.x=c -_.at=_.as=_.Q=_.z=null -_.ax=!1 -_.ay=d -_.ch=null -_.CW=e -_.cx=f -_.cy=g -_.db=!1 -_.dx=null -_.fr=_.dy=$ -_.fx=null -_.fy=h -_.go=i -_.k1=_.id=null -_.k2=$ -_.k3=!1 -_.k4=!0 -_.p4=_.p3=_.p2=_.p1=_.ok=null -_.R8=0 -_.ry=_.rx=_.RG=!1 -_.to=j -_.x2=_.x1=!1 -_.xr=$ -_.y1=0 -_.aH=_.y2=null -_.aB=$ -_.n=-1 -_.a0=_.U=null -_.P=_.L=_.au=_.a5=_.a3=$ -_.dB$=k -_.bl$=l -_.dh$=m -_.c=_.a=null}, -ago:function ago(){}, -agU:function agU(a){this.a=a}, -ags:function ags(a){this.a=a}, -agI:function agI(a){this.a=a}, -agJ:function agJ(a){this.a=a}, -agK:function agK(a){this.a=a}, -agL:function agL(a){this.a=a}, -agM:function agM(a){this.a=a}, -agN:function agN(a){this.a=a}, -agO:function agO(a){this.a=a}, -agP:function agP(a){this.a=a}, -agQ:function agQ(a){this.a=a}, -agR:function agR(a){this.a=a}, -agS:function agS(a){this.a=a}, -agT:function agT(a){this.a=a}, -agy:function agy(a,b,c){this.a=a -this.b=b -this.c=c}, -agW:function agW(a,b,c){this.a=a -this.b=b -this.c=c}, -agX:function agX(a){this.a=a}, -agt:function agt(a,b){this.a=a -this.b=b}, -agV:function agV(a){this.a=a}, -agm:function agm(a){this.a=a}, -agx:function agx(a){this.a=a}, -agp:function agp(){}, -agq:function agq(a){this.a=a}, -agr:function agr(a){this.a=a}, -agl:function agl(){}, -agn:function agn(a){this.a=a}, -agY:function agY(a){this.a=a}, -agZ:function agZ(a){this.a=a}, -ah_:function ah_(a,b,c){this.a=a -this.b=b -this.c=c}, -agu:function agu(a,b){this.a=a -this.b=b}, -agv:function agv(a,b){this.a=a -this.b=b}, -agw:function agw(a,b){this.a=a -this.b=b}, -agH:function agH(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -agA:function agA(a,b){this.a=a -this.b=b}, -agG:function agG(a,b){this.a=a -this.b=b}, -agD:function agD(a){this.a=a}, -agB:function agB(a){this.a=a}, -agC:function agC(){}, -agE:function agE(a){this.a=a}, -agF:function agF(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -agz:function agz(a){this.a=a}, -HH:function HH(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.x=e -_.y=f -_.z=g -_.Q=h -_.as=i -_.at=j -_.ax=k -_.ay=l -_.ch=m -_.CW=n -_.cx=o -_.cy=p -_.db=q -_.dx=r -_.dy=s -_.fr=a0 -_.fx=a1 -_.fy=a2 -_.go=a3 -_.id=a4 -_.k1=a5 -_.k2=a6 -_.k3=a7 -_.k4=a8 -_.ok=a9 -_.p1=b0 -_.p2=b1 -_.p3=b2 -_.p4=b3 -_.R8=b4 -_.RG=b5 -_.rx=b6 -_.ry=b7 -_.to=b8 -_.c=b9 -_.a=c0}, -a48:function a48(a){this.a=a}, -aH8:function aH8(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -JC:function JC(a,b,c,d,e,f){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.a=f}, -a6b:function a6b(a){this.d=a -this.c=this.a=null}, -aH9:function aH9(a){this.a=a}, -nh:function nh(a,b,c,d,e){var _=this -_.x=a -_.e=b -_.b=c -_.c=d -_.a=e}, -a15:function a15(a){this.a=a}, -na:function na(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.a=d -_.b=null -_.$ti=e}, -KJ:function KJ(a,b,c,d,e,f,g,h){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.x=e -_.y=f -_.a=g -_.b=null -_.$ti=h}, -KK:function KK(a,b,c){var _=this -_.e=a -_.r=_.f=null -_.a=b -_.b=null -_.$ti=c}, -KQ:function KQ(a,b,c,d){var _=this -_.f=a -_.c=b -_.a=c -_.b=null -_.$ti=d}, -a6j:function a6j(a,b){this.e=a -this.a=b -this.b=null}, -a1q:function a1q(a,b){this.e=a -this.a=b -this.b=null}, -a4n:function a4n(a,b){this.e=a -this.a=b -this.b=null}, -aan:function aan(a,b,c){var _=this -_.ay=a -_.w=!1 -_.a=b -_.L$=0 -_.P$=c -_.av$=_.ao$=0}, -a2i:function a2i(a){this.a=a -this.b=null}, -a2j:function a2j(a){this.a=a -this.b=null}, -aFa:function aFa(a){this.a=a}, -HI:function HI(){}, -a2f:function a2f(){}, -HJ:function HJ(){}, -a2g:function a2g(){}, -a2h:function a2h(){}, -aTd(a){var s,r,q -for(s=a.length,r=!1,q=0;q>"),n=new A.am(a,new A.aFE(),o) -for(s=new A.bf(n,n.gH(0),o.i("bf")),o=o.i("aE.E"),r=null;s.v();){q=s.d -p=q==null?o.a(q):q -r=(r==null?p:r).il(p)}if(r.gan(r))return B.b.gad(a).a -return B.b.ast(B.b.gad(a).gYw(),r.glX(r)).w}, -b_P(a,b){A.ls(a,new A.aFG(b),t.zP)}, -bdr(a,b){A.ls(a,new A.aFD(b),t.h7)}, -UE(){return new A.aqp(A.t(t.l5,t.UJ),A.aTm())}, -aXB(a){var s,r,q,p,o,n,m,l,k,j,i -if(a.length<=1)return a -s=A.c([],t.qi) -for(r=a.length,q=t.V2,p=t.I,o=0;o"))}, -qw:function qw(a,b,c,d,e,f,g){var _=this -_.c=a -_.e=b -_.f=c -_.r=d -_.w=e -_.x=f -_.a=g}, -BP:function BP(a){var _=this -_.d=0 -_.e=!1 -_.f=a -_.c=_.a=null}, -aiu:function aiu(){}, -aiv:function aiv(a){this.a=a}, -aix:function aix(){}, -aiw:function aiw(a,b,c){this.a=a -this.b=b -this.c=c}, -HV:function HV(a,b,c,d){var _=this -_.f=a -_.r=b -_.b=c -_.a=d}, -hv:function hv(){}, -dQ:function dQ(a,b,c,d,e,f,g,h){var _=this -_.e=_.d=$ -_.f=a -_.r=b -_.bD$=c -_.eZ$=d -_.l1$=e -_.dU$=f -_.f_$=g -_.c=_.a=null -_.$ti=h}, -ait:function ait(a){this.a=a}, -ais:function ais(a,b){this.a=a -this.b=b}, -air:function air(a){this.a=a}, -aiq:function aiq(a){this.a=a}, -aip:function aip(a){this.a=a}, -kp:function kp(a,b){this.a=a -this.b=b}, -aC2:function aC2(){}, -yn:function yn(){}, -b_D(a){a.bB(new A.aDb()) -a.kD()}, -b_C(a){var s -try{a.dA()}catch(s){A.aQJ(a) -throw s}a.bB(A.bjZ())}, -b7F(a,b){var s,r,q,p=a.d -p===$&&A.a() -s=b.d -s===$&&A.a() -r=p-s -if(r!==0)return r -q=b.as -if(a.as!==q)return q?-1:1 -return 0}, -b7G(a,b){var s=A.a6(b).i("am<1,ds>") -s=A.aa(new A.am(b,new A.ah5(),s),s.i("aE.E")) -return A.b74(!0,s,a,B.Xl,!0,B.Om,null)}, -aQJ(a){var s -try{a.dA()}catch(s){a.Qz()}a.w=B.aj3 -try{a.bB(A.bjY())}catch(s){}}, -b7E(a){a.bF() -a.bB(A.b1H())}, -vw(a){var s=a.a,r=s instanceof A.vz?s:null -return new A.Qb("",r,new A.hc())}, -b8r(a){return new A.h3(A.h0(null,null,null,t.Q,t.X),a,B.ae)}, -b9j(a){return new A.ii(A.dv(t.Q),a,B.ae)}, -aO6(a,b,c,d){var s=new A.c9(b,c,"widgets library",a,d,!1) -A.dE(s) -return s}, -i3:function i3(){}, -by:function by(a,b){this.a=a -this.$ti=b}, -qD:function qD(a,b){this.a=a -this.$ti=b}, -e:function e(){}, -a5:function a5(){}, -W:function W(){}, -T:function T(){}, -b_:function b_(){}, -eb:function eb(){}, -bd:function bd(){}, -aF:function aF(){}, -Ru:function Ru(){}, -bj:function bj(){}, -eT:function eT(){}, -tT:function tT(a,b){this.a=a -this.b=b}, -a3d:function a3d(a){this.b=a}, -aDb:function aDb(){}, -N1:function N1(a,b){var _=this -_.b=_.a=!1 -_.c=a -_.d=null -_.e=b}, -adE:function adE(a){this.a=a}, -adD:function adD(a,b,c){var _=this -_.a=null -_.b=a -_.c=!1 -_.d=b -_.x=c}, -Dl:function Dl(){}, -aEZ:function aEZ(a,b){this.a=a -this.b=b}, -au:function au(){}, -ah8:function ah8(a){this.a=a}, -ah6:function ah6(a){this.a=a}, -ah5:function ah5(){}, -ah9:function ah9(a){this.a=a}, -aha:function aha(a){this.a=a}, -ahb:function ahb(a){this.a=a}, -ah3:function ah3(a){this.a=a}, -ah2:function ah2(){}, -ah7:function ah7(){}, -ah4:function ah4(a){this.a=a}, -Qb:function Qb(a,b,c){this.d=a -this.e=b -this.a=c}, -AD:function AD(){}, -aeF:function aeF(){}, -aeG:function aeG(){}, -xr:function xr(a,b){var _=this -_.c=_.b=_.a=_.ay=null -_.d=$ -_.e=a -_.r=_.f=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.at=!1}, -jc:function jc(a,b,c){var _=this -_.ok=a -_.p1=!1 -_.c=_.b=_.a=_.ay=null -_.d=$ -_.e=b -_.r=_.f=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.at=!1}, -DF:function DF(){}, -oh:function oh(a,b,c){var _=this -_.c=_.b=_.a=_.ay=null -_.d=$ -_.e=a -_.r=_.f=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.at=!1 -_.$ti=c}, -app:function app(a){this.a=a}, -h3:function h3(a,b,c){var _=this -_.n=a -_.c=_.b=_.a=_.ay=null -_.d=$ -_.e=b -_.r=_.f=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.at=!1}, -b0:function b0(){}, -arZ:function arZ(){}, -Rt:function Rt(a,b){var _=this -_.c=_.b=_.a=_.CW=_.ay=null -_.d=$ -_.e=a -_.r=_.f=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.at=!1}, -Fj:function Fj(a,b){var _=this -_.c=_.b=_.a=_.CW=_.ay=_.p1=null -_.d=$ -_.e=a -_.r=_.f=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.at=!1}, -ii:function ii(a,b,c){var _=this -_.p1=$ -_.p2=a -_.c=_.b=_.a=_.CW=_.ay=null -_.d=$ -_.e=b -_.r=_.f=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.at=!1}, -aod:function aod(a){this.a=a}, -V8:function V8(){}, -afa:function afa(a){this.a=a}, -h2:function h2(a,b,c){this.a=a -this.b=b -this.$ti=c}, -a4a:function a4a(a,b){var _=this -_.c=_.b=_.a=null -_.d=$ -_.e=a -_.r=_.f=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.at=!1}, -a4d:function a4d(a){this.a=a}, -a8Q:function a8Q(){}, -eP(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5){return new A.qA(b,a1,a2,s,a0,o,q,r,p,f,l,m,a4,a5,a3,h,j,k,i,g,n,a,d,c,e)}, -Hw(a){var s=a.gC() -return new A.w(0,0,0+s.a,0+s.b)}, -qC:function qC(){}, -cK:function cK(a,b,c){this.a=a -this.b=b -this.$ti=c}, -qA:function qA(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.w=e -_.x=f -_.y=g -_.z=h -_.Q=i -_.ch=j -_.db=k -_.fr=l -_.ry=m -_.to=n -_.x1=o -_.xr=p -_.y1=q -_.y2=r -_.aH=s -_.aB=a0 -_.a3=a1 -_.bz=a2 -_.bE=a3 -_.bv=a4 -_.a=a5}, -aiT:function aiT(a){this.a=a}, -aiU:function aiU(a,b){this.a=a -this.b=b}, -aiV:function aiV(a){this.a=a}, -aiX:function aiX(a,b){this.a=a -this.b=b}, -aiY:function aiY(a){this.a=a}, -aiZ:function aiZ(a,b){this.a=a -this.b=b}, -aj_:function aj_(a){this.a=a}, -aj0:function aj0(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aj1:function aj1(a){this.a=a}, -aj2:function aj2(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aj3:function aj3(a){this.a=a}, -aiW:function aiW(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -j5:function j5(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -wF:function wF(a){var _=this -_.d=a -_.c=_.a=_.e=null}, -a2S:function a2S(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -atS:function atS(){}, -aBe:function aBe(a){this.a=a}, -aBj:function aBj(a,b){this.a=a -this.b=b}, -aBi:function aBi(a,b){this.a=a -this.b=b}, -aBf:function aBf(a,b){this.a=a -this.b=b}, -aBg:function aBg(a,b){this.a=a -this.b=b}, -aBh:function aBh(a,b){this.a=a -this.b=b}, -aBk:function aBk(a,b){this.a=a -this.b=b}, -aBl:function aBl(a,b){this.a=a -this.b=b}, -aBm:function aBm(a,b){this.a=a -this.b=b}, -aWf(a,b,c){var s=A.t(t.K,t.U3) -a.bB(new A.ajt(c,new A.ajs(b,s))) -return s}, -b_A(a,b){var s,r=a.ga1() -r.toString -t.x.a(r) -s=r.bd(b==null?null:b.ga1()) -r=r.gC() -return A.e0(s,new A.w(0,0,0+r.a,0+r.b))}, -vJ:function vJ(a,b){this.a=a -this.b=b}, -qF:function qF(a,b,c,d){var _=this -_.c=a -_.e=b -_.w=c -_.a=d}, -ajs:function ajs(a,b){this.a=a -this.b=b}, -ajt:function ajt(a,b){this.a=a -this.b=b}, -yt:function yt(a){var _=this -_.d=a -_.e=null -_.f=!0 -_.c=_.a=null}, -aCQ:function aCQ(a,b){this.a=a -this.b=b}, -aCP:function aCP(){}, -aCM:function aCM(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=null -_.ax=_.at=_.as=$}, -ne:function ne(a,b){var _=this -_.a=a -_.b=$ -_.c=null -_.d=b -_.e=$ -_.r=_.f=null -_.x=_.w=!1}, -aCN:function aCN(a){this.a=a}, -aCO:function aCO(a,b){this.a=a -this.b=b}, -vI:function vI(a,b){this.a=a -this.b=b}, -ajr:function ajr(){}, -ajq:function ajq(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -ajp:function ajp(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -ce(a,b,c,d){return new A.m4(a,d,b,c,null)}, -m4:function m4(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.x=c -_.z=d -_.a=e}, -cZ:function cZ(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -qI(a,b,c){return new A.m6(b,a,c)}, -ajZ(a,b){return new A.dO(new A.ak_(null,b,a),null)}, -BZ(a){var s,r,q,p,o,n,m=A.aWh(a).af(a),l=m.a,k=l==null -if(!k&&m.b!=null&&m.c!=null&&m.d!=null&&m.e!=null&&m.f!=null&&m.gdY()!=null&&m.x!=null)l=m -else{if(k)l=24 -k=m.b -if(k==null)k=0 -s=m.c -if(s==null)s=400 -r=m.d -if(r==null)r=0 -q=m.e -if(q==null)q=48 -p=m.f -if(p==null)p=B.r -o=m.gdY() -if(o==null)o=B.rH.gdY() -n=m.w -if(n==null)n=null -l=m.pc(m.x===!0,p,k,r,o,q,n,l,s)}return l}, -aWh(a){var s=a.aA(t.Oh),r=s==null?null:s.w -return r==null?B.rH:r}, -m6:function m6(a,b,c){this.w=a -this.b=b -this.a=c}, -ak_:function ak_(a,b,c){this.a=a -this.b=b -this.c=c}, -m7(a,b,c){var s,r,q,p,o,n,m,l,k,j,i=null -if(a==b&&a!=null)return a -s=a==null -r=s?i:a.a -q=b==null -r=A.Y(r,q?i:b.a,c) -p=s?i:a.b -p=A.Y(p,q?i:b.b,c) -o=s?i:a.c -o=A.Y(o,q?i:b.c,c) -n=s?i:a.d -n=A.Y(n,q?i:b.d,c) -m=s?i:a.e -m=A.Y(m,q?i:b.e,c) -l=s?i:a.f -l=A.k(l,q?i:b.f,c) -k=s?i:a.gdY() -k=A.Y(k,q?i:b.gdY(),c) -j=s?i:a.w -j=A.aZj(j,q?i:b.w,c) -if(c<0.5)s=s?i:a.x -else s=q?i:b.x -return new A.dw(r,p,o,n,m,l,k,j,s)}, -dw:function dw(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -a3c:function a3c(){}, -b6Y(a,b){return new A.lP(a,b)}, -uE(a,b,c,d,e,f,g,h,i){var s,r,q=null -if(c==null)s=q -else s=c -if(i!=null||f!=null){r=b==null?q:b.wX(f,i) -if(r==null)r=A.lH(f,i)}else r=b -return new A.zG(a,h,s,e,r,g,B.a7,d,q,q)}, -aUK(a,b,c,d,e){return new A.zL(a,d,e,b,c,null,null)}, -b5A(a,b,c,d){return new A.zI(a,d,b,c,null,null)}, -b5z(a,b,c,d){return new A.zH(a,d,b,c,null,null)}, -pO:function pO(a,b){this.a=a -this.b=b}, -lP:function lP(a,b){this.a=a -this.b=b}, -Bl:function Bl(a,b){this.a=a -this.b=b}, -lS:function lS(a,b){this.a=a -this.b=b}, -pL:function pL(a,b){this.a=a -this.b=b}, -r8:function r8(a,b){this.a=a -this.b=b}, -tC:function tC(a,b){this.a=a -this.b=b}, -R6:function R6(){}, -vL:function vL(){}, -ak6:function ak6(a){this.a=a}, -ak5:function ak5(a){this.a=a}, -ak4:function ak4(a){this.a=a}, -uF:function uF(){}, -acx:function acx(){}, -zG:function zG(a,b,c,d,e,f,g,h,i,j){var _=this -_.r=a -_.x=b -_.y=c -_.z=d -_.Q=e -_.as=f -_.c=g -_.d=h -_.e=i -_.a=j}, -a0i:function a0i(a,b){var _=this -_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=_.CW=null -_.e=_.d=$ -_.dK$=a -_.bu$=b -_.c=_.a=null}, -ayU:function ayU(){}, -ayV:function ayV(){}, -ayW:function ayW(){}, -ayX:function ayX(){}, -ayY:function ayY(){}, -ayZ:function ayZ(){}, -az_:function az_(){}, -az0:function az0(){}, -zJ:function zJ(a,b,c,d,e,f){var _=this -_.r=a -_.w=b -_.c=c -_.d=d -_.e=e -_.a=f}, -a0l:function a0l(a,b){var _=this -_.CW=null -_.e=_.d=$ -_.dK$=a -_.bu$=b -_.c=_.a=null}, -az3:function az3(){}, -zL:function zL(a,b,c,d,e,f,g){var _=this -_.r=a -_.w=b -_.x=c -_.c=d -_.d=e -_.e=f -_.a=g}, -a0n:function a0n(a,b){var _=this -_.dy=_.dx=_.db=_.cy=_.cx=_.CW=null -_.e=_.d=$ -_.dK$=a -_.bu$=b -_.c=_.a=null}, -az8:function az8(){}, -az9:function az9(){}, -aza:function aza(){}, -azb:function azb(){}, -azc:function azc(){}, -azd:function azd(){}, -zI:function zI(a,b,c,d,e,f){var _=this -_.r=a -_.w=b -_.c=c -_.d=d -_.e=e -_.a=f}, -a0k:function a0k(a,b){var _=this -_.z=null -_.e=_.d=_.Q=$ -_.dK$=a -_.bu$=b -_.c=_.a=null}, -az2:function az2(){}, -zH:function zH(a,b,c,d,e,f){var _=this -_.r=a -_.w=b -_.c=c -_.d=d -_.e=e -_.a=f}, -a0j:function a0j(a,b){var _=this -_.CW=null -_.e=_.d=$ -_.dK$=a -_.bu$=b -_.c=_.a=null}, -az1:function az1(){}, -zK:function zK(a,b,c,d,e,f,g,h,i,j){var _=this -_.r=a -_.x=b -_.z=c -_.Q=d -_.as=e -_.at=f -_.c=g -_.d=h -_.e=i -_.a=j}, -a0m:function a0m(a,b){var _=this -_.db=_.cy=_.cx=_.CW=null -_.e=_.d=$ -_.dK$=a -_.bu$=b -_.c=_.a=null}, -az4:function az4(){}, -az5:function az5(){}, -az6:function az6(){}, -az7:function az7(){}, -yw:function yw(){}, -b8s(a,b,c,d){var s=a.fs(d) -if(s==null)return -c.push(s) -d.a(s.gW()) -return}, -c0(a,b,c){var s,r,q,p,o,n -if(b==null)return a.aA(c) -s=A.c([],t.Fa) -A.b8s(a,b,s,c) -if(s.length===0)return null -r=B.b.gaC(s) -for(q=s.length,p=0;p>")),i).c1(new A.aNW(k,h),t.e3)}, -CB(a){var s=a.aA(t.Gk) -return s==null?null:s.r.f}, -j2(a,b,c){var s=a.aA(t.Gk) -return s==null?null:c.i("0?").a(s.r.e.h(0,b))}, -yO:function yO(a,b){this.a=a -this.b=b}, -aNU:function aNU(a){this.a=a}, -aNV:function aNV(){}, -aNW:function aNW(a,b){this.a=a -this.b=b}, -e_:function e_(){}, -aau:function aau(){}, -PI:function PI(){}, -Ik:function Ik(a,b,c,d){var _=this -_.r=a -_.w=b -_.b=c -_.a=d}, -qZ:function qZ(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -a3z:function a3z(a,b){var _=this -_.d=a -_.e=b -_.c=_.a=_.f=null}, -aDS:function aDS(a){this.a=a}, -aDT:function aDT(a,b){this.a=a -this.b=b}, -aDR:function aDR(a,b,c){this.a=a -this.b=b -this.c=c}, -w_:function w_(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=null -_.L$=0 -_.P$=f -_.av$=_.ao$=0}, -a3y:function a3y(){}, -aWJ(a,b){var s -a.aA(t.bS) -s=A.alp(a,b) -if(s==null)return null -a.m2(s,null) -return b.a(s.gW())}, -b8R(a,b){var s=A.alp(a,b) -if(s==null)return null -return b.a(s.gW())}, -alp(a,b){var s,r,q,p=a.fs(b) -if(p==null)return null -s=a.fs(t.bS) -if(s!=null){r=s.d -r===$&&A.a() -q=p.d -q===$&&A.a() -q=r>q -r=q}else r=!1 -if(r)return null -return p}, -aWK(a,b){var s={} -s.a=null -a.lv(new A.alo(s,b)) -s=s.a -s=s==null?null:s.ga1() -return b.i("0?").a(s)}, -alo:function alo(a,b){this.a=a -this.b=b}, -bbC(a,b,c){return null}, -aWL(a,b){var s,r=b.a,q=a.a -if(rq?B.f.a8(0,new A.h(q-r,0)):B.f}r=b.b -q=a.b -if(rq)s=s.a8(0,new A.h(0,q-r))}return b.e0(s)}, -aXy(a,b,c,d,e,f){return new A.UB(a,c,b,d,e,f,null)}, -me:function me(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -YO:function YO(a,b){this.a=a -this.b=b}, -r0:function r0(){this.b=this.a=null}, -alq:function alq(a,b){this.a=a -this.b=b}, -w3:function w3(a,b,c){this.a=a -this.b=b -this.c=c}, -UB:function UB(a,b,c,d,e,f,g){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.a=g}, -a46:function a46(a,b){this.b=a -this.a=b}, -a3F:function a3F(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -a5F:function a5F(a,b,c,d,e){var _=this -_.D=a -_.a4=b -_.u$=c -_.dy=d -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -CU(a,b){return new A.jP(b,a,null)}, -b9b(a){return new A.dO(new A.anP(a),null)}, -b9a(a,b){return new A.dO(new A.anO(0,b,a),null)}, -c_(a,b){var s=A.c0(a,b,t.l) -return s==null?null:s.w}, -U0:function U0(a,b){this.a=a -this.b=b}, -dN:function dN(a,b){this.a=a -this.b=b}, -CV:function CV(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4){var _=this -_.a=a -_.b=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j -_.Q=k -_.as=l -_.at=m -_.ax=n -_.ay=o -_.ch=p -_.CW=q -_.cx=r -_.cy=s -_.db=a0 -_.dx=a1 -_.dy=a2 -_.fr=a3 -_.fx=a4}, -jP:function jP(a,b,c){this.w=a -this.b=b -this.a=c}, -anP:function anP(a){this.a=a}, -anO:function anO(a,b,c){this.a=a -this.b=b -this.c=c}, -anN:function anN(a,b){this.a=a -this.b=b}, -TI:function TI(a,b){this.a=a -this.b=b}, -Iu:function Iu(a,b,c){this.c=a -this.e=b -this.a=c}, -a3P:function a3P(){var _=this -_.c=_.a=_.e=_.d=null}, -aEv:function aEv(a,b){this.a=a -this.b=b}, -aLn:function aLn(){}, -YA:function YA(a,b){this.a=a -this.b=b}, -aaJ:function aaJ(){}, -aRm(a,b,c,d,e,f,g){return new A.wf(c,d,e,!0,f,b,g,null)}, -wf:function wf(a,b,c,d,e,f,g,h){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.a=h}, -ao_:function ao_(a,b){this.a=a -this.b=b}, -Mq:function Mq(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e}, -y7:function y7(a,b,c,d,e,f,g,h,i,j){var _=this -_.n=null -_.k3=_.k2=!1 -_.ok=_.k4=null -_.at=a -_.ax=b -_.ay=c -_.ch=d -_.cx=_.CW=null -_.cy=!1 -_.db=null -_.f=e -_.r=f -_.a=g -_.b=null -_.c=h -_.d=i -_.e=j}, -a0v:function a0v(a){this.a=a}, -a3V:function a3V(a,b,c){this.c=a -this.d=b -this.a=c}, -TJ:function TJ(a,b,c,d,e,f){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.a=f}, -Ky:function Ky(a,b){this.a=a -this.b=b}, -aKS:function aKS(a,b,c){var _=this -_.d=a -_.e=b -_.f=c -_.b=null}, -aWe(a,b){return new A.qG(b,a,null)}, -aRp(a){return A.ct(a,!1).avC(null)}, -ct(a,b){var s,r,q=a instanceof A.jc,p=null -if(q){s=a.ok -s.toString -p=s -s=s instanceof A.jS}else s=!1 -if(s){if(q)s=p -else{s=a.ok -s.toString}t.uK.a(s) -r=s}else r=null -if(b){s=a.Zf(t.uK) -r=s==null?r:s}else if(r==null)r=a.l6(t.uK) -r.toString -return r}, -aoN(a,b){var s,r,q,p=a.ok -p.toString -s=p instanceof A.jS -r=p -p=s -if(p){t.uK.a(r) -q=r}else q=null -if(b){p=a.Zf(t.uK) -if(p==null)p=q}else p=q==null?a.l6(t.uK):q -return p}, -b9A(a,b){var s,r,q,p,o,n,m=null,l=A.c([],t.ny) -if(B.c.c8(b,"/")&&b.length>1){b=B.c.cD(b,1) -s=t.z -l.push(a.ze("/",!0,m,s)) -r=b.split("/") -if(b.length!==0)for(q=r.length,p="",o=0;o=3}, -bdD(a){return a.gazb()}, -b_U(a){return new A.aGX(a)}, -aX1(a,b){var s,r,q,p -for(s=a.a,r=s.r,q=r.length,p=0;p") -n.w!==$&&A.bs() -n.w=new A.aw(m,p,q) -n.y!==$&&A.bs() -n.y=new A.aw(m,o,q) -q=c.vC(n.gamy()) -n.z!==$&&A.bs() -n.z=q -return n}, -BT:function BT(a,b,c,d){var _=this -_.e=a -_.f=b -_.w=c -_.a=d}, -HZ:function HZ(a,b,c){var _=this -_.r=_.f=_.e=_.d=null -_.w=a -_.dB$=b -_.bl$=c -_.c=_.a=null}, -yq:function yq(a,b){this.a=a -this.b=b}, -HY:function HY(a,b,c,d,e,f){var _=this -_.a=a -_.b=$ -_.c=null -_.e=_.d=0 -_.f=$ -_.r=b -_.w=$ -_.x=c -_.z=_.y=$ -_.Q=null -_.at=_.as=0.5 -_.ax=0 -_.ay=d -_.ch=e -_.L$=0 -_.P$=f -_.av$=_.ao$=0}, -aCH:function aCH(a){this.a=a}, -a2V:function a2V(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -FC:function FC(a,b,c,d){var _=this -_.c=a -_.e=b -_.f=c -_.a=d}, -Kj:function Kj(a,b){var _=this -_.d=$ -_.f=_.e=null -_.r=0 -_.w=!0 -_.dB$=a -_.bl$=b -_.c=_.a=null}, -aJO:function aJO(a){this.a=a}, -a8S:function a8S(a,b){var _=this -_.a=a -_.b=null -_.c=b -_.d=0}, -aJM:function aJM(a){this.a=a}, -aJN:function aJN(a){this.a=a}, -od:function od(a,b){this.a=a -this.c=!0 -this.hs$=b}, -IO:function IO(){}, -Lh:function Lh(){}, -LB:function LB(){}, -aXa(a,b){var s=a.gW() -return!(s instanceof A.wr)}, -aXc(a){var s=a.Ka(t.Mf) -return s==null?null:s.d}, -Ke:function Ke(a){this.a=a}, -U4:function U4(){this.a=null}, -aph:function aph(a){this.a=a}, -wr:function wr(a,b,c){this.c=a -this.d=b -this.a=c}, -kQ:function kQ(){}, -Dv:function Dv(){}, -anT:function anT(){}, -apE:function apE(){}, -PF:function PF(a,b){this.a=a -this.d=b}, -aXm(a){return new A.wy(null,null,B.a6u,a,null)}, -aXn(a,b){var s,r=a.Ka(t.bb) -if(r==null)return!1 -s=A.kX(a).kE(a) -if(r.w.q(0,s))return r.r===b -return!1}, -Up(a){var s=a.aA(t.bb) -return s==null?null:s.f}, -wy:function wy(a,b,c,d,e){var _=this -_.f=a -_.r=b -_.w=c -_.b=d -_.a=e}, -b_v(a,b,c){return new A.a2r(b,null,c,B.b2,a,null)}, -baf(){var s,r,q -if($.rH.length===0)return!1 -s=A.c($.rH.slice(0),A.a6($.rH)) -for(r=s.length,q=0;q?").a(s)}, -aWX(a){var s=A.wg(a,B.ajv,t.X) -return s==null?null:s.gjL()}, -wq:function wq(){}, -fb:function fb(){}, -axC:function axC(a,b,c){this.a=a -this.b=b -this.c=c}, -axA:function axA(a,b,c){this.a=a -this.b=b -this.c=c}, -axB:function axB(a,b,c){this.a=a -this.b=b -this.c=c}, -axz:function axz(a,b){this.a=a -this.b=b}, -axy:function axy(a,b){this.a=a -this.b=b}, -RB:function RB(){}, -a24:function a24(a,b){this.e=a -this.a=b -this.b=null}, -pa:function pa(a,b){this.a=a -this.b=b}, -Iz:function Iz(a,b,c,d,e,f,g){var _=this -_.w=a -_.x=b -_.y=c -_.z=d -_.Q=e -_.b=f -_.a=g}, -aER:function aER(a,b){this.a=a -this.b=b}, -yG:function yG(a,b,c){this.c=a -this.a=b -this.$ti=c}, -pb:function pb(a,b,c){var _=this -_.d=null -_.e=$ -_.f=a -_.r=b -_.c=_.a=null -_.$ti=c}, -aEL:function aEL(a){this.a=a}, -aEP:function aEP(a){this.a=a}, -aEQ:function aEQ(a){this.a=a}, -aEO:function aEO(a){this.a=a}, -aEM:function aEM(a){this.a=a}, -aEN:function aEN(a){this.a=a}, -f3:function f3(){}, -ao2:function ao2(a,b){this.a=a -this.b=b}, -ao0:function ao0(a,b){this.a=a -this.b=b}, -ao1:function ao1(){}, -DC:function DC(){}, -u2:function u2(){}, -El(a,b,c){return new A.Vl(c,a,b,null)}, -Vl:function Vl(a,b,c,d){var _=this -_.d=a -_.f=b -_.x=c -_.a=d}, -Vx:function Vx(){}, -nV:function nV(a){this.a=a -this.b=!1}, -ajQ:function ajQ(a,b){this.c=a -this.a=b -this.b=!1}, -asB:function asB(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -agb:function agb(a,b){this.c=a -this.a=b -this.b=!1}, -MF:function MF(a,b){var _=this -_.c=$ -_.d=a -_.a=b -_.b=!1}, -Q1:function Q1(a){var _=this -_.d=_.c=$ -_.a=a -_.b=!1}, -aXO(a,b){return new A.Ev(a,b,null)}, -kX(a){var s=a.aA(t.Cy),r=s==null?null:s.f -return r==null?B.LZ:r}, -Vy:function Vy(){}, -asy:function asy(){}, -asz:function asz(){}, -asA:function asA(){}, -aLN:function aLN(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -Ev:function Ev(a,b,c){this.f=a -this.b=b -this.a=c}, -Vz(){return new A.Ew(A.c([],t.ZP),$.af())}, -Ew:function Ew(a,b){var _=this -_.f=a -_.L$=0 -_.P$=b -_.av$=_.ao$=0}, -bil(a,b){return b}, -avz:function avz(){}, -Jx:function Jx(a){this.a=a}, -Y7:function Y7(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.r=f -_.w=g}, -JP:function JP(a,b){this.c=a -this.a=b}, -JQ:function JQ(a){var _=this -_.f=_.e=_.d=null -_.r=!1 -_.dh$=a -_.c=_.a=null}, -aHi:function aHi(a,b){this.a=a -this.b=b}, -ab8:function ab8(){}, -VC:function VC(){}, -ahP:function ahP(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -a2z:function a2z(){}, -aRM(a,b,c,d,e){var s=new A.k_(c,e,d,a,0) -if(b!=null)s.hs$=b -return s}, -bjK(a){return a.hs$===0}, -hH:function hH(){}, -Zd:function Zd(){}, -h8:function h8(){}, -rZ:function rZ(a,b,c,d){var _=this -_.d=a -_.a=b -_.b=c -_.hs$=d}, -k_:function k_(a,b,c,d,e){var _=this -_.d=a -_.e=b -_.a=c -_.b=d -_.hs$=e}, -jU:function jU(a,b,c,d,e,f){var _=this -_.d=a -_.e=b -_.f=c -_.a=d -_.b=e -_.hs$=f}, -j7:function j7(a,b,c,d){var _=this -_.d=a -_.a=b -_.b=c -_.hs$=d}, -Z6:function Z6(a,b,c,d){var _=this -_.d=a -_.a=b -_.b=c -_.hs$=d}, -JF:function JF(){}, -aRL(a){var s=a.aA(t.yd) -return s==null?null:s.f}, -JE:function JE(a,b,c){this.f=a -this.b=b -this.a=c}, -lj:function lj(a){var _=this -_.a=a -_.ie$=_.h1$=_.fl$=null}, -Ey:function Ey(a,b){this.c=a -this.a=b}, -VD:function VD(a){this.d=a -this.c=this.a=null}, -asC:function asC(a){this.a=a}, -asD:function asD(a){this.a=a}, -asE:function asE(a){this.a=a}, -b5Q(a,b,c){var s,r -if(a>0){s=a/c -if(b"))}, -aT2(a,b){var s=$.a1.ap$.x.h(0,a).ga1() -s.toString -return t.x.a(s).eC(b)}, -b0L(a,b){var s -if($.a1.ap$.x.h(0,a)==null)return!1 -s=t.ip.a($.a1.ap$.x.h(0,a).gW()).f -s.toString -return t.sm.a(s).a_3(A.aT2(a,b.gbV()),b.gdd())}, -bii(a,b){var s,r,q -if($.a1.ap$.x.h(0,a)==null)return!1 -s=t.ip.a($.a1.ap$.x.h(0,a).gW()).f -s.toString -t.sm.a(s) -r=A.aT2(a,b.gbV()) -q=b.gdd() -return s.atY(r,q)&&!s.a_3(r,q)}, -wV:function wV(a,b){this.a=a -this.b=b}, -wW:function wW(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=null -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j -_.Q=k -_.as=l -_.at=m -_.ax=n -_.ay=!1 -_.ch=null -_.CW=o -_.cx=null -_.db=_.cy=$ -_.dy=_.dx=null -_.L$=0 -_.P$=p -_.av$=_.ao$=0}, -wH:function wH(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this -_.c=a -_.d=b -_.e=c -_.r=d -_.w=e -_.Q=f -_.ay=g -_.ch=h -_.cx=i -_.cy=j -_.db=k -_.dx=l -_.fr=m -_.a=n}, -kU:function kU(a,b,c,d,e){var _=this -_.w=_.r=_.f=_.e=_.d=null -_.y=_.x=$ -_.z=a -_.Q=!1 -_.as=null -_.at=!1 -_.ay=_.ax=null -_.ch=b -_.CW=$ -_.dB$=c -_.bl$=d -_.c=_.a=null -_.$ti=e}, -aqj:function aqj(a){this.a=a}, -aqh:function aqh(a,b){this.a=a -this.b=b}, -aqi:function aqi(a){this.a=a}, -aqd:function aqd(a){this.a=a}, -aqe:function aqe(a){this.a=a}, -aqf:function aqf(a){this.a=a}, -aqg:function aqg(a){this.a=a}, -aqk:function aqk(a){this.a=a}, -aql:function aql(a){this.a=a}, -lo:function lo(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.bQ=a -_.bL=_.b8=_.av=_.ao=_.P=_.L=_.au=_.a5=_.a3=_.a0=_.U=_.n=null -_.k3=_.k2=!1 -_.ok=_.k4=null -_.at=b -_.ax=c -_.ay=d -_.ch=e -_.cx=_.CW=null -_.cy=!1 -_.db=null -_.f=f -_.r=g -_.a=h -_.b=null -_.c=i -_.d=j -_.e=k}, -pp:function pp(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.ec=a -_.at=b -_.ax=c -_.dy=_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=null -_.fr=!1 -_.fx=d -_.fy=e -_.k1=_.id=_.go=$ -_.k4=_.k3=_.k2=null -_.ok=$ -_.p1=!1 -_.p2=f -_.p3=g -_.p4=null -_.R8=h -_.RG=i -_.rx=null -_.f=j -_.r=k -_.a=l -_.b=null -_.c=m -_.d=n -_.e=o}, -p4:function p4(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this -_.ec=a -_.at=b -_.ax=c -_.dy=_.dx=_.db=_.cy=_.cx=_.CW=_.ch=_.ay=null -_.fr=!1 -_.fx=d -_.fy=e -_.k1=_.id=_.go=$ -_.k4=_.k3=_.k2=null -_.ok=$ -_.p1=!1 -_.p2=f -_.p3=g -_.p4=null -_.R8=h -_.RG=i -_.rx=null -_.f=j -_.r=k -_.a=l -_.b=null -_.c=m -_.d=n -_.e=o}, -yR:function yR(){}, -aWZ(a){var s,r=B.b.gad(a.glU()) -for(s=1;s-3))s=q-r<3&&b.d-a.d>-3 -else s=!0 -if(s)return 0 -if(Math.abs(p)>3)return r>q?1:-1 -return a.d>b.d?1:-1}, -b9m(a,b){var s=a.a,r=b.a,q=s-r -if(q<1e-10&&a.c-b.c>-1e-10)return-1 -if(r-s<1e-10&&b.c-a.c>-1e-10)return 1 -if(Math.abs(q)>1e-10)return s>r?1:-1 -return a.c>b.c?1:-1}, -xs:function xs(){}, -avX:function avX(a){this.a=a}, -avY:function avY(a){this.a=a}, -wh:function wh(){}, -aom:function aom(a){this.a=a}, -aon:function aon(a,b,c){this.a=a -this.b=b -this.c=c}, -aoo:function aoo(){}, -aoi:function aoi(a,b){this.a=a -this.b=b}, -aoj:function aoj(a){this.a=a}, -aok:function aok(a,b){this.a=a -this.b=b}, -aol:function aol(a){this.a=a}, -a4_:function a4_(){}, -aXQ(a){return new A.t0(null,a,null,null)}, -EE(a){var s=a.aA(t.Wu) -return s==null?null:s.f}, -aXR(a,b){return new A.wZ(b,a,null)}, -t0:function t0(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -a6n:function a6n(a,b,c){var _=this -_.d=a -_.B7$=b -_.rK$=c -_.c=_.a=null}, -wZ:function wZ(a,b,c){this.f=a -this.b=b -this.a=c}, -VI:function VI(){}, -ab7:function ab7(){}, -Lw:function Lw(){}, -Fg:function Fg(a,b){this.c=a -this.a=b}, -a8y:function a8y(){this.d=$ -this.c=this.a=null}, -a8z:function a8z(a,b,c){this.x=a -this.b=b -this.a=c}, -f6(a,b,c,d,e){return new A.ak(a,c,e,b,d,B.w)}, -bb0(a){var s=A.t(t.y6,t.Xw) -a.aL(0,new A.avk(s)) -return s}, -aRZ(a,b,c){return new A.tq(null,c,a,b,null)}, -CC:function CC(a,b){this.a=a -this.b=b}, -ak:function ak(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -oZ:function oZ(a,b){this.a=a -this.b=b}, -xh:function xh(a,b){var _=this -_.b=a -_.c=null -_.L$=0 -_.P$=b -_.av$=_.ao$=0}, -avk:function avk(a){this.a=a}, -avj:function avj(){}, -avl:function avl(a,b){this.a=a -this.b=b}, -avm:function avm(){}, -avn:function avn(a,b){this.a=a -this.b=b}, -tq:function tq(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -K4:function K4(){this.c=this.a=this.d=null}, -Ah:function Ah(a,b,c){this.c=a -this.d=b -this.a=c}, -adO:function adO(a){this.a=a}, -Fi:function Fi(a,b){var _=this -_.c=a -_.L$=0 -_.P$=b -_.av$=_.ao$=0}, -Fh:function Fh(a,b){this.c=a -this.a=b}, -K3:function K3(a,b){var _=this -_.d=a -_.e=b -_.c=_.a=null}, -a8C:function a8C(a,b,c){this.f=a -this.b=b -this.a=c}, -a8A:function a8A(){}, -a8B:function a8B(){}, -a8D:function a8D(){}, -a8F:function a8F(){}, -a8G:function a8G(){}, -aaB:function aaB(){}, -oJ(a,b,c,d,e){return new A.oI(e,c,b,d,a,null)}, -oI:function oI(a,b,c,d,e,f){var _=this -_.c=a -_.e=b -_.f=c -_.w=d -_.x=e -_.a=f}, -avr:function avr(a,b,c){this.a=a -this.b=b -this.c=c}, -z0:function z0(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e}, -a8I:function a8I(a,b){var _=this -_.c=_.b=_.a=_.CW=_.ay=_.p1=null -_.d=$ -_.e=a -_.r=_.f=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.at=!1}, -Jp:function Jp(a,b,c,d,e,f,g){var _=this -_.n=a -_.U=b -_.a0=c -_.a3=d -_.u$=e -_.dy=f -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=g -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -aGt:function aGt(a,b){this.a=a -this.b=b}, -aGs:function aGs(a){this.a=a}, -Lu:function Lu(){}, -aba:function aba(){}, -abb:function abb(){}, -XZ:function XZ(){}, -Y_:function Y_(a,b){this.c=a -this.a=b}, -avu:function avu(a){this.a=a}, -a5K:function a5K(a,b,c,d){var _=this -_.D=a -_.a4=null -_.u$=b -_.dy=c -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=d -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -aZv(a,b){return new A.xk(b,A.aZy(t.S,t.Dv),a,B.ae)}, -bb6(a,b,c,d,e){if(b===e-1)return d -return d+(d-c)/(b-a+1)*(e-b-1)}, -b8z(a,b){return new A.Cl(b,a,null)}, -Yd:function Yd(){}, -xl:function xl(){}, -Ya:function Ya(a,b){this.d=a -this.a=b}, -xk:function xk(a,b,c,d){var _=this -_.p1=a -_.p2=b -_.p4=_.p3=null -_.R8=!1 -_.c=_.b=_.a=_.CW=_.ay=null -_.d=$ -_.e=c -_.r=_.f=null -_.w=d -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.at=!1}, -avD:function avD(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -avB:function avB(){}, -avC:function avC(a,b){this.a=a -this.b=b}, -avA:function avA(a,b,c){this.a=a -this.b=b -this.c=c}, -avE:function avE(a,b){this.a=a -this.b=b}, -Cl:function Cl(a,b,c){this.f=a -this.b=b -this.a=c}, -Fs:function Fs(){}, -k3:function k3(){}, -oN:function oN(){}, -Ft:function Ft(a,b,c,d,e){var _=this -_.p1=a -_.p2=b -_.c=_.b=_.a=_.CW=_.ay=null -_.d=$ -_.e=c -_.r=_.f=null -_.w=d -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.at=!1 -_.$ti=e}, -K5:function K5(){}, -aZx(a,b,c,d,e){return new A.Yi(c,d,!0,e,b,null)}, -Fv:function Fv(a,b){this.a=a -this.b=b}, -Fu:function Fu(a){var _=this -_.a=!1 -_.L$=0 -_.P$=a -_.av$=_.ao$=0}, -Yi:function Yi(a,b,c,d,e,f){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.c=e -_.a=f}, -yW:function yW(a,b,c,d,e,f,g,h){var _=this -_.D=a -_.a4=b -_.am=c -_.bw=d -_.bQ=e -_.ec=_.bR=null -_.h2=!1 -_.fF=null -_.u$=f -_.dy=g -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=h -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -Yh:function Yh(){}, -Hx:function Hx(){}, -beI(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=A.c([],t.bt) -for(s=J.bk(c),r=a.length,q=0,p=0,o=0;q=0){f=o+j -e=f+(m-l) -o=Math.min(e+1,r) -p=f-l -d.push(new A.xx(new A.bI(f,e),n.b))}++q}return d}, -bje(a,b,c,d,e){var s=null,r=e.b,q=e.a,p=a.a -if(q!==p)r=A.beI(p,q,r) -if(A.aT()===B.as)return A.ef(A.beh(r,a,c,d,b),s,s,s,s,s,s,s,s,c,s) -return A.ef(A.bei(r,a,c,d,a.b.c),s,s,s,s,s,s,s,s,c,s)}, -bei(a,b,c,d,e){var s,r,q,p,o,n=null,m=A.c([],t.Ne),l=b.a,k=c.E(d),j=0,i=l.length,h=J.bk(a),g=0 -for(;;){if(!(jj){r=r=e?c:k -o=B.c.a6(l,r,p) -m.push(new A.f9(o,n,n,B.b2,n,n,n,n,n,n,s));++g -j=p}}h=l.length -if(ji){r=r=i&&e<=r&&d){s=B.c.a6(m,i,h) -n.push(new A.f9(s,o,o,B.b2,o,o,o,o,o,o,a0)) -s=B.c.a6(m,h,e) -n.push(new A.f9(s,o,o,B.b2,o,o,o,o,o,o,k)) -s=B.c.a6(m,e,r) -n.push(new A.f9(s,o,o,B.b2,o,o,o,o,o,o,a0))}else{s=B.c.a6(m,i,r) -n.push(new A.f9(s,o,o,B.b2,o,o,o,o,o,o,a0))}i=r}else{q=s.b -q=q=h&&q<=e&&d?k:j -p=B.c.a6(m,r,q) -n.push(new A.f9(p,o,o,B.b2,o,o,o,o,o,o,s));++c -i=q}}h=m.length -if(i-3))s=q-r<3&&b.d-a.d>-3 -else s=!0 -if(s)return 0 -if(Math.abs(p)>3)return r>q?1:-1 -return a.d>b.d?1:-1}, -bdE(a,b){var s=a.a,r=b.a,q=s-r -if(q<1e-10&&a.c-b.c>-1e-10)return-1 -if(r-s<1e-10&&b.c-a.c>-1e-10)return 1 -if(Math.abs(q)>1e-10)return s>r?1:-1 -return a.c>b.c?1:-1}, -bdi(a,b,c,d){var s=null -if(b==null&&a==null&&d==null)return c -return A.b_F(A.ay(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,b,!0,s,a,s,s,s,s,s,d),c)}, -b_F(a,b){var s,r=b.c -if(r==null)r=null -else{s=A.a6(r).i("am<1,ez>") -r=A.aa(new A.am(r,new A.aF9(a),s),s.i("aE.E"))}s=b.a -s=s==null?null:s.E(a) -if(s==null)s=a -return A.ef(r,b.y,b.e,b.f,b.r,b.d,b.x,b.w,b.z,s,b.b)}, -vi:function vi(a,b,c,d,e,f,g,h,i){var _=this -_.w=a -_.x=b -_.y=c -_.z=d -_.Q=e -_.as=f -_.at=g -_.b=h -_.a=i}, -a4e:function a4e(a){this.a=a}, -bW:function bW(a,b,c,d,e,f,g,h,i){var _=this -_.c=a -_.d=b -_.e=c -_.r=d -_.w=e -_.z=f -_.at=g -_.ax=h -_.a=i}, -JM:function JM(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.a=m}, -a6m:function a6m(a){var _=this -_.d=$ -_.e=a -_.c=_.a=null}, -a62:function a62(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.a=n}, -a6l:function a6l(a,b,c,d,e,f,g){var _=this -_.y1=a -_.dx=b -_.dy=c -_.fx=_.fr=null -_.b=d -_.d=_.c=-1 -_.w=_.r=_.f=_.e=null -_.z=_.y=_.x=!1 -_.Q=e -_.as=!1 -_.at=f -_.L$=0 -_.P$=g -_.av$=_.ao$=0 -_.a=null}, -aHe:function aHe(a,b){this.a=a -this.b=b}, -aHf:function aHf(a){this.a=a}, -aF9:function aF9(a){this.a=a}, -Bc:function Bc(){}, -PS:function PS(){}, -q6:function q6(a){this.a=a}, -q8:function q8(a){this.a=a}, -q7:function q7(a){this.a=a}, -B7:function B7(){}, -lU:function lU(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -lX:function lX(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -ql:function ql(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -qh:function qh(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -qi:function qi(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -i1:function i1(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -nO:function nO(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -lY:function lY(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -lW:function lW(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -qk:function qk(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -lV:function lV(a,b,c,d){var _=this -_.b=a -_.c=b -_.d=c -_.a=d}, -mH:function mH(a){this.a=a}, -mI:function mI(){}, -kt:function kt(a){this.b=a}, -mm:function mm(){}, -op:function op(){}, -jX:function jX(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -oW:function oW(){}, -jf:function jf(a,b,c){this.a=a -this.b=b -this.c=c}, -oU:function oU(){}, -kx:function kx(a,b){this.a=a -this.b=b}, -ky:function ky(a){this.a=a}, -b_W(a,b,c,d,e,f,g,h,i,j){return new A.JN(b,f,d,e,c,h,j,g,i,a,null)}, -z6(a){var s -switch(A.aT().a){case 0:case 1:case 3:if(a<=3)s=a -else{s=B.j.cn(a,3) -if(s===0)s=3}return s -case 2:case 4:return Math.min(a,3) -case 5:return a<2?a:2+B.j.cn(a,2)}}, -fP:function fP(a,b,c){var _=this -_.e=!1 -_.cS$=a -_.aJ$=b -_.a=c}, -ax8:function ax8(){}, -YP:function YP(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=$ -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=!1 -_.as=_.Q=$ -_.at=null -_.ay=_.ax=$}, -VJ:function VJ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.w=_.r=!1 -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ay=_.ax=!1 -_.ch=m -_.CW=n -_.cx=o -_.cy=p -_.db=q -_.dx=r -_.dy=s -_.fr=a0 -_.fx=a1 -_.fy=a2 -_.go=a3 -_.id=a4 -_.k1=a5 -_.k2=a6 -_.k3=a7 -_.k4=a8 -_.p1=_.ok=null -_.p2=a9 -_.p3=b0 -_.p4=!1}, -asW:function asW(a){this.a=a}, -asU:function asU(a,b){this.a=a -this.b=b}, -asV:function asV(a,b){this.a=a -this.b=b}, -asX:function asX(a,b,c){this.a=a -this.b=b -this.c=c}, -asT:function asT(a){this.a=a}, -asS:function asS(a,b,c){this.a=a -this.b=b -this.c=c}, -pj:function pj(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -JR:function JR(a,b){var _=this -_.d=$ -_.dK$=a -_.bu$=b -_.c=_.a=null}, -JN:function JN(a,b,c,d,e,f,g,h,i,j,k){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.a=k}, -JO:function JO(a,b){var _=this -_.d=$ -_.dK$=a -_.bu$=b -_.c=_.a=null}, -aHg:function aHg(a){this.a=a}, -aHh:function aHh(a,b){this.a=a -this.b=b}, -G3:function G3(){}, -axa:function axa(a){this.a=a}, -G2:function G2(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=k -_.at=l -_.ax=m -_.ay=n -_.ch=o -_.CW=p -_.cx=q -_.cy=r -_.db=s -_.dx=a0 -_.dy=a1 -_.fr=a2 -_.a=a3}, -Kt:function Kt(){this.c=this.a=null}, -aKA:function aKA(a){this.a=a}, -aKB:function aKB(a){this.a=a}, -aKC:function aKC(a){this.a=a}, -aKD:function aKD(a){this.a=a}, -aKE:function aKE(a){this.a=a}, -aKF:function aKF(a){this.a=a}, -aKG:function aKG(a){this.a=a}, -aKH:function aKH(a){this.a=a}, -aKI:function aKI(a){this.a=a}, -aKJ:function aKJ(a){this.a=a}, -AB:function AB(){}, -v_:function v_(a,b){this.a=a -this.b=b}, -k9:function k9(){}, -a14:function a14(){}, -Lx:function Lx(){}, -Ly:function Ly(){}, -bbG(a,b,c,d){var s,r,q,p,o=A.aZT(b,d,a,c) -if(o.j(0,B.ag))return B.aat -s=A.aZS(b) -r=o.a -r+=(o.c-r)/2 -q=s.b -p=s.d -return new A.G5(new A.h(r,A.E(o.b,q,p)),new A.h(r,A.E(o.d,q,p)))}, -aZS(a){var s=A.bA(a.bd(null),B.f),r=a.gC().A5(B.f) -return A.rI(s,A.bA(a.bd(null),r))}, -aZT(a,b,c,d){var s,r,q,p,o=A.aZS(a),n=o.a -if(isNaN(n)||isNaN(o.b)||isNaN(o.c)||isNaN(o.d))return B.ag -s=B.b.gaC(d).a.b-B.b.gad(d).a.b>c/2 -r=s?n:n+B.b.gad(d).a.a -q=o.b -p=B.b.gad(d) -n=s?o.c:n+B.b.gaC(d).a.a -return new A.w(r,q+p.a.b-b,n,q+B.b.gaC(d).a.b)}, -G5:function G5(a,b){this.a=a -this.b=b}, -bbH(a,b,c){var s=b/2,r=a-s -if(r<0)return 0 -if(a+s>c)return c-b -return r}, -YR:function YR(a,b,c){this.b=a -this.c=b -this.d=c}, -aSd(a,b){return new A.G9(b,a,null)}, -aZV(a){var s=a.Dr(t.l3),r=s==null?null:s.x -return r==null?B.Mc:r}, -G9:function G9(a,b,c){this.c=a -this.e=b -this.a=c}, -a9z:function a9z(a,b,c,d){var _=this -_.d=a -_.e=b -_.f=c -_.r=d -_.c=_.a=null}, -HK:function HK(a,b,c,d,e){var _=this -_.f=a -_.r=b -_.x=c -_.b=d -_.a=e}, -eA:function eA(){}, -dK:function dK(){}, -aat:function aat(a,b){var _=this -_.x=a -_.a=null -_.c=_.b=!1 -_.d=null -_.e=b -_.f=null}, -Ga:function Ga(a,b){this.a=a -this.b=b}, -a1a:function a1a(){}, -Gd:function Gd(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -a9B:function a9B(){this.c=this.a=null}, -Gf:function Gf(){}, -axp:function axp(a,b){this.a=a -this.b=b}, -axq:function axq(a){this.a=a}, -axn:function axn(a,b){this.a=a -this.b=b}, -axo:function axo(a,b){this.a=a -this.b=b}, -xM:function xM(){}, -oK(a,b,c,d){return new A.Y6(c,d,a,b,null)}, -asn(a,b){return new A.Vn(A.blc(),B.a_,null,a,b,null)}, -baw(a){return A.wc(a,a,1)}, -aXL(a,b){return new A.Vi(A.blb(),B.a_,null,a,b,null)}, -bat(a){var s,r,q=a*3.141592653589793*2,p=new Float64Array(16) -p[15]=1 -s=Math.cos(q) -r=Math.sin(q) -p[0]=s -p[1]=r -p[2]=0 -p[4]=-r -p[5]=s -p[6]=0 -p[8]=0 -p[9]=0 -p[10]=1 -p[3]=0 -p[7]=0 -p[11]=0 -return new A.bc(p)}, -aZn(a,b,c,d){return new A.Y0(a,b,c,d,null)}, -hU(a,b,c){return new A.Mp(b,c,a,null)}, -zO:function zO(){}, -GT:function GT(){this.c=this.a=null}, -aze:function aze(){}, -Y6:function Y6(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e}, -Ty:function Ty(){}, -Vn:function Vn(a,b,c,d,e,f){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.c=e -_.a=f}, -Vi:function Vi(a,b,c,d,e,f){var _=this -_.e=a -_.f=b -_.r=c -_.w=d -_.c=e -_.a=f}, -Y0:function Y0(a,b,c,d,e){var _=this -_.e=a -_.f=b -_.w=c -_.c=d -_.a=e}, -e9:function e9(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -Pz:function Pz(a,b,c,d){var _=this -_.e=a -_.r=b -_.c=c -_.a=d}, -ib:function ib(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -Mp:function Mp(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -biN(a,b,c){var s={} -s.a=null -return new A.aOv(s,A.bQ(),a,b,c)}, -xT:function xT(a,b,c,d,e,f,g,h,i){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.a=h -_.$ti=i}, -xU:function xU(a,b){var _=this -_.d=a -_.e=$ -_.f=null -_.r=!1 -_.c=_.a=_.x=_.w=null -_.$ti=b}, -axH:function axH(a){this.a=a}, -xV:function xV(a,b){this.a=a -this.b=b}, -Gr:function Gr(a,b,c,d){var _=this -_.w=a -_.x=b -_.a=c -_.L$=0 -_.P$=d -_.av$=_.ao$=0}, -aa9:function aa9(a,b){this.a=a -this.b=-1 -this.$ti=b}, -aOv:function aOv(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -aOu:function aOu(a,b,c){this.a=a -this.b=b -this.c=c}, -KC:function KC(){}, -dL:function dL(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.a=d -_.$ti=e}, -zf:function zf(a){var _=this -_.d=$ -_.c=_.a=null -_.$ti=a}, -aLy:function aLy(a){this.a=a}, -ld(a){var s=A.aWJ(a,t._l) -return s==null?null:s.f}, -b_e(a){var s=a.aA(t.Li) -s=s==null?null:s.f -if(s==null){s=$.mB.CW$ -s===$&&A.a()}return s}, -Gw:function Gw(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -KP:function KP(a,b){var _=this -_.d=a -_.e=b -_.f=!1 -_.c=_.a=null}, -UC:function UC(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -aqo:function aqo(a){this.a=a}, -IY:function IY(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -a5c:function a5c(a,b){var _=this -_.a0=$ -_.c=_.b=_.a=_.CW=_.ay=_.a5=_.a3=null -_.d=$ -_.e=a -_.r=_.f=null -_.w=b -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.at=!1}, -ug:function ug(a,b,c){this.f=a -this.b=b -this.a=c}, -IS:function IS(a,b,c){this.f=a -this.b=b -this.a=c}, -Hy:function Hy(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.$ti=d}, -abz:function abz(){}, -axX(a,b){switch(b.a){case 0:return A.aTD(a.aA(t.I).w) -case 1:return B.aV -case 2:return A.aTD(a.aA(t.I).w) -case 3:return B.aV}}, -Gz:function Gz(a,b,c,d,e,f,g,h,i){var _=this -_.e=a -_.r=b -_.w=c -_.x=d -_.y=e -_.Q=f -_.as=g -_.c=h -_.a=i}, -aai:function aai(a,b,c){var _=this -_.a5=!1 -_.au=null -_.p1=$ -_.p2=a -_.c=_.b=_.a=_.CW=_.ay=null -_.d=$ -_.e=b -_.r=_.f=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.at=!1}, -XW:function XW(a,b,c,d,e,f){var _=this -_.e=a -_.r=b -_.w=c -_.x=d -_.c=e -_.a=f}, -abA:function abA(){}, -abB:function abB(){}, -Ze:function Ze(a,b,c){this.c=a -this.e=b -this.a=c}, -aak:function aak(a,b,c){this.f=a -this.b=b -this.a=c}, -aaj:function aaj(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -a5S:function a5S(a,b,c,d,e){var _=this -_.D=a -_.a4=b -_.u$=c -_.dy=d -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=e -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -Cb:function Cb(a,b){this.a=a -this.b=b}, -Rd:function Rd(){}, -b_f(a,b){var s={},r=A.c([],t.p),q=A.c([14],t.n) -s.a=0 -new A.ay2(s,q,b,r).$1(a) -return r}, -y4:function y4(){}, -ay2:function ay2(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aap:function aap(a,b,c){this.f=a -this.b=b -this.a=c}, -a0H:function a0H(a,b,c,d){var _=this -_.e=a -_.f=b -_.c=c -_.a=d}, -Jm:function Jm(a,b,c,d,e,f){var _=this -_.n=a -_.U=b -_.a0=c -_.u$=d -_.dy=e -_.b=_.fy=null -_.c=0 -_.y=_.d=null -_.z=!0 -_.Q=null -_.as=!1 -_.at=null -_.ay=$ -_.ch=f -_.CW=!1 -_.cx=$ -_.cy=!0 -_.db=!1 -_.dx=$}, -aGr:function aGr(a){this.a=a}, -aGq:function aGq(a){this.a=a}, -ab0:function ab0(){}, -aaq(a){var s=a.$1(B.cB).gp() -return new A.KR(a,(s>>>24&255)/255,(s>>>16&255)/255,(s>>>8&255)/255,(s&255)/255,B.e)}, -bcf(a){if(a.q(0,B.K))return B.ci -return B.el}, -bce(a){if(a.q(0,B.K))return B.ci -return B.el}, -bcg(a){if(a.q(0,B.K))return B.ci -return B.Jh}, -aSp(a,b,c){if(a==null&&b==null)return null -if(a==b)return a -return new A.a3t(a,b,c)}, -b0l(a){return new A.jm(a,B.r,1,B.F,-1)}, -KT(a){var s=null -return new A.aas(a,!0,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -dM(a,b,c){if(c.i("cr<0>").b(a))return a.af(b) -return a}, -bch(a,b){return new A.bS(a,b.i("bS<0>"))}, -b9(a,b,c,d,e){if(a==null&&b==null)return null -return new A.Ig(a,b,c,d,e.i("Ig<0>"))}, -ay3(){return new A.Zm(A.aU(t.EK),$.af())}, -a0w:function a0w(){}, -cq:function cq(a,b){this.a=a -this.b=b}, -Zi:function Zi(){}, -KR:function KR(a,b,c,d,e,f){var _=this -_.z=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f}, -Zj:function Zj(){}, -KS:function KS(a,b){this.a=a -this.b=b}, -Zh:function Zh(){}, -a3t:function a3t(a,b,c){this.a=a -this.b=b -this.c=c}, -jm:function jm(a,b,c,d,e){var _=this -_.x=a -_.a=b -_.b=c -_.c=d -_.d=e}, -Zk:function Zk(){}, -aas:function aas(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7){var _=this -_.a3=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h -_.w=i -_.x=j -_.y=k -_.z=l -_.Q=m -_.as=n -_.at=o -_.ax=p -_.ay=q -_.ch=r -_.CW=s -_.cx=a0 -_.cy=a1 -_.db=a2 -_.dx=a3 -_.dy=a4 -_.fr=a5 -_.fx=a6 -_.fy=a7}, -Ig:function Ig(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.$ti=e}, -bS:function bS(a,b){this.a=a -this.$ti=b}, -iH:function iH(a,b){this.a=a -this.$ti=b}, -bB:function bB(a,b){this.a=a -this.$ti=b}, -Zm:function Zm(a,b){var _=this -_.a=a -_.L$=0 -_.P$=b -_.av$=_.ao$=0}, -aar:function aar(){}, -GM:function GM(a,b,c){this.c=a -this.d=b -this.a=c}, -aaw:function aaw(){this.c=this.a=this.d=null}, -b5y(a,b,c,d,e,f,g,h,i,j,k,l){var s=e==null?B.z:e -s=new A.hl(c,i,j,h,b!==!1,s,d,a,k,l,B.z,B.z,g) -s.OC(a,b,c,d,e,f,g,h,i,j,k,l) -return s}, -Mo(a){var s=null -return A.b5y(s,s,a,s,s,s,s,s,s,s,s,s)}, -hl:function hl(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.x=g -_.y=h -_.z=i -_.Q=j -_.as=$ -_.at=k -_.ax=null -_.ay=l -_.a=m}, -acu:function acu(){}, -acv:function acv(){}, -acw:function acw(){}, -GS:function GS(a,b){var _=this -_.d=$ -_.e=!1 -_.r=_.f=null -_.dK$=a -_.bu$=b -_.c=_.a=null}, -ayT:function ayT(a){this.a=a}, -a0h:function a0h(){}, -L3:function L3(){}, -eN:function eN(){}, -ah1:function ah1(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Qf(a,b,c){return a.rd(new A.qm(b,c,null,0,1))}, -qm:function qm(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -D1:function D1(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -aob:function aob(a,b,c){this.a=a -this.b=b -this.c=c}, -Vh:function Vh(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -as1:function as1(a,b,c){this.a=a -this.b=b -this.c=c}, -rT:function rT(a,b,c,d,e,f){var _=this -_.r=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f}, -asm:function asm(a,b,c){this.a=a -this.b=b -this.c=c}, -aZt(a,b,c,d,e){return new A.ix(c,d,b,a,e)}, -ix:function ix(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -nw:function nw(){}, -Bn:function Bn(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -Qz:function Qz(){}, -a2U:function a2U(){}, -aCD:function aCD(a){this.a=a}, -aCE:function aCE(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -b6s(a,b,c,d,e,f,g,h,i,j){return new A.AM()}, -b6t(a,b,c,d,e,f,g,h,i,j){return new A.AN()}, -b6u(a,b,c,d,e,f,g,h,i,j){return new A.AO()}, -b6v(a,b,c,d,e,f,g,h,i,j){return new A.AP()}, -b6w(a,b,c,d,e,f,g,h,i,j){return new A.AQ()}, -b6x(a,b,c,d,e,f,g,h,i,j){return new A.AR()}, -b6y(a,b,c,d,e,f,g,h,i,j){return new A.AS()}, -b6z(a,b,c,d,e,f,g,h,i,j){return new A.AT()}, -aVk(a,b,c,d,e,f,g,h,i){return new A.Pm()}, -aVl(a,b,c,d,e,f,g,h,i){return new A.Pn()}, -bk2(a,b,c,d,e,f,g,h,i,j){switch(a.gdV()){case"af":return new A.NF() -case"am":return new A.NG() -case"ar":return new A.NH() -case"as":return new A.NI() -case"az":return new A.NJ() -case"be":return new A.NK() -case"bg":return new A.NL() -case"bn":return new A.NM() -case"bo":return new A.NN() -case"bs":return new A.NO() -case"ca":return new A.NP() -case"cs":return new A.NQ() -case"cy":return new A.NR() -case"da":return new A.NS() -case"de":switch(a.gdS()){case"CH":return new A.NT()}return A.b6s(c,j,h,b,"de",e,f,g,i,d) -case"el":return new A.NU() -case"en":switch(a.gdS()){case"AU":return new A.NV() -case"CA":return new A.NW() -case"GB":return new A.NX() -case"IE":return new A.NY() -case"IN":return new A.NZ() -case"NZ":return new A.O_() -case"SG":return new A.O0() -case"ZA":return new A.O1()}return A.b6t(c,j,h,b,"en",e,f,g,i,d) -case"es":switch(a.gdS()){case"419":return new A.O2() -case"AR":return new A.O3() -case"BO":return new A.O4() -case"CL":return new A.O5() -case"CO":return new A.O6() -case"CR":return new A.O7() -case"DO":return new A.O8() -case"EC":return new A.O9() -case"GT":return new A.Oa() -case"HN":return new A.Ob() -case"MX":return new A.Oc() -case"NI":return new A.Od() -case"PA":return new A.Oe() -case"PE":return new A.Of() -case"PR":return new A.Og() -case"PY":return new A.Oh() -case"SV":return new A.Oi() -case"US":return new A.Oj() -case"UY":return new A.Ok() -case"VE":return new A.Ol()}return A.b6u(c,j,h,b,"es",e,f,g,i,d) -case"et":return new A.Om() -case"eu":return new A.On() -case"fa":return new A.Oo() -case"fi":return new A.Op() -case"fil":return new A.Oq() -case"fr":switch(a.gdS()){case"CA":return new A.Or()}return A.b6v(c,j,h,b,"fr",e,f,g,i,d) -case"ga":return new A.Os() -case"gl":return new A.Ot() -case"gsw":return new A.Ou() -case"gu":return new A.Ov() -case"he":return new A.Ow() -case"hi":return new A.Ox() -case"hr":return new A.Oy() -case"hu":return new A.Oz() -case"hy":return new A.OA() -case"id":return new A.OB() -case"is":return new A.OC() -case"it":return new A.OD() -case"ja":return new A.OE() -case"ka":return new A.OF() -case"kk":return new A.OG() -case"km":return new A.OH() -case"kn":return new A.OI() -case"ko":return new A.OJ() -case"ky":return new A.OK() -case"lo":return new A.OL() -case"lt":return new A.OM() -case"lv":return new A.ON() -case"mk":return new A.OO() -case"ml":return new A.OP() -case"mn":return new A.OQ() -case"mr":return new A.OR() -case"ms":return new A.OS() -case"my":return new A.OT() -case"nb":return new A.OU() -case"ne":return new A.OV() -case"nl":return new A.OW() -case"no":return new A.OX() -case"or":return new A.OY() -case"pa":return new A.OZ() -case"pl":return new A.P_() -case"pt":switch(a.gdS()){case"PT":return new A.P0()}return A.b6w(c,j,h,b,"pt",e,f,g,i,d) -case"ro":return new A.P1() -case"ru":return new A.P2() -case"si":return new A.P3() -case"sk":return new A.P4() -case"sl":return new A.P5() -case"sq":return new A.P6() -case"sr":switch(a.b){case"Cyrl":return new A.P7() -case"Latn":return new A.P8()}return A.b6x(c,j,h,b,"sr",e,f,g,i,d) -case"sv":return new A.P9() -case"sw":return new A.Pa() -case"ta":return new A.Pb() -case"te":return new A.Pc() -case"th":return new A.Pd() -case"tl":return new A.Pe() -case"tr":return new A.Pf() -case"ug":return new A.Pg() -case"uk":return new A.Ph() -case"ur":return new A.Pi() -case"uz":return new A.Pj() -case"vi":return new A.Pk() -case"zh":switch(a.b){case"Hans":return new A.Pl() -case"Hant":switch(a.gdS()){case"HK":return A.aVk(c,j,h,b,e,f,g,i,d) -case"TW":return A.aVl(c,j,h,b,e,f,g,i,d)}return A.b6z(c,j,h,b,"zh_Hant",e,f,g,i,d)}switch(a.gdS()){case"HK":return A.aVk(c,j,h,b,e,f,g,i,d) -case"TW":return A.aVl(c,j,h,b,e,f,g,i,d)}return A.b6y(c,j,h,b,"zh",e,f,g,i,d) -case"zu":return new A.Po()}return null}, -NF:function NF(){}, -NG:function NG(){}, -NH:function NH(){}, -NI:function NI(){}, -NJ:function NJ(){}, -NK:function NK(){}, -NL:function NL(){}, -NM:function NM(){}, -NN:function NN(){}, -NO:function NO(){}, -NP:function NP(){}, -NQ:function NQ(){}, -NR:function NR(){}, -NS:function NS(){}, -AM:function AM(){}, -NT:function NT(){}, -NU:function NU(){}, -AN:function AN(){}, -NV:function NV(){}, -NW:function NW(){}, -NX:function NX(){}, -NY:function NY(){}, -NZ:function NZ(){}, -O_:function O_(){}, -O0:function O0(){}, -O1:function O1(){}, -AO:function AO(){}, -O2:function O2(){}, -O3:function O3(){}, -O4:function O4(){}, -O5:function O5(){}, -O6:function O6(){}, -O7:function O7(){}, -O8:function O8(){}, -O9:function O9(){}, -Oa:function Oa(){}, -Ob:function Ob(){}, -Oc:function Oc(){}, -Od:function Od(){}, -Oe:function Oe(){}, -Of:function Of(){}, -Og:function Og(){}, -Oh:function Oh(){}, -Oi:function Oi(){}, -Oj:function Oj(){}, -Ok:function Ok(){}, -Ol:function Ol(){}, -Om:function Om(){}, -On:function On(){}, -Oo:function Oo(){}, -Op:function Op(){}, -Oq:function Oq(){}, -AP:function AP(){}, -Or:function Or(){}, -Os:function Os(){}, -Ot:function Ot(){}, -Ou:function Ou(){}, -Ov:function Ov(){}, -Ow:function Ow(){}, -Ox:function Ox(){}, -Oy:function Oy(){}, -Oz:function Oz(){}, -OA:function OA(){}, -OB:function OB(){}, -OC:function OC(){}, -OD:function OD(){}, -OE:function OE(){}, -OF:function OF(){}, -OG:function OG(){}, -OH:function OH(){}, -OI:function OI(){}, -OJ:function OJ(){}, -OK:function OK(){}, -OL:function OL(){}, -OM:function OM(){}, -ON:function ON(){}, -OO:function OO(){}, -OP:function OP(){}, -OQ:function OQ(){}, -OR:function OR(){}, -OS:function OS(){}, -OT:function OT(){}, -OU:function OU(){}, -OV:function OV(){}, -OW:function OW(){}, -OX:function OX(){}, -OY:function OY(){}, -OZ:function OZ(){}, -P_:function P_(){}, -AQ:function AQ(){}, -P0:function P0(){}, -P1:function P1(){}, -P2:function P2(){}, -P3:function P3(){}, -P4:function P4(){}, -P5:function P5(){}, -P6:function P6(){}, -AR:function AR(){}, -P7:function P7(){}, -P8:function P8(){}, -P9:function P9(){}, -Pa:function Pa(){}, -Pb:function Pb(){}, -Pc:function Pc(){}, -Pd:function Pd(){}, -Pe:function Pe(){}, -Pf:function Pf(){}, -Pg:function Pg(){}, -Ph:function Ph(){}, -Pi:function Pi(){}, -Pj:function Pj(){}, -Pk:function Pk(){}, -AS:function AS(){}, -Pl:function Pl(){}, -AT:function AT(){}, -Pm:function Pm(){}, -Pn:function Pn(){}, -Po:function Po(){}, -b8Z(a,b,c,d,e,f,g,h,i,j){return new A.CK(d,b)}, -b9_(a,b,c,d,e,f,g,h,i,j){return new A.CL(d,b)}, -b90(a,b,c,d,e,f,g,h,i,j){return new A.CM(d,b)}, -b91(a,b,c,d,e,f,g,h,i,j){return new A.CN(d,b)}, -b92(a,b,c,d,e,f,g,h,i,j){return new A.CO(d,b)}, -b93(a,b,c,d,e,f,g,h,i,j){return new A.CP(d,b)}, -b94(a,b,c,d,e,f,g,h,i,j){return new A.CQ(d,b)}, -b95(a,b,c,d,e,f,g,h,i,j){return new A.CR(d,b)}, -aWO(a,b,c,d,e,f,g,h,i){return new A.Tt("zh_Hant_HK",b)}, -aWP(a,b,c,d,e,f,g,h,i){return new A.Tu("zh_Hant_TW",b)}, -bk5(a,b,c,d,e,f,g,h,i,j){switch(a.gdV()){case"af":return new A.RL("af",i) -case"am":return new A.RM("am",i) -case"ar":return new A.RN("ar",i) -case"as":return new A.RO("as",i) -case"az":return new A.RP("az",i) -case"be":return new A.RQ("be",i) -case"bg":return new A.RR("bg",i) -case"bn":return new A.RS("bn",i) -case"bo":return new A.RT("bo",i) -case"bs":return new A.RU("bs",i) -case"ca":return new A.RV("ca",i) -case"cs":return new A.RW("cs",i) -case"cy":return new A.RX("cy",i) -case"da":return new A.RY("da",i) -case"de":switch(a.gdS()){case"CH":return new A.RZ("de_CH",i)}return A.b8Z(c,i,b,"de",f,e,d,h,j,g) -case"el":return new A.S_("el",i) -case"en":switch(a.gdS()){case"AU":return new A.S0("en_AU",i) -case"CA":return new A.S1("en_CA",i) -case"GB":return new A.S2("en_GB",i) -case"IE":return new A.S3("en_IE",i) -case"IN":return new A.S4("en_IN",i) -case"NZ":return new A.S5("en_NZ",i) -case"SG":return new A.S6("en_SG",i) -case"ZA":return new A.S7("en_ZA",i)}return A.b9_(c,i,b,"en",f,e,d,h,j,g) -case"es":switch(a.gdS()){case"419":return new A.S8("es_419",i) -case"AR":return new A.S9("es_AR",i) -case"BO":return new A.Sa("es_BO",i) -case"CL":return new A.Sb("es_CL",i) -case"CO":return new A.Sc("es_CO",i) -case"CR":return new A.Sd("es_CR",i) -case"DO":return new A.Se("es_DO",i) -case"EC":return new A.Sf("es_EC",i) -case"GT":return new A.Sg("es_GT",i) -case"HN":return new A.Sh("es_HN",i) -case"MX":return new A.Si("es_MX",i) -case"NI":return new A.Sj("es_NI",i) -case"PA":return new A.Sk("es_PA",i) -case"PE":return new A.Sl("es_PE",i) -case"PR":return new A.Sm("es_PR",i) -case"PY":return new A.Sn("es_PY",i) -case"SV":return new A.So("es_SV",i) -case"US":return new A.Sp("es_US",i) -case"UY":return new A.Sq("es_UY",i) -case"VE":return new A.Sr("es_VE",i)}return A.b90(c,i,b,"es",f,e,d,h,j,g) -case"et":return new A.Ss("et",i) -case"eu":return new A.St("eu",i) -case"fa":return new A.Su("fa",i) -case"fi":return new A.Sv("fi",i) -case"fil":return new A.Sw("fil",i) -case"fr":switch(a.gdS()){case"CA":return new A.Sx("fr_CA",i)}return A.b91(c,i,b,"fr",f,e,d,h,j,g) -case"ga":return new A.Sy("ga",i) -case"gl":return new A.Sz("gl",i) -case"gsw":return new A.SA("gsw",i) -case"gu":return new A.SB("gu",i) -case"he":return new A.SC("he",i) -case"hi":return new A.SD("hi",i) -case"hr":return new A.SE("hr",i) -case"hu":return new A.SF("hu",i) -case"hy":return new A.SG("hy",i) -case"id":return new A.SH("id",i) -case"is":return new A.SI("is",i) -case"it":return new A.SJ("it",i) -case"ja":return new A.SK("ja",i) -case"ka":return new A.SL("ka",i) -case"kk":return new A.SM("kk",i) -case"km":return new A.SN("km",i) -case"kn":return new A.SO("kn",i) -case"ko":return new A.SP("ko",i) -case"ky":return new A.SQ("ky",i) -case"lo":return new A.SR("lo",i) -case"lt":return new A.SS("lt",i) -case"lv":return new A.ST("lv",i) -case"mk":return new A.SU("mk",i) -case"ml":return new A.SV("ml",i) -case"mn":return new A.SW("mn",i) -case"mr":return new A.SX("mr",i) -case"ms":return new A.SY("ms",i) -case"my":return new A.SZ("my",i) -case"nb":return new A.T_("nb",i) -case"ne":return new A.T0("ne",i) -case"nl":return new A.T1("nl",i) -case"no":return new A.T2("no",i) -case"or":return new A.T3("or",i) -case"pa":return new A.T4("pa",i) -case"pl":return new A.T5("pl",i) -case"ps":return new A.T6("ps",i) -case"pt":switch(a.gdS()){case"PT":return new A.T7("pt_PT",i)}return A.b92(c,i,b,"pt",f,e,d,h,j,g) -case"ro":return new A.T8("ro",i) -case"ru":return new A.T9("ru",i) -case"si":return new A.Ta("si",i) -case"sk":return new A.Tb("sk",i) -case"sl":return new A.Tc("sl",i) -case"sq":return new A.Td("sq",i) -case"sr":switch(a.b){case"Cyrl":return new A.Te("sr_Cyrl",i) -case"Latn":return new A.Tf("sr_Latn",i)}return A.b93(c,i,b,"sr",f,e,d,h,j,g) -case"sv":return new A.Tg("sv",i) -case"sw":return new A.Th("sw",i) -case"ta":return new A.Ti("ta",i) -case"te":return new A.Tj("te",i) -case"th":return new A.Tk("th",i) -case"tl":return new A.Tl("tl",i) -case"tr":return new A.Tm("tr",i) -case"ug":return new A.Tn("ug",i) -case"uk":return new A.To("uk",i) -case"ur":return new A.Tp("ur",i) -case"uz":return new A.Tq("uz",i) -case"vi":return new A.Tr("vi",i) -case"zh":switch(a.b){case"Hans":return new A.Ts("zh_Hans",i) -case"Hant":switch(a.gdS()){case"HK":return A.aWO(c,i,b,f,e,d,h,j,g) -case"TW":return A.aWP(c,i,b,f,e,d,h,j,g)}return A.b95(c,i,b,"zh_Hant",f,e,d,h,j,g)}switch(a.gdS()){case"HK":return A.aWO(c,i,b,f,e,d,h,j,g) -case"TW":return A.aWP(c,i,b,f,e,d,h,j,g)}return A.b94(c,i,b,"zh",f,e,d,h,j,g) -case"zu":return new A.Tv("zu",i)}return null}, -RL:function RL(a,b){this.a=a -this.x=b}, -RM:function RM(a,b){this.a=a -this.x=b}, -RN:function RN(a,b){this.a=a -this.x=b}, -RO:function RO(a,b){this.a=a -this.x=b}, -RP:function RP(a,b){this.a=a -this.x=b}, -RQ:function RQ(a,b){this.a=a -this.x=b}, -RR:function RR(a,b){this.a=a -this.x=b}, -RS:function RS(a,b){this.a=a -this.x=b}, -RT:function RT(a,b){this.a=a -this.x=b}, -RU:function RU(a,b){this.a=a -this.x=b}, -RV:function RV(a,b){this.a=a -this.x=b}, -RW:function RW(a,b){this.a=a -this.x=b}, -RX:function RX(a,b){this.a=a -this.x=b}, -RY:function RY(a,b){this.a=a -this.x=b}, -CK:function CK(a,b){this.a=a -this.x=b}, -RZ:function RZ(a,b){this.a=a -this.x=b}, -S_:function S_(a,b){this.a=a -this.x=b}, -CL:function CL(a,b){this.a=a -this.x=b}, -S0:function S0(a,b){this.a=a -this.x=b}, -S1:function S1(a,b){this.a=a -this.x=b}, -S2:function S2(a,b){this.a=a -this.x=b}, -S3:function S3(a,b){this.a=a -this.x=b}, -S4:function S4(a,b){this.a=a -this.x=b}, -S5:function S5(a,b){this.a=a -this.x=b}, -S6:function S6(a,b){this.a=a -this.x=b}, -S7:function S7(a,b){this.a=a -this.x=b}, -CM:function CM(a,b){this.a=a -this.x=b}, -S8:function S8(a,b){this.a=a -this.x=b}, -S9:function S9(a,b){this.a=a -this.x=b}, -Sa:function Sa(a,b){this.a=a -this.x=b}, -Sb:function Sb(a,b){this.a=a -this.x=b}, -Sc:function Sc(a,b){this.a=a -this.x=b}, -Sd:function Sd(a,b){this.a=a -this.x=b}, -Se:function Se(a,b){this.a=a -this.x=b}, -Sf:function Sf(a,b){this.a=a -this.x=b}, -Sg:function Sg(a,b){this.a=a -this.x=b}, -Sh:function Sh(a,b){this.a=a -this.x=b}, -Si:function Si(a,b){this.a=a -this.x=b}, -Sj:function Sj(a,b){this.a=a -this.x=b}, -Sk:function Sk(a,b){this.a=a -this.x=b}, -Sl:function Sl(a,b){this.a=a -this.x=b}, -Sm:function Sm(a,b){this.a=a -this.x=b}, -Sn:function Sn(a,b){this.a=a -this.x=b}, -So:function So(a,b){this.a=a -this.x=b}, -Sp:function Sp(a,b){this.a=a -this.x=b}, -Sq:function Sq(a,b){this.a=a -this.x=b}, -Sr:function Sr(a,b){this.a=a -this.x=b}, -Ss:function Ss(a,b){this.a=a -this.x=b}, -St:function St(a,b){this.a=a -this.x=b}, -Su:function Su(a,b){this.a=a -this.x=b}, -Sv:function Sv(a,b){this.a=a -this.x=b}, -Sw:function Sw(a,b){this.a=a -this.x=b}, -CN:function CN(a,b){this.a=a -this.x=b}, -Sx:function Sx(a,b){this.a=a -this.x=b}, -Sy:function Sy(a,b){this.a=a -this.x=b}, -Sz:function Sz(a,b){this.a=a -this.x=b}, -SA:function SA(a,b){this.a=a -this.x=b}, -SB:function SB(a,b){this.a=a -this.x=b}, -SC:function SC(a,b){this.a=a -this.x=b}, -SD:function SD(a,b){this.a=a -this.x=b}, -SE:function SE(a,b){this.a=a -this.x=b}, -SF:function SF(a,b){this.a=a -this.x=b}, -SG:function SG(a,b){this.a=a -this.x=b}, -SH:function SH(a,b){this.a=a -this.x=b}, -SI:function SI(a,b){this.a=a -this.x=b}, -SJ:function SJ(a,b){this.a=a -this.x=b}, -SK:function SK(a,b){this.a=a -this.x=b}, -SL:function SL(a,b){this.a=a -this.x=b}, -SM:function SM(a,b){this.a=a -this.x=b}, -SN:function SN(a,b){this.a=a -this.x=b}, -SO:function SO(a,b){this.a=a -this.x=b}, -SP:function SP(a,b){this.a=a -this.x=b}, -SQ:function SQ(a,b){this.a=a -this.x=b}, -SR:function SR(a,b){this.a=a -this.x=b}, -SS:function SS(a,b){this.a=a -this.x=b}, -ST:function ST(a,b){this.a=a -this.x=b}, -SU:function SU(a,b){this.a=a -this.x=b}, -SV:function SV(a,b){this.a=a -this.x=b}, -SW:function SW(a,b){this.a=a -this.x=b}, -SX:function SX(a,b){this.a=a -this.x=b}, -SY:function SY(a,b){this.a=a -this.x=b}, -SZ:function SZ(a,b){this.a=a -this.x=b}, -T_:function T_(a,b){this.a=a -this.x=b}, -T0:function T0(a,b){this.a=a -this.x=b}, -T1:function T1(a,b){this.a=a -this.x=b}, -T2:function T2(a,b){this.a=a -this.x=b}, -T3:function T3(a,b){this.a=a -this.x=b}, -T4:function T4(a,b){this.a=a -this.x=b}, -T5:function T5(a,b){this.a=a -this.x=b}, -T6:function T6(a,b){this.a=a -this.x=b}, -CO:function CO(a,b){this.a=a -this.x=b}, -T7:function T7(a,b){this.a=a -this.x=b}, -T8:function T8(a,b){this.a=a -this.x=b}, -T9:function T9(a,b){this.a=a -this.x=b}, -Ta:function Ta(a,b){this.a=a -this.x=b}, -Tb:function Tb(a,b){this.a=a -this.x=b}, -Tc:function Tc(a,b){this.a=a -this.x=b}, -Td:function Td(a,b){this.a=a -this.x=b}, -CP:function CP(a,b){this.a=a -this.x=b}, -Te:function Te(a,b){this.a=a -this.x=b}, -Tf:function Tf(a,b){this.a=a -this.x=b}, -Tg:function Tg(a,b){this.a=a -this.x=b}, -Th:function Th(a,b){this.a=a -this.x=b}, -Ti:function Ti(a,b){this.a=a -this.x=b}, -Tj:function Tj(a,b){this.a=a -this.x=b}, -Tk:function Tk(a,b){this.a=a -this.x=b}, -Tl:function Tl(a,b){this.a=a -this.x=b}, -Tm:function Tm(a,b){this.a=a -this.x=b}, -Tn:function Tn(a,b){this.a=a -this.x=b}, -To:function To(a,b){this.a=a -this.x=b}, -Tp:function Tp(a,b){this.a=a -this.x=b}, -Tq:function Tq(a,b){this.a=a -this.x=b}, -Tr:function Tr(a,b){this.a=a -this.x=b}, -CQ:function CQ(a,b){this.a=a -this.x=b}, -Ts:function Ts(a,b){this.a=a -this.x=b}, -CR:function CR(a,b){this.a=a -this.x=b}, -Tt:function Tt(a,b){this.a=a -this.x=b}, -Tu:function Tu(a,b){this.a=a -this.x=b}, -Tv:function Tv(a,b){this.a=a -this.x=b}, -bk7(a){switch(a.gdV()){case"af":return B.ah0 -case"am":return B.ah1 -case"ar":return B.ah2 -case"as":return B.ah3 -case"az":return B.ah4 -case"be":return B.ah5 -case"bg":return B.ah6 -case"bn":return B.ah7 -case"bs":return B.ah8 -case"ca":return B.ah9 -case"cs":return B.aha -case"cy":return B.ahb -case"da":return B.ahc -case"de":switch(a.gdS()){case"CH":return B.ahd}return B.ahe -case"el":return B.ahf -case"en":switch(a.gdS()){case"AU":return B.ahg -case"CA":return B.ahh -case"GB":return B.ahi -case"IE":return B.ahj -case"IN":return B.ahk -case"NZ":return B.ahl -case"SG":return B.ahm -case"ZA":return B.ahn}return B.aho -case"es":switch(a.gdS()){case"419":return B.ahp -case"AR":return B.ahq -case"BO":return B.ahr -case"CL":return B.ahs -case"CO":return B.aht -case"CR":return B.ahu -case"DO":return B.ahv -case"EC":return B.ahw -case"GT":return B.ahx -case"HN":return B.ahy -case"MX":return B.ahz -case"NI":return B.ahA -case"PA":return B.ahB -case"PE":return B.ahC -case"PR":return B.ahD -case"PY":return B.ahE -case"SV":return B.ahF -case"US":return B.ahG -case"UY":return B.ahH -case"VE":return B.ahI}return B.ahJ -case"et":return B.ahK -case"eu":return B.ahL -case"fa":return B.ahM -case"fi":return B.ahN -case"fil":return B.ahO -case"fr":switch(a.gdS()){case"CA":return B.ahP}return B.ahQ -case"gl":return B.ahR -case"gsw":return B.ahS -case"gu":return B.ahT -case"he":return B.ahU -case"hi":return B.ahV -case"hr":return B.ahW -case"hu":return B.ahX -case"hy":return B.ahY -case"id":return B.ahZ -case"is":return B.ai_ -case"it":return B.ai0 -case"ja":return B.ai1 -case"ka":return B.ai2 -case"kk":return B.ai3 -case"km":return B.ai4 -case"kn":return B.ai5 -case"ko":return B.ai6 -case"ky":return B.ai7 -case"lo":return B.ai8 -case"lt":return B.ai9 -case"lv":return B.aia -case"mk":return B.aib -case"ml":return B.aic -case"mn":return B.aid -case"mr":return B.aie -case"ms":return B.aif -case"my":return B.aig -case"nb":return B.aih -case"ne":return B.aii -case"nl":return B.aij -case"no":return B.aik -case"or":return B.ail -case"pa":return B.aim -case"pl":return B.ain -case"ps":return B.aio -case"pt":switch(a.gdS()){case"PT":return B.aip}return B.aiq -case"ro":return B.air -case"ru":return B.ais -case"si":return B.ait -case"sk":return B.aiu -case"sl":return B.aiv -case"sq":return B.aiw -case"sr":switch(a.b){case"Cyrl":return B.aix -case"Latn":return B.aiy}return B.aiz -case"sv":return B.aiA -case"sw":return B.aiB -case"ta":return B.aiC -case"te":return B.aiD -case"th":return B.aiE -case"tl":return B.aiF -case"tr":return B.aiG -case"uk":return B.aiH -case"ur":return B.aiI -case"uz":return B.aiJ -case"vi":return B.aiK -case"zh":switch(a.b){case"Hans":return B.aiL -case"Hant":switch(a.gdS()){case"HK":return B.JV -case"TW":return B.JW}return B.aiM}switch(a.gdS()){case"HK":return B.JV -case"TW":return B.JW}return B.aiN -case"zu":return B.aiO}return null}, -Zp:function Zp(a){this.a=a}, -Zq:function Zq(a){this.a=a}, -Zr:function Zr(a){this.a=a}, -Zs:function Zs(a){this.a=a}, -Zt:function Zt(a){this.a=a}, -Zu:function Zu(a){this.a=a}, -Zv:function Zv(a){this.a=a}, -Zw:function Zw(a){this.a=a}, -Zx:function Zx(a){this.a=a}, -Zy:function Zy(a){this.a=a}, -Zz:function Zz(a){this.a=a}, -ZA:function ZA(a){this.a=a}, -ZB:function ZB(a){this.a=a}, -GE:function GE(a){this.a=a}, -ZC:function ZC(a){this.a=a}, -ZD:function ZD(a){this.a=a}, -GF:function GF(a){this.a=a}, -ZE:function ZE(a){this.a=a}, -ZF:function ZF(a){this.a=a}, -ZG:function ZG(a){this.a=a}, -ZH:function ZH(a){this.a=a}, -ZI:function ZI(a){this.a=a}, -ZJ:function ZJ(a){this.a=a}, -ZK:function ZK(a){this.a=a}, -ZL:function ZL(a){this.a=a}, -GG:function GG(a){this.a=a}, -ZM:function ZM(a){this.a=a}, -ZN:function ZN(a){this.a=a}, -ZO:function ZO(a){this.a=a}, -ZP:function ZP(a){this.a=a}, -ZQ:function ZQ(a){this.a=a}, -ZR:function ZR(a){this.a=a}, -ZS:function ZS(a){this.a=a}, -ZT:function ZT(a){this.a=a}, -ZU:function ZU(a){this.a=a}, -ZV:function ZV(a){this.a=a}, -ZW:function ZW(a){this.a=a}, -ZX:function ZX(a){this.a=a}, -ZY:function ZY(a){this.a=a}, -ZZ:function ZZ(a){this.a=a}, -a__:function a__(a){this.a=a}, -a_0:function a_0(a){this.a=a}, -a_1:function a_1(a){this.a=a}, -a_2:function a_2(a){this.a=a}, -a_3:function a_3(a){this.a=a}, -a_4:function a_4(a){this.a=a}, -a_5:function a_5(a){this.a=a}, -a_6:function a_6(a){this.a=a}, -a_7:function a_7(a){this.a=a}, -a_8:function a_8(a){this.a=a}, -a_9:function a_9(a){this.a=a}, -GH:function GH(a){this.a=a}, -a_a:function a_a(a){this.a=a}, -a_b:function a_b(a){this.a=a}, -a_c:function a_c(a){this.a=a}, -a_d:function a_d(a){this.a=a}, -a_e:function a_e(a){this.a=a}, -a_f:function a_f(a){this.a=a}, -a_g:function a_g(a){this.a=a}, -a_h:function a_h(a){this.a=a}, -a_i:function a_i(a){this.a=a}, -a_j:function a_j(a){this.a=a}, -a_k:function a_k(a){this.a=a}, -a_l:function a_l(a){this.a=a}, -a_m:function a_m(a){this.a=a}, -a_n:function a_n(a){this.a=a}, -a_o:function a_o(a){this.a=a}, -a_p:function a_p(a){this.a=a}, -a_q:function a_q(a){this.a=a}, -a_r:function a_r(a){this.a=a}, -a_s:function a_s(a){this.a=a}, -a_t:function a_t(a){this.a=a}, -a_u:function a_u(a){this.a=a}, -a_v:function a_v(a){this.a=a}, -a_w:function a_w(a){this.a=a}, -a_x:function a_x(a){this.a=a}, -a_y:function a_y(a){this.a=a}, -a_z:function a_z(a){this.a=a}, -a_A:function a_A(a){this.a=a}, -a_B:function a_B(a){this.a=a}, -a_C:function a_C(a){this.a=a}, -a_D:function a_D(a){this.a=a}, -a_E:function a_E(a){this.a=a}, -a_F:function a_F(a){this.a=a}, -a_G:function a_G(a){this.a=a}, -a_H:function a_H(a){this.a=a}, -a_I:function a_I(a){this.a=a}, -a_J:function a_J(a){this.a=a}, -GI:function GI(a){this.a=a}, -a_K:function a_K(a){this.a=a}, -a_L:function a_L(a){this.a=a}, -a_M:function a_M(a){this.a=a}, -a_N:function a_N(a){this.a=a}, -a_O:function a_O(a){this.a=a}, -a_P:function a_P(a){this.a=a}, -a_Q:function a_Q(a){this.a=a}, -GJ:function GJ(a){this.a=a}, -a_R:function a_R(a){this.a=a}, -a_S:function a_S(a){this.a=a}, -a_T:function a_T(a){this.a=a}, -a_U:function a_U(a){this.a=a}, -a_V:function a_V(a){this.a=a}, -a_W:function a_W(a){this.a=a}, -a_X:function a_X(a){this.a=a}, -a_Y:function a_Y(a){this.a=a}, -a_Z:function a_Z(a){this.a=a}, -a0_:function a0_(a){this.a=a}, -a00:function a00(a){this.a=a}, -a01:function a01(a){this.a=a}, -a02:function a02(a){this.a=a}, -GK:function GK(a){this.a=a}, -a03:function a03(a){this.a=a}, -GL:function GL(a){this.a=a}, -a04:function a04(a){this.a=a}, -a05:function a05(a){this.a=a}, -a06:function a06(a){this.a=a}, -QA:function QA(){}, -a3L:function a3L(){}, -aEe:function aEe(a){this.a=a}, -b1R(){if(!$.b0u){$.b5_().aL(0,new A.aPf()) -$.b0u=!0}}, -aPf:function aPf(){}, -QC:function QC(){}, -aav:function aav(){}, -aLM:function aLM(a){this.a=a}, -zW(a,b,c){return new A.cs(!0,b,a,c.i("cs<0>"))}, -b5B(a,b,c){var s,r,q=A.bH(a.h(0,"code")) -if(q==null)q="" -s=A.bH(a.h(0,"msg")) -if(s==null)s="" -A:{if("0000"===q){r=A.b5C(a,s,b,c) -break A}if("0002"===q){r=new A.cs(!1,s,null,c.i("cs<0>")) -break A}r=new A.cs(!1,s,null,c.i("cs<0>")) -break A}return r}, -b5C(a,b,c,d){var s=a.h(0,"data") -return A.zW(d.a(s),b,d)}, -cs:function cs(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.$ti=d}, -B6:function B6(){this.a=$}, -GZ:function GZ(){}, -A0:function A0(a,b,c){this.a=a -this.c=b -this.d=c}, -zE:function zE(a,b){this.a=a -this.c=b}, -lz:function lz(a,b,c,d,e){var _=this -_.a=a -_.c=b -_.d=c -_.r=d -_.x=e}, -hX:function hX(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n}, -ro:function ro(a,b,c,d,e,f,g,h,i,j){var _=this -_.a=a -_.b=b -_.d=c -_.e=d -_.f=e -_.r=f -_.x=g -_.y=h -_.Q=i -_.at=j}, -b_a(a){var s,r,q,p,o,n,m,l,k="lastLoginTime",j="createTime",i=A.d2(a.h(0,"id")) -if(i==null)i=0 -s=A.bH(a.h(0,"username")) -if(s==null)s="" -r=A.bH(a.h(0,"nickname")) -q=A.bH(a.h(0,"avatar")) -p=A.bH(a.h(0,"phone")) -o=A.bH(a.h(0,"email")) -n=A.d2(a.h(0,"kycStatus")) -if(n==null)n=0 -m=A.d2(a.h(0,"status")) -if(m==null)m=1 -l=a.h(0,k)!=null?A.vf(a.h(0,k)):null -return new A.Gu(i,s,r,q,p,o,n,m,l,a.h(0,j)!=null?A.vf(a.h(0,j)):null)}, -Gu:function Gu(a,b,c,d,e,f,g,h,i,j){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j}, -uH:function uH(a){this.a=a}, -acM:function acM(){}, -vC:function vC(a){this.a=a}, -aiH:function aiH(){}, -w6:function w6(a){this.a=a}, -alv:function alv(){}, -xP:function xP(){}, -y0:function y0(a){this.a=a}, -abR(){var s=0,r=A.I(t.H),q,p,o,n,m,l,k -var $async$abR=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:if($.a1==null)A.b_g() -$.a1.toString -s=2 -return A.p(A.xf(),$async$abR) -case 2:s=3 -return A.p(A.alb(),$async$abR) -case 3:if($.a1==null)A.b_g() -q=$.a1 -q.toString -p=$.b7().gdr().b -o=t.e8 -if(o.a(p.h(0,0))==null)A.a0(A.aL('The app requested a view, but the platform did not provide one.\nThis is likely because the app called `runApp` to render its root widget, which expects the platform to provide a default view to render into (the "implicit" view).\nHowever, the platform likely has multi-view mode enabled, which does not create this default "implicit" view.\nTry using `runWidget` instead of `runApp` to start your app.\n`runWidget` allows you to provide a `View` widget, without requiring a default view.\nSee: https://flutter.dev/to/web-multiview-runwidget')) -n=o.a(p.h(0,0)) -n.toString -m=q.gCx() -l=q.ch$ -if(l===$){p=o.a(p.h(0,0)) -p.toString -k=new A.a6_(B.Q,p,null,A.at()) -k.be() -k.a8r(null,null,p) -q.ch$!==$&&A.aK() -q.ch$=k -l=k}q.a2G(new A.Gw(n,B.a3_,m,l,null)) -q.N6() -return A.G(null,r)}}) -return A.H($async$abR,r)}, -D5:function D5(a){this.a=a}, -aoD:function aoD(a){this.a=a}, -aou:function aou(){}, -aov:function aov(a){this.a=a}, -aow:function aow(a){this.a=a}, -aox:function aox(a){this.a=a}, -aoy:function aoy(a){this.a=a}, -aoz:function aoz(a){this.a=a}, -aoA:function aoA(){}, -aoB:function aoB(){}, -aoC:function aoC(){}, -aot:function aot(){}, -aos:function aos(){}, -pI:function pI(a,b){this.c=a -this.a=b}, -a0G:function a0G(){this.c=this.a=this.d=null}, -azv:function azv(a,b){this.a=a -this.b=b}, -azt:function azt(a){this.a=a}, -azu:function azu(){}, -hn:function hn(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.d=_.c=null -_.e=c -_.f=d -_.r=e -_.at=_.as=_.Q=_.y=!1 -_.L$=0 -_.P$=f -_.av$=_.ao$=0}, -eL:function eL(a,b){var _=this -_.a=a -_.b=null -_.d=_.c=!1 -_.e=null -_.L$=0 -_.P$=b -_.av$=_.ao$=0}, -acN:function acN(a,b,c){this.a=a -this.b=b -this.c=c}, -acO:function acO(a,b,c){this.a=a -this.b=b -this.c=c}, -ic:function ic(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d="all" -_.e="" -_.f=!1 -_.r=null -_.w=!1 -_.L$=0 -_.P$=d -_.av$=_.ao$=0}, -alt:function alt(){}, -alu:function alu(a){this.a=a}, -mX:function mX(a,b){var _=this -_.a=a -_.L$=0 -_.P$=b -_.av$=_.ao$=0}, -axj:function axj(a){this.a=a}, -axk:function axk(){}, -kD(a,b,c,d){return new A.Qy(b,a,d,c,null)}, -aQW(a,b,c){return new A.Qx(a,b,!1,null)}, -Qy:function Qy(a,b,c,d,e){var _=this -_.c=a -_.r=b -_.w=c -_.x=d -_.a=e}, -Qx:function Qx(a,b,c,d){var _=this -_.c=a -_.r=b -_.x=c -_.a=d}, -ik(a,b,c,d,e,f,g){return new A.Dk(e,c,f,d,b,g,a,null)}, -aX2(a,b,c){return new A.TL(b,c,a,null)}, -TK:function TK(a,b,c,d){var _=this -_.c=a -_.d=b -_.r=c -_.a=d}, -Dk:function Dk(a,b,c,d,e,f,g,h){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.x=f -_.y=g -_.a=h}, -IJ:function IJ(a,b){var _=this -_.e=_.d=$ -_.dK$=a -_.bu$=b -_.c=_.a=null}, -aEV:function aEV(a){this.a=a}, -aEW:function aEW(a){this.a=a}, -aEU:function aEU(a){this.a=a}, -rg:function rg(a,b){this.a=a -this.b=b}, -TL:function TL(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -Lp:function Lp(){}, -biE(a){var s=$.af() -A.hT(new A.aOb(A.P(a).ax,new A.by(null,t.jV),new A.eD(B.b6,s),a),a,t.z)}, -biF(a,b){var s,r,q,p,o=A.bH(b.h(0,"orderNo")) -if(o==null)o="" -s=b.h(0,"amount") -r=s==null?null:J.cB(s) -if(r==null)r="0.00" -q=A.bH(b.h(0,"walletAddress")) -if(q==null)q="" -p=A.bH(b.h(0,"walletNetwork")) -if(p==null)p="TRC20" -s=A.P(a) -A.hT(new A.aOe(A.P(a).ax.a===B.R,s.ax,o,r,q,p,a),a,t.z)}, -biH(a,b){var s=$.af() -A.hT(new A.aOt(A.P(a).ax,b,new A.by(null,t.jV),new A.eD(B.b6,s),new A.eD(B.b6,s),new A.eD(B.b6,s),a),a,t.z)}, -biG(a){var s={},r=$.af() -s.a=1 -A.hT(new A.aOp(s,A.P(a).ax,new A.by(null,t.jV),new A.eD(B.b6,r),a),a,t.z)}, -aOf(a,b,c){A.hT(new A.aOh(b,A.P(a).ax,c),a,t.z)}, -A1:function A1(a){this.a=a}, -a0D:function a0D(a){var _=this -_.d=0 -_.dh$=a -_.c=_.a=null}, -azo:function azo(a){this.a=a}, -azn:function azn(a,b){this.a=a -this.b=b}, -azm:function azm(a){this.a=a}, -azl:function azl(a){this.a=a}, -azk:function azk(a,b){this.a=a -this.b=b}, -a0C:function a0C(a,b){this.c=a -this.a=b}, -a98:function a98(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -aK9:function aK9(a,b,c){this.a=a -this.b=b -this.c=c}, -aK8:function aK8(a,b){this.a=a -this.b=b}, -a2P:function a2P(a,b){this.c=a -this.a=b}, -aC4:function aC4(a){this.a=a}, -aC3:function aC3(){}, -aC5:function aC5(a){this.a=a}, -aC6:function aC6(a,b){this.a=a -this.b=b}, -aC7:function aC7(a){this.a=a}, -a9H:function a9H(a,b){this.c=a -this.a=b}, -aKY:function aKY(){}, -aKX:function aKX(a){this.a=a}, -a2n:function a2n(a){this.a=a}, -yu:function yu(a,b){this.c=a -this.a=b}, -aOb:function aOb(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aO9:function aO9(a){this.a=a}, -aOa:function aOa(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aOe:function aOe(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -aOc:function aOc(a){this.a=a}, -aOd:function aOd(a,b,c){this.a=a -this.b=b -this.c=c}, -I7:function I7(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -aam:function aam(a,b,c){this.c=a -this.d=b -this.a=c}, -aLz:function aLz(a,b){this.a=a -this.b=b}, -aOt:function aOt(a,b,c,d,e,f,g){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g}, -aOq:function aOq(){}, -aOr:function aOr(a){this.a=a}, -aOs:function aOs(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -aOp:function aOp(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -aOo:function aOo(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -aOk:function aOk(a,b){this.a=a -this.b=b}, -aOj:function aOj(a){this.a=a}, -aOl:function aOl(a,b){this.a=a -this.b=b}, -aOi:function aOi(a){this.a=a}, -aOm:function aOm(a){this.a=a}, -aOn:function aOn(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -Hz:function Hz(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -aOh:function aOh(a,b,c){this.a=a -this.b=b -this.c=c}, -aOg:function aOg(a){this.a=a}, -L5:function L5(){}, -r_:function r_(a){this.a=a}, -Il:function Il(a){this.d=a -this.c=this.a=null}, -aDV:function aDV(a){this.a=a}, -aDU:function aDU(a,b){this.a=a -this.b=b}, -aDW:function aDW(){}, -aDX:function aDX(){}, -aDY:function aDY(){}, -aE_:function aE_(a){this.a=a}, -aDZ:function aDZ(a){this.a=a}, -rK:function rK(a){this.a=a}, -J4:function J4(a,b,c,d){var _=this -_.d=a -_.e=b -_.f=c -_.r=d -_.x=_.w=!0 -_.c=_.a=null}, -aFN:function aFN(a){this.a=a}, -aFO:function aFO(){}, -aFP:function aFP(a){this.a=a}, -aFM:function aFM(a){this.a=a}, -aFQ:function aFQ(){}, -aFR:function aFR(a){this.a=a}, -aFL:function aFL(a){this.a=a}, -aFS:function aFS(a){this.a=a}, -aFT:function aFT(a){this.a=a}, -aFU:function aFU(a){this.a=a}, -aFK:function aFK(){}, -BV:function BV(a){this.a=a}, -I3:function I3(a){this.dh$=a -this.c=this.a=null}, -aD7:function aD7(a){this.a=a}, -aD6:function aD6(a,b){this.a=a -this.b=b}, -aD5:function aD5(a){this.a=a}, -aD_:function aD_(a){this.a=a}, -aD4:function aD4(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -aD1:function aD1(){}, -aD2:function aD2(a){this.a=a}, -aD3:function aD3(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -aD0:function aD0(a){this.a=a}, -aCZ:function aCZ(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aCX:function aCX(a){this.a=a}, -aCY:function aCY(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -a2W:function a2W(a){this.a=a}, -aCI:function aCI(a){this.a=a}, -a2T:function a2T(a,b){this.c=a -this.a=b}, -a55:function a55(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -aFx:function aFx(){}, -ph:function ph(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -a54:function a54(){this.d=!1 -this.c=this.a=null}, -aFv:function aFv(a){this.a=a}, -aFs:function aFs(a){this.a=a}, -aFw:function aFw(a){this.a=a}, -aFr:function aFr(a){this.a=a}, -aFu:function aFu(a){this.a=a}, -aFt:function aFt(a){this.a=a}, -a32:function a32(a,b){this.c=a -this.a=b}, -aCW:function aCW(){}, -a2m:function a2m(a){this.a=a}, -aBB:function aBB(){}, -a31:function a31(a,b){this.c=a -this.a=b}, -aCV:function aCV(a){this.a=a}, -aCU:function aCU(a){this.a=a}, -a30:function a30(a,b){this.c=a -this.a=b}, -Lj:function Lj(){}, -a42(a,b,c){return new A.pc(b,a,c)}, -pc:function pc(a,b,c){this.a=a -this.b=b -this.c=c}, -r1:function r1(a){this.a=a}, -Im:function Im(a){var _=this -_.d=0 -_.e=a -_.c=_.a=null}, -aE0:function aE0(a,b){this.a=a -this.b=b}, -aE1:function aE1(){}, -a9G:function a9G(a){this.a=a}, -aKU:function aKU(a){this.a=a}, -aKV:function aKV(){}, -aKW:function aKW(){}, -I4:function I4(a,b,c){this.c=a -this.d=b -this.a=c}, -a0S:function a0S(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -azM:function azM(a){this.a=a}, -azL:function azL(a,b){this.a=a -this.b=b}, -u4:function u4(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -Cr:function Cr(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -a3r:function a3r(){this.c=this.a=null}, -aDN:function aDN(a){this.a=a}, -CG:function CG(a){this.a=a}, -a3H:function a3H(a,b){var _=this -_.d=a -_.dh$=b -_.c=_.a=null}, -aE7:function aE7(a){this.a=a}, -aE6:function aE6(a,b,c){this.a=a -this.b=b -this.c=c}, -aE3:function aE3(a,b){this.a=a -this.b=b}, -aE5:function aE5(a,b,c){this.a=a -this.b=b -this.c=c}, -aE4:function aE4(a,b){this.a=a -this.b=b}, -aE2:function aE2(a,b,c){this.a=a -this.b=b -this.c=c}, -Lm:function Lm(){}, -u0:function u0(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -CY:function CY(a){this.a=a}, -Iw:function Iw(a){this.dh$=a -this.c=this.a=null}, -aEK:function aEK(a,b){this.a=a -this.b=b}, -aEJ:function aEJ(a,b){this.a=a -this.b=b}, -aEI:function aEI(a){this.a=a}, -aEH:function aEH(a){this.a=a}, -aEG:function aEG(a){this.a=a}, -aEF:function aEF(a){this.a=a}, -aEE:function aEE(a){this.a=a}, -aEC:function aEC(a){this.a=a}, -aED:function aED(a,b){this.a=a -this.b=b}, -aEA:function aEA(){}, -aEB:function aEB(){}, -aae:function aae(a,b){this.c=a -this.a=b}, -GW:function GW(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -I6:function I6(a,b,c){this.c=a -this.d=b -this.a=c}, -a3S:function a3S(a,b,c){this.c=a -this.d=b -this.a=c}, -aEw:function aEw(a){this.a=a}, -aEx:function aEx(a){this.a=a}, -aEy:function aEy(a){this.a=a}, -aEz:function aEz(a){this.a=a}, -a9y:function a9y(a,b){this.c=a -this.a=b}, -aKO:function aKO(a){this.a=a}, -aKN:function aKN(a){this.a=a}, -a3R:function a3R(a,b){this.c=a -this.a=b}, -Iv:function Iv(a,b,c){this.c=a -this.d=b -this.a=c}, -a3A:function a3A(a,b){this.c=a -this.a=b}, -aaK:function aaK(){}, -qy:function qy(a){this.a=a}, -a2Q:function a2Q(){this.d=0 -this.c=this.a=null}, -aCn:function aCn(a){this.a=a}, -aCg:function aCg(a,b){this.a=a -this.b=b}, -aCf:function aCf(a,b){this.a=a -this.b=b}, -aCe:function aCe(a){this.a=a}, -aCd:function aCd(a){this.a=a}, -aCc:function aCc(){}, -aCb:function aCb(a,b){this.a=a -this.b=b}, -aC8:function aC8(a,b){this.a=a -this.b=b}, -aC9:function aC9(a,b){this.a=a -this.b=b}, -aCa:function aCa(a,b){this.a=a -this.b=b}, -aCm:function aCm(){}, -aCk:function aCk(a){this.a=a}, -aCl:function aCl(a){this.a=a}, -aCj:function aCj(a){this.a=a}, -aCh:function aCh(a){this.a=a}, -aCi:function aCi(a){this.a=a}, -Gl:function Gl(a){this.a=a}, -a9K:function a9K(a,b,c,d){var _=this -_.d=0 -_.e=null -_.f=a -_.r=b -_.w=c -_.dh$=d -_.c=_.a=null}, -aL8:function aL8(a){this.a=a}, -aL7:function aL7(a){this.a=a}, -aL4:function aL4(a){this.a=a}, -aL5:function aL5(a){this.a=a}, -aL3:function aL3(a,b){this.a=a -this.b=b}, -aL6:function aL6(a){this.a=a}, -aL0:function aL0(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -aKZ:function aKZ(a){this.a=a}, -aL_:function aL_(a,b){this.a=a -this.b=b}, -aL2:function aL2(a,b,c){this.a=a -this.b=b -this.c=c}, -aL1:function aL1(a,b){this.a=a -this.b=b}, -a17:function a17(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -aAA:function aAA(a){this.a=a}, -a16:function a16(a,b){this.c=a -this.a=b}, -a5_:function a5_(a,b){this.c=a -this.a=b}, -a9J:function a9J(a,b,c,d,e,f,g){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.w=f -_.a=g}, -a9L:function a9L(a,b,c){this.c=a -this.d=b -this.a=c}, -aL9:function aL9(a){this.a=a}, -aLa:function aLa(a){this.a=a}, -KA:function KA(a,b,c,d,e){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.a=e}, -I8:function I8(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -a9I:function a9I(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -LD:function LD(){}, -UG:function UG(){}, -apM:function apM(a){this.a=a}, -aeH:function aeH(){}, -bk8(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,a0,a1,a2,a3,a4,a5){var s,r,q,p -a4=B.en.aqy(a,b,c,d,e,f,g,i,j,k,l,n,o,a0,a1,a2,a3,a5) -s=a4.w -if(s==null)s=B.p -r=a4.x -q=A.bex(new A.kE(s,r==null?B.aS:r),new A.bD(m,A.n(m).i("bD<1>"))) -s=m.h(0,q) -s.toString -p=A.zt(new A.aj9(new A.aja(h,q),s)) -$.b1Z.G(0,p) -p.c1(new A.aOY(p),t.y) -return a4.aqG(h+"_"+q.k(0),A.c([h],t.s))}, -zt(a){return A.bkx(a)}, -bkx(a0){var s=0,r=A.I(t.H),q,p=2,o=[],n,m,l,k,j,i,h,g,f,e,d,c,b,a -var $async$zt=A.J(function(a1,a2){if(a1===1){o.push(a2) -s=p}for(;;)switch(s){case 0:g=a0.a -f=g.a -e=g.b -d=f+"_"+e.k(0) -c=f+"-"+e.a1v() -e=a0.b -n=e.a -if($.aT5.q(0,d)){s=1 -break}else $.aT5.G(0,d) -p=4 -m=null -f=$.b1i -s=f==null?7:8 -break -case 7:a=$ -s=9 -return A.p(A.b5H($.Mc()),$async$zt) -case 9:f=a.b1i=a2 -case 8:if(f==null)f=null -else{j=f.a.gcd() -i=t.N -j=A.aa(j.eI(j,i),i) -f=f.b -B.b.a_(j,new A.bD(f,A.n(f).i("bD<1>"))) -f=j}l=A.bhG(g,f) -if(l!=null)m=$.Mc().j3(l) -g=m -f=t.CD -s=10 -return A.p(t.T8.b(g)?g:A.he(g,f),$async$zt) -case 10:if(a2!=null){g=A.zs(d,m) -q=g -s=1 -break}m=A.di(null,f) -s=11 -return A.p(m,$async$zt) -case 11:if(a2!=null){g=A.zs(d,m) -q=g -s=1 -break}$.b2v() -m=A.aNC(d,e) -s=12 -return A.p(m,$async$zt) -case 12:if(a2!=null){g=A.zs(d,m) -q=g -s=1 -break}p=2 -s=6 -break -case 4:p=3 -b=o.pop() -k=A.aj(b) -$.aT5.J(0,d) -A.aTB("Error: google_fonts was unable to load font "+A.j(c)+" because the following exception occurred:\n"+A.j(k)) -A.aTB("If troubleshooting doesn't solve the problem, please file an issue at https://github.com/flutter/flutter/issues/new/choose.\n") -throw b -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$zt,r)}, -zs(a,b){var s=0,r=A.I(t.H),q,p,o -var $async$zs=A.J(function(c,d){if(c===1)return A.F(d,r) -for(;;)switch(s){case 0:if(b==null){s=1 -break}s=3 -return A.p(b,$async$zs) -case 3:p=d -if(p==null){s=1 -break}o=new A.aik(a,A.c([],t.ty)) -o.aon(A.di(p,t.V4)) -s=4 -return A.p(o.wl(),$async$zs) -case 4:case 1:return A.G(q,r)}}) -return A.H($async$zs,r)}, -bex(a,b){var s,r,q,p,o=A.bQ() -for(s=b.a,s=new A.eS(s,s.r,s.e),r=null;s.v();){q=s.d -p=A.beD(a,q) -if(r==null||p=4)A.a0(a2.n4()) -if((j&1)!==0){g=a2.a -if((j&8)!==0)g=g.gra() -g.y_(c,k==null?B.eF:k)}s=15 -return A.p(a2.bn(),$async$zj) -case 15:case 14:s=7 -break -s=11 -break -case 8:s=2 -break -case 11:if(n.done){a2.IL() -s=7 -break}else{f=n.value -f.toString -c.a(f) -e=a2.b -if(e>=4)A.a0(a2.n4()) -if((e&1)!==0){g=a2.a;((e&8)!==0?g.gra():g).n2(f)}}f=a2.b -if((f&1)!==0){g=a2.a -e=(((f&8)!==0?g.gra():g).e&4)!==0 -f=e}else f=(f&2)===0 -s=f?16:17 -break -case 16:f=d.a -s=18 -return A.p((f==null?d.a=new A.bC(new A.ax($.as,j),i):f).a,$async$zj) -case 18:case 17:if((a2.b&1)===0){s=7 -break}s=6 -break -case 7:case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$zj,r)}, -adh:function adh(a){this.c=a}, -adi:function adi(a){this.a=a}, -aLZ:function aLZ(a,b){this.a=a -this.b=b}, -aO4:function aO4(a){this.a=a}, -aO5:function aO5(a,b,c){this.a=a -this.b=b -this.c=c}, -uN:function uN(a){this.a=a}, -adH:function adH(a){this.a=a}, -b6c(a,b){return new A.pV(a,b)}, -pV:function pV(a,b){this.a=a -this.b=b}, -bar(a,b){var s=new Uint8Array(0),r=$.b2h() -if(!r.b.test(a))A.a0(A.hm(a,"method","Not a valid method")) -r=t.N -return new A.arQ(B.ao,s,a,b,A.al5(new A.acX(),new A.acY(),r,r))}, -arQ:function arQ(a,b,c,d,e){var _=this -_.x=a -_.y=b -_.a=c -_.b=d -_.r=e -_.w=!1}, -arR(a){var s=0,r=A.I(t.Wd),q,p,o,n,m,l,k,j -var $async$arR=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:s=3 -return A.p(a.w.a1w(),$async$arR) -case 3:p=c -o=a.b -n=a.a -m=a.e -l=a.c -k=A.bla(p) -j=p.length -k=new A.Vc(k,n,o,l,j,m,!1,!0) -k.OD(o,j,m,!1,!0,l,n) -q=k -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$arR,r)}, -Vc:function Vc(a,b,c,d,e,f,g,h){var _=this -_.w=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h}, -FB:function FB(){}, -Yu:function Yu(a,b,c,d,e,f,g,h){var _=this -_.w=a -_.a=b -_.b=c -_.c=d -_.d=e -_.e=f -_.f=g -_.r=h}, -b6_(a){return a.toLowerCase()}, -Al:function Al(a,b,c){this.a=a -this.c=b -this.$ti=c}, -b9d(a){return A.blg("media type",a,new A.anQ(a))}, -b9c(a,b,c){var s=t.N -if(c==null)s=A.t(s,s) -else{s=new A.Al(A.bjh(),A.t(s,t.mT),t.Fs) -s.a_(0,c)}return new A.CW(a.toLowerCase(),b.toLowerCase(),new A.n2(s,t.G5))}, -CW:function CW(a,b,c){this.a=a -this.b=b -this.c=c}, -anQ:function anQ(a){this.a=a}, -anS:function anS(a){this.a=a}, -anR:function anR(){}, -bjQ(a){var s -a.YT($.b4B(),"quoted string") -s=a.gKZ().h(0,0) -return A.b29(B.c.a6(s,1,s.length-1),$.b4A(),new A.aOR(),null)}, -aOR:function aOR(){}, -aD(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5){return new A.ve(i)}, -ve:function ve(a){this.a=a}, -ah(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){return new A.ob(i,c,f,k,p,n,h,e,m,g,j,b,d)}, -ob:function ob(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.ay=m}, -aVt(a,b){var s=A.iP(b,A.kk(),null) -s.toString -s=new A.hq(new A.hr(),s) -s.js(a) -return s}, -b6O(a){var s=A.iP(a,A.kk(),null) -s.toString -s=new A.hq(new A.hr(),s) -s.js("d") -return s}, -b6N(a){var s=A.iP(a,A.kk(),null) -s.toString -s=new A.hq(new A.hr(),s) -s.js("E") -return s}, -aQv(a){var s=A.iP(a,A.kk(),null) -s.toString -s=new A.hq(new A.hr(),s) -s.js("MMMd") -return s}, -af5(a){var s=A.iP(a,A.kk(),null) -s.toString -s=new A.hq(new A.hr(),s) -s.js("MMMEd") -return s}, -af6(a){var s=A.iP(a,A.kk(),null) -s.toString -s=new A.hq(new A.hr(),s) -s.js("y") -return s}, -aQz(a){var s=A.iP(a,A.kk(),null) -s.toString -s=new A.hq(new A.hr(),s) -s.js("yMd") -return s}, -aQy(a){var s=A.iP(a,A.kk(),null) -s.toString -s=new A.hq(new A.hr(),s) -s.js("yMMMd") -return s}, -aQw(a){var s=A.iP(a,A.kk(),null) -s.toString -s=new A.hq(new A.hr(),s) -s.js("yMMMM") -return s}, -aQx(a){var s=A.iP(a,A.kk(),null) -s.toString -s=new A.hq(new A.hr(),s) -s.js("yMMMMEEEEd") -return s}, -b6P(a){var s=A.iP(a,A.kk(),null) -s.toString -s=new A.hq(new A.hr(),s) -s.js("m") -return s}, -b6Q(a){var s=A.iP(a,A.kk(),null) -s.toString -s=new A.hq(new A.hr(),s) -s.js("s") -return s}, -Pw(a){return $.aUa().aN(a)}, -hq:function hq(a,b){this.a=a -this.c=b -this.d=null}, -hr:function hr(){}, -aRq(a,b){return A.aX4(b,new A.aoX(a))}, -aoV(a){return A.aX4(a,new A.aoW())}, -aX4(a3,a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=A.iP(a3,A.bkG(),null) -a2.toString -s=$.aUz().h(0,a2) -r=s.e -q=$.b4W() -p=s.ay -o=a4.$1(s) -n=s.r -if(o==null)n=new A.TT(n,null) -else{n=new A.TT(n,null) -new A.aoU(s,new A.awb(o),!1,p,p,n).ajj()}m=n.b -l=n.a -k=n.d -j=n.c -i=n.e -h=B.d.aY(Math.log(i)/$.b4y()) -g=n.ax -f=n.f -e=n.r -d=n.w -c=n.x -b=n.y -a=n.z -a0=n.Q -a1=n.at -return new A.aoT(l,m,j,k,a,a0,n.as,a1,g,!1,e,d,c,b,f,i,h,o,a2,s,n.ay,new A.cf(""),r.charCodeAt(0)-q)}, -aRr(a){return $.aUz().aN(a)}, -aoT:function aoT(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.at=m -_.ay=n -_.ch=o -_.dx=p -_.dy=q -_.fr=r -_.fx=s -_.fy=a0 -_.k1=a1 -_.k2=a2 -_.k4=a3}, -aoX:function aoX(a){this.a=a}, -aoW:function aoW(){}, -TT:function TT(a,b){var _=this -_.a=a -_.d=_.c=_.b="" -_.e=1 -_.f=0 -_.r=40 -_.w=1 -_.x=3 -_.y=0 -_.Q=_.z=3 -_.ax=_.at=_.as=!1 -_.ay=b}, -aoU:function aoU(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.w=_.r=!1 -_.x=-1 -_.Q=_.z=_.y=0 -_.as=-1}, -awb:function awb(a){this.a=a -this.b=0}, -b_4(a,b){return new A.xW(a,b,A.c([],t.s))}, -b18(a){var s,r=a.length -if(r<3)return-1 -s=a[2] -if(s==="-"||s==="_")return 2 -if(r<4)return-1 -r=a[3] -if(r==="-"||r==="_")return 3 -return-1}, -LP(a){var s,r,q,p -if(a==null){if(A.aOM()==null)$.aSY="en_US" -s=A.aOM() -s.toString -return s}if(a==="C")return"en_ISO" -if(a.length<5)return a -r=A.b18(a) -if(r===-1)return a -q=B.c.a6(a,0,r) -p=B.c.cD(a,r+1) -if(p.length<=3)p=p.toUpperCase() -return q+"_"+p}, -iP(a,b,c){var s,r,q,p -if(a==null){if(A.aOM()==null)$.aSY="en_US" -s=A.aOM() -s.toString -return A.iP(s,b,c)}if(b.$1(a))return a -r=[A.bkn(),A.bkp(),A.bko(),new A.aPG(),new A.aPH(),new A.aPI()] -for(q=0;q<6;++q){p=r[q].$1(a) -if(b.$1(p))return p}return(c==null?A.bkm():c).$1(a)}, -biO(a){throw A.i(A.c1('Invalid locale "'+a+'"',null))}, -aTk(a){switch(a){case"iw":return"he" -case"he":return"iw" -case"fil":return"tl" -case"tl":return"fil" -case"id":return"in" -case"in":return"id" -case"no":return"nb" -case"nb":return"no"}return a}, -b28(a){var s,r -if(a==="invalid")return"in" -s=a.length -if(s<2)return a -r=A.b18(a) -if(r===-1)if(s<4)return a.toLowerCase() -else return a -return B.c.a6(a,0,r).toLowerCase()}, -xW:function xW(a,b,c){this.a=a -this.b=b -this.c=c}, -RD:function RD(a){this.a=a}, -aPG:function aPG(){}, -aPH:function aPH(){}, -aPI:function aPI(){}, -d_:function d_(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.d=d}, -bY(a,b,c,d,e,f,g,h){return new A.Bj(d,e,g,c,a,f,b,h,A.t(t.ML,t.bq))}, -Bk(a,b){var s,r=A.aVg(b,a),q=r<0?100:r,p=A.aVf(b,a),o=p<0?0:p,n=A.q2(q,a),m=A.q2(o,a) -if(B.d.aY(a)<60){s=Math.abs(n-m)<0.1&&n=b||n>=m||s?q:o}else return m>=b||m>=n?o:q}, -Bj:function Bj(a,b,c,d,e,f,g,h,i){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i}, -agg(a,b,c){var s,r,q,p,o,n=a.a -n===$&&A.a() -for(s=0;s<=7;s=q){r=b[s] -q=s+1 -p=b[q] -if(r>>16&255 -m=p>>>8&255 -l=p&255 -k=A.o9(A.c([A.dW(n),A.dW(m),A.dW(l)],s),B.e_) -j=A.aQh(k[0],k[1],k[2],h) -o.a=j.a -h=o.b=j.b -o.c=116*A.pX(A.o9(A.c([A.dW(n),A.dW(m),A.dW(l)],s),B.e_)[1]/100)-16 -if(r>h)break -n=Math.abs(h-b) -if(n<0.4)break -if(n=360?k-360:k -i=j*3.141592653589793/180 -h=a5.r -g=a5.y -f=100*Math.pow((40*p+b+n)/20*a5.w/h,g*a5.ay) -e=f/100 -Math.sqrt(e) -d=Math.pow(3846.153846153846*(0.25*(Math.cos((j<20.14?j+360:j)*3.141592653589793/180+2)+3.8))*a5.z*a5.x*Math.sqrt(m*m+l*l)/((20*p+b+21*n)/20+0.305),0.9)*Math.pow(1.64-Math.pow(0.29,a5.f),0.73) -c=d*Math.sqrt(e) -Math.sqrt(d*g/(h+4)) -Math.log(1+0.0228*(c*a5.ax)) -Math.cos(i) -Math.sin(i) -return new A.adP(j,c,f,A.c([0,0,0],t.n))}, -adP:function adP(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.y=d}, -vH(a7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6=new A.i4() -a6.d=a7 -s=$.M7() -r=A.aVc(a7) -q=r[0] -p=r[1] -o=r[2] -n=s.as -m=n[0]*(0.401288*q+0.650173*p-0.051461*o) -l=n[1]*(-0.250268*q+1.204414*p+0.045854*o) -k=n[2]*(-0.002079*q+0.048952*p+0.953127*o) -n=s.at -j=Math.pow(n*Math.abs(m)/100,0.42) -i=Math.pow(n*Math.abs(l)/100,0.42) -h=Math.pow(n*Math.abs(k)/100,0.42) -g=A.r6(m)*400*j/(j+27.13) -f=A.r6(l)*400*i/(i+27.13) -e=A.r6(k)*400*h/(h+27.13) -d=(11*g+-12*f+e)/11 -c=(g+f-2*e)/9 -n=20*f -b=Math.atan2(c,d)*180/3.141592653589793 -if(b<0)a=b+360 -else a=b>=360?b-360:b -a0=a*3.141592653589793/180 -a1=s.r -a2=s.y -a3=100*Math.pow((40*g+n+e)/20*s.w/a1,a2*s.ay)/100 -Math.sqrt(a3) -a4=Math.pow(3846.153846153846*(0.25*(Math.cos((a<20.14?a+360:a)*3.141592653589793/180+2)+3.8))*s.z*s.x*Math.sqrt(d*d+c*c)/((20*g+n+21*e)/20+0.305),0.9)*Math.pow(1.64-Math.pow(0.29,s.f),0.73) -a5=a4*Math.sqrt(a3) -Math.sqrt(a4*a2/(a1+4)) -Math.log(1+0.0228*(a5*s.ax)) -Math.cos(a0) -Math.sin(a0) -a6.a=a -a6.b=a5 -a6.c=116*A.pX(A.aVc(a7)[1]/100)-16 -return a6}, -i4:function i4(){var _=this -_.d=_.c=_.b=_.a=$}, -axW:function axW(a,b,c,d,e,f,g,h,i,j){var _=this -_.f=a -_.r=b -_.w=c -_.x=d -_.y=e -_.z=f -_.as=g -_.at=h -_.ax=i -_.ay=j}, -aZY(a){var s,r=t.S,q=a.a -q===$&&A.a() -s=a.b -s===$&&A.a() -return new A.tG(q,s,A.t(r,r))}, -bP(a,b){var s=t.S -new A.akx(a,b,A.t(s,t.i)).aqX() -return new A.tG(a,b,A.t(s,s))}, -tG:function tG(a,b,c){this.a=a -this.b=b -this.d=c}, -akx:function akx(a,b,c){this.a=a -this.b=b -this.c=c}, -aky:function aky(a,b){this.a=a -this.b=b}, -Vo:function Vo(a,b,c,d,e,f,g,h,i,j){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j}, -Vp:function Vp(a,b,c,d,e,f,g,h,i,j){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j}, -Vq:function Vq(a,b,c,d,e,f,g,h,i,j){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j}, -Vr:function Vr(a,b,c,d,e,f,g,h,i,j){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j}, -Vs:function Vs(a,b,c,d,e,f,g,h,i,j){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j}, -Vt:function Vt(a,b,c,d,e,f,g,h,i,j){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j}, -Vu:function Vu(a,b,c,d,e,f,g,h,i,j){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j}, -Vv:function Vv(a,b,c,d,e,f,g,h,i,j){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j}, -Vw:function Vw(a,b,c,d,e,f,g,h,i,j){var _=this -_.b=a -_.c=b -_.d=c -_.e=d -_.f=e -_.r=f -_.w=g -_.x=h -_.y=i -_.z=j}, -aZJ(a){var s=t.DU -return new A.aww(a,A.c([],s),A.c([],s),A.t(t.bq,t.i))}, -aZK(a,b,c){if(a=1;s=q){q=s-1 -if(b[q]!=null)break}p=new A.cf("") -o=a+"(" -p.a=o -n=A.a6(b) -m=n.i("iz<1>") -l=new A.iz(b,0,s,m) -l.xX(b,0,s,n.c) -m=o+new A.am(l,new A.aOy(),m.i("am")).bJ(0,", ") -p.a=m -p.a=m+("): part "+(r-1)+" was null, but part "+r+" was not.") -throw A.i(A.c1(p.k(0),null))}}, -aeJ:function aeJ(a){this.a=a}, -aeM:function aeM(){}, -aeN:function aeN(){}, -aOy:function aOy(){}, -akn:function akn(){}, -U9(a,b){var s,r,q,p,o,n=b.a2v(a) -b.nS(a) -if(n!=null)a=B.c.cD(a,n.length) -s=t.s -r=A.c([],s) -q=A.c([],s) -s=a.length -if(s!==0&&b.mk(a.charCodeAt(0))){q.push(a[0]) -p=1}else{q.push("") -p=0}for(o=p;o")),s,s,s,s,b.i("Am<0>"))}, -b60(a,b){if(b!=null)b.l()}, -Am:function Am(a,b,c,d,e,f){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e -_.$ti=f}, -ks(a,b){return new A.AG(a,null,null,b.i("AG<0>"))}, -AG:function AG(a,b,c,d){var _=this -_.e=a -_.c=b -_.a=c -_.$ti=d}, -AH:function AH(a,b,c,d){var _=this -_.e=a -_.c=b -_.a=c -_.$ti=d}, -b8O(a,b){if(b!=null)b.a9(a.ga_Z()) -return new A.ala(b,a)}, -Cy:function Cy(){}, -ala:function ala(a,b){this.a=a -this.b=b}, -b9k(a,b){var s=A.b9l(b) -return new A.TE(s,a,null)}, -b9l(a){var s,r,q,p,o,n={} -n.a=null -for(s=0,r=null;q=s<10,q;++s,r=o){p=a[s] -o=r==null?new A.aof(p):new A.aog(r,p) -n.a=o}r=A.c([],t.Ds) -if(n.a!=null)r.push(new A.XX(new A.aoh(n),null,null)) -if(q)B.b.a_(r,B.b.hz(a,s)) -return r}, -Uu(a,b){var s=null -return new A.rE(new A.p0(a,s,s,s,s,b.i("p0<0>")),s,s,s,s,b.i("rE<0>"))}, -dx(a,b,c){var s,r=c.i("tY<0?>?").a(a.fs(c.i("et<0?>"))),q=r==null -if(q&&!c.b(null))A.a0(new A.Uv(A.bM(c),A.l(a.gW()))) -if(b)a.aA(c.i("et<0?>")) -s=q?null:r.guk().gp() -if($.b4d()){if(!c.b(s))throw A.i(new A.Uw(A.bM(c),A.l(a.gW()))) -return s}return s==null?c.a(s):s}, -qK:function qK(){}, -I9:function I9(a,b,c){var _=this -_.eO$=a -_.c=_.b=_.a=_.ay=null -_.d=$ -_.e=b -_.r=_.f=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.at=!1}, -et:function et(a,b,c,d){var _=this -_.f=a -_.b=b -_.a=c -_.$ti=d}, -tY:function tY(a,b,c,d){var _=this -_.bo=!1 -_.bq=!0 -_.c0=_.u=!1 -_.dC=$ -_.n=a -_.c=_.b=_.a=_.ay=null -_.d=$ -_.e=b -_.r=_.f=null -_.w=c -_.z=_.y=null -_.Q=!1 -_.as=!0 -_.at=!1 -_.$ti=d}, -aDd:function aDd(a,b){this.a=a -this.b=b}, -a1X:function a1X(){}, -hd:function hd(){}, -p0:function p0(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.e=d -_.f=e -_.$ti=f}, -Hl:function Hl(a){var _=this -_.b=null -_.c=!1 -_.a=_.f=_.e=_.d=null -_.$ti=a}, -ze:function ze(a,b,c,d){var _=this -_.a=a -_.b=b -_.c=c -_.$ti=d}, -KO:function KO(a){this.a=this.b=null -this.$ti=a}, -TE:function TE(a,b,c){this.c=a -this.d=b -this.a=c}, -aof:function aof(a){this.a=a}, -aog:function aog(a,b){this.a=a -this.b=b}, -aoh:function aoh(a){this.a=a}, -rE:function rE(a,b,c,d,e,f){var _=this -_.e=a -_.f=b -_.r=c -_.c=d -_.a=e -_.$ti=f}, -Uw:function Uw(a,b){this.a=a -this.b=b}, -Uv:function Uv(a,b){this.a=a -this.b=b}, -bj_(a,b){return a}, -aug:function aug(a,b){this.a=a -this.b=b}, -ET:function ET(a,b,c,d,e){var _=this -_.d=a -_.e=b -_.f=c -_.RG=d -_.a=e}, -JU:function JU(a){this.d=a -this.c=this.a=null}, -aHv:function aHv(a,b){this.a=a -this.b=b}, -aHu:function aHu(a){this.a=a}, -auR:function auR(){}, -x1:function x1(a,b,c,d){var _=this -_.c=a -_.d=b -_.e=c -_.a=d}, -auf:function auf(a){this.a=a}, -mK(a,b){var s=null -return new A.k0(b,s,a,B.ol,s,s,s,s,s,s,s,s,s,!1,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -aXW(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9){return new A.k0(a6,a0,c,b8,null,d,b9,j,b3,b,k,h,l,!1,g,b4,b5,b6,i,e,!0,b7,m,s,b1,b2,b0,a8,a9,a7,a4,a1,a5,a2,a3,o,q,p,n,r,null)}, -aRS(a,b,c){var s=null -return new A.k0(b,s,a,B.a6M,c,s,s,s,s,s,s,s,s,!1,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -x2(a,b,c){var s=null -return new A.k0(b,s,a,B.Il,c,s,s,s,s,s,s,s,s,!1,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -oE:function oE(a,b){this.a=a -this.b=b}, -W6:function W6(a,b){this.a=a -this.b=b}, -k0:function k0(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1){var _=this -_.c=a -_.d=b -_.f=c -_.w=d -_.x=e -_.y=f -_.z=g -_.Q=h -_.as=i -_.at=j -_.ax=k -_.ay=l -_.ch=m -_.CW=n -_.cx=o -_.cy=p -_.db=q -_.dx=r -_.dy=s -_.fy=a0 -_.go=a1 -_.id=a2 -_.k4=a3 -_.ok=a4 -_.p1=a5 -_.p2=a6 -_.p3=a7 -_.p4=a8 -_.R8=a9 -_.RG=b0 -_.rx=b1 -_.ry=b2 -_.to=b3 -_.x1=b4 -_.x2=b5 -_.xr=b6 -_.y1=b7 -_.y2=b8 -_.aH=b9 -_.n=c0 -_.a=c1}, -JV:function JV(){var _=this -_.c=_.a=_.e=_.d=null}, -aHE:function aHE(a){this.a=a}, -aHF:function aHF(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q}, -aHw:function aHw(a){this.a=a}, -aHx:function aHx(a){this.a=a}, -aHy:function aHy(a){this.a=a}, -aHz:function aHz(a){this.a=a}, -aHA:function aHA(a){this.a=a}, -aHB:function aHB(a){this.a=a}, -aHC:function aHC(a){this.a=a}, -aHD:function aHD(a){this.a=a}, -W9:function W9(a,b,c){this.e=a -this.r=b -this.a=c}, -aXX(a,b,c,d,e,f,g,h){return new A.ta(b,e,a,h,c,f,g,d,null)}, -ta:function ta(a,b,c,d,e,f,g,h,i){var _=this -_.d=a -_.e=b -_.f=c -_.r=d -_.w=e -_.x=f -_.y=g -_.z=h -_.a=i}, -EV:function EV(){this.c=this.a=this.d=null}, -auq:function auq(a,b){this.a=a -this.b=b}, -aur:function aur(a){this.a=a}, -aus:function aus(a){this.a=a}, -oF:function oF(a,b,c){var _=this -_.b=_.a=!1 -_.c=a -_.d=b -_.L$=0 -_.P$=c -_.av$=_.ao$=0}, -auo:function auo(){}, -aup:function aup(a,b){this.a=a -this.b=b}, -EU:function EU(a,b,c){this.d=a -this.as=b -this.a=c}, -a6L:function a6L(a){var _=this -_.d=a -_.f=_.e=$ -_.c=_.a=null}, -aHI:function aHI(a,b,c,d,e,f,g,h,i,j,k,l){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l}, -aHG:function aHG(a,b,c){this.a=a -this.b=b -this.c=c}, -aHH:function aHH(a,b,c){this.a=a -this.b=b -this.c=c}, -hT(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=null,e=A.dd(b,!0) -switch(0){case 0:s=e.p1 -break}r=s.x -q=s.y -s=new A.aPE() -p=A.ct(b,!0) -o=s.$1(r) -s=s.$1(q) -n=A.c([],t.Zt) -m=$.as -l=A.mw(B.dQ) -k=A.c([],t.wi) -j=$.af() -i=$.as -h=c.i("ax<0?>") -g=c.i("bC<0?>") -return p.o5(new A.EX(a,!0,"",B.Ng,o,s,new A.aPD(r,q),f,f,f,n,A.aU(t.f9),new A.by(f,c.i("by>")),new A.by(f,t.A),new A.U4(),f,0,new A.bC(new A.ax(m,c.i("ax<0?>")),c.i("bC<0?>")),l,k,f,B.HQ,new A.cb(f,j),new A.bC(new A.ax(i,h),g),new A.bC(new A.ax(i,h),g),c.i("EX<0>")))}, -aRU(a,b,c){return new A.tc(c,null,b,B.a6P,a,null)}, -x4(a,b,c){return new A.tc(c,b,null,B.a6Q,a,null)}, -EX:function EX(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){var _=this -_.md=a -_.eO=b -_.vS=c -_.pp=d -_.vT=e -_.rI=f -_.rJ=g -_.k3=h -_.k4=i -_.ok=j -_.p1=null -_.p2=!1 -_.p4=_.p3=null -_.R8=k -_.RG=l -_.rx=m -_.ry=n -_.to=o -_.x1=$ -_.x2=null -_.xr=$ -_.m8$=p -_.Bb$=q -_.at=r -_.ax=null -_.ay=!1 -_.CW=_.ch=null -_.cx=s -_.dy=_.dx=_.db=null -_.r=a0 -_.a=a1 -_.b=null -_.c=a2 -_.d=a3 -_.e=a4 -_.f=a5 -_.$ti=a6}, -aPE:function aPE(){}, -aPF:function aPF(){}, -aPD:function aPD(a,b){this.a=a -this.b=b}, -We:function We(a,b){this.a=a -this.b=b}, -tc:function tc(a,b,c,d,e,f){var _=this -_.c=a -_.d=b -_.e=c -_.f=d -_.r=e -_.a=f}, -auw:function auw(a){this.a=a}, -aux:function aux(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4}, -Wf:function Wf(a,b,c){this.c=a -this.d=b -this.a=c}, -baT(a,b){var s=null -return new A.cT("[#"+A.bF(new A.hc())+"]",new A.mE(!1,$.af()),A.lZ(!0,s,!0,!0,s,s,!1),s,A.t(t.yb,t.M),s,!0,s,a.i("@<0>").bN(b).i("cT<1,2>"))}, -iv:function iv(){}, -auy:function auy(a,b,c,d,e){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e}, -cT:function cT(a,b,c,d,e,f,g,h,i){var _=this -_.ay=a -_.CW=_.ch=null -_.e=_.d=$ -_.f=b -_.r=c -_.bD$=d -_.eZ$=e -_.l1$=f -_.dU$=g -_.f_$=h -_.c=_.a=null -_.$ti=i}, -l0(a,b,c,d,e,f,g,h){var s=null,r=a!=null?a.a.a:s,q=h==null?s:new A.auC(h) -return new A.x9(a,b,s,s,s,s,s,new A.auD(s),!1,new A.auy(t.N,s,d,s,new A.auE(s,s,s,s,c,s,B.l7,!1,f,!0,B.aap,s,s,!0,1,s,!1,s,s,s,s,s,s,s,B.fW,B.d4,B.iZ,B.W,s,s,s,B.N,!0,!0,s,s,s,s,s,s,s,g,s,!1,s,s,s,!1,s,B.aN,s,"\u2022",s,s,s,s,e,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)),s,s,q,r,!0,B.fU,s,s)}, -x9:function x9(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this -_.p4=a -_.at=b -_.ax=c -_.cx=d -_.cy=e -_.db=f -_.dx=g -_.fr=h -_.fx=i -_.c=j -_.d=k -_.f=l -_.r=m -_.x=n -_.y=o -_.z=p -_.Q=q -_.a=r}, -auC:function auC(a){this.a=a}, -auD:function auD(a){this.a=a}, -auE:function auE(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,f0,f1,f2){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f -_.r=g -_.w=h -_.x=i -_.y=j -_.z=k -_.Q=l -_.as=m -_.at=n -_.ax=o -_.ay=p -_.ch=q -_.CW=r -_.cx=s -_.cy=a0 -_.db=a1 -_.dx=a2 -_.dy=a3 -_.fr=a4 -_.fx=a5 -_.fy=a6 -_.go=a7 -_.id=a8 -_.k1=a9 -_.k2=b0 -_.k3=b1 -_.k4=b2 -_.ok=b3 -_.p1=b4 -_.p2=b5 -_.p3=b6 -_.p4=b7 -_.R8=b8 -_.RG=b9 -_.rx=c0 -_.ry=c1 -_.to=c2 -_.x1=c3 -_.x2=c4 -_.xr=c5 -_.y1=c6 -_.y2=c7 -_.aH=c8 -_.aB=c9 -_.n=d0 -_.U=d1 -_.a0=d2 -_.a3=d3 -_.a5=d4 -_.au=d5 -_.L=d6 -_.P=d7 -_.ao=d8 -_.av=d9 -_.b8=e0 -_.bL=e1 -_.bz=e2 -_.bE=e3 -_.bv=e4 -_.bU=e5 -_.aK=e6 -_.c_=e7 -_.bo=e8 -_.cB=e9 -_.bq=f0 -_.u=f1 -_.c0=f2}, -x6:function x6(a,b,c,d,e,f,g,h,i){var _=this -_.k4=null -_.ok=a -_.ay=b -_.CW=_.ch=null -_.e=_.d=$ -_.f=c -_.r=d -_.bD$=e -_.eZ$=f -_.l1$=g -_.dU$=h -_.f_$=i -_.c=_.a=null}, -x5(a,b){return new A.F_(a,b)}, -auh:function auh(a,b){this.a=a -this.b=b}, -F_:function F_(a,b){this.w=a -this.a=b}, -F0:function F0(a,b,c,d,e){var _=this -_.d=a -_.e=b -_.f=c -_.r=d -_.w=e -_.x=$ -_.c=_.a=null}, -auB:function auB(a){this.a=a}, -auA:function auA(){}, -auz:function auz(a){this.a=a}, -x7:function x7(a,b,c){this.f=a -this.b=b -this.a=c}, -Wg:function Wg(a,b,c,d,e,f,g,h,i,j){var _=this -_.d=a -_.f=b -_.x=c -_.y=d -_.z=e -_.as=f -_.at=g -_.ax=h -_.cx=i -_.a=j}, -b0P(a,b){var s -A:{if(B.eL===a){s=b.gaW().gb6() -break A}if(B.eM===a){s=b.gaW().gb5() -break A}if(B.he===a){s=b.gaW().gb7() -break A}if(B.hf===a){s=b.gaW().gb2() -break A}s=null -break A}return s}, -baU(a,b){var s,r,q,p,o,n=null,m=A.j2(a,B.agd,t.fk),l=m==null?A.aRV(n,n,n,n):m,k=b.a.c.a.b,j=k.gca()&&k.a!==k.b,i=b.gIS(),h=A.a6(i).i("b1<1>"),g=A.aa(new A.b1(i,new A.auJ(j,l),h),h.i("y.E")) -if(g.length===0)return B.aE -i=b.gXH() -h=A.c([],t.p) -for(s=g.length,r=0;r"))}, -aRX(a,b,c){var s=a.fs(c.i("tj<0>")),r=s==null?null:s.gW() -c.i("tj<0>?").a(r) -return r==null?null:r.f}, -tj:function tj(a,b,c,d){var _=this -_.f=a -_.b=b -_.a=c -_.$ti=d}, -aXV(a,b,c,d,e,f){return new A.aul(new A.W3(d),new A.W2(c),new A.W1(b),new A.W0(a),new A.W4(e),new A.W5(f))}, -aul:function aul(a,b,c,d,e,f){var _=this -_.a=a -_.b=b -_.c=c -_.d=d -_.e=e -_.f=f}, -it:function it(){}, -W3:function W3(a){this.a=a}, -W2:function W2(a){this.a=a}, -W1:function W1(a){this.a=a}, -W0:function W0(a){this.a=a}, -W4:function W4(a){this.a=a}, -W5:function W5(a){this.a=a}, -Fa:function Fa(a,b){this.c=a -this.a=b}, -k1:function k1(a,b){this.a=a -this.b=b}, -XL:function XL(a,b){var _=this -_.a=a -_.L$=0 -_.P$=b -_.av$=_.ao$=0}, -xf(){var s=0,r=A.I(t.cZ),q,p=2,o=[],n,m,l,k,j,i -var $async$xf=A.J(function(a,b){if(a===1){o.push(b) -s=p}for(;;)switch(s){case 0:s=$.avh==null?3:4 -break -case 3:n=new A.bC(new A.ax($.as,t.cN),t.Iy) -$.avh=n -p=6 -s=9 -return A.p(A.avi(),$async$xf) -case 9:m=b -n.dR(new A.xe(m)) -p=2 -s=8 -break -case 6:p=5 -i=o.pop() -l=A.aj(i) -n.rp(l) -k=n.a -$.avh=null -q=k -s=1 -break -s=8 -break -case 5:s=2 -break -case 8:case 4:q=$.avh.a -s=1 -break -case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$xf,r)}, -avi(){var s=0,r=A.I(t.nf),q,p,o,n,m,l,k,j -var $async$avi=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:n=t.N -m=t.K -l=A.t(n,m) -k=J -j=l -s=3 -return A.p($.aPS().oi(),$async$avi) -case 3:k.b5h(j,b) -p=A.t(n,m) -for(n=l,n=new A.eS(n,n.r,n.e);n.v();){m=n.d -o=B.c.cD(m,8) -m=J.iQ(l,m) -m.toString -p.m(0,o,m)}q=p -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$avi,r)}, -xe:function xe(a){this.a=a}, -anU:function anU(){}, -avg:function avg(){}, -aq_:function aq_(a,b){this.a=a -this.b=b}, -aj4:function aj4(a){this.a=a}, -bhM(a){var s=A.b8E(v.G.window.localStorage) -return new A.b1(s,new A.aNw(a),A.a6(s).i("b1<1>"))}, -beK(a){var s,r=null -try{r=B.ca.ic(a)}catch(s){if(t.bE.b(A.aj(s)))return null -else throw s}if(t.j.b(r))return J.Md(r,t.N) -return r}, -ave:function ave(){}, -avf:function avf(a){this.a=a}, -aNw:function aNw(a){this.a=a}, -aQ:function aQ(){}, -X:function X(){this.r=null}, -MI:function MI(){}, -aQM(a,b){if(b<0)A.a0(A.fu("Offset may not be negative, was "+b+".")) -else if(b>a.c.length)A.a0(A.fu("Offset "+b+u.D+a.gH(0)+".")) -return new A.Qh(a,b)}, -avK:function avK(a,b,c){var _=this -_.a=a -_.b=b -_.c=c -_.d=null}, -Qh:function Qh(a,b){this.a=a -this.b=b}, -yk:function yk(a,b,c){this.a=a -this.b=b -this.c=c}, -b8k(a,b){var s=A.b8l(A.c([A.bda(a,!0)],t._Y)),r=new A.ajO(b).$0(),q=B.j.k(B.b.gaC(s).b+1),p=A.b8m(s)?0:3,o=A.a6(s) -return new A.aju(s,r,null,1+Math.max(q.length,p),new A.am(s,new A.ajw(),o.i("am<1,o>")).wS(0,B.Lb),!A.bkr(new A.am(s,new A.ajx(),o.i("am<1,Q?>"))),new A.cf(""))}, -b8m(a){var s,r,q -for(s=0;s") -r=s.i("fo") -s=A.aa(new A.fo(new A.dZ(q,s),new A.ajB(),r),r.i("y.E")) -return s}, -bda(a,b){var s=new A.aCR(a).$0() -return new A.fQ(s,!0,null)}, -bdc(a){var s,r,q,p,o,n,m=a.gde() -if(!B.c.q(m,"\r\n"))return a -s=a.gc4().gcU() -for(r=m.length-1,q=0;q")) -for(s=c.i("z<0>"),r=0;r<1;++r){q=a[r] -p=b.$1(q) -o=n.h(0,p) -if(o==null){o=A.c([],s) -n.m(0,p,o) -p=o}else p=o -J.eJ(p,q)}return n}, -aR8(a,b){var s,r -for(s=J.bG(a);s.v();){r=s.gT() -if(b.$1(r))return r}return null}, -aWF(a,b,c,d){return new A.hi(A.b8J(a,b,c,d),d.i("hi<0>"))}, -b8J(a,b,c,d){return function(){var s=a,r=b,q=c,p=d -var o=0,n=1,m=[],l -return function $async$aWF(e,f,g){if(f===1){m.push(g) -o=n}for(;;)switch(o){case 0:l=0 -case 2:if(!(l>>1 -r=p-s -q=A.bO(r,a[0],!1,c) -A.aO3(a,b,s,p,q,0) -A.aO3(a,b,0,s,a,r) -A.b0Q(b,a,r,p,q,0,r,a,0)}, -bhX(a,b,c,d,e){var s,r,q,p,o -for(s=d+1;s1e6){if(q.b==null)q.b=$.wz.$0() -q.iu() -$.abE=0}for(;;){if(!($.abE<12288?!$.ac4().gan(0):r))break -s=$.ac4().ti() -$.abE=$.abE+s.length -A.b21(s)}if(!$.ac4().gan(0)){$.aSX=!0 -$.abE=0 -A.ck(B.eP,A.bkM()) -if($.aM9==null)$.aM9=new A.bC(new A.ax($.as,t.c),t.R)}else{$.aUb().mV() -r=$.aM9 -if(r!=null)r.fW() -$.aM9=null}}, -b20(a,b,c,d,e,f){var s,r,q=e.b,p=q+f,o=a.b,n=d.b-b,m=p+o<=n -o=q-f-o -s=(o>=b===m?!0:m)?Math.min(p,n):Math.max(o,b) -q=a.a -r=d.a-q -return new A.h(r<=2*b?r/2:A.E(e.a-q/2,b,r-b),s)}, -anK(a){var s,r,q=a.a,p=null,o=null,n=!1 -if(1===q[0])if(0===q[1])if(0===q[2])if(0===q[3])if(0===q[4])if(1===q[5])if(0===q[6])if(0===q[7])if(0===q[8])if(0===q[9])if(1===q[10])if(0===q[11]){s=q[12] -r=q[13] -n=0===q[14]&&1===q[15] -o=r -p=s}if(n)return new A.h(p,o) -return null}, -aWW(a,b){var s,r,q -if(a==b)return!0 -if(a==null){b.toString -return A.anL(b)}if(b==null)return A.anL(a) -s=a.a -r=s[0] -q=b.a -return r===q[0]&&s[1]===q[1]&&s[2]===q[2]&&s[3]===q[3]&&s[4]===q[4]&&s[5]===q[5]&&s[6]===q[6]&&s[7]===q[7]&&s[8]===q[8]&&s[9]===q[9]&&s[10]===q[10]&&s[11]===q[11]&&s[12]===q[12]&&s[13]===q[13]&&s[14]===q[14]&&s[15]===q[15]}, -anL(a){var s=a.a -return s[0]===1&&s[1]===0&&s[2]===0&&s[3]===0&&s[4]===0&&s[5]===1&&s[6]===0&&s[7]===0&&s[8]===0&&s[9]===0&&s[10]===1&&s[11]===0&&s[12]===0&&s[13]===0&&s[14]===0&&s[15]===1}, -bA(a,b){var s=a.a,r=b.a,q=b.b,p=s[0]*r+s[4]*q+s[12],o=s[1]*r+s[5]*q+s[13],n=s[3]*r+s[7]*q+s[15] -if(n===1)return new A.h(p,o) -else return new A.h(p/n,o/n)}, -anJ(a,b,c,d,e){var s,r=e?1:1/(a[3]*b+a[7]*c+a[15]),q=(a[0]*b+a[4]*c+a[12])*r,p=(a[1]*b+a[5]*c+a[13])*r -if(d){s=$.aPO() -s.$flags&2&&A.az(s) -s[2]=q -s[0]=q -s[3]=p -s[1]=p}else{s=$.aPO() -if(qs[2]){s.$flags&2&&A.az(s) -s[2]=q}if(p>s[3]){s.$flags&2&&A.az(s) -s[3]=p}}}, -e0(b1,b2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=b1.a,a5=b2.a,a6=b2.b,a7=b2.c,a8=a7-a5,a9=b2.d,b0=a9-a6 -if(!isFinite(a8)||!isFinite(b0)){s=a4[3]===0&&a4[7]===0&&a4[15]===1 -A.anJ(a4,a5,a6,!0,s) -A.anJ(a4,a7,a6,!1,s) -A.anJ(a4,a5,a9,!1,s) -A.anJ(a4,a7,a9,!1,s) -a7=$.aPO() -return new A.w(a7[0],a7[1],a7[2],a7[3])}a7=a4[0] -r=a7*a8 -a9=a4[4] -q=a9*b0 -p=a7*a5+a9*a6+a4[12] -a9=a4[1] -o=a9*a8 -a7=a4[5] -n=a7*b0 -m=a9*a5+a7*a6+a4[13] -a7=a4[3] -if(a7===0&&a4[7]===0&&a4[15]===1){l=p+r -if(r<0)k=p -else{k=l -l=p}if(q<0)l+=q -else k+=q -j=m+o -if(o<0)i=m -else{i=j -j=m}if(n<0)j+=n -else i+=n -return new A.w(l,j,k,i)}else{a9=a4[7] -h=a9*b0 -g=a7*a5+a9*a6+a4[15] -f=p/g -e=m/g -a9=p+r -a7=g+a7*a8 -d=a9/a7 -c=m+o -b=c/a7 -a=g+h -a0=(p+q)/a -a1=(m+n)/a -a7+=h -a2=(a9+q)/a7 -a3=(c+n)/a7 -return new A.w(A.aWU(f,d,a0,a2),A.aWU(e,b,a1,a3),A.aWT(f,d,a0,a2),A.aWT(e,b,a1,a3))}}, -aWU(a,b,c,d){var s=ab?a:b,r=c>d?c:d -return s>r?s:r}, -aWV(a,b){var s -if(A.anL(a))return b -s=new A.bc(new Float64Array(16)) -s.dl(a) -s.ia(s) -return A.e0(s,b)}, -LS(a,b,c){if(a==null)return a===b -return a>b-c&&ab?a:b,r=s===b?a:b -return(s+5)/(r+5)}, -aVg(a,b){var s,r,q,p -if(b<0||b>100)return-1 -s=A.pY(b) -r=a*(s+5)-5 -q=A.aQr(r,s) -if(q0.04)return-1 -p=A.aVb(r)+0.4 -if(p<0||p>100)return-1 -return p}, -aVf(a,b){var s,r,q,p -if(b<0||b>100)return-1 -s=A.pY(b) -r=(s+5)/a-5 -q=A.aQr(s,r) -if(q0.04)return-1 -p=A.aVb(r)-0.4 -if(p<0||p>100)return-1 -return p}, -aQH(a){var s,r,q,p,o,n=a.a -n===$&&A.a() -s=B.d.aY(n) -r=s>=90&&s<=111 -s=a.b -s===$&&A.a() -q=B.d.aY(s) -p=a.c -p===$&&A.a() -o=B.d.aY(p)<65 -if(r&&q>16&&o)return A.vH(A.qE(n,s,70)) -return a}, -ajm(a){var s=a/100 -return(s<=0.0031308?s*12.92:1.055*Math.pow(s,0.4166666666666667)-0.055)*255}, -aQZ(a){var s=Math.pow(Math.abs(a),0.42) -return A.r6(a)*400*s/(s+27.13)}, -aR_(a){var s=A.o9(a,B.Zb),r=A.aQZ(s[0]),q=A.aQZ(s[1]),p=A.aQZ(s[2]) -return Math.atan2((r+q-2*p)/9,(11*r+-12*q+p)/11)}, -b8j(a,b){var s,r,q,p,o,n=B.j.cn(b,4)<=1?0:100,m=(b&1)===0?0:100 -if(b<4){s=(a-n*0.7152-m*0.0722)/0.2126 -r=0<=s&&s<=100 -q=t.n -if(r)return A.c([s,n,m],q) -else return A.c([-1,-1,-1],q)}else if(b<8){p=(a-m*0.2126-n*0.0722)/0.7152 -r=0<=p&&p<=100 -q=t.n -if(r)return A.c([m,p,n],q) -else return A.c([-1,-1,-1],q)}else{o=(a-n*0.2126-m*0.7152)/0.0722 -r=0<=o&&o<=100 -q=t.n -if(r)return A.c([n,m,o],q) -else return A.c([-1,-1,-1],q)}}, -b8h(a,b){var s,r,q,p,o,n,m,l,k=A.c([-1,-1,-1],t.n) -for(s=k,r=0,q=0,p=!1,o=!0,n=0;n<12;++n){m=A.b8j(a,n) -if(m[0]<0)continue -l=A.aR_(m) -if(!p){q=l -r=q -s=m -k=s -p=!0 -continue}if(o||B.d.cn(l-r+25.132741228718345,6.283185307179586)100.01||e>100.01||d>100.01)return 0 -return((A.v2(g)&255)<<16|(A.v2(f[1])&255)<<8|A.v2(f[2])&255|4278190080)>>>0}b-=(c-a6)*b/(2*c)}return 0}, -qE(a,b,c){var s,r,q,p -if(b<0.0001||c<0.0001||c>99.9999){s=A.v2(A.pY(c)) -return A.aVa(s,s,s)}r=A.CT(a)/180*3.141592653589793 -q=A.pY(c) -p=A.b8i(r,b,q) -if(p!==0)return p -return A.b6o(A.b8g(q,r))}, -aVa(a,b,c){return((a&255)<<16|(b&255)<<8|c&255|4278190080)>>>0}, -b6o(a){return A.aVa(A.v2(a[0]),A.v2(a[1]),A.v2(a[2]))}, -aVc(a){return A.o9(A.c([A.dW(B.j.fU(a,16)&255),A.dW(B.j.fU(a,8)&255),A.dW(a&255)],t.n),B.e_)}, -pY(a){return 100*A.b6n((a+16)/116)}, -aVb(a){return A.pX(a/100)*116-16}, -dW(a){var s=a/255 -if(s<=0.040449936)return s/12.92*100 -else return Math.pow((s+0.055)/1.055,2.4)*100}, -v2(a){var s=a/100 -return A.b97(0,255,B.d.aY((s<=0.0031308?s*12.92:1.055*Math.pow(s,0.4166666666666667)-0.055)*255))}, -pX(a){if(a>0.008856451679035631)return Math.pow(a,0.3333333333333333) -else return(903.2962962962963*a+16)/116}, -b6n(a){var s=a*a*a -if(s>0.008856451679035631)return s -else return(116*a-16)/903.2962962962963}, -r6(a){if(a<0)return-1 -else if(a===0)return 0 -else return 1}, -aRk(a,b,c){return(1-c)*a+c*b}, -b97(a,b,c){if(cb)return b -return c}, -anI(a,b,c){if(cb)return b -return c}, -CT(a){a=B.d.cn(a,360) -return a<0?a+360:a}, -o9(a,b){var s,r,q,p,o=a[0],n=b[0],m=n[0],l=a[1],k=n[1],j=a[2] -n=n[2] -s=b[1] -r=s[0] -q=s[1] -s=s[2] -p=b[2] -return A.c([o*m+l*k+j*n,o*r+l*q+j*s,o*p[0]+l*p[1]+j*p[2]],t.n)}, -b1v(){var s,r,q,p,o=null -try{o=A.aSl()}catch(s){if(t.VI.b(A.aj(s))){r=$.aM8 -if(r!=null)return r -throw s}else throw s}if(J.b(o,$.b0t)){r=$.aM8 -r.toString -return r}$.b0t=o -if($.aTZ()===$.M6())r=$.aM8=o.af(".").k(0) -else{q=o.M6() -p=q.length-1 -r=$.aM8=p===0?q:B.c.a6(q,0,p)}return r}, -b1O(a){var s -if(!(a>=65&&a<=90))s=a>=97&&a<=122 -else s=!0 -return s}, -b1A(a,b){var s,r,q=null,p=a.length,o=b+2 -if(p")).gai(0),r=t.P;s.v();){q=s.d -p=q.a -o=p.split(b) -if(o.length===1)i.m(0,p,q.b) -else{for(n=i,m=0;m")).gai(0),r=t.f;s.v();){q=s.d -p=q.a -o=k.aN(p)&&r.b(k.h(0,p))&&r.b(q.b) -n=q.b -if(o)k.m(0,p,A.aRj(A.vX(r.a(k.h(0,p)),m,l),A.vX(r.a(n),m,l))) -else k.m(0,p,n)}return k}, -RJ(a,b){var s,r,q,p,o,n,m,l=b==null?a:b,k=t.z,j=A.t(k,k) -for(k=l.gfj(),k=k.gai(k),s=t.Ro,r=t.j,q=t.f;k.v();){p=k.gT() -o=p.a -n=p.b -p=q.b(n) -m=p?n:null -if(p){j.m(0,o,A.RJ(a,m)) -continue}p=r.b(n) -m=p?n:null -if(p){j.m(0,o,A.aRf(m,m)) -continue}p=s.b(n) -m=p?n:null -if(p){j.m(0,o,A.aRQ(m,m)) -continue}j.m(0,o,n)}return j}, -aRQ(a,b){var s,r,q,p,o,n,m,l=A.aU(t.z) -for(s=b.gai(b),r=t.Ro,q=t.j,p=t.f;s.v();){o=s.gT() -n=p.b(o) -m=n?o:null -if(n){l.G(0,A.RJ(m,m)) -continue}n=q.b(o) -m=n?o:null -if(n){l.G(0,A.aRf(m,m)) -continue}n=r.b(o) -m=n?o:null -if(n){l.G(0,A.aRQ(m,m)) -continue}l.G(0,o)}return l}, -aZH(a,b){var s=a.b -return new A.oP(b,s,a.c)}, -aZI(a,b){var s=a.b -return new A.mU(b,s,a.c)}, -VX(a,b){var s,r=A.c([],t.p),q=A.a6(a),p=new J.cO(a,a.length,q.i("cO<1>")) -if(p.v()){s=p.d -r.push(s==null?q.c.a(s):s) -for(q=q.c;p.v();){r.push(b) -s=p.d -r.push(s==null?q.a(s):s)}}return r}, -b8E(a){var s,r,q=A.c([],t.s) -for(s=0;s")),q=q.i("aE.E");r.v();){p=r.d -if(!J.b(p==null?q.a(p):p,s))return!1}return!0}, -bkO(a,b){var s=B.b.ik(a,null) -if(s<0)throw A.i(A.c1(A.j(a)+" contains no null elements.",null)) -a[s]=b}, -b24(a,b){var s=B.b.ik(a,b) -if(s<0)throw A.i(A.c1(A.j(a)+" contains no elements matching "+b.k(0)+".",null)) -a[s]=null}, -bjz(a,b){var s,r,q,p -for(s=new A.hW(a),r=t.Hz,s=new A.bf(s,s.gH(0),r.i("bf")),r=r.i("aX.E"),q=0;s.v();){p=s.d -if((p==null?r.a(p):p)===b)++q}return q}, -aOW(a,b,c){var s,r,q -if(b.length===0)for(s=0;;){r=B.c.kn(a,"\n",s) -if(r===-1)return a.length-s>=c?s:null -if(r-s>=c)return s -s=r+1}r=B.c.ik(a,b) -while(r!==-1){q=r===0?0:B.c.BT(a,"\n",r-1)+1 -if(c===r-q)return q -r=B.c.kn(a,b,r+1)}return null}, -aH(a,b,c){var s -if(a!=b){s=a==null?null:isNaN(a) -if(s===!0){s=b==null?null:isNaN(b) -s=s===!0}else s=!1}else s=!0 -if(s)return a==null?null:a -if(a==null)a=0 -if(b==null)b=0 -return a*(1-c)+b*c}, -f1(a,b,c){if(J.b(a,b))return a -if(a==null)a=B.z -if(b==null)b=B.z -return A.cI(B.d.aY(a.a*(1-c)+b.a*c),0)}},B={},C={},D={},E={},F={},G={},H={},I={},K={},L={},M={},N={},O={},P={},Q={},R={},S={},T={},U={},V={},W={},X={},Y={},Z={},A_={},A0={},A1={},A2={},A3={},A4={},A5={},A6={},A7={},A8={},A9={},Aa={},Ab={},Ac={},Ad={},Ae={},Af={},Ag={},Ah={},Ai={},Aj={},Ak={},Al={},Am={},An={},Ao={},Ap={},Aq={},Ar={},As={},At={},Au={},Av={},Aw={},Ax={},Ay={},Az={},AA={},AB={},AC={},AD={},AE={},AF={},AG={},AH={},AI={},AJ={},AK={},AL={},AM={},AN={},AO={},AP={},AQ={},AR={},AS={},AT={},AU={} -var w=[A,J,B,C,Ab,Ak,Aq,AK,N,S,T,U,V,W,X,Y,Z,A_,A0,A1,A2,A3,A4,A5,A6,A7,A8,A9,Aa,Ac,Ad,Ae,Af,Ag,Ah,Ai,Aj,Al,Am,An,Ao,Ap,Ar,As,At,Au,Av,Aw,Ax,Ay,Az,AA,AB,AC,AD,AE,AF,AG,AH,AI,AJ,AL,AM,AN,AO,AP,AQ,AR,AS,AT,AU,D,E,F,G,H,I,K,L,M,O,P,Q,R] -var $={} -A.Ml.prototype={ -sara(a){var s,r,q,p,o=this -if(J.b(a,o.c))return -if(a==null){o.ES() -o.c=null -return}s=o.a.$0() -if(a.a_s(s)){o.ES() -o.c=a -return}if(o.b==null)o.b=A.ck(a.fY(s),o.gHA()) -else{r=o.c -q=r.a -p=a.a -if(q<=p)r=q===p&&r.b>a.b -else r=!0 -if(r){o.ES() -o.b=A.ck(a.fY(s),o.gHA())}}o.c=a}, -ES(){var s=this.b -if(s!=null)s.bg() -this.b=null}, -amC(){var s=this,r=s.a.$0(),q=s.c -q.toString -if(!r.a_s(q)){s.b=null -q=s.d -if(q!=null)q.$0()}else s.b=A.ck(q.fY(r),s.gHA())}} -A.acA.prototype={ -rl(){var s=0,r=A.I(t.H),q=this -var $async$rl=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:s=2 -return A.p(q.a.$0(),$async$rl) -case 2:s=3 -return A.p(q.b.$0(),$async$rl) -case 3:return A.G(null,r)}}) -return A.H($async$rl,r)}, -axa(){return A.b81(new A.acE(this),new A.acF(this))}, -ajV(){return A.b8_(new A.acB(this))}, -Tf(){return A.b80(new A.acC(this),new A.acD(this))}} -A.acE.prototype={ -$0(){var s=0,r=A.I(t.m),q,p=this,o -var $async$$0=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:o=p.a -s=3 -return A.p(o.rl(),$async$$0) -case 3:q=o.Tf() -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$$0,r)}, -$S:321} -A.acF.prototype={ -$1(a){return this.a20(a)}, -$0(){return this.$1(null)}, -a20(a){var s=0,r=A.I(t.m),q,p=this,o -var $async$$1=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:o=p.a -s=3 -return A.p(o.a.$1(a),$async$$1) -case 3:q=o.ajV() -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$$1,r)}, -$S:129} -A.acB.prototype={ -$1(a){return this.a2_(a)}, -$0(){return this.$1(null)}, -a2_(a){var s=0,r=A.I(t.m),q,p=this,o -var $async$$1=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:o=p.a -s=3 -return A.p(o.b.$0(),$async$$1) -case 3:q=o.Tf() -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$$1,r)}, -$S:129} -A.acC.prototype={ -$1(a){var s,r,q,p=$.b7().gdr(),o=p.a,n=a.hostElement -n.toString -s=a.viewConstraints -r=$.b0S -$.b0S=r+1 -q=new A.a2o(r,o,A.aVT(n),s,B.fJ,A.aVx(n)) -q.OF(r,o,n,s) -p.a11(q,a) -return r}, -$S:675} -A.acD.prototype={ -$1(a){return $.b7().gdr().YB(a)}, -$S:104} -A.acI.prototype={ -apI(){var s,r,q,p,o=this.a -this.a=A.c([],t.s8) -for(s=o.length,r=0;r "+this.a.a.k(0)}, -k(a){return"ImageFilter.compose(source -> "+(this.b.gnA()+" -> "+this.a.a.k(0))+" -> result)"}} -A.aAy.prototype={ -$1(a){this.a.b.lx(new A.aAx(a,this.b),this.c)}, -$S:3} -A.aAx.prototype={ -$1(a){var s=$.bx.cj().ImageFilter.MakeCompose(this.a,a) -this.b.$1(s) -s.delete()}, -$S:3} -A.aNv.prototype={ -$1(a){if(a.a!=null)a.l() -return null}, -$S:263} -A.aoE.prototype={} -A.lc.prototype={ -xY(a,b,c,d){this.a=b -$.b56() -if($.b4X())$.b49().register(a,this)}, -l(){var s=this.a -if(!s.isDeleted())s.delete() -this.a=null}} -A.NB.prototype={ -a1J(a){var s -if(--this.b===0){s=this.a -s===$&&A.a() -s.l()}}} -A.jB.prototype={ -a1D(a){var s,r,q,p,o,n,m=this,l=new v.G.window.flutterCanvasKit.Paint() -l.setAntiAlias(m.f) -s=m.a -l.setBlendMode($.b4E()[s.a]) -s=m.b -l.setStyle($.b4I()[s.a]) -l.setStrokeWidth(m.c) -s=m.d -l.setStrokeCap($.b4M()[s.a]) -s=m.e -l.setStrokeJoin($.b4N()[s.a]) -l.setColorInt(m.r) -l.setStrokeMiter(4) -r=m.at -if(r!=null){s=r.b -s===$&&A.a() -s=s.a -s.toString -l.setColorFilter(s)}q=m.y -if(q!=null){l.setShader(q.a2y(m.Q)) -if(q.gauC())l.setDither(!0)}p=m.z -if(p!=null){s=p.b -if(isFinite(s)&&s>0){o=p.a -s=$.bx.cj().MaskFilter.MakeBlur($.b4F()[o.a],s,!0) -s.toString -l.setMaskFilter(s)}}n=m.ay -if(n!=null)n.lx(new A.aeh(l),a) -return l}, -eS(){return this.a1D(B.oV)}, -sDN(a){if(this.y==a)return -this.y=a}, -sa_8(a){if(J.b(this.ay,a))return -this.ay=a}, -k(a){return"Paint()"}, -$ioe:1} -A.aeh.prototype={ -$1(a){this.a.setImageFilter(a)}, -$S:3} -A.uU.prototype={ -sBh(a){var s -if(this.b===a)return -this.b=a -s=this.a -s===$&&A.a() -s=s.a -s.toString -s.setFillType($.aPX()[a.a])}, -Wv(a,b,c){var s,r,q=A.wb() -q.qk(b.a,b.b,0) -s=A.aTG(q.a) -q=a.a -q===$&&A.a() -q=q.a.snapshot() -r=this.a -r===$&&A.a() -r=r.a -r.toString -A.hj(r,"addPath",[q,s[0],s[1],s[2],s[3],s[4],s[5],s[6],s[7],s[8],!1]) -q.delete()}, -aos(a,b){return this.Wv(a,b,null)}, -$irs:1} -A.Ne.prototype={ -ar0(){var s=new v.G.window.flutterCanvasKit.PathBuilder() -s.setFillType($.aPX()[0]) -return A.aQm(s,B.kt)}} -A.uV.prototype={ -l(){this.c=!0 -var s=this.a -s===$&&A.a() -s.a1J(this)}, -$iapt:1} -A.pU.prototype={ -aoX(a){var s=new v.G.window.flutterCanvasKit.PictureRecorder() -this.a=s -return new A.Aq(s.beginRecording(A.d6(a),!0))}, -vO(){var s,r,q,p=this.a -if(p==null)throw A.i(A.aL("PictureRecorder is not recording")) -s=p.finishRecordingAsPicture() -p.delete() -this.a=null -r=new A.uV(!1) -q=A.aQs(s,r,"Picture",t.Bn,t.m) -r.a!==$&&A.bs() -r.a=q -return r}, -$iakU:1, -$iapu:1} -A.ae_.prototype={ -gus(){var s,r,q,p=this.f -if(p===$){if(A.dU().gnv()===B.d7)s=new A.axZ() -else{r=t.N -q=t.Pc -s=new A.Y3(A.aU(r),A.c([],t.LX),A.c([],q),A.c([],q),A.t(r,t.Lc))}this.f!==$&&A.aK() -p=this.f=s}return p}, -ko(){var s=0,r=A.I(t.H),q,p=this,o -var $async$ko=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:o=p.e -q=o==null?p.e=new A.ae2(p).$0():o -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$ko,r)}} -A.ae0.prototype={ -$1(a){var s=new A.uT(A.cw(v.G.document,"flt-canvas-container"),a,B.py,new A.bC(new A.ax($.as,t.c),t.R)) -s.OE(a) -return s}, -$S:315} -A.ae1.prototype={ -$1(a){var s=new A.uS(a,B.py,new A.bC(new A.ax($.as,t.c),t.R)) -s.OE(a) -return s}, -$S:333} -A.ae2.prototype={ -$0(){var s=0,r=A.I(t.a),q=this,p,o,n -var $async$$0=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:o=v.G -s=o.window.flutterCanvasKit!=null?2:4 -break -case 2:o=o.window.flutterCanvasKit -o.toString -$.bx.b=o -s=3 -break -case 4:s=o.window.flutterCanvasKitLoaded!=null?5:7 -break -case 5:o=o.window.flutterCanvasKitLoaded -o.toString -n=$.bx -s=8 -return A.p(A.hS(o,t.m),$async$$0) -case 8:n.b=b -s=6 -break -case 7:n=$.bx -s=9 -return A.p(A.abN(),$async$$0) -case 9:n.b=b -o.window.flutterCanvasKit=$.bx.cj() -case 6:case 3:o=q.a -p=A.b5W() -o.a=p -o.w=p.Y3() -$.aQi.b=o -o=A.he(o.a5p(),t.H) -s=10 -return A.p(o,$async$$0) -case 10:return A.G(null,r)}}) -return A.H($async$$0,r)}, -$S:346} -A.avo.prototype={ -a8u(){var s,r=this,q="Gradient.linear",p=$.bx.cj().Shader,o=A.b2d(r.c),n=A.b2d(r.d),m=A.bl5(r.e),l=A.bl6(r.f),k=A.aTH(r.r),j=r.w -j=j!=null?A.aTG(j):null -s=new A.lc(q,t.Pj) -s.xY(r,A.hj(p,"MakeLinearGradient",[o,n,m,l,k,j==null?null:j]),q,t.m) -r.a!==$&&A.bs() -r.a=s}, -a2y(a){var s=this.a -s===$&&A.a() -s=s.a -s.toString -return s}} -A.ajc.prototype={ -gauC(){return!0}, -k(a){return"Gradient()"}} -A.aef.prototype={} -A.Nf.prototype={ -OE(a){var s=this -s.r=s.a.Wr(s.b,s.ga0b()) -s.GJ() -s.Gp()}, -gOy(){var s=A.dU().b -s=s==null?null:s.canvasKitForceCpuOnly -if(s==null?!1:s){this.d="canvasKitForceCpuOnly is set to true" -return!1}s=$.aM_ -if((s==null?$.aM_=A.b0y():s)===-1){this.d="webGLVersion is -1" -return!1}if(this.e)return!1 -return!0}, -gago(){$===$&&A.a() -return $}, -Gp(){var s=0,r=A.I(t.H),q=this -var $async$Gp=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:q.Q8() -q.w.fW() -return A.G(null,r)}}) -return A.H($async$Gp,r)}, -avZ(){var s=this -s.gago().fW() -s.LT(s.a.Wr(s.b,s.ga0b()))}, -To(){var s,r,q,p,o,n=this -if(n.gOy())try{r=n.c -if(r!=null)r.dispose() -r=$.bx.cj() -q=n.y -q.toString -p=n.b -p=A.hj(r,"MakeOnScreenGLSurface",[q,p.a,p.b,v.G.window.flutterCanvasKit.ColorSpace.SRGB,0,0]) -n.c=p -if(p==null)A.a0(A.cX("Failed to initialize CanvasKit SkSurface."))}catch(o){s=A.aj(o) -n.e=!0 -n.d="failed to create GrContext. Error: "+A.j(s) -n.Tp()}else n.Tp()}, -aaQ(){var s=this,r=$.aM_ -if(r==null)r=$.aM_=A.b0y() -s.f=s.R1({antialias:0,majorVersion:r}) -r=$.bx.cj().MakeGrContext(s.f) -s.y=r -if(r==null){s.e=!0 -s.d="failed to create GrContext."}}, -Q8(){if(this.gOy())this.aaQ() -this.To()}, -Tp(){var s,r=this -if(!$.aV4){$.aV4=!0 -$.ew().$1("WARNING: Falling back to CPU-only rendering. Reason: "+A.j(r.d))}s=r.c -if(s!=null)s.dispose() -r.c=r.Q9()}, -xC(a){var s=this,r=$.dm(),q=r.d -if(q==null)q=r.gcN() -if(s.c!=null&&s.b.j(0,a)&&q===s.z)return -s.z=q -s.b=a -r=s.r -r===$&&A.a() -s.a.M1(r,a) -s.To()}, -LT(a){return this.axD(a)}, -axD(a){var s=0,r=A.I(t.H),q=this,p -var $async$LT=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:p=q.c -if(p!=null)p.dispose() -q.y=q.c=null -q.r=a -q.GJ() -q.Q8() -return A.G(null,r)}}) -return A.H($async$LT,r)}, -l(){var s=this.c -if(s!=null)s.dispose()}, -xD(a){var s=this.y -if(s!=null)s.setResourceCacheLimitBytes(a)}, -te(a){return this.axp(a)}, -axp(a){var s=0,r=A.I(t.H),q=this,p,o -var $async$te=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:s=2 -return A.p(q.w.a,$async$te) -case 2:p=q.c.getCanvas() -p.clear(A.b0X($.aUk(),B.D)) -o=a.a -o===$&&A.a() -o=o.a -o===$&&A.a() -o=o.a -o.toString -p.drawPicture(o) -q.c.flush() -return A.G(null,r)}}) -return A.H($async$te,r)}} -A.uS.prototype={ -R1(a){var s=$.bx.cj(),r=this.r -r===$&&A.a() -return J.b4(s.GetWebGLContext(r,a))}, -Q9(){var s=$.bx.cj(),r=this.r -r===$&&A.a() -return s.MakeSWCanvasSurface(r)}, -tf(a){return this.axr(a)}, -axr(a){var s=0,r=A.I(t.Lc),q,p=this,o,n,m,l,k -var $async$tf=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:s=3 -return A.p(p.w.a,$async$tf) -case 3:o=A.c([],t.O) -n=a.length,m=0 -case 4:if(!(m>>0 -if((s|2)===s)r=(r|J.b4($.bx.cj().OverlineDecoration))>>>0 -if((s|4)===s)r=(r|J.b4($.bx.cj().LineThroughDecoration))>>>0 -b5.decoration=r}if(a1!=null)b5.decorationThickness=a1 -if(a!=null){s=A.zu(a) -b5.decorationColor=s}if(a0!=null)b5.decorationStyle=$.b4P()[a0.a] -if(a4!=null)b5.textBaseline=$.aUm()[a4.a] -if(a5!=null)b5.fontSize=a5 -if(a6!=null)b5.letterSpacing=a6 -if(a7!=null)b5.wordSpacing=a7 -if(a8!=null)b5.heightMultiplier=a8 -switch(d.ch){case null:case void 0:break -case B.A:b5.halfLeading=!0 -break -case B.oP:b5.halfLeading=!1 -break}if(a9!=null)b5.locale=a9.oN("-") -q=d.fr -if(q===$){p=A.aSW(d.y,d.Q) -d.fr!==$&&A.aK() -d.fr=p -q=p}A.aZq(b5,q) -d=a2==null -if(!d||a3!=null)b5.fontStyle=A.aTE(a2,a3) -if(b1!=null){s=A.zu(A.bu(b1.r)) -b5.foregroundColor=s}if(b2!=null){o=A.c([],t.O) -for(s=J.bG(b2);s.v();){n=s.gT() -m={} -l=A.zu(n.a) -m.color=l -l=n.b -k=new Float32Array(2) -k[0]=l.a -k[1]=l.b -m.offset=k -m.blurRadius=n.c -o.push(m)}b5.shadows=o}if(b3!=null){j=A.c([],t.O) -for(s=J.bG(b3);s.v();){n=s.gT() -i={} -i.name=n.gYV() -i.value=n.gp() -j.push(i)}b5.fontFeatures=j}h=A.c([],t.O) -g=!1 -if(b4!=null)for(s=J.bG(b4);s.v();){n=s.gT() -f={} -l=n.a -f.axis=l -f.value=n.b -h.push(f) -if(l==="wght")g=!0}if(!g){e=d?null:a2.a -if(e==null)e=400 -f={} -f.axis="wght" -f.value=e -h.push(f)}A.aZr(b5,h) -return $.bx.cj().TextStyle(b5)}, -$S:110} -A.Av.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.Av&&b.a==s.a&&b.c==s.c&&b.d==s.d&&b.e==s.e&&b.x==s.x&&J.b(b.f,s.f)&&b.r==s.r&&b.w==s.w&&A.hR(b.b,s.b)}, -gt(a){var s=this,r=s.b,q=r!=null?A.bh(r):null -return A.N(s.a,q,s.c,s.d,s.e,s.x,s.f,s.r,s.w,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.Nd.prototype={ -gWD(){return this.d}, -gYt(){return this.e}, -gbY(){return this.f}, -ga_5(){return this.r}, -ga_W(){return this.w}, -gpT(){return this.x}, -gLe(){return this.y}, -gmF(){return this.z}, -xd(){var s=this.Q -s===$&&A.a() -return s}, -xe(a,b,c,d){var s,r,q,p -if(a<0||b<0)return B.Xh -s=this.a -s===$&&A.a() -s=s.a -s.toString -r=$.b4K()[c.a] -q=d.a -p=$.b4L() -s=s.getRectsForRange(a,b,r,p[q<2?q:0]) -return this.NC(B.b.eI(s,t.m))}, -Dn(a,b,c){return this.xe(a,b,c,B.d4)}, -NC(a){var s,r,q,p,o,n,m,l=A.c([],t.Lx) -for(s=a.a,r=J.bk(s),q=a.$ti.y[1],p=0;p")),o=o.i("aX.E");q.v();){p=q.d -if(p==null)p=o.a(p) -if(r>=p.startIndex&&r<=p.endIndex)return new A.bI(J.b4(p.startIndex),J.b4(p.endIndex))}return B.be}, -rq(){var s,r,q,p,o=this.a -o===$&&A.a() -o=o.a.getLineMetrics() -s=B.b.eI(o,t.m) -r=A.c([],t.ER) -for(o=s.$ti,q=new A.bf(s,s.gH(0),o.i("bf")),o=o.i("aX.E");q.v();){p=q.d -r.push(new A.As(p==null?o.a(p):p))}return r}, -Du(a){var s,r=this.a -r===$&&A.a() -s=r.a.getLineMetricsAt(a) -return s==null?null:new A.As(s)}, -gLk(){var s=this.a -s===$&&A.a() -return J.b4(s.a.getNumberOfLines())}, -l(){var s=this.a -s===$&&A.a() -s.l()}} -A.As.prototype={ -gWV(){return this.a.ascent}, -gJj(){return this.a.descent}, -ga1L(){return this.a.ascent}, -gZU(){return this.a.isHardBreak}, -gjw(){return this.a.baseline}, -gbY(){var s=this.a -return B.d.aY(s.ascent+s.descent)}, -gBU(){return this.a.left}, -gmF(){return this.a.width}, -gBV(){return J.b4(this.a.lineNumber)}, -$io5:1} -A.aei.prototype={ -zU(a,b,c,d,e){var s;++this.c -this.d.push(1) -s=e==null?b:e -A.hj(this.a,"addPlaceholder",[a,b,$.b4J()[c.a],$.aUm()[0],s])}, -Ww(a,b,c){return this.zU(a,b,c,null,null)}, -rf(a){var s=A.c([],t.s),r=B.b.gaC(this.e),q=r.y -if(q!=null)s.push(q) -q=r.Q -if(q!=null)B.b.a_(s,q) -$.ab().gus().gKc().arR(a,s) -this.a.addText(a)}, -aM(){var s,r,q="Paragraph",p=this.a -A.bb4(p) -s=p.build() -p.delete() -p=new A.Nd(this.b) -r=new A.lc(q,t.Pj) -r.xY(p,s,q,t.m) -p.a!==$&&A.bs() -p.a=r -return p}, -ga0x(){return this.c}, -ct(){var s=this.e -if(s.length<=1)return -s.pop() -this.a.pop()}, -tc(a9){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8 -t.BQ.a(a9) -s=this.e -r=B.b.gaC(s) -q=a9.ay -if(q===0)p=null -else p=q==null?r.ay:q -q=a9.a -if(q==null)q=r.a -o=a9.b -if(o==null)o=r.b -n=a9.c -if(n==null)n=r.c -m=a9.d -if(m==null)m=r.d -l=a9.e -if(l==null)l=r.e -k=a9.f -if(k==null)k=r.f -j=a9.r -if(j==null)j=r.r -i=a9.w -if(i==null)i=r.w -h=a9.x -if(h==null)h=r.x -g=a9.y -if(g==null)g=r.y -f=a9.z -if(f==null)f=r.z -e=a9.Q -if(e==null)e=r.Q -d=a9.as -if(d==null)d=r.as -c=a9.at -if(c==null)c=r.at -b=a9.ax -if(b==null)b=r.ax -a=a9.ch -if(a==null)a=r.ch -a0=a9.CW -if(a0==null)a0=r.CW -a1=a9.cx -if(a1==null)a1=r.cx -a2=a9.cy -if(a2==null)a2=r.cy -a3=a9.db -if(a3==null)a3=r.db -a4=a9.dx -if(a4==null)a4=r.dx -a5=a9.dy -a6=A.aQn(a1,q,o,n,m,l,g,e,a4,d,j,a5==null?r.dy:a5,k,a2,p,a,c,a0,h,f,a3,i,b) -s.push(a6) -s=a6.cy -q=s==null -if(!q||a6.cx!=null){if(!q)a7=s.eS() -else{a7=new v.G.window.flutterCanvasKit.Paint() -s=a6.a -s=s==null?null:s.gp() -if(s==null)s=4278190080 -a7.setColorInt(s)}s=a6.cx -if(s!=null)a8=s.eS() -else{a8=new v.G.window.flutterCanvasKit.Paint() -a8.setColorInt(0)}this.a.pushPaintStyle(a6.gND(),a7,a8) -a7.delete() -a8.delete()}else this.a.pushStyle(a6.gND())}} -A.aM4.prototype={ -$1(a){return this.a===a}, -$S:26} -A.AA.prototype={ -a31(a,b){this.a.xz(b).c1(new A.aex(a),t.H).Ac(new A.aey(a))}, -a2e(a,b){if(b!=null&&b!=="text/plain"){a.toString -a.$1(B.an.cK([null])) -return}this.a.xg().c1(new A.aet(a),t.a).Ac(new A.aeu(a))}, -atH(a){this.a.xg().c1(new A.aev(a),t.a).Ac(new A.aew(a))}} -A.aex.prototype={ -$1(a){var s=this.a -s.toString -return s.$1(B.an.cK([null]))}, -$S:681} -A.aey.prototype={ -$1(a){var s=a instanceof A.fM?a.a:"Clipboard.setData failed.",r=this.a -r.toString -r.$1(B.an.cK(["copy_fail",s,null]))}, -$S:106} -A.aet.prototype={ -$1(a){var s=A.aG(["text",a],t.N,t.X),r=this.a -r.toString -r.$1(B.an.cK([s]))}, -$S:130} -A.aeu.prototype={ -$1(a){var s=a instanceof A.fM?a.a:"Clipboard.getData failed.",r=this.a -r.toString -r.$1(B.an.cK(["paste_fail",s,null]))}, -$S:106} -A.aev.prototype={ -$1(a){var s=A.aG(["value",a.length!==0],t.N,t.X),r=this.a -r.toString -r.$1(B.an.cK([s]))}, -$S:130} -A.aew.prototype={ -$1(a){var s=a instanceof A.fM?a.a:"Clipboard.hasStrings failed.",r=this.a -r.toString -r.$1(B.an.cK(["has_strings_fail",s,null]))}, -$S:106} -A.AC.prototype={ -gPJ(){var s=v.G.window.navigator.clipboard -if(s==null)throw A.i(A.aL("Clipboard is not available in the context.")) -return s}, -xz(a){return this.a30(a)}, -a30(a){var s=0,r=A.I(t.H),q=this,p -var $async$xz=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:p=q.gPJ() -a.toString -s=2 -return A.p(A.hS(p.writeText(a),t.X),$async$xz) -case 2:return A.G(null,r)}}) -return A.H($async$xz,r)}, -xg(){var s=0,r=A.I(t.N),q,p=this -var $async$xg=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:q=A.b7j(p.gPJ()) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$xg,r)}} -A.aeD.prototype={ -N(){return"ColorFilterType."+this.b}} -A.Bv.prototype={ -Bi(a){return a}, -k(a){var s -switch(1){case 1:s="ColorFilter.matrix("+A.j(this.c)+")" -break}return s}, -j(a,b){if(b==null)return!1 -if(!(b instanceof A.Bv))return!1 -return A.hR(b.c,this.c)}, -gt(a){return A.N(B.MF,null,null,A.bh(this.c),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -$ikL:1} -A.Ai.prototype={ -Wr(a,b){var s=this.Q3(a),r=A.bi(new A.ae3(this,b,s)) -this.a.m(0,s,r) -s.addEventListener("webglcontextlost",r) -return s}, -axN(a){var s=this.a.J(0,a) -if(s!=null)a.removeEventListener("webglcontextlost",s) -this.Yn(a)}} -A.ae3.prototype={ -$1(a){this.b.$0() -this.a.axN(this.c)}, -$S:3} -A.rk.prototype={ -Q3(a){return new v.G.OffscreenCanvas(a.a,a.b)}, -Yn(a){}, -M1(a,b){a.width=b.a -a.height=b.b}} -A.rn.prototype={ -Q3(a){var s=A.aOH(null,null) -this.M1(s,a) -return s}, -Yn(a){a.remove()}, -M1(a,b){var s,r,q,p=b.a -a.width=p -s=b.b -a.height=s -r=$.dm() -q=r.d -if(q==null)q=r.gcN() -r=a.style -A.a_(r,"width",A.j(p/q)+"px") -A.a_(r,"height",A.j(s/q)+"px") -A.a_(r,"position","absolute")}} -A.v5.prototype={ -rH(a){var s,r=a.a,q=this.a -if(r.length!==q.length)return!1 -for(s=0;s=200&&s.status<300,q=s.status,p=s.status,o=s.status>307&&s.status<400 -return r||q===0||p===304||o}, -gCt(){var s=this -if(!s.gKB())throw A.i(new A.QN(s.a,s.gba())) -return new A.ajR(s.b)}, -$iaWg:1} -A.ajR.prototype={ -CG(a){var s=0,r=A.I(t.H),q=this,p,o,n,m -var $async$CG=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:m=q.a.body.getReader() -p=t.zd -case 2:s=4 -return A.p(A.bd4(m),$async$CG) -case 4:o=c -if(o.done){s=3 -break}n=o.value -n.toString -a.$1(p.a(n)) -s=2 -break -case 3:return A.G(null,r)}}) -return A.H($async$CG,r)}} -A.QN.prototype={ -k(a){return'Flutter Web engine failed to fetch "'+this.a+'". HTTP request succeeded, but the server responded with HTTP status '+this.b+"."}, -$icx:1} -A.QM.prototype={ -k(a){return'Flutter Web engine failed to complete HTTP request to fetch "'+this.a+'": '+A.j(this.b)}, -$icx:1} -A.ag_.prototype={ -$1(a){a.toString -return t.hA.a(a)}, -$S:377} -A.aBt.prototype={ -$1(a){a.toString -return A.fT(a)}, -$S:90} -A.afX.prototype={ -$1(a){a.toString -return A.fT(a)}, -$S:90} -A.afV.prototype={ -$1(a){a.toString -return A.c7(a)}, -$S:145} -A.PY.prototype={} -A.Bd.prototype={} -A.aOI.prototype={ -$2(a,b){this.a.$2(B.b.eI(a,t.m),b)}, -$S:309} -A.aOx.prototype={ -$1(a){var s=A.iD(a,0,null) -if(B.a6p.q(0,B.b.gaC(s.gwD())))return s.k(0) -v.G.window.console.error("URL rejected by TrustedTypes policy flutter-engine: "+a+"(download prevented)") -return null}, -$S:125} -A.tR.prototype={ -v(){var s=++this.b,r=this.a -if(s>r.length)throw A.i(A.aL("Iterator out of bounds")) -return s"))}, -gH(a){return J.b4(this.a.length)}} -A.PX.prototype={ -gT(){var s=this.b -s===$&&A.a() -return s}, -v(){var s=this.a.next() -if(s.done)return!1 -this.b=this.$ti.c.a(s.value) -return!0}} -A.aPC.prototype={ -$1(a){$.aT_=!1 -$.b7().jJ("flutter/system",$.b4a(),new A.aPB())}, -$S:103} -A.aPB.prototype={ -$1(a){}, -$S:33} -A.aig.prototype={ -arR(a,b){var s,r,q,p,o,n,m=this -if($.iA==null)$.iA=B.dP -s=A.aU(t.S) -for(r=new A.as7(a),q=m.d,p=m.c;r.v();){o=r.d -if(!(o<160||q.q(0,o)||p.q(0,o)))s.G(0,o)}if(s.a===0)return -n=A.aa(s,s.$ti.c) -if(m.a.a2l(n,b).length!==0)m.aor(n)}, -aor(a){var s=this -s.z.a_(0,a) -if(!s.Q){s.Q=!0 -s.x=A.vE(B.z,new A.aii(s),t.H)}}, -abS(){var s,r -this.Q=!1 -s=this.z -if(s.a===0)return -r=A.aa(s,A.n(s).c) -s.aa(0) -this.aso(r)}, -aso(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=A.c([],t.t),d=A.c([],t.XS),c=t.Qg,b=A.c([],c) -for(s=a.length,r=t.Ie,q=0;qo){B.b.aa(r) -r.push(m) -o=m.d -p=m}else if(s===o){r.push(m) -if(m.c1){l=this.w -if(B.b.q(r,l))p=l -else{k=A.BB(r,A.b0B()) -if(k!=null)p=k}}p.toString -return p}, -aaY(a){var s,r,q,p=A.c([],t.XS) -for(s=a.split(","),r=s.length,q=0;q=q[r])s=r+1 -else p=r}}} -A.a2u.prototype={ -az6(){var s=this.d -if(s==null)return A.di(null,t.H) -else return s.a}, -G(a,b){var s,r,q=this -if(q.b.q(0,b)||q.c.aN(b.b))return -s=q.c -r=s.a -s.m(0,b.b,b) -if(q.d==null)q.d=new A.bC(new A.ax($.as,t.c),t.R) -if(r===0)A.ck(B.z,q.ga3H())}, -qq(){var s=0,r=A.I(t.H),q=this,p,o,n,m,l,k,j,i -var $async$qq=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:j=A.t(t.N,t.uz) -i=A.c([],t.s) -for(p=q.c,o=new A.db(p,p.r,p.e),n=t.H;o.v();){m=o.d -j.m(0,m.b,A.qz(new A.aBI(q,m,i),n))}s=2 -return A.p(A.i2(new A.bo(j,j.$ti.i("bo<2>")),n),$async$qq) -case 2:B.b.jZ(i) -for(o=i.length,n=q.a,m=n.y,l=0;l1&&d.charCodeAt(0)<127&&d.charCodeAt(1)<127) -o=A.bej(new A.akH(g,d,a,p,q),t.S) -if(e.type!=="keydown")if(g.b){r=e.code -r.toString -r=r==="CapsLock" -n=r}else n=!1 -else n=!0 -if(g.b){r=e.code -r.toString -r=r==="CapsLock"}else r=!1 -if(r){g.TP(B.z,new A.akI(s,q,o),new A.akJ(g,q)) -m=B.ct}else if(n){r=g.f -if(r.h(0,q)!=null){l=e.repeat -if(l===!0)m=B.Qm -else{l=g.d -l.toString -k=r.h(0,q) -k.toString -l.$1(new A.hw(s,B.c4,q,k,f,!0)) -r.J(0,q) -m=B.ct}}else m=B.ct}else{if(g.f.h(0,q)==null){e.preventDefault() -return}m=B.c4}r=g.f -j=r.h(0,q) -i=f -switch(m.a){case 0:i=o.$0() -break -case 1:break -case 2:i=j -break}l=i==null -if(l)r.J(0,q) -else r.m(0,q,i) -$.b4i().aL(0,new A.akK(g,o,a,s)) -if(p)if(!l)g.am3(q,o.$0(),s) -else{r=g.r.J(0,q) -if(r!=null)r.$0()}if(p)h=d -else h=f -d=j==null?o.$0():j -r=m===B.c4?f:h -if(g.d.$1(new A.hw(s,m,q,d,r,!1)))e.preventDefault()}, -iZ(a){var s=this,r={},q=a.a -if(q.key==null||q.code==null)return -r.a=!1 -s.d=new A.akP(r,s) -try{s.ae3(a)}finally{if(!r.a)s.d.$1(B.Ql) -s.d=null}}, -zu(a,b,c,d,e){var s,r=this,q=r.f,p=q.aN(a),o=q.aN(b),n=p||o,m=d===B.ct&&!n,l=d===B.c4&&n -if(m){r.a.$1(new A.hw(A.aSZ(e),B.ct,a,c,null,!0)) -q.m(0,a,c)}if(l&&p){s=q.h(0,a) -s.toString -r.UQ(e,a,s)}if(l&&o){q=q.h(0,b) -q.toString -r.UQ(e,b,q)}}, -UQ(a,b,c){this.a.$1(new A.hw(A.aSZ(a),B.c4,b,c,null,!0)) -this.f.J(0,b)}} -A.akL.prototype={ -$1(a){var s=this -if(!s.a.a&&!s.b.e){s.c.$0() -s.b.a.$1(s.d.$0())}}, -$S:40} -A.akM.prototype={ -$0(){this.a.a=!0}, -$S:0} -A.akN.prototype={ -$0(){return new A.hw(new A.b5(this.a.a+2e6),B.c4,this.b,this.c,null,!0)}, -$S:132} -A.akO.prototype={ -$0(){this.a.f.J(0,this.b)}, -$S:0} -A.akH.prototype={ -$0(){var s,r,q,p,o,n,m=this,l=m.b,k=B.a15.h(0,l) -if(k!=null)return k -s=m.c -r=s.a -if(B.DO.aN(r.key)){l=r.key -l.toString -l=B.DO.h(0,l) -q=l==null?null:l[J.b4(r.location)] -q.toString -return q}if(m.d){p=m.a.c.a2k(r.code,r.key,J.b4(r.keyCode)) -if(p!=null)return p}if(l==="Dead"){l=r.altKey -o=r.ctrlKey -n=s.gxF() -r=r.metaKey -l=l?1073741824:0 -s=o?268435456:0 -o=n?536870912:0 -r=r?2147483648:0 -return m.e+(l+s+o+r)+98784247808}return B.c.gt(l)+98784247808}, -$S:64} -A.akI.prototype={ -$0(){return new A.hw(this.a,B.c4,this.b,this.c.$0(),null,!0)}, -$S:132} -A.akJ.prototype={ -$0(){this.a.f.J(0,this.b)}, -$S:0} -A.akK.prototype={ -$2(a,b){var s,r,q=this -if(J.b(q.b.$0(),a))return -s=q.a -r=s.f -if(r.apS(a)&&!b.$1(q.c))r.f4(0,new A.akG(s,a,q.d))}, -$S:601} -A.akG.prototype={ -$2(a,b){var s=this.b -if(b!==s)return!1 -this.a.d.$1(new A.hw(this.c,B.c4,a,s,null,!0)) -return!0}, -$S:523} -A.akP.prototype={ -$1(a){this.a.a=!0 -return this.b.a.$1(a)}, -$S:113} -A.f2.prototype={ -gC1(){return!this.b.gan(0)}, -l(){}} -A.AJ.prototype={ -l(){var s,r,q,p -for(s=this.c,r=s.length,q=0;q"),s=new A.cu(s,r),s=new A.bf(s,s.gH(0),r.i("bf")),r=r.i("aE.E"),q=B.hW;s.v();){p=s.d -if(p==null)p=r.a(p) -switch(p.a.a){case 0:p=p.b -p.toString -o=p -break -case 1:p=p.c -o=new A.w(p.a,p.b,p.c,p.d) -break -case 2:p=p.d.gi9().a -p===$&&A.a() -p=p.a.getBounds() -o=new A.w(p[0],p[1],p[2],p[3]) -break -default:continue A}q=q.f0(o)}return q}, -o4(a){var s,r,q,p,o -for(s=a.c,r=s.length,q=B.ag,p=0;p=q.c||q.b>=q.d)q=a.b -else{o=a.b -if(!(o.a>=o.c||o.b>=o.d))q=q.hr(o)}}return q}, -oh(a){a.b=this.o4(a)}, -Ms(a){a.b=this.o4(a).hr(this.gar4())}, -Mt(a){var s,r,q=null,p=a.f,o=this.a.a -o.push(new A.jR(B.a2X,q,q,p,q,q)) -s=this.o4(a) -p=p.gi9().a -p===$&&A.a() -r=A.aOX(p.a.getBounds()) -if(s.hL(r))a.b=s.f0(r) -o.pop()}, -Mu(a){var s,r,q,p,o=null,n=a.f,m=this.a.a -m.push(new A.jR(B.a2W,o,n,o,o,o)) -s=this.o4(a) -r=n.a -q=n.b -p=n.c -n=n.d -if(s.hL(new A.w(r,q,p,n)))a.b=s.f0(new A.w(r,q,p,n)) -m.pop()}, -Mv(a){var s,r=null,q=a.f,p=this.a.a -p.push(new A.jR(B.a2V,q,r,r,r,r)) -s=this.o4(a) -if(s.hL(q))a.b=s.f0(q) -p.pop()}, -Mw(a){var s,r,q=a.f,p=q.a -q=q.b -s=A.wb() -s.qk(p,q,0) -r=this.a.a -r.push(A.aRn(s)) -a.b=a.r.Bi(this.o4(a).lu(p,q)) -r.pop()}, -Mx(a){this.tB(a)}, -My(a){var s,r,q=null,p=a.r,o=p.a -p=p.b -s=A.wb() -s.qk(o,p,0) -r=this.a.a -r.push(A.aRn(s)) -r.push(new A.jR(B.a2Z,q,q,q,q,a.f)) -a.b=this.o4(a) -r.pop() -r.pop() -a.b=a.b.lu(o,p)}, -MA(a){var s=a.c.a -s===$&&A.a() -s=s.a -s===$&&A.a() -a.b=A.aOX(s.a.cullRect()).e0(a.d) -a.w=!1}, -tB(a){var s=a.f,r=this.a.a -r.push(A.aRn(s)) -a.b=A.b2f(s,this.o4(a)) -r.pop()}} -A.anM.prototype={ -nY(a){var s,r,q,p -for(s=a.c,r=s.length,q=0;q"),r=new A.cu(r,n),r=new A.bf(r,r.gH(0),n.i("bf")),n=n.i("aE.E");r.v();){m=r.d -o=(m==null?n.a(m):m).Bi(o)}a.r=o -l=l.a -l===$&&A.a() -a.w=s.a.quickReject(A.d6(A.aOX(l.a.cullRect()))) -s.a.restore() -this.d.c.b.push(new A.Uf(a))}} -A.U6.prototype={ -o2(a){var s,r,q,p -for(s=a.c,r=s.length,q=0;q0?3:4 -break -case 3:s=5 -return A.p(p.d.xo(-o),$async$lp) -case 5:case 4:n=p.gS() -n.toString -t.f.a(n) -m=p.d -m.toString -m.q5(n.h(0,"state"),"flutter",p.gnz()) -case 1:return A.G(q,r)}}) -return A.H($async$lp,r)}, -gof(){return this.d}} -A.aoe.prototype={ -$1(a){}, -$S:33} -A.Fl.prototype={ -a8v(a){var s=this,r=s.d -if(r==null)return -s.a=r.Ie(s.gLu()) -s.e=s.gnz() -if(!A.aS_(s.gS())){r.q5(A.aG(["origin",!0,"state",s.gS()],t.N,t.z),"origin","") -s.Us(r)}}, -Nr(a,b,c){var s=this.d -if(s!=null){this.e=a -this.Ut(s,!0)}}, -Lv(a){var s,r=this,q="flutter/navigation" -if(A.aZm(a)){s=r.d -s.toString -r.Us(s) -$.b7().jJ(q,B.bD.kj(B.a2Q),new A.avs())}else if(A.aS_(a))$.b7().jJ(q,B.bD.kj(new A.j3("pushRoute",r.e)),new A.avt()) -else{r.e=r.gnz() -r.d.xo(-1)}}, -Ut(a,b){var s=b?a.gay3():a.gaxj() -s.$3(this.f,"flutter",this.e)}, -Us(a){return this.Ut(a,!1)}, -lp(){var s=0,r=A.I(t.H),q,p=this,o,n -var $async$lp=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:p.l() -if(p.b||p.d==null){s=1 -break}p.b=!0 -o=p.d -s=3 -return A.p(o.xo(-1),$async$lp) -case 3:n=p.gS() -n.toString -o.q5(t.f.a(n).h(0,"state"),"flutter",p.gnz()) -case 1:return A.G(q,r)}}) -return A.H($async$lp,r)}, -gof(){return this.d}} -A.avs.prototype={ -$1(a){}, -$S:33} -A.avt.prototype={ -$1(a){}, -$S:33} -A.mi.prototype={} -A.Bz.prototype={} -A.ap_.prototype={ -mg(a,b){return new A.rj(b)}, -hL(a){return!1}} -A.rj.prototype={ -gkS(){return this.a}, -mg(a,b){var s=this,r=s.a -if(A.aTC(r,b))return s -if(A.aTC(b,r))return new A.rj(b) -r=new A.rj(b) -return new A.wm(s,r,s.gkS().hr(r.gkS()))}, -hL(a){return this.a.hL(a)}} -A.wm.prototype={ -P6(a,b){return(Math.max(a.c,b.c)-Math.min(a.a,b.a))*(Math.max(a.d,b.d)-Math.min(a.b,b.b))}, -mg(a,b){var s,r,q,p,o,n,m,l=this,k=l.c -if(A.aTC(b,k))return new A.rj(b) -s=l.a -r=l.P6(s.gkS(),b) -q=l.b -p=l.P6(q.gkS(),b) -o=(k.c-k.a)*(k.d-k.b) -if(r")).nT(m)) -o=o.e -p.push(new A.e3(o,A.n(o).i("e3<1>")).nT(m))}q.push(r) -r.$1(s.a) -s=l.gzH() -r=v.G -q=r.document.body -if(q!=null)q.addEventListener("keydown",s.gRO()) -q=r.document.body -if(q!=null)q.addEventListener("keyup",s.gRP()) -q=s.a.d -s.e=new A.e3(q,A.n(q).i("e3<1>")).nT(s.gagj()) -r=r.document.body -if(r!=null){s=$.c5 -r.prepend((s==null?$.c5=A.en():s).d.a.gWp())}s=l.gdr().e -l.a=new A.e3(s,A.n(s).i("e3<1>")).nT(new A.ahv(l)) -l.a8T()}, -l(){var s,r,q,p=this -p.p3.removeListener(p.p4) -p.p4=null -s=p.k4 -if(s!=null)s.disconnect() -p.k4=null -s=p.ok -if(s!=null)s.remove() -p.ok=null -s=p.k1 -if(s!=null)s.b.removeEventListener(s.a,s.c) -p.k1=null -s=$.aPM() -r=s.a -B.b.J(r,p.gVH()) -if(r.length===0)s.b.removeListener(s.gSN()) -s=p.gP2() -r=s.b -B.b.J(r,p.gUj()) -if(r.length===0)s.dA() -s=p.gzH() -r=v.G -q=r.document.body -if(q!=null)q.removeEventListener("keydown",s.gRO()) -r=r.document.body -if(r!=null)r.removeEventListener("keyup",s.gRP()) -s=s.e -if(s!=null)s.bg() -s=$.c5;(s==null?$.c5=A.en():s).d.a.gWp().remove() -s=p.a -s===$&&A.a() -s.bg() -s=p.gdr() -r=s.b -q=A.n(r).i("bD<1>") -r=A.aa(new A.bD(r,q),q.i("y.E")) -B.b.aL(r,s.gary()) -s.d.bn() -s.e.bn()}, -gdr(){var s,r=this.r -if(r===$){s=t.S -r=this.r=new A.Ql(this,A.t(s,t.lz),A.t(s,t.m),A.Ys(!0,s),A.Ys(!0,s))}return r}, -gP2(){var s,r,q,p=this,o=p.w -if(o===$){s=p.gdr() -r=A.c([],t.Gl) -q=A.c([],t.LY) -p.w!==$&&A.aK() -o=p.w=new A.a0V(s,r,B.d2,q)}return o}, -KP(){var s=this.x -if(s!=null)A.lr(s,this.y)}, -gzH(){var s,r=this,q=r.z -if(q===$){s=r.gdr() -r.z!==$&&A.aK() -q=r.z=new A.Za(s,r.gauu(),B.JR)}return q}, -auv(a){A.ns(this.Q,this.as,a)}, -aut(a,b){var s=this.db -if(s!=null)A.lr(new A.ahw(b,s,a),this.dx) -else b.$1(!1)}, -jJ(a,b,c){var s -if(a==="dev.flutter/channel-buffers")try{s=$.ac5() -b.toString -s.asZ(b)}finally{c.$1(null)}else $.ac5().axd(a,b,c)}, -alf(a1,a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0=null -switch(a1){case"flutter/skia":s=B.bD.jB(a2) -switch(s.a){case"Skia.setResourceCacheMaxBytes":r=A.eF(s.b) -q=$.ab().a -q===$&&A.a() -q.Nq(r) -a.fJ(a3,B.an.cK([A.c([!0],t.HZ)])) -break}return -case"flutter/assets":a2.toString -a.ux(B.ao.ic(J.uv(B.aU.gcF(a2))),a3) -return -case"flutter/platform":s=B.bD.jB(a2) -switch(s.a){case"SystemNavigator.pop":q=a.gdr().b -p=t.e8 -if(p.a(q.h(0,0))!=null)p.a(q.h(0,0)).gIu().vQ().c1(new A.ahq(a,a3),t.a) -else a.fJ(a3,B.an.cK([!0])) -return -case"HapticFeedback.vibrate":o=a.acN(A.bH(s.b)) -n=v.G.window.navigator -if("vibrate" in n)n.vibrate(o) -a.fJ(a3,B.an.cK([!0])) -return -case u.E:m=t.xE.a(s.b) -l=A.bH(m.h(0,"label")) -if(l==null)l="" -k=A.d2(m.h(0,"primaryColor")) -if(k==null)k=4278190080 -v.G.document.title=l -A.b27(A.bu(k)) -a.fJ(a3,B.an.cK([!0])) -return -case"SystemChrome.setSystemUIOverlayStyle":j=A.d2(t.xE.a(s.b).h(0,"statusBarColor")) -A.b27(j==null?a0:A.bu(j)) -a.fJ(a3,B.an.cK([!0])) -return -case"SystemChrome.setPreferredOrientations":B.LY.xB(t.j.a(s.b)).c1(new A.ahr(a,a3),t.a) -return -case"SystemSound.play":a.fJ(a3,B.an.cK([!0])) -return -case"Clipboard.setData":new A.AA(new A.AC()).a31(a3,A.bH(t.xE.a(s.b).h(0,"text"))) -return -case"Clipboard.getData":new A.AA(new A.AC()).a2e(a3,A.bH(s.b)) -return -case"Clipboard.hasStrings":new A.AA(new A.AC()).atH(a3) -return}break -case"flutter/service_worker":q=v.G -p=q.window -i=q.document.createEvent("Event") -i.initEvent("flutter-first-frame",!0,!0) -p.dispatchEvent(i) -return -case"flutter/textinput":$.uu().gvq().aty(a2,a3) -return -case"flutter/contextmenu":switch(B.bD.jB(a2).a){case"enableContextMenu":t.e8.a(a.gdr().b.h(0,0)).gXG().arG() -a.fJ(a3,B.an.cK([!0])) -return -case"disableContextMenu":t.e8.a(a.gdr().b.h(0,0)).gXG().jD() -a.fJ(a3,B.an.cK([!0])) -return}return -case"flutter/mousecursor":s=B.eE.jB(a2) -m=t.f.a(s.b) -switch(s.a){case"activateSystemCursor":q=a.gdr().b -q=A.ako(new A.bo(q,A.n(q).i("bo<2>"))) -if(q!=null){if(q.w===$){q.gfZ() -q.w!==$&&A.aK() -q.w=new A.ao3()}h=B.a16.h(0,A.bH(m.h(0,"kind"))) -if(h==null)h="default" -q=v.G -if(h==="default")q.document.body.style.removeProperty("cursor") -else A.a_(q.document.body.style,"cursor",h)}break}return -case"flutter/web_test_e2e":a.fJ(a3,B.an.cK([A.bhU(B.bD,a2)])) -return -case"flutter/platform_views":g=B.eE.jB(a2) -m=a0 -f=g.b -m=f -q=$.b33() -a3.toString -q.at8(g.a,m,a3) -return -case"flutter/accessibility":e=$.c5 -if(e==null)e=$.c5=A.en() -if(e.b){q=t.f -d=q.a(q.a(B.cF.hF(a2)).h(0,"data")) -c=A.bH(d.h(0,"message")) -if(c!=null&&c.length!==0){b=A.aRd(d,"assertiveness") -e.a.WG(c,B.Sw[b==null?0:b])}}a.fJ(a3,B.cF.cK(!0)) -return -case"flutter/navigation":q=a.gdr().b -p=t.e8 -if(p.a(q.h(0,0))!=null)p.a(q.h(0,0)).Km(a2).c1(new A.ahs(a,a3),t.a) -else if(a3!=null)a3.$1(a0) -a.aH="/" -return}q=$.b2_ -if(q!=null){q.$3(a1,a2,a3) -return}a.fJ(a3,a0)}, -ux(a,b){return this.ae6(a,b)}, -ae6(a,b){var s=0,r=A.I(t.H),q=1,p=[],o=this,n,m,l,k,j,i,h -var $async$ux=A.J(function(c,d){if(c===1){p.push(d) -s=q}for(;;)switch(s){case 0:q=3 -k=$.LG -h=t.Lk -s=6 -return A.p(A.zq(k.xc(a)),$async$ux) -case 6:n=h.a(d) -s=7 -return A.p(A.aQI(n.gCt().a),$async$ux) -case 7:m=d -o.fJ(b,J.zB(m)) -q=1 -s=5 -break -case 3:q=2 -i=p.pop() -l=A.aj(i) -$.ew().$1("Error while trying to load an asset: "+A.j(l)) -o.fJ(b,null) -s=5 -break -case 2:s=1 -break -case 5:return A.G(null,r) -case 1:return A.F(p.at(-1),r)}}) -return A.H($async$ux,r)}, -acN(a){var s -A:{s=20 -if("HapticFeedbackType.lightImpact"===a){s=10 -break A}if("HapticFeedbackType.mediumImpact"===a)break A -if("HapticFeedbackType.heavyImpact"===a){s=30 -break A}if("HapticFeedbackType.selectionClick"===a){s=10 -break A}if("HapticFeedbackType.successNotification"===a)break A -if("HapticFeedbackType.warningNotification"===a)break A -if("HapticFeedbackType.errorNotification"===a){s=30 -break A}s=50 -break A}return s}, -Nt(a){var s -if(!a)for(s=this.gdr().b,s=new A.db(s,s.r,s.e);s.v();)s.d.gxx().iu()}, -CN(a,b){return this.axY(a,b)}, -axY(a,b){var s=0,r=A.I(t.H),q=this,p -var $async$CN=A.J(function(c,d){if(c===1)return A.F(d,r) -for(;;)switch(s){case 0:p=q.at -p=p==null?null:p.G(0,b) -s=p===!0?2:3 -break -case 2:s=4 -return A.p($.ab().LX(a,b),$async$CN) -case 4:case 3:return A.G(null,r)}}) -return A.H($async$CN,r)}, -a2X(a){var s -for(s=this.gdr().b,s=new A.db(s,s.r,s.e);s.v();)s.d.c.No(a)}, -a8S(){var s=this -if(s.k1!=null)return -s.c=s.c.XL(A.aQK()) -s.k1=A.ci(v.G.window,"languagechange",A.bi(new A.ahn(s)))}, -anz(a){var s=this.c -if(s.e!==a){this.c=s.aoH(a) -return!0}return!1}, -anb(a){var s=this.c -if(s.x!=a){this.c=s.aoF(a) -return!0}return!1}, -ana(a){var s=this.c -if(s.y!=a){this.c=s.aoE(a) -return!0}return!1}, -anD(a){var s=this.c -if(s.z!=a){this.c=s.aoI(a) -return!0}return!1}, -anf(a){var s=this.c -if(s.Q!=a){this.c=s.aoG(a) -return!0}return!1}, -a8X(){var s,r,q=this,p="9999px",o=v.G,n=A.cw(o.document,"p") -q.ok=n -n.textContent="flutter typography measurement" -n=q.ok -n.toString -s=A.ac("true") -s.toString -n.setAttribute("aria-hidden",s) -s=q.ok.style -A.a_(s,"position","fixed") -A.a_(s,"bottom","100%") -A.a_(s,"visibility","hidden") -A.a_(s,"opacity","0") -A.a_(s,"pointer-events","none") -A.a_(s,"width","auto") -A.a_(s,"height","auto") -A.a_(s,"white-space","nowrap") -A.a_(s,"line-height",p) -A.a_(s,"letter-spacing",p) -A.a_(s,"word-spacing",p) -A.a_(s,"margin","0px 0px 9999px 0px") -o=o.document.body -o.toString -s=q.ok -s.toString -o.append(s) -s=q.ok -s.toString -s=A.aTA(s) -r=s==null?null:s -o=A.b1t(new A.ahp(q,9999/(r==null?16:r))) -q.k4=o -n=q.ok -n.toString -o.observe(n)}, -alh(a){this.jJ("flutter/lifecycle",J.zB(B.a0.gcF(B.d6.e8(a.N()))),new A.aht())}, -VO(a){var s=this,r=s.c -if(r.d!==a){s.c=r.aqq(a) -A.lr(null,null) -A.lr(s.R8,s.RG)}}, -an6(a){var s=this.c,r=s.a -if((r.a&32)!==0!==a){this.c=s.XJ(r.aq4(a)) -A.lr(null,null)}}, -a8M(){var s,r=this,q=r.p3 -r.VO(q.matches?B.R:B.ar) -s=A.jn(new A.ahm(r)) -r.p4=s -q.addListener(s)}, -rZ(a,b,c,d){var s=new A.ahx(this,c,b,a,d),r=$.m1 -if(r==null){r=new A.qx(B.je) -$.jo.push(r.gyh()) -$.m1=r}if(r.d)A.ck(B.z,s) -else s.$0()}, -gJe(){var s=this.aH -if(s==null){s=t.e8.a(this.gdr().b.h(0,0)) -s=s==null?null:s.gIu().gnz() -s=this.aH=s==null?"/":s}return s}, -fJ(a,b){A.vE(B.z,null,t.H).c1(new A.ahy(a,b),t.a)}, -a8T(){var s=A.bi(new A.aho(this)) -v.G.document.addEventListener("click",s,!0)}, -acg(a){var s,r,q=a.target -while(q!=null){s=A.h4(q,"Element") -if(s){r=q.getAttribute("id") -if(r!=null&&B.c.c8(r,"flt-semantic-node-"))if(this.Sp(q))if(A.DE(B.c.cD(r,18),null)!=null)return new A.aoG(q)}q=q.parentNode}return null}, -acf(a){var s,r=a.tabIndex -if(r!=null&&r>=0)return a -if(this.UO(a))return a -s=a.querySelector('[tabindex]:not([tabindex="-1"])') -if(s!=null)return s -return this.ace(a)}, -UO(a){var s,r,q,p,o=a.getAttribute("id") -if(o==null||!B.c.c8(o,"flt-semantic-node-"))return!1 -s=A.DE(B.c.cD(o,18),null) -if(s==null)return!1 -r=t.e8.a($.b7().gdr().b.h(0,0)) -q=r==null?null:r.gxx().e -if(q==null)return!1 -p=q.h(0,s) -if(p==null)r=null -else{r=p.b -r.toString -r=(r&4194304)!==0}return r===!0}, -ace(a){var s,r,q=a.querySelectorAll('[id^="flt-semantic-node-"]') -for(s=new A.tR(q,t.JW);s.v();){r=A.fT(q.item(s.b)) -if(this.UO(r))return r}return null}, -agS(a){var s,r,q=A.h4(a,"MouseEvent") -if(!q)return!1 -s=a.clientX -r=a.clientY -if(s<=2&&r<=2&&s>=0&&r>=0)return!0 -if(this.agR(a,s,r))return!0 -return!1}, -agR(a,b,c){var s -if(b!==B.d.aY(b)||c!==B.d.aY(c))return!1 -s=a.target -if(s==null)return!1 -return this.Sp(s)}, -Sp(a){var s=a.getAttribute("role"),r=a.tagName.toLowerCase() -return r==="button"||s==="button"||r==="a"||s==="link"||s==="tab"}} -A.ahv.prototype={ -$1(a){this.a.KP()}, -$S:24} -A.ahw.prototype={ -$0(){return this.a.$1(this.b.$1(this.c))}, -$S:0} -A.ahu.prototype={ -$1(a){this.a.wW(this.b,a)}, -$S:33} -A.ahq.prototype={ -$1(a){this.a.fJ(this.b,B.an.cK([!0]))}, -$S:40} -A.ahr.prototype={ -$1(a){this.a.fJ(this.b,B.an.cK([a]))}, -$S:108} -A.ahs.prototype={ -$1(a){var s=this.b -if(a)this.a.fJ(s,B.an.cK([!0])) -else if(s!=null)s.$1(null)}, -$S:108} -A.ahn.prototype={ -$1(a){var s=this.a -s.c=s.c.XL(A.aQK()) -A.lr(s.k2,s.k3)}, -$S:3} -A.ahp.prototype={ -$2(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=null,e=A.b1D(),d=this.a,c=d.ok -c.toString -s=v.G -r=A.abU(A.Be(s.window,c).getPropertyValue("line-height")) -if(r==null)r=f -c=d.ok -c.toString -q=A.aTA(c) -if(q==null)q=f -p=q!=null&&r!=null&&r!==9999?r/q:f -c=d.ok -c.toString -o=A.abU(A.Be(s.window,c).getPropertyValue("word-spacing")) -if(o==null)o=f -c=d.ok -c.toString -n=A.abU(A.Be(s.window,c).getPropertyValue("letter-spacing")) -if(n==null)n=f -c=d.ok -c.toString -m=A.abU(A.Be(s.window,c).getPropertyValue("margin-bottom")) -if(m==null)m=f -l=d.anz(e) -k=d.anb(p===this.b?f:p) -j=d.ana(n===9999?f:n) -i=d.anD(o===9999?f:o) -h=d.anf(m===9999?f:m) -g=k||j||i||h -if(!l&&!g)return -A.lr(f,f) -if(l)A.lr(d.p1,d.p2) -if(g)d.KP()}, -$S:141} -A.aht.prototype={ -$1(a){}, -$S:33} -A.ahm.prototype={ -$1(a){var s=a.matches -s.toString -s=s?B.R:B.ar -this.a.VO(s)}, -$S:39} -A.ahx.prototype={ -$0(){var s=this,r=s.a -A.ns(r.x2,r.xr,new A.oB(s.b,s.d,s.c,s.e))}, -$S:0} -A.ahy.prototype={ -$1(a){var s=this.a -if(s!=null)s.$1(this.b)}, -$S:40} -A.aho.prototype={ -$1(a){var s,r,q,p,o=this.a -if(!o.agS(a))return -s=o.acg(a) -if(s!=null){r=s.a -q=v.G.document.activeElement -if(q!=null)r=q===r||r.contains(q) -else r=!1 -r=!r}else r=!1 -if(r){p=o.acf(s.a) -if(p!=null)p.focus($.eH())}}, -$S:3} -A.aPd.prototype={ -$0(){this.a.$2(this.b,this.c)}, -$S:0} -A.axQ.prototype={ -k(a){return A.l(this).k(0)+"[view: null]"}} -A.Dy.prototype={ -vb(a,b,c,d,e){var s=this,r=d==null?s.e:d,q=J.b(b,B.aA)?s.x:A.abD(b),p=J.b(a,B.aA)?s.y:A.abD(a),o=J.b(e,B.aA)?s.z:A.abD(e),n=J.b(c,B.aA)?s.Q:A.abD(c) -return new A.Dy(s.a,!1,s.c,s.d,r,s.f,s.r,s.w,q,p,o,n)}, -aoG(a){return this.vb(B.aA,B.aA,a,null,B.aA)}, -aoI(a){return this.vb(B.aA,B.aA,B.aA,null,a)}, -aoE(a){return this.vb(a,B.aA,B.aA,null,B.aA)}, -aoF(a){return this.vb(B.aA,a,B.aA,null,B.aA)}, -aoH(a){return this.vb(B.aA,B.aA,B.aA,a,B.aA)}, -Ao(a,b,c,d){var s=this,r=a==null?s.a:a,q=d==null?s.c:d,p=c==null?s.d:c,o=b==null?s.f:b -return new A.Dy(r,!1,q,p,s.e,o,s.r,s.w,s.x,s.y,s.z,s.Q)}, -XJ(a){return this.Ao(a,null,null,null)}, -aqt(a){return this.Ao(null,null,null,a)}, -XL(a){return this.Ao(null,a,null,null)}, -aqq(a){return this.Ao(null,null,a,null)}} -A.aoG.prototype={} -A.acG.prototype={ -t7(a){var s,r,q -if(a!==this.a){this.a=a -for(s=this.b,r=s.length,q=0;q") -i=A.aa(new A.am(d,new A.apH(),o),o.i("aE.E")) -d=p.c.d -d.toString -o=A.a6(d).i("am<1,apt>") -h=A.aa(new A.am(d,new A.apI(),o),o.i("aE.E")) -s=3 -return A.p(p.b.mx(i,h,a),$async$xK) -case 3:for(d=h.length,g=0;g=0;--o){m=p[o] -if(m instanceof A.e6){if(!n){n=!0 -continue}B.b.kx(p,o) -B.b.rY(q,0,m.b);--r -if(r===0)break}}n=A.dU().gIA()===1 -for(o=p.length-1;o>0;--o){m=p[o] -if(m instanceof A.e6){if(n){B.b.a_(m.b,q) -break}n=!0}}B.b.a_(l,p) -return new A.v5(l)}, -an3(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this -if(a.rH(d.x))return -s=d.acP(d.x,a) -r=A.a6(s).i("b1<1>") -q=A.aa(new A.b1(s,new A.apF(),r),r.i("y.E")) -p=A.b1S(q) -for(r=p.length,o=0;o") -n=A.aa(new A.bD(o,n),n.i("y.E")) -B.b.aL(n,p.gYC()) -p.c=new A.Bs(A.t(t.sT,t.Cc),A.c([],t.y8)) -p.d.aa(0) -o.aa(0) -p.f.aa(0) -B.b.aa(p.w) -B.b.aa(p.r) -o=t.SF -o=A.aa(new A.cN(p.x.a,o),o.i("y.E")) -n=o.length -s=0 -for(;s") -s=new A.cu(s,r) -return new A.bf(s,s.gH(0),r.i("bf"))}} -A.Es.prototype={} -A.Uf.prototype={} -A.Bs.prototype={} -A.apL.prototype={ -aaS(a,b,c,d){var s=this.b -if(!s.a.aN(d)){a.$1(B.eE.pn("unregistered_view_type","If you are the author of the PlatformView, make sure `registerViewFactory` is invoked.","A HtmlElementView widget is trying to create a platform view with an unregistered type: <"+d+">.")) -return}if(s.b.aN(c)){a.$1(B.eE.pn("recreating_view","view id: "+c,"trying to create an already created view")) -return}s.axZ(d,c,b) -a.$1(B.eE.vN(null))}, -at8(a,b,c){var s,r -switch(a){case"create":t.f.a(b) -s=B.d.iw(A.fg(b.h(0,"id"))) -r=A.c7(b.h(0,"viewType")) -this.aaS(c,b.h(0,"params"),s,r) -return -case"dispose":s=this.b.b.J(0,A.eF(b)) -if(s!=null)s.remove() -c.$1(B.eE.vN(null)) -return}c.$1(null)}} -A.as8.prototype={ -aze(){if(this.a==null){var s=A.bi(new A.as9()) -this.a=s -v.G.document.addEventListener("touchstart",s)}}} -A.as9.prototype={ -$1(a){}, -$S:3} -A.apN.prototype={ -aaN(){if("PointerEvent" in v.G.window){var s=new A.aFd(A.t(t.S,t.ZW),this,A.c([],t.H8)) -s.a3h() -return s}throw A.i(A.c2("This browser does not support pointer events which are necessary to handle interactions with Flutter Web apps."))}} -A.Nh.prototype={ -awe(a,b){var s,r,q,p=this,o="pointerup",n=$.b7() -if(!n.c.c){s=A.c(b.slice(0),A.a6(b)) -A.ns(n.cx,n.cy,new A.oj(s)) -return}if(p.c){n=p.a.a -s=n[0] -r=a.timeStamp -r.toString -s.push(new A.J0(b,a,A.y8(r))) -if(J.b(a.type,o))if(!J.b(a.target,n[2]))p.FL()}else if(J.b(a.type,"pointerdown")){q=a.target -if(q!=null&&A.h4(q,"Element")&&q.hasAttribute("flt-tappable")){p.c=!0 -n=a.target -n.toString -s=A.ck(B.z,p.gabt()) -r=a.timeStamp -r.toString -p.a=new A.J2([A.c([new A.J0(b,a,A.y8(r))],t.lN),!1,n,s])}else{s=A.c(b.slice(0),A.a6(b)) -A.ns(n.cx,n.cy,new A.oj(s))}}else{if(J.b(a.type,o)){s=a.timeStamp -s.toString -p.b=A.y8(s)}s=A.c(b.slice(0),A.a6(b)) -A.ns(n.cx,n.cy,new A.oj(s))}}, -avY(a,b,c,d){var s,r=this -if(!r.c){if(d&&r.alA(a))r.Ug(a,b,c) -return}if(d){s=r.a -s.toString -r.a=null -s.a[3].bg() -r.Ug(a,b,c)}else r.FL()}, -Ug(a,b,c){var s,r=this -a.stopPropagation() -$.b7().rZ(b,c,B.of,null) -s=r.a -if(s!=null)s.a[3].bg() -r.a=null -r.c=!1 -r.b=null}, -abu(){var s,r,q=this -if(!q.c)return -s=q.a.a -r=s[2] -q.a=new A.J2([s[0],!0,r,A.ck(B.a3,q.gaiO())])}, -aiP(){if(!this.c)return -this.FL()}, -alA(a){var s,r=this.b -if(r==null)return!0 -s=a.timeStamp -s.toString -return A.y8(s).a-r.a>=5e4}, -FL(){var s,r,q,p,o,n=this,m=n.a.a -m[3].bg() -s=t.D9 -r=A.c([],s) -for(m=m[0],q=m.length,p=0;p1}, -agY(a){var s,r,q,p,o,n,m=this -if($.bN().gfi()===B.eC)return!1 -if(m.Sn(a.deltaX,a.wheelDeltaX)||m.Sn(a.deltaY,a.wheelDeltaY))return!1 -if(!(B.d.cn(a.deltaX,120)===0&&B.d.cn(a.deltaY,120)===0)){s=a.wheelDeltaX -if(B.d.cn(s==null?1:s,120)===0){s=a.wheelDeltaY -s=B.d.cn(s==null?1:s,120)===0}else s=!1}else s=!0 -if(s){s=a.deltaX -r=m.c -q=r==null -p=q?null:r.deltaX -o=Math.abs(s-(p==null?0:p)) -s=a.deltaY -p=q?null:r.deltaY -n=Math.abs(s-(p==null?0:p)) -s=!0 -if(!q)if(!(o===0&&n===0))s=!(o<20&&n<20) -if(s){if(a.timeStamp!=null)s=(q?null:r.timeStamp)!=null -else s=!1 -if(s){s=a.timeStamp -s.toString -r=r.timeStamp -r.toString -if(s-r<50&&m.d)return!0}return!1}}return!0}, -aaL(a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this,a=null -if(b.agY(a0)){s=B.bt -r=-2}else{s=B.c5 -r=-1}q=a0.deltaX -p=a0.deltaY -switch(J.b4(a0.deltaMode)){case 1:o=$.b0k -if(o==null){o=v.G -n=A.cw(o.document,"div") -m=n.style -A.a_(m,"font-size","initial") -A.a_(m,"display","none") -o.document.body.append(n) -o=A.Be(o.window,n).getPropertyValue("font-size") -if(B.c.q(o,"px"))l=A.Ur(A.nu(o,"px","")) -else l=a -n.remove() -o=$.b0k=l==null?16:l/4}q*=o -p*=o -break -case 2:o=b.a.b -q*=o.gwF().a -p*=o.gwF().b -break -case 0:if($.bN().ge3()===B.cz){o=$.dm() -m=o.d -k=m==null -q*=k?o.gcN():m -p*=k?o.gcN():m}break -default:break}j=A.c([],t.D9) -o=b.a -m=o.b -i=A.b1m(a0,m,a) -if($.bN().ge3()===B.cz){k=o.e -h=k==null -if(h)g=a -else{g=$.aUv() -g=k.f.aN(g)}if(g!==!0){if(h)k=a -else{h=$.aUw() -h=k.f.aN(h) -k=h}f=k===!0}else f=!0}else f=!1 -k=a0.ctrlKey&&!f -o=o.d -m=m.a -h=i.a -if(k){k=a0.timeStamp -k.toString -k=A.y8(k) -g=$.dm() -e=g.d -d=e==null -c=d?g.gcN():e -g=d?g.gcN():e -e=a0.buttons -e.toString -o.apU(j,J.b4(e),B.ef,r,s,h*c,i.b*g,1,1,Math.exp(-p/200),B.a4Q,k,m)}else{k=a0.timeStamp -k.toString -k=A.y8(k) -g=$.dm() -e=g.d -d=e==null -c=d?g.gcN():e -g=d?g.gcN():e -e=a0.buttons -e.toString -o.apW(j,J.b4(e),B.ef,r,s,new A.aLB(b),h*c,i.b*g,1,1,q,p,B.a4P,k,m)}b.c=a0 -b.d=s===B.bt -return j}, -agn(a){var s=this,r=$.c5 -if(!(r==null?$.c5=A.en():r).LQ(a))return -s.e=!1 -s.qC(a,s.aaL(a)) -if(!s.e)a.preventDefault()}} -A.aLB.prototype={ -$1$allowPlatformDefault(a){var s=this.a -s.e=B.f3.tL(s.e,a)}, -$0(){return this.$1$allowPlatformDefault(!1)}, -$S:438} -A.lm.prototype={ -k(a){return A.l(this).k(0)+"(change: "+this.a.k(0)+", buttons: "+this.b+")"}} -A.y9.prototype={ -a2C(a,b){var s -if(this.a!==0)return this.N0(b) -s=(b===0&&a>-1?A.bjt(a):b)&1073741823 -this.a=s -return new A.lm(B.a4O,s)}, -N0(a){var s=a&1073741823,r=this.a -if(r===0&&s!==0)return new A.lm(B.ef,r) -this.a=s -return new A.lm(s===0?B.ef:B.kw,s)}, -N_(a){if(this.a!==0&&(a&1073741823)===0){this.a=0 -return new A.lm(B.HH,0)}return null}, -a2D(a){if((a&1073741823)===0){this.a=0 -return new A.lm(B.ef,0)}return null}, -a2E(a){var s -if(this.a===0)return null -s=this.a=(a==null?0:a)&1073741823 -if(s===0)return new A.lm(B.HH,s) -else return new A.lm(B.kw,s)}} -A.aFd.prototype={ -FB(a){return this.f.cl(a,new A.aFf())}, -TB(a){if(J.b(a.pointerType,"touch"))this.f.J(0,a.pointerId)}, -Ez(a,b,c,d){this.aom(a,b,new A.aFe(this,d,c))}, -Ey(a,b,c){return this.Ez(a,b,c,!0)}, -a3h(){var s=this,r=s.a.b,q=r.gfZ().a -s.Ey(q,"pointerdown",new A.aFh(s)) -r=r.c -s.Ey(r.gDz(),"pointermove",new A.aFi(s)) -s.Ez(q,"pointerleave",new A.aFj(s),!1) -s.Ey(r.gDz(),"pointerup",new A.aFk(s)) -s.Ez(q,"pointercancel",new A.aFl(s),!1) -s.b.push(A.aWH("wheel",new A.aFm(s),!1,q))}, -Fg(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j,i,h=c.pointerType -h.toString -s=this.T9(h) -h=c.tiltX -h.toString -h=J.aUA(h) -r=c.tiltY -r.toString -h=h>J.aUA(r)?c.tiltX:c.tiltY -h.toString -r=c.timeStamp -r.toString -q=A.y8(r) -p=c.pressure -r=this.a -o=r.b -n=A.b1m(c,o,d) -m=e==null?this.qQ(c):e -l=$.dm() -k=l.d -j=k==null -i=j?l.gcN():k -l=j?l.gcN():k -k=p==null?0:p -r.d.apV(a,b.b,b.a,m,s,n.a*i,n.b*l,k,1,B.kx,h/180*3.141592653589793,q,o.a)}, -ui(a,b,c){return this.Fg(a,b,c,null,null)}, -ac1(a){var s,r -if("getCoalescedEvents" in a){s=a.getCoalescedEvents() -s=B.b.eI(s,t.m) -r=new A.fk(s.a,s.$ti.i("fk<1,b6>")) -if(!r.gan(r))return r}return A.c([a],t.O)}, -T9(a){var s -A:{if("mouse"===a){s=B.c5 -break A}if("pen"===a){s=B.bm -break A}if("touch"===a){s=B.aC -break A}s=B.bW -break A}return s}, -qQ(a){var s,r=a.pointerType -r.toString -s=this.T9(r) -A:{if(B.c5===s){r=-1 -break A}if(B.bm===s||B.cA===s){r=-4 -break A}r=B.bt===s?A.a0(A.cX("Unreachable")):null -if(B.aC===s||B.bW===s){r=a.pointerId -r.toString -r=J.b4(r) -break A}}return r}} -A.aFf.prototype={ -$0(){return new A.y9()}, -$S:437} -A.aFe.prototype={ -$1(a){var s,r,q,p,o,n,m,l,k -if(this.b){s=this.a.a.e -if(s!=null){r=a.getModifierState("Alt") -q=a.getModifierState("Control") -p=a.getModifierState("Meta") -o=a.getModifierState("Shift") -n=a.timeStamp -n.toString -m=$.b4o() -l=$.b4p() -k=$.aUe() -s.zu(m,l,k,r?B.ct:B.c4,n) -m=$.aUv() -l=$.aUw() -k=$.aUf() -s.zu(m,l,k,q?B.ct:B.c4,n) -r=$.b4q() -m=$.b4r() -l=$.aUg() -s.zu(r,m,l,p?B.ct:B.c4,n) -r=$.b4s() -q=$.b4t() -m=$.aUh() -s.zu(r,q,m,o?B.ct:B.c4,n)}}this.c.$1(a)}, -$S:3} -A.aFh.prototype={ -$1(a){var s,r,q=this.a,p=q.qQ(a),o=A.c([],t.D9),n=q.FB(p),m=a.buttons -m.toString -s=n.N_(J.b4(m)) -if(s!=null)q.ui(o,s,a) -m=J.b4(a.button) -r=a.buttons -r.toString -q.ui(o,n.a2C(m,J.b4(r)),a) -q.qC(a,o) -if(J.b(a.target,q.a.b.gfZ().a)){a.preventDefault() -A.ck(B.z,new A.aFg(q))}}, -$S:39} -A.aFg.prototype={ -$0(){$.b7().gzH().Xm(this.a.a.b.a,B.p8)}, -$S:0} -A.aFi.prototype={ -$1(a){var s,r,q,p,o=this.a,n=o.qQ(a),m=o.FB(n),l=A.c([],t.D9) -for(s=J.bG(o.ac1(a));s.v();){r=s.gT() -q=r.buttons -q.toString -p=m.N_(J.b4(q)) -if(p!=null)o.Fg(l,p,r,a.target,n) -q=r.buttons -q.toString -o.Fg(l,m.N0(J.b4(q)),r,a.target,n)}o.qC(a,l)}, -$S:39} -A.aFj.prototype={ -$1(a){var s,r=this.a,q=r.FB(r.qQ(a)),p=A.c([],t.D9),o=a.buttons -o.toString -s=q.a2D(J.b4(o)) -if(s!=null){r.ui(p,s,a) -r.qC(a,p)}}, -$S:39} -A.aFk.prototype={ -$1(a){var s,r,q,p=this.a,o=p.qQ(a),n=p.f -if(n.aN(o)){s=A.c([],t.D9) -n=n.h(0,o) -n.toString -r=a.buttons -q=n.a2E(r==null?null:J.b4(r)) -p.TB(a) -if(q!=null){p.ui(s,q,a) -p.qC(a,s)}}}, -$S:39} -A.aFl.prototype={ -$1(a){var s,r=this.a,q=r.qQ(a),p=r.f -if(p.aN(q)){s=A.c([],t.D9) -p.h(0,q).a=0 -r.TB(a) -r.ui(s,new A.lm(B.HG,0),a) -r.qC(a,s)}}, -$S:39} -A.aFm.prototype={ -$1(a){this.a.agn(a)}, -$S:3} -A.yP.prototype={} -A.aCF.prototype={ -AV(a,b,c){return this.a.cl(a,new A.aCG(b,c))}} -A.aCG.prototype={ -$0(){return new A.yP(this.a,this.b)}, -$S:435} -A.apO.prototype={ -QV(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1){var s,r=$.lv().a.h(0,c),q=r.b,p=r.c -r.b=j -r.c=k -s=r.a -if(s==null)s=0 -return A.aXi(a,b,c,d,e,f,!1,h,i,j-q,k-p,j,k,l,s,m,n,o,a0,a1,a2,a3,a4,a5,a6,a7,a8,!1,a9,b0,b1)}, -qP(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){return this.QV(a,b,c,d,e,f,g,null,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6)}, -GD(a,b,c){var s=$.lv().a.h(0,a) -return s.b!==b||s.c!==c}, -no(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9){var s,r=$.lv().a.h(0,c),q=r.b,p=r.c -r.b=i -r.c=j -s=r.a -if(s==null)s=0 -return A.aXi(a,b,c,d,e,f,!1,null,h,i-q,j-p,i,j,k,s,l,m,n,o,a0,a1,a2,a3,a4,a5,B.kx,a6,!0,a7,a8,a9)}, -IT(a,b,c,d,e,f,g,h,i,j,k,l,m,a0,a1,a2,a3){var s,r,q,p,o,n=this -if(a0===B.kx)switch(c.a){case 1:$.lv().AV(d,g,h) -a.push(n.qP(b,c,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,a0,0,a1,a2,a3)) -break -case 3:s=$.lv() -r=s.a.aN(d) -s.AV(d,g,h) -if(!r)a.push(n.no(b,B.o0,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,0,a1,a2,a3)) -a.push(n.qP(b,c,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,a0,0,a1,a2,a3)) -s.b=b -break -case 4:s=$.lv() -r=s.a.aN(d) -s.AV(d,g,h).a=$.b_N=$.b_N+1 -if(!r)a.push(n.no(b,B.o0,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,0,a1,a2,a3)) -if(n.GD(d,g,h))a.push(n.no(0,B.ef,d,0,0,e,!1,0,g,h,0,0,j,0,0,0,0,0,k,l,m,0,a1,a2,a3)) -a.push(n.qP(b,c,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,a0,0,a1,a2,a3)) -s.b=b -break -case 5:a.push(n.qP(b,c,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,a0,0,a1,a2,a3)) -$.lv().b=b -break -case 6:case 0:s=$.lv() -q=s.a -p=q.h(0,d) -p.toString -if(c===B.HG){g=p.b -h=p.c}if(n.GD(d,g,h))a.push(n.no(s.b,B.kw,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,0,a1,a2,a3)) -a.push(n.qP(b,c,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,a0,0,a1,a2,a3)) -if(e===B.aC){a.push(n.no(0,B.a4N,d,0,0,e,!1,0,g,h,0,0,j,0,0,0,0,0,k,l,m,0,a1,a2,a3)) -q.J(0,d)}break -case 2:s=$.lv().a -o=s.h(0,d) -a.push(n.qP(b,c,d,0,0,e,!1,0,o.b,o.c,0,i,j,0,0,0,0,0,k,l,m,a0,0,a1,a2,a3)) -s.J(0,d) -break -case 7:case 8:case 9:break}else switch(a0.a){case 1:case 2:case 3:s=$.lv() -r=s.a.aN(d) -s.AV(d,g,h) -if(!r)a.push(n.no(b,B.o0,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,0,a1,a2,a3)) -if(n.GD(d,g,h))if(b!==0)a.push(n.no(b,B.kw,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,0,a1,a2,a3)) -else a.push(n.no(b,B.ef,d,0,0,e,!1,0,g,h,0,i,j,0,0,0,0,0,k,l,m,0,a1,a2,a3)) -a.push(n.QV(b,c,d,0,0,e,!1,f,0,g,h,0,i,j,0,0,0,0,0,k,l,m,a0,0,a1,a2,a3)) -break -case 0:break -case 4:break}}, -apU(a,b,c,d,e,f,g,h,i,j,k,l,m){return this.IT(a,b,c,d,e,null,f,g,h,i,j,0,0,k,0,l,m)}, -apW(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return this.IT(a,b,c,d,e,f,g,h,i,j,1,k,l,m,0,n,o)}, -apV(a,b,c,d,e,f,g,h,i,j,k,l,m){return this.IT(a,b,c,d,e,null,f,g,h,i,1,0,0,j,k,l,m)}} -A.aRD.prototype={} -A.aq8.prototype={ -a8o(a){$.jo.push(new A.aq9(this))}, -l(){var s,r -for(s=this.a,r=new A.eS(s,s.r,s.e);r.v();)s.h(0,r.d).bg() -s.aa(0) -$.UA=null}, -ZG(a){var s,r,q,p,o,n=this,m=A.h4(a,"KeyboardEvent") -if(!m)return -s=new A.kC(a) -m=a.code -m.toString -if(a.type==="keydown"&&a.key==="Tab"&&a.isComposing)return -r=a.key -r.toString -if(!(r==="Meta"||r==="Shift"||r==="Alt"||r==="Control")&&n.c){r=n.a -q=r.h(0,m) -if(q!=null)q.bg() -if(a.type==="keydown")q=a.ctrlKey||s.gxF()||a.altKey||a.metaKey -else q=!1 -if(q)r.m(0,m,A.ck(B.mu,new A.aqb(n,m,s))) -else r.J(0,m)}p=a.getModifierState("Shift")?1:0 -if(a.getModifierState("Alt")||a.getModifierState("AltGraph"))p|=2 -if(a.getModifierState("Control"))p|=4 -if(a.getModifierState("Meta"))p|=8 -n.b=p -if(a.type==="keydown")if(a.key==="CapsLock")n.b=p|32 -else if(a.code==="NumLock")n.b=p|16 -else if(a.key==="ScrollLock")n.b=p|64 -else if(a.key==="Meta"&&$.bN().ge3()===B.ks)n.b|=8 -else if(a.code==="MetaLeft"&&a.key==="Process")n.b|=8 -o=A.aG(["type",a.type,"keymap","web","code",a.code,"key",a.key,"location",J.b4(a.location),"metaState",n.b,"keyCode",J.b4(a.keyCode)],t.N,t.z) -$.b7().jJ("flutter/keyevent",B.an.cK(o),new A.aqc(s))}} -A.aq9.prototype={ -$0(){this.a.l()}, -$S:0} -A.aqb.prototype={ -$0(){var s,r,q=this.a -q.a.J(0,this.b) -s=this.c.a -r=A.aG(["type","keyup","keymap","web","code",s.code,"key",s.key,"location",J.b4(s.location),"metaState",q.b,"keyCode",J.b4(s.keyCode)],t.N,t.z) -$.b7().jJ("flutter/keyevent",B.an.cK(r),A.beZ())}, -$S:0} -A.aqc.prototype={ -$1(a){var s -if(a==null)return -if(A.uh(t.P.a(B.an.hF(a)).h(0,"handled"))){s=this.a.a -s.preventDefault() -s.stopPropagation()}}, -$S:33} -A.Ed.prototype={ -ko(){this.alu()}, -alu(){var s,r,q,p,o,n=this,m=$.b7(),l=m.gdr() -for(s=l.b,s=new A.db(s,s.r,s.e),r=n.d;s.v();){q=s.d.a -p=m.gdr().b.h(0,q) -q=p.a -o=n.a -o===$&&A.a() -r.m(0,q,o.J7(p))}m=l.d -n.b=new A.e3(m,A.n(m).i("e3<1>")).nT(n.gaiU()) -m=l.e -n.c=new A.e3(m,A.n(m).i("e3<1>")).nT(n.gaiW())}, -aiV(a){var s=$.b7().gdr().b.h(0,a),r=s.a,q=this.a -q===$&&A.a() -this.d.m(0,r,q.J7(s))}, -aiX(a){var s=this.d -if(!s.aN(a))return -s.J(0,a).ga1T().l()}, -LX(a,b){return this.ay_(a,b)}, -ay_(a,b){var s=0,r=A.I(t.H),q,p=this,o,n,m,l -var $async$LX=A.J(function(c,d){if(c===1)return A.F(d,r) -for(;;)switch(s){case 0:n=p.d.h(0,b.a) -m=n.b -l=$.b7().dy!=null?new A.aiC($.aW9,$.aWa,$.aW8):null -if(m.a!=null){o=m.b -if(o!=null)o.a.fW() -o=new A.ax($.as,t.c) -m.b=new A.J_(new A.bC(o,t.R),l,a) -q=o -s=1 -break}o=new A.ax($.as,t.c) -m.a=new A.J_(new A.bC(o,t.R),l,a) -p.uE(n) -q=o -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$LX,r)}, -uE(a){return this.ah0(a)}, -ah0(a){var s=0,r=A.I(t.H),q,p=2,o=[],n=this,m,l,k,j,i,h,g -var $async$uE=A.J(function(b,c){if(b===1){o.push(c) -s=p}for(;;)switch(s){case 0:i=a.b -h=i.a -h.toString -m=h -p=4 -s=7 -return A.p(n.z9(m.c,a,m.b),$async$uE) -case 7:m.a.fW() -p=2 -s=6 -break -case 4:p=3 -g=o.pop() -l=A.aj(g) -k=A.b3(g) -m.a.fX(l,k) -s=6 -break -case 3:s=2 -break -case 6:h=i.b -i.a=h -i.b=null -if(h==null){s=1 -break}else{q=n.uE(a) -s=1 -break}case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$uE,r)}, -z9(a,b,c){return this.akh(a,b,c)}, -akh(a,b,c){var s=0,r=A.I(t.H),q,p,o,n,m,l -var $async$z9=A.J(function(d,e){if(d===1)return A.F(e,r) -for(;;)switch(s){case 0:s=2 -return A.p(b.vM(a.a,c),$async$z9) -case 2:if(c!=null){q=c.b -p=c.c -o=c.d -o.toString -n=c.e -n.toString -m=c.f -m.toString -m=A.c([q,p,o,n,m,m,0,0,0,0,c.a],t.t) -$.aQU.push(new A.nS(m)) -l=A.vB() -if(l-$.b2t()>1e5){$.b8b=l -q=$.b7() -p=$.aQU -A.ns(q.dy,q.fr,p) -$.aQU=A.c([],t.no)}}return A.G(null,r)}}) -return A.H($async$z9,r)}} -A.zZ.prototype={ -N(){return"Assertiveness."+this.b}} -A.acb.prototype={ -aoL(a){var s -switch(a.a){case 0:s=this.a -break -case 1:s=this.b -break -default:s=null}return s}, -WG(a,b){var s,r,q=A.b5s(),p=this.aoL(b),o=p.parentElement -if(q!=null&&o!=null)q.append(p) -s=this.c -r=s?a+"\xa0":a -this.c=!s -A.ck(B.z,new A.acc(p,r)) -A.ck(B.aM,new A.acd(p,q,o))}} -A.acc.prototype={ -$0(){this.a.textContent=this.b}, -$S:0} -A.acd.prototype={ -$0(){var s=this,r=s.a -r.textContent="" -if(s.b!=null&&s.c!=null)s.c.append(r)}, -$S:0} -A.asY.prototype={ -bh(){var s=this.e -if(s==null)s=null -else{s.bh() -s=!0}return s===!0}} -A.atx.prototype={ -bh(){var s=this.e -if(s==null)s=null -else{s.bh() -s=!0}return s===!0}} -A.Ha.prototype={ -N(){return"_CheckableKind."+this.b}} -A.atm.prototype={ -bh(){var s=this.e -if(s==null)s=null -else{s.bh() -s=!0}return s===!0}} -A.at0.prototype={ -dE(){var s,r,q,p=this,o="true" -p.hA() -s=p.c -if((s.x1&1)!==0){switch(p.w.a){case 0:r=p.a -r===$&&A.a() -q=A.ac("checkbox") -q.toString -r.setAttribute("role",q) -break -case 1:r=p.a -r===$&&A.a() -q=A.ac("radio") -q.toString -r.setAttribute("role",q) -break -case 2:r=p.a -r===$&&A.a() -q=A.ac("switch") -q.toString -r.setAttribute("role",q) -break}r=s.AU() -q=p.a -if(r===B.hs){q===$&&A.a() -r=A.ac(o) -r.toString -q.setAttribute("aria-disabled",r) -r=A.ac(o) -r.toString -q.setAttribute("disabled",r)}else{q===$&&A.a() -q.removeAttribute("aria-disabled") -q.removeAttribute("disabled")}s=s.a -s=s.a===B.eH||s.d===B.aO?o:"false" -r=p.a -r===$&&A.a() -s=A.ac(s) -s.toString -r.setAttribute("aria-checked",s)}}, -l(){this.u2() -var s=this.a -s===$&&A.a() -s.removeAttribute("aria-disabled") -s.removeAttribute("disabled")}, -bh(){var s=this.e -if(s==null)s=null -else{s.bh() -s=!0}return s===!0}} -A.VH.prototype={ -dE(){var s,r,q=this.a -if((q.x1&1)!==0){s=q.a.b -if(s!==B.V){q=q.p4 -q===$&&A.a() -r=s===B.aO -q=B.a6z.q(0,q) -s=this.b.a -if(q){s===$&&A.a() -q=A.ac(r) -q.toString -s.setAttribute("aria-selected",q) -s.removeAttribute("aria-current")}else{s===$&&A.a() -s.removeAttribute("aria-selected") -q=A.ac(r) -q.toString -s.setAttribute("aria-current",q)}}else{q=this.b.a -q===$&&A.a() -q.removeAttribute("aria-selected") -q.removeAttribute("aria-current")}}}} -A.An.prototype={ -dE(){var s,r=this,q=r.a -if((q.x1&1)!==0)if(q.gKQ()){q=q.a.a -if(q===B.eH){q=r.b.a -q===$&&A.a() -s=A.ac("true") -s.toString -q.setAttribute("aria-checked",s)}else{s=r.b.a -if(q===B.h1){s===$&&A.a() -q=A.ac("mixed") -q.toString -s.setAttribute("aria-checked",q)}else{s===$&&A.a() -q=A.ac("false") -q.toString -s.setAttribute("aria-checked",q)}}}else{q=r.b.a -q===$&&A.a() -q.removeAttribute("aria-checked")}}} -A.uO.prototype={ -dE(){var s,r=this.a -if((r.x1&1)!==0){r=r.AU() -s=this.b.a -if(r===B.hs){s===$&&A.a() -r=A.ac("true") -r.toString -s.setAttribute("aria-disabled",r)}else{s===$&&A.a() -s.removeAttribute("aria-disabled")}}}} -A.Qd.prototype={ -dE(){var s,r=this.a -if((r.x1&1)!==0){r=r.a.e -s=this.b.a -if(r!==B.V){s===$&&A.a() -r=A.ac(r===B.aO) -r.toString -s.setAttribute("aria-expanded",r)}else{s===$&&A.a() -s.removeAttribute("aria-expanded")}}}} -A.qq.prototype={ -bh(){this.d.c=B.lE -var s=this.b.a -s===$&&A.a() -s.focus($.eH()) -return!0}, -dE(){var s,r,q=this,p=q.a -if(p.a.r!==B.V){s=q.d -if(s.b==null){r=q.b.a -r===$&&A.a() -s.a_X(p.p2,r)}p=p.a -if(p.r===B.aO){p=p.c -p=p===B.V||p===B.aO}else p=!1 -s.Xl(p)}else q.d.E_()}} -A.uz.prototype={ -N(){return"AccessibilityFocusManagerEvent."+this.b}} -A.pE.prototype={ -a_X(a,b){var s,r,q=this,p=q.b,o=p==null -if(b===(o?null:p.a[2])){o=p.a -if(a===o[3])return -s=o[2] -r=o[1] -q.b=new A.J1([o[0],r,s,a]) -return}if(!o)q.E_() -o=A.bi(new A.acf(q)) -o=[A.bi(new A.acg(q)),o,b,a] -q.b=new A.J1(o) -q.c=B.ew -b.tabIndex=0 -b.addEventListener("focus",o[1]) -b.addEventListener("blur",o[0])}, -E_(){var s,r=this.b -this.d=this.b=null -if(r==null)return -s=r.a -s[2].removeEventListener("focus",s[1]) -s[2].removeEventListener("blur",s[0])}, -aba(){var s=this,r=s.b -if(r==null)return -if(s.c!==B.lE)$.b7().rZ(s.a.a,r.a[3],B.kU,null) -s.c=B.Kh}, -Xl(a){var s,r=this,q=r.b -if(q==null){r.d=null -return}if(a===r.d)return -r.d=a -if(a){s=r.a -s.y=!0}else return -s.x.push(new A.ace(r,q))}} -A.acf.prototype={ -$1(a){this.a.aba()}, -$S:3} -A.acg.prototype={ -$1(a){this.a.c=B.Ki}, -$S:3} -A.ace.prototype={ -$0(){var s=this.a,r=this.b -if(!J.b(s.b,r))return -s.c=B.lE -r.a[2].focus($.eH())}, -$S:0} -A.at4.prototype={ -cf(){return A.cw(v.G.document,"form")}, -bh(){var s=this.e -if(s==null)s=null -else{s.bh() -s=!0}return s===!0}} -A.at5.prototype={ -cf(){return A.cw(v.G.document,"header")}, -bh(){var s=this.e -if(s==null)s=null -else{s.bh() -s=!0}return s===!0}} -A.at6.prototype={ -cf(){var s=this.c.garF(),r=A.cw(v.G.document,"h"+s) -s=r.style -A.a_(s,"margin","0") -A.a_(s,"padding","0") -A.a_(s,"font-size","10px") -return r}, -bh(){if(this.c.a.r!==B.V){var s=this.e -if(s!=null){s.bh() -return!0}}this.f.FW().bh() -return!0}} -A.at7.prototype={ -bh(){var s=this.e -if(s==null)s=null -else{s.bh() -s=!0}return s===!0}, -dE(){var s,r,q,p=this -p.hA() -s=p.c -if(s.gKX()){r=s.dy -r=r!=null&&!B.cy.gan(r)}else r=!1 -if(r){if(p.w==null){p.w=A.cw(v.G.document,"flt-semantics-img") -r=s.dy -if(r!=null&&!B.cy.gan(r)){r=p.w.style -A.a_(r,"position","absolute") -A.a_(r,"top","0") -A.a_(r,"left","0") -q=s.y -A.a_(r,"width",A.j(q.c-q.a)+"px") -s=s.y -A.a_(r,"height",A.j(s.d-s.b)+"px")}A.a_(p.w.style,"font-size","6px") -s=p.w -s.toString -r=p.a -r===$&&A.a() -r.append(s)}s=p.w -s.toString -r=A.ac("img") -r.toString -s.setAttribute("role",r) -p.Ul(p.w)}else if(s.gKX()){s=p.a -s===$&&A.a() -r=A.ac("img") -r.toString -s.setAttribute("role",r) -p.Ul(s) -p.EW()}else{p.EW() -s=p.a -s===$&&A.a() -s.removeAttribute("aria-label")}}, -Ul(a){var s=this.c.z -if(s!=null&&s.length!==0){a.toString -s=A.ac(s) -s.toString -a.setAttribute("aria-label",s)}}, -EW(){var s=this.w -if(s!=null){s.remove() -this.w=null}}, -l(){this.u2() -this.EW() -var s=this.a -s===$&&A.a() -s.removeAttribute("aria-label")}} -A.at8.prototype={ -a8t(a){var s,r,q=this,p=q.c -q.dv(new A.o7(p,q)) -q.dv(new A.rS(p,q)) -q.Ic(B.ad) -p=q.w -s=q.a -s===$&&A.a() -s.append(p) -p.type="range" -s=A.ac("slider") -s.toString -p.setAttribute("role",s) -p.addEventListener("change",A.bi(new A.at9(q,a))) -s=new A.ata(q) -q.z!==$&&A.bs() -q.z=s -r=$.c5;(r==null?$.c5=A.en():r).w.push(s) -q.x.a_X(a.p2,p)}, -gzN(){var s=this.c.k4 -A:{break A}return B.I6!==s}, -bh(){this.w.focus($.eH()) -return!0}, -Mo(){A.aRO(this.w,this.c.k3)}, -dE(){var s,r=this -r.hA() -s=$.c5 -switch((s==null?$.c5=A.en():s).f.a){case 1:r.abO() -r.an9() -break -case 0:r.Qj() -break}r.x.Xl(r.c.a.r===B.aO)}, -abO(){var s=this.w,r=s.disabled -r.toString -if(!r)return -s.disabled=!1}, -an9(){var s,r,q,p,o,n,m,l=this -if(!l.Q){s=l.c.x1 -r=(s&4096)!==0||(s&8192)!==0||(s&16384)!==0}else r=!0 -if(!r)return -l.Q=!1 -q=""+l.y -s=l.w -s.value=q -p=A.ac(q) -p.toString -s.setAttribute("aria-valuenow",p) -p=l.c -o=p.ax -o.toString -o=A.ac(o) -o.toString -s.setAttribute("aria-valuetext",o) -n=p.ch.length!==0?""+(l.y+1):q -s.max=n -o=A.ac(n) -o.toString -s.setAttribute("aria-valuemax",o) -m=p.cx.length!==0?""+(l.y-1):q -s.min=m -p=A.ac(m) -p.toString -s.setAttribute("aria-valuemin",p)}, -Qj(){var s=this.w,r=s.disabled -r.toString -if(r)return -s.disabled=!0}, -l(){var s,r,q=this -q.u2() -q.x.E_() -s=$.c5 -if(s==null)s=$.c5=A.en() -r=q.z -r===$&&A.a() -B.b.J(s.w,r) -q.Qj() -q.w.remove()}} -A.at9.prototype={ -$1(a){var s,r=this.a,q=r.w,p=q.disabled -p.toString -if(p)return -r.Q=!0 -s=A.fU(q.value,null) -q=r.y -if(s>q){r.y=q+1 -$.b7().rZ(r.c.p3.a,this.b.p2,B.I4,null)}else if(s1)for(q=0;q=0;--q,a=a1){i=n[q] -a1=i.p2 -if(!B.b.q(b,a1)){r=a0.y1 -l=i.y1 -if(a==null){r=r.a -r===$&&A.a() -l=l.a -l===$&&A.a() -r.append(l)}else{r=r.a -r===$&&A.a() -l=l.a -l===$&&A.a() -r.insertBefore(l,a)}i.x2=a0 -m.r.m(0,a1,a0)}a1=i.y1.a -a1===$&&A.a()}a0.xr=n}, -acJ(){var s,r,q=this -if(q.go!==-1)return B.n3 -s=q.p4 -s===$&&A.a() -switch(s.a){case 1:return B.mA -case 3:return B.mC -case 2:return B.mB -case 4:return B.mD -case 5:return B.mE -case 6:return B.mF -case 7:return B.mG -case 8:return B.mH -case 9:return B.mI -case 25:return B.n0 -case 14:return B.mQ -case 13:return B.mR -case 15:return B.mS -case 16:return B.mT -case 17:return B.mU -case 27:return B.mK -case 26:return B.mJ -case 18:return B.mL -case 19:return B.mM -case 28:return B.mV -case 29:return B.mW -case 30:return B.mX -case 31:return B.mY -case 32:return B.mZ -case 20:return B.n_ -case 22:return B.mO -case 23:return B.mN -case 10:case 11:case 12:case 21:case 24:case 0:break}if(q.id===0){s=!1 -if(q.a.z){r=q.z -if(r!=null&&r.length!==0){s=q.dy -s=!(s!=null&&!B.cy.gan(s))}}}else s=!0 -if(s)return B.r9 -else{s=q.a -if(s.x)return B.r8 -else{r=q.b -r.toString -if((r&64)!==0||(r&128)!==0)return B.r7 -else if(q.gKX())return B.ra -else if(q.gKQ())return B.n1 -else if(s.db)return B.my -else if(s.w)return B.j_ -else if(s.CW)return B.mx -else if(s.as)return B.n2 -else if(s.z)return B.mz -else{if((r&1)!==0){s=q.dy -s=!(s!=null&&!B.cy.gan(s))}else s=!1 -if(s)return B.j_ -else return B.mP}}}}, -aaT(a){var s,r,q,p=this -switch(a.a){case 3:s=new A.atC(B.r8,p) -r=A.t4(s.cf(),p) -s.a!==$&&A.bs() -s.a=r -s.agF() -break -case 1:s=new A.att(A.cw(v.G.document,"flt-semantics-scroll-overflow"),B.mx,p) -s.d9(B.mx,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("group") -q.toString -r.setAttribute("role",q) -break -case 0:s=A.baM(p) -break -case 2:s=new A.asZ(B.j_,p) -s.d9(B.j_,p,B.jl) -s.dv(A.xA(p,s)) -r=s.a -r===$&&A.a() -q=A.ac("button") -q.toString -r.setAttribute("role",q) -break -case 4:s=new A.atm(B.n0,p) -s.d9(B.n0,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("radiogroup") -q.toString -r.setAttribute("role",q) -break -case 5:s=new A.at0(A.bev(p),B.n1,p) -s.d9(B.n1,p,B.ad) -s.dv(A.xA(p,s)) -break -case 8:s=A.baN(p) -break -case 7:s=new A.at7(B.ra,p) -r=A.t4(s.cf(),p) -s.a!==$&&A.bs() -s.a=r -r=new A.qq(new A.pE(p.p3,B.ew),p,s) -s.e=r -s.dv(r) -s.dv(new A.o7(p,s)) -s.dv(new A.rS(p,s)) -s.dv(A.xA(p,s)) -s.If() -break -case 9:s=new A.atl(B.n3,p) -s.d9(B.n3,p,B.ad) -break -case 10:s=new A.atb(B.my,p) -s.d9(B.my,p,B.jl) -s.dv(A.xA(p,s)) -break -case 23:s=new A.atc(B.mL,p) -s.d9(B.mL,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("list") -q.toString -r.setAttribute("role",q) -break -case 24:s=new A.atd(B.mM,p) -s.d9(B.mM,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("listitem") -q.toString -r.setAttribute("role",q) -break -case 6:s=new A.at6(B.r9,p) -r=A.t4(s.cf(),p) -s.a!==$&&A.bs() -s.a=r -r=new A.qq(new A.pE(p.p3,B.ew),p,s) -s.e=r -s.dv(r) -s.dv(new A.o7(p,s)) -s.dv(new A.rS(p,s)) -s.Ic(B.jl) -s.If() -break -case 11:s=new A.at5(B.mz,p) -s.d9(B.mz,p,B.hv) -break -case 12:s=new A.aty(B.mA,p) -s.d9(B.mA,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("tab") -q.toString -r.setAttribute("role",q) -s.dv(A.xA(p,s)) -break -case 13:s=new A.atz(B.mB,p) -s.d9(B.mB,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("tablist") -q.toString -r.setAttribute("role",q) -break -case 14:s=new A.atA(B.mC,p) -s.d9(B.mC,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("tabpanel") -q.toString -r.setAttribute("role",q) -break -case 15:s=A.baL(p) -break -case 16:s=A.baK(p) -break -case 17:s=new A.atB(B.mF,p) -s.d9(B.mF,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("table") -q.toString -r.setAttribute("role",q) -break -case 18:s=new A.at_(B.mG,p) -s.d9(B.mG,p,B.hv) -r=s.a -r===$&&A.a() -q=A.ac("cell") -q.toString -r.setAttribute("role",q) -break -case 19:s=new A.ats(B.mH,p) -s.d9(B.mH,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("row") -q.toString -r.setAttribute("role",q) -break -case 20:s=new A.at1(B.mI,p) -s.d9(B.mI,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("columnheader") -q.toString -r.setAttribute("role",q) -break -case 28:s=new A.VN(B.mQ,p) -s.d9(B.mQ,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("menu") -q.toString -r.setAttribute("role",q) -break -case 29:s=new A.VO(B.mR,p) -s.d9(B.mR,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("menubar") -q.toString -r.setAttribute("role",q) -break -case 30:s=new A.atg(B.mS,p) -s.d9(B.mS,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("menuitem") -q.toString -r.setAttribute("role",q) -s.dv(new A.uO(p,s)) -s.dv(A.xA(p,s)) -break -case 31:s=new A.ath(B.mT,p) -s.d9(B.mT,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("menuitemcheckbox") -q.toString -r.setAttribute("role",q) -s.dv(new A.An(p,s)) -s.dv(new A.uO(p,s)) -break -case 32:s=new A.ati(B.mU,p) -s.d9(B.mU,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("menuitemradio") -q.toString -r.setAttribute("role",q) -s.dv(new A.An(p,s)) -s.dv(new A.uO(p,s)) -break -case 22:s=new A.asY(B.mK,p) -s.d9(B.mK,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("alert") -q.toString -r.setAttribute("role",q) -break -case 21:s=new A.atx(B.mJ,p) -s.d9(B.mJ,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("status") -q.toString -r.setAttribute("role",q) -break -case 25:s=new A.au5(B.mN,p) -s.d9(B.mN,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("progressbar") -q.toString -r.setAttribute("role",q) -s.Vn() -break -case 26:s=new A.atV(B.mO,p) -s.d9(B.mO,p,B.ad) -break -case 27:s=new A.aiN(B.mP,p) -s.d9(B.mP,p,B.hv) -r=p.b -r.toString -if((r&1)!==0)s.dv(A.xA(p,s)) -break -case 33:s=new A.at2(B.mV,p) -s.d9(B.mV,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("complementary") -q.toString -r.setAttribute("role",q) -break -case 34:s=new A.at3(B.mW,p) -s.d9(B.mW,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("contentinfo") -q.toString -r.setAttribute("role",q) -break -case 35:s=new A.ate(B.mX,p) -s.d9(B.mX,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("main") -q.toString -r.setAttribute("role",q) -break -case 36:s=new A.atk(B.mY,p) -s.d9(B.mY,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("navigation") -q.toString -r.setAttribute("role",q) -break -case 37:s=new A.atn(B.mZ,p) -s.d9(B.mZ,p,B.ad) -r=s.a -r===$&&A.a() -q=A.ac("region") -q.toString -r.setAttribute("role",q) -break -case 38:s=new A.at4(B.n_,p) -s.d9(B.n_,p,B.ad) -break -default:s=null}return s}, -ani(){var s,r,q,p,o,n,m,l=this,k=l.y1,j=l.acJ(),i=l.y1 -if(i==null)s=null -else{i=i.a -i===$&&A.a() -s=i}if(k!=null)if(k.b===j){k.dE() -return}else{k.l() -k=l.y1=null}if(k==null){k=l.y1=l.aaT(j) -k.aw() -k.dE()}i=l.y1.a -i===$&&A.a() -if(s!==i){i=l.xr -if(i!=null)for(r=i.length,q=0;q>>0}o=m.k1 -l=n.ay -if(o!==l){k=o==null?null:o.length!==0 -if(k===!0)m.p3.f.J(0,o) -m.k1=l -if(l.length!==0===!0)m.p3.f.m(0,l,m.p2) -m.x1=(m.x1|33554432)>>>0}o=n.db -if(m.ax!==o){m.ax=o -m.x1=(m.x1|4096)>>>0}o=n.dx -if(m.ay!==o){m.ay=o -m.x1=(m.x1|4096)>>>0}o=n.ch -if(m.z!==o){m.z=o -m.x1=(m.x1|1024)>>>0}o=n.CW -if(m.Q!==o){m.Q=o -m.x1=(m.x1|1024)>>>0}o=n.ax -if(!J.b(m.y,o)){m.y=o -m.x1=(m.x1|512)>>>0}o=n.k1 -if(m.dx!==o){m.dx=o -m.x1=(m.x1|65536)>>>0}o=n.Q -if(m.r!==o){m.r=o -m.x1=(m.x1|64)>>>0}o=n.c -if(m.b!==o){m.b=o -m.x1=(m.x1|2)>>>0}o=n.f -if(m.c!==o){m.c=o -m.x1=(m.x1|4)>>>0}o=n.r -if(m.d!==o){m.d=o -m.x1=(m.x1|8)>>>0}o=n.x -if(m.e!==o){m.e=o -m.x1=(m.x1|16)>>>0}o=n.y -if(m.f!==o){m.f=o -m.x1=(m.x1|32)>>>0}o=m.ry -l=n.z -if(o!==l){m.to=o -m.ry=l -m.x1=(m.x1|536870912)>>>0}o=n.as -if(m.w!==o){m.w=o -m.x1=(m.x1|128)>>>0}o=n.at -if(m.x!==o){m.x=o -m.x1=(m.x1|256)>>>0}o=n.cx -if(m.as!==o){m.as=o -m.x1=(m.x1|2048)>>>0}o=n.cy -if(m.at!==o){m.at=o -m.x1=(m.x1|2048)>>>0}o=n.dy -if(m.ch!==o){m.ch=o -m.x1=(m.x1|8192)>>>0}o=n.fr -if(m.CW!==o){m.CW=o -m.x1=(m.x1|8192)>>>0}o=n.fx -if(m.cx!==o){m.cx=o -m.x1=(m.x1|16384)>>>0}o=n.fy -if(m.cy!==o){m.cy=o -m.x1=(m.x1|16384)>>>0}o=n.go -if(m.fy!==o){m.fy=o -m.x1=(m.x1|4194304)>>>0}o=n.p1 -if(m.id!==o){m.id=o -m.x1=(m.x1|16777216)>>>0}o=n.id -if(m.db!=o){m.db=o -m.x1=(m.x1|32768)>>>0}o=n.k4 -if(m.fr!==o){m.fr=o -m.x1=(m.x1|1048576)>>>0}o=n.k3 -if(m.dy!==o){m.dy=o -m.x1=(m.x1|524288)>>>0}o=n.ok -if(m.fx!==o){m.fx=o -m.x1=(m.x1|2097152)>>>0}o=n.w -if(m.go!==o){m.go=o -m.x1=(m.x1|8388608)>>>0}o=n.p2 -if(m.k2!==o){m.k2=o -m.x1=(m.x1|67108864)>>>0}o=n.R8 -if(m.k3!==o){m.k3=o -m.x1=(m.x1|134217728)>>>0}o=n.RG -if(m.k4!==o){m.k4=o -m.x1=(m.x1|268435456)>>>0}o=n.to -if(m.ok!==o){m.ok=o -m.x1=(m.x1|536870912)>>>0}o=n.x1 -if(m.p1!==o){m.p1=o -m.x1=(m.x1|1073741824)>>>0}m.p4=n.p3 -m.R8=n.rx -o=n.p4 -if(!A.bld(m.RG,o,r)){m.RG=o -m.x1=(m.x1|134217728)>>>0}o=n.ry -if(!J.b(m.rx,o)){m.rx=o -m.x1=(m.x1|268435456)>>>0}m.ani() -o=m.y1.gzN() -l=m.y1 -if(o){o=l.a -o===$&&A.a() -o=o.style -o.setProperty("pointer-events","all","")}else{o=l.a -o===$&&A.a() -o=o.style -o.setProperty("pointer-events","none","")}}j=A.aU(t.UF) -for(p=0;p"),n=A.aa(new A.bD(p,o),o.i("y.E")),m=n.length -for(s=0;s=20)return i.e=!0 -if(!B.a6y.q(0,a.type))return!0 -if(i.b!=null)return!1 -r=A.lh("activationPoint") -switch(a.type){case"click":r.sed(new A.Bd(a.offsetX,a.offsetY)) -break -case"touchstart":case"touchend":s=new A.tS(a.changedTouches,t.s5).gad(0) -r.sed(new A.Bd(s.clientX,s.clientY)) -break -case"pointerdown":case"pointerup":r.sed(new A.Bd(a.clientX,a.clientY)) -break -default:return!0}q=i.c.getBoundingClientRect() -s=q.left -p=q.right -o=q.left -n=q.top -m=q.bottom -l=q.top -k=r.bc().a-(s+(p-o)/2) -j=r.bc().b-(n+(m-l)/2) -if(k*k+j*j<1){i.e=!0 -i.b=A.ck(B.aM,new A.anZ(i)) -return!1}return!0}, -Te(){var s,r,q=this.c=A.cw(v.G.document,"flt-semantics-placeholder") -q.addEventListener("click",A.bi(new A.anY(this)),!0) -s=A.ac("button") -s.toString -q.setAttribute("role",s) -s=this.c -if(s!=null){r=A.ac("Enable accessibility") -r.toString -s.setAttribute("aria-label",r)}s=q.style -A.a_(s,"position","absolute") -A.a_(s,"left","0") -A.a_(s,"top","0") -A.a_(s,"right","0") -A.a_(s,"bottom","0") -return q}, -l(){var s=this.c -if(s!=null)s.remove() -this.b=this.c=null}} -A.anZ.prototype={ -$0(){this.a.l() -var s=$.c5;(s==null?$.c5=A.en():s).sDH(!0)}, -$S:0} -A.anY.prototype={ -$1(a){this.a.D7(a)}, -$S:3} -A.atB.prototype={ -bh(){var s=this.e -if(s==null)s=null -else{s.bh() -s=!0}return s===!0}} -A.at_.prototype={ -bh(){var s=this.e -if(s==null)s=null -else{s.bh() -s=!0}return s===!0}} -A.ats.prototype={ -bh(){var s=this.e -if(s==null)s=null -else{s.bh() -s=!0}return s===!0}} -A.at1.prototype={ -bh(){var s=this.e -if(s==null)s=null -else{s.bh() -s=!0}return s===!0}} -A.aty.prototype={ -bh(){var s=this.e -if(s==null)s=null -else{s.bh() -s=!0}return s===!0}} -A.atA.prototype={ -bh(){var s=this.e -if(s==null)s=null -else{s.bh() -s=!0}return s===!0}} -A.atz.prototype={ -bh(){var s=this.e -if(s==null)s=null -else{s.bh() -s=!0}return s===!0}} -A.asZ.prototype={ -bh(){var s=this.e -if(s==null)s=null -else{s.bh() -s=!0}return s===!0}, -dE(){var s,r -this.hA() -s=this.c.AU() -r=this.a -if(s===B.hs){r===$&&A.a() -s=A.ac("true") -s.toString -r.setAttribute("aria-disabled",s)}else{r===$&&A.a() -r.removeAttribute("aria-disabled")}}} -A.YD.prototype={ -a8y(a,b){var s,r=A.bi(new A.awv(this)) -this.d=r -s=this.b.a -s===$&&A.a() -s.addEventListener("click",r)}, -gNx(){return!0}, -dE(){var s,r=this,q=r.e,p=r.a -if(p.AU()!==B.hs){p=p.b -p.toString -p=(p&1)!==0}else p=!1 -r.e=p -if(q!==p){s=r.b.a -if(p){s===$&&A.a() -p=A.ac("") -p.toString -s.setAttribute("flt-tappable",p)}else{s===$&&A.a() -s.removeAttribute("flt-tappable")}}}} -A.awv.prototype={ -$1(a){var s=this.a,r=s.a -$.aTU().avY(a,r.p3.a,r.p2,s.e)}, -$S:3} -A.au8.prototype={ -JN(a,b,c){this.cx=a -this.x=c -this.y=b}, -ao4(a){var s,r,q=this,p=q.CW -if(p===a)return -else if(p!=null)q.jD() -q.CW=a -p=a.w -p===$&&A.a() -q.c=p -q.UP() -p=q.cx -p.toString -s=q.x -s.toString -r=q.y -r.toString -q.a4d(p,r,s)}, -jD(){var s,r,q,p=this -if(!p.b)return -p.b=!1 -p.w=p.r=null -for(s=p.z,r=0;r=this.b)throw A.i(A.aR4(b,this,null,null,null)) -return this.a[b]}, -m(a,b,c){var s -if(b>=this.b)throw A.i(A.aR4(b,this,null,null,null)) -s=this.a -s.$flags&2&&A.az(s) -s[b]=c}, -sH(a,b){var s,r,q,p,o=this,n=o.b -if(bn){if(n===0)p=new Uint8Array(b) -else p=o.Fl(b) -B.a0.jY(p,0,o.b,o.a) -o.a=p}}o.b=b}, -fv(a){var s,r=this,q=r.b -if(q===r.a.length)r.OI(q) -q=r.a -s=r.b++ -q.$flags&2&&A.az(q) -q[s]=a}, -G(a,b){var s,r=this,q=r.b -if(q===r.a.length)r.OI(q) -q=r.a -s=r.b++ -q.$flags&2&&A.az(q) -q[s]=b}, -zS(a,b,c,d){A.dk(c,"start") -if(d!=null&&c>d)throw A.i(A.cR(d,c,null,"end",null)) -this.a8C(b,c,d)}, -a_(a,b){return this.zS(0,b,0,null)}, -a8C(a,b,c){var s,r,q -if(t.j.b(a))c=c==null?a.length:c -if(c!=null){this.agO(this.b,a,b,c) -return}for(s=J.bG(a),r=0;s.v();){q=s.gT() -if(r>=b)this.fv(q);++r}if(ro.gH(b)||d>o.gH(b))throw A.i(A.aL("Too few elements")) -s=d-c -r=p.b+s -p.abR(r) -o=p.a -q=a+s -B.a0.ej(o,q,p.b+s,o,a) -B.a0.ej(p.a,a,q,b,c) -p.b=r}, -abR(a){var s,r=this -if(a<=r.a.length)return -s=r.Fl(a) -B.a0.jY(s,0,r.b,r.a) -r.a=s}, -Fl(a){var s=this.a.length*2 -if(a!=null&&s=a.a.byteLength)throw A.i(B.c3) -return this.my(a.qg(0),a)}, -my(a,b){var s,r,q,p,o,n,m,l,k,j=this -switch(a){case 0:s=null -break -case 1:s=!0 -break -case 2:s=!1 -break -case 3:r=b.a.getInt32(b.b,B.b0===$.ei()) -b.b+=4 -s=r -break -case 4:s=b.Ds(0) -break -case 5:q=j.h5(b) -s=A.fU(B.eq.e8(b.qh(q)),16) -break -case 6:b.n1(8) -r=b.a.getFloat64(b.b,B.b0===$.ei()) -b.b+=8 -s=r -break -case 7:q=j.h5(b) -s=B.eq.e8(b.qh(q)) -break -case 8:s=b.qh(j.h5(b)) -break -case 9:q=j.h5(b) -b.n1(4) -p=b.a -o=J.aUC(B.aU.gcF(p),p.byteOffset+b.b,q) -b.b=b.b+4*q -s=o -break -case 10:s=b.Dt(j.h5(b)) -break -case 11:q=j.h5(b) -b.n1(8) -p=b.a -o=J.aUB(B.aU.gcF(p),p.byteOffset+b.b,q) -b.b=b.b+8*q -s=o -break -case 12:q=j.h5(b) -n=[] -for(p=b.a,m=0;m=p.byteLength)A.a0(B.c3) -b.b=l+1 -n.push(j.my(p.getUint8(l),b))}s=n -break -case 13:q=j.h5(b) -p=t.X -n=A.t(p,p) -for(p=b.a,m=0;m=p.byteLength)A.a0(B.c3) -b.b=l+1 -l=j.my(p.getUint8(l),b) -k=b.b -if(k>=p.byteLength)A.a0(B.c3) -b.b=k+1 -n.m(0,l,j.my(p.getUint8(k),b))}s=n -break -default:throw A.i(B.c3)}return s}, -hU(a,b){var s,r,q,p,o -if(b<254)a.b.fv(b) -else{s=a.b -r=a.c -q=a.d -p=r.$flags|0 -if(b<=65535){s.fv(254) -o=$.ei() -p&2&&A.az(r,10) -r.setUint16(0,b,B.b0===o) -s.zS(0,q,0,2)}else{s.fv(255) -o=$.ei() -p&2&&A.az(r,11) -r.setUint32(0,b,B.b0===o) -s.zS(0,q,0,4)}}}, -h5(a){var s,r=a.qg(0) -A:{if(254===r){r=a.a.getUint16(a.b,B.b0===$.ei()) -a.b+=2 -s=r -break A}if(255===r){r=a.a.getUint32(a.b,B.b0===$.ei()) -a.b+=4 -s=r -break A}s=r -break A}return s}} -A.avU.prototype={ -$2(a,b){var s=this.a,r=this.b -s.fq(r,a) -s.fq(r,b)}, -$S:385} -A.avV.prototype={ -jB(a){var s,r,q -a.toString -s=new A.UD(a) -r=B.cF.jP(s) -q=B.cF.jP(s) -if(typeof r=="string"&&s.b>=a.byteLength)return new A.j3(r,q) -else throw A.i(B.ry)}, -vN(a){var s=A.aSr() -s.b.fv(0) -B.cF.fq(s,a) -return s.nH()}, -pn(a,b,c){var s=A.aSr() -s.b.fv(1) -B.cF.fq(s,a) -B.cF.fq(s,c) -B.cF.fq(s,b) -return s.nH()}} -A.ay8.prototype={ -n1(a){var s,r,q=this.b,p=B.j.cn(q.b,a) -if(p!==0)for(s=a-p,r=0;r")).aL(0,new A.ahh(this,r)) -return r}} -A.ahh.prototype={ -$1(a){var s=this.a,r=s.b.h(0,a) -r.toString -this.b.push(A.ci(r,"input",A.bi(new A.ahi(s,a,r))))}, -$S:28} -A.ahi.prototype={ -$1(a){var s,r=this.a.c,q=this.b -if(r.h(0,q)==null)throw A.i(A.aL("AutofillInfo must have a valid uniqueIdentifier.")) -else{r=r.h(0,q) -r.toString -s=A.aVQ(this.c) -$.b7().jJ("flutter/textinput",B.bD.kj(new A.j3(u.l,[0,A.aG([r.b,s.a1z()],t.ob,t.z)])),A.abG())}}, -$S:3} -A.Mz.prototype={ -WM(a,b){var s,r=this.d,q=this.e,p=A.h4(a,"HTMLInputElement") -if(p){if(q!=null)a.placeholder=q -p=r==null -if(!p){a.name=r -a.id=r -if(B.c.q(r,"password"))a.type="password" -else a.type="text"}p=p?"on":r -a.autocomplete=p}else{p=A.h4(a,"HTMLTextAreaElement") -if(p){if(q!=null)a.placeholder=q -p=r==null -if(!p){a.name=r -a.id=r}s=A.ac(p?"on":r) -s.toString -a.setAttribute("autocomplete",s)}}}, -fC(a){return this.WM(a,!1)}} -A.xD.prototype={} -A.jF.prototype={ -XZ(a,b,c,d){var s=this,r=a==null?s.b:a,q=d==null?s.c:d,p=b==null?s.d:b,o=c==null?s.e:c -return new A.jF(s.a,Math.max(0,r),Math.max(0,q),p,o)}, -aqD(a,b){return this.XZ(null,a,b,null)}, -rv(a,b){return this.XZ(a,null,null,b)}, -a1z(){var s=this -return A.aG(["text",s.a,"selectionBase",s.b,"selectionExtent",s.c,"composingBase",s.d,"composingExtent",s.e],t.N,t.z)}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r,q,p,o=this -if(b==null)return!1 -if(o===b)return!0 -if(A.l(o)!==J.S(b))return!1 -s=!1 -if(b instanceof A.jF)if(b.a===o.a){s=b.b -r=b.c -q=o.b -p=o.c -s=Math.min(s,r)===Math.min(q,p)&&Math.max(s,r)===Math.max(q,p)&&b.d===o.d&&b.e===o.e}return s}, -k(a){return this.kI(0)}, -fC(a){var s,r=this,q=a==null,p=!q -if(p)s=A.h4(a,"HTMLInputElement") -else s=!1 -if(s){a.value=r.a -q=r.b -p=r.c -a.setSelectionRange(Math.min(q,p),Math.max(q,p))}else{if(p)p=A.h4(a,"HTMLTextAreaElement") -else p=!1 -if(p){a.value=r.a -q=r.b -p=r.c -a.setSelectionRange(Math.min(q,p),Math.max(q,p))}else throw A.i(A.c2("Unsupported DOM element type: <"+A.j(q?null:A.M(a,"tagName"))+"> ("+J.S(a).k(0)+")"))}}} -A.akj.prototype={} -A.QD.prototype={ -kt(){var s,r=this,q=r.w -if(q!=null){s=r.c -s.toString -q.fC(s)}q=r.d -q===$&&A.a() -if(q.x!=null){r.wG() -q=r.e -if(q!=null)q.fC(r.c) -q=r.d.x -q=q==null?null:q.a -q.toString -s=$.eH() -q.focus(s) -r.c.focus(s)}}} -A.wT.prototype={ -kt(){var s,r=this,q=r.w -if(q!=null){s=r.c -s.toString -q.fC(s)}q=r.d -q===$&&A.a() -if(q.x!=null){r.wG() -q=r.c -q.toString -q.focus($.eH()) -q=r.e -if(q!=null){s=r.c -s.toString -q.fC(s)}}}, -wd(){if(this.w!=null)this.kt() -var s=this.c -s.toString -s.focus($.eH())}} -A.B3.prototype={ -gki(){var s=null,r=this.f -return r==null?this.f=new A.xD(this.e.a,"",-1,-1,s,s,s,s):r}, -rX(a,b,c){var s,r,q=this,p="none",o="transparent",n=a.b.At() -n.tabIndex=-1 -q.c=n -q.Ik(a) -n=q.c -n.classList.add("flt-text-editing") -s=n.style -A.a_(s,"forced-color-adjust",p) -A.a_(s,"white-space","pre-wrap") -A.a_(s,"position","absolute") -A.a_(s,"top","0") -A.a_(s,"left","0") -A.a_(s,"padding","0") -A.a_(s,"opacity","1") -A.a_(s,"color",o) -A.a_(s,"background-color",o) -A.a_(s,"background",o) -A.a_(s,"caret-color",o) -A.a_(s,"outline",p) -A.a_(s,"border",p) -A.a_(s,"resize",p) -A.a_(s,"text-shadow",p) -A.a_(s,"overflow","hidden") -A.a_(s,"transform-origin","0 0 0") -if($.bN().gfi()===B.dN||$.bN().gfi()===B.c9)n.classList.add("transparentTextEditing") -n=q.r -if(n!=null){r=q.c -r.toString -n.fC(r)}n=q.d -n===$&&A.a() -if(n.x==null){n=q.c -n.toString -A.aND(n,a.a) -q.Q=!1}q.wd() -q.b=!0 -q.x=c -q.y=b}, -Ik(a){var s,r,q,p,o,n=this -n.d=a -s=n.c -if(a.d){s.toString -r=A.ac("readonly") -r.toString -s.setAttribute("readonly",r)}else s.removeAttribute("readonly") -if(a.e){s=n.c -s.toString -r=A.ac("password") -r.toString -s.setAttribute("type",r)}if(a.b.gjH()==="none"){s=n.c -s.toString -r=A.ac("none") -r.toString -s.setAttribute("inputmode",r)}q=A.b7M(a.c) -s=n.c -s.toString -q.apN(s) -p=a.w -s=n.c -if(p!=null){s.toString -p.WM(s,!0)}else{s.toString -r=A.ac("off") -r.toString -s.setAttribute("autocomplete",r) -r=n.c -r.toString -A.bf0(r,n.d.a)}o=a.f?"on":"off" -s=n.c -s.toString -r=A.ac(o) -r.toString -s.setAttribute("autocorrect",r)}, -wd(){this.kt()}, -v6(){var s,r,q=this,p=q.d -p===$&&A.a() -p=p.x -if(p!=null)B.b.a_(q.z,p.v7()) -p=q.z -s=q.c -s.toString -r=q.gw4() -p.push(A.ci(s,"input",A.bi(r))) -s=q.c -s.toString -p.push(A.ci(s,"keydown",A.bi(q.gws()))) -p.push(A.ci(v.G.document,"selectionchange",A.bi(r))) -r=q.c -r.toString -p.push(A.ci(r,"beforeinput",A.bi(q.gBp()))) -if(!(q instanceof A.wT)){s=q.c -s.toString -p.push(A.ci(s,"blur",A.bi(q.gBq())))}s=q.c -s.toString -r=q.gBs() -p.push(A.ci(s,"copy",A.bi(r))) -s=q.c -s.toString -p.push(A.ci(s,"paste",A.bi(r))) -r=q.c -r.toString -q.zT(r) -q.CB()}, -Mg(a){var s,r=this -r.w=a -if(r.b)if(r.d$!=null){s=r.c -s.toString -a.fC(s)}else r.kt()}, -Mh(a){var s -this.r=a -if(this.b){s=this.c -s.toString -a.fC(s)}}, -jD(){var s,r,q,p=this -p.b=!1 -p.w=p.r=p.f=p.e=null -for(s=p.z,r=0;r=0&&a.c>=0) -else s=!0 -if(s)return -a.fC(this.c)}, -kt(){var s=this.c -s.toString -s.focus($.eH())}, -wG(){var s,r,q=this.d -q===$&&A.a() -q=q.x -q.toString -s=this.c -s.toString -if($.uu().gje() instanceof A.wT)A.a_(s.style,"pointer-events","all") -r=q.a -if(!r.contains(s))r.insertBefore(s,q.d) -A.aND(r,q.f) -this.Q=!0}, -ZC(a){var s,r,q=this,p=q.c -p.toString -s=q.arn(q.a8d(A.aVQ(p))) -p=q.d -p===$&&A.a() -if(p.r){q.gki().r=s.d -q.gki().w=s.e -r=A.bbx(s,q.e,q.gki())}else r=null -if(!s.j(0,q.e)){q.e=s -q.f=r -q.x.$2(s,r)}q.f=null}, -a8d(a){var s,r=this.d -r===$&&A.a() -if(r.z)return a -r=a.c -if(a.b===r)return a -s=a.rv(r,r) -r=this.c -r.toString -s.fC(r) -return s}, -asI(a){var s,r,q,p,o=this,n=A.bH(a.data) -if(n==null)n=null -s=A.bH(a.inputType) -if(s==null)s=null -if(s!=null){r=o.e -q=r.b -p=r.c -q=q>p?q:p -if(B.c.q(s,"delete")){o.gki().b="" -o.gki().d=q}else if(s==="insertLineBreak"){o.gki().b="\n" -o.gki().c=q -o.gki().d=q}else if(n!=null){o.gki().b=n -o.gki().c=q -o.gki().d=q}}}, -asJ(a){var s,r,q,p=a.relatedTarget -if(p==null)$.uu().Nf() -else{s=$.b7().gdr() -r=s.w3(p) -q=this.c -q.toString -if(r==s.w3(q)){s=this.c -s.toString -s.focus($.eH())}}}, -asK(a){var s=this.d -s===$&&A.a() -if(!s.z)a.preventDefault()}, -avD(a){var s,r=A.h4(a,"KeyboardEvent") -if(r)if(J.b(a.keyCode,13)){r=this.y -r.toString -s=this.d -s===$&&A.a() -r.$1(s.c) -r=this.d -if(r.b instanceof A.D4&&r.c==="TextInputAction.newline")return -a.preventDefault()}}, -JN(a,b,c){var s,r=this -r.rX(a,b,c) -r.v6() -s=r.e -if(s!=null)r.Nj(s) -s=r.c -s.toString -s.focus($.eH())}, -CB(){var s=this,r=s.z,q=s.c -q.toString -r.push(A.ci(q,"mousedown",A.bi(new A.afk()))) -q=s.c -q.toString -r.push(A.ci(q,"mouseup",A.bi(new A.afl()))) -q=s.c -q.toString -r.push(A.ci(q,"mousemove",A.bi(new A.afm())))}} -A.afk.prototype={ -$1(a){a.preventDefault()}, -$S:3} -A.afl.prototype={ -$1(a){a.preventDefault()}, -$S:3} -A.afm.prototype={ -$1(a){a.preventDefault()}, -$S:3} -A.ajV.prototype={ -rX(a,b,c){var s,r=this -r.E4(a,b,c) -s=r.c -s.toString -a.b.XB(s) -s=r.d -s===$&&A.a() -if(s.x!=null)r.wG() -s=r.c -s.toString -a.y.Nh(s)}, -wd(){A.a_(this.c.style,"transform","translate(-9999px, -9999px)") -this.p3=!1}, -v6(){var s,r,q=this,p=q.d -p===$&&A.a() -p=p.x -if(p!=null)B.b.a_(q.z,p.v7()) -p=q.z -s=q.c -s.toString -r=q.gw4() -p.push(A.ci(s,"input",A.bi(r))) -s=q.c -s.toString -p.push(A.ci(s,"keydown",A.bi(q.gws()))) -p.push(A.ci(v.G.document,"selectionchange",A.bi(r))) -r=q.c -r.toString -p.push(A.ci(r,"beforeinput",A.bi(q.gBp()))) -r=q.c -r.toString -p.push(A.ci(r,"blur",A.bi(q.gBq()))) -r=q.c -r.toString -s=q.gBs() -p.push(A.ci(r,"copy",A.bi(s))) -r=q.c -r.toString -p.push(A.ci(r,"paste",A.bi(s))) -s=q.c -s.toString -q.zT(s) -s=q.c -s.toString -p.push(A.ci(s,"focus",A.bi(new A.ajY(q)))) -q.a8U()}, -Mg(a){var s=this -s.w=a -if(s.b&&s.p3)s.kt()}, -jD(){this.a4c() -var s=this.p2 -if(s!=null)s.bg() -this.p2=null}, -a8U(){var s=this.c -s.toString -this.z.push(A.ci(s,"click",A.bi(new A.ajW(this))))}, -TU(){var s=this.p2 -if(s!=null)s.bg() -this.p2=A.ck(B.bi,new A.ajX(this))}, -kt(){var s,r=this.c -r.toString -r.focus($.eH()) -r=this.w -if(r!=null){s=this.c -s.toString -r.fC(s)}}} -A.ajY.prototype={ -$1(a){this.a.TU()}, -$S:3} -A.ajW.prototype={ -$1(a){var s=this.a -if(s.p3){s.wd() -s.TU()}}, -$S:3} -A.ajX.prototype={ -$0(){var s=this.a -s.p3=!0 -s.kt()}, -$S:0} -A.act.prototype={ -rX(a,b,c){var s,r=this -r.E4(a,b,c) -s=r.c -s.toString -a.b.XB(s) -s=r.d -s===$&&A.a() -if(s.x!=null)r.wG() -else{s=r.c -s.toString -A.aND(s,a.a)}s=r.c -s.toString -a.y.Nh(s)}, -v6(){var s,r,q=this,p=q.d -p===$&&A.a() -p=p.x -if(p!=null)B.b.a_(q.z,p.v7()) -p=q.z -s=q.c -s.toString -r=q.gw4() -p.push(A.ci(s,"input",A.bi(r))) -s=q.c -s.toString -p.push(A.ci(s,"keydown",A.bi(q.gws()))) -p.push(A.ci(v.G.document,"selectionchange",A.bi(r))) -r=q.c -r.toString -p.push(A.ci(r,"beforeinput",A.bi(q.gBp()))) -r=q.c -r.toString -p.push(A.ci(r,"blur",A.bi(q.gBq()))) -r=q.c -r.toString -s=q.gBs() -p.push(A.ci(r,"copy",A.bi(s))) -r=q.c -r.toString -p.push(A.ci(r,"paste",A.bi(s))) -s=q.c -s.toString -q.zT(s) -q.CB()}, -kt(){var s,r=this.c -r.toString -r.focus($.eH()) -r=this.w -if(r!=null){s=this.c -s.toString -r.fC(s)}}} -A.ahN.prototype={ -rX(a,b,c){var s -this.E4(a,b,c) -s=this.d -s===$&&A.a() -if(s.x!=null)this.wG()}, -v6(){var s,r,q=this,p=q.d -p===$&&A.a() -p=p.x -if(p!=null)B.b.a_(q.z,p.v7()) -p=q.z -s=q.c -s.toString -r=q.gw4() -p.push(A.ci(s,"input",A.bi(r))) -s=q.c -s.toString -p.push(A.ci(s,"keydown",A.bi(q.gws()))) -s=q.c -s.toString -p.push(A.ci(s,"beforeinput",A.bi(q.gBp()))) -s=q.c -s.toString -q.zT(s) -s=q.c -s.toString -p.push(A.ci(s,"keyup",A.bi(new A.ahO(q)))) -s=q.c -s.toString -p.push(A.ci(s,"select",A.bi(r))) -r=q.c -r.toString -p.push(A.ci(r,"blur",A.bi(q.gBq()))) -r=q.c -r.toString -s=q.gBs() -p.push(A.ci(r,"copy",A.bi(s))) -r=q.c -r.toString -p.push(A.ci(r,"paste",A.bi(s))) -q.CB()}, -kt(){var s,r=this,q=r.c -q.toString -q.focus($.eH()) -q=r.w -if(q!=null){s=r.c -s.toString -q.fC(s)}q=r.e -if(q!=null){s=r.c -s.toString -q.fC(s)}}} -A.ahO.prototype={ -$1(a){this.a.ZC(a)}, -$S:3} -A.awI.prototype={} -A.awO.prototype={ -hN(a){var s=a.b -if(s!=null&&s!==this.a&&a.c){a.c=!1 -a.gje().jD()}a.b=this.a -a.d=this.b}} -A.awV.prototype={ -hN(a){var s=a.gje(),r=a.d -r.toString -s.Ik(r)}} -A.awQ.prototype={ -hN(a){a.gje().Nj(this.a)}} -A.awT.prototype={ -hN(a){if(!a.c)a.am2()}} -A.awP.prototype={ -hN(a){a.gje().Mg(this.a)}} -A.awS.prototype={ -hN(a){a.gje().Mh(this.a)}} -A.awG.prototype={ -hN(a){if(a.c){a.c=!1 -a.gje().jD()}}} -A.awL.prototype={ -hN(a){if(a.c){a.c=!1 -a.gje().jD()}}} -A.awR.prototype={ -hN(a){}} -A.awN.prototype={ -hN(a){}} -A.awM.prototype={ -hN(a){}} -A.awK.prototype={ -hN(a){a.Nf() -if(this.a)A.bkQ() -A.bjj()}} -A.aPz.prototype={ -$2(a,b){new A.tS(b.getElementsByClassName("submitBtn"),t.s5).gad(0).click()}, -$S:337} -A.awB.prototype={ -aty(a,b){var s,r,q,p,o,n,m,l,k=B.bD.jB(a) -switch(k.a){case"TextInput.setClient":s=k.b -s.toString -t.Dn.a(s) -r=J.bk(s) -q=r.h(s,0) -q.toString -A.eF(q) -s=r.h(s,1) -s.toString -p=new A.awO(q,A.aWl(t.xE.a(s))) -break -case"TextInput.updateConfig":this.a.d=A.aWl(t.P.a(k.b)) -p=B.Ma -break -case"TextInput.setEditingState":p=new A.awQ(A.aVR(t.P.a(k.b))) -break -case"TextInput.show":p=B.M8 -break -case"TextInput.setEditableSizeAndTransform":p=new A.awP(A.b7z(t.P.a(k.b))) -break -case"TextInput.setStyle":s=t.P.a(k.b) -o=A.eF(s.h(0,"textAlignIndex")) -n=A.eF(s.h(0,"textDirectionIndex")) -m=A.d2(s.h(0,"fontWeightIndex")) -l=m!=null?A.aTn(m):"normal" -r=A.lq(s.h(0,"fontSize")) -if(r==null)r=null -p=new A.awS(new A.ah0(r,l,A.bH(s.h(0,"fontFamily")),B.Sc[o],B.nk[n])) -break -case"TextInput.clearClient":p=B.M3 -break -case"TextInput.hide":p=B.M4 -break -case"TextInput.requestAutofill":p=B.M5 -break -case"TextInput.finishAutofillContext":p=new A.awK(A.uh(k.b)) -break -case"TextInput.setMarkedTextRect":p=B.M7 -break -case"TextInput.setCaretRect":p=B.M6 -break -default:$.b7().fJ(b,null) -return}p.hN(this.a) -new A.awC(b).$0()}} -A.awC.prototype={ -$0(){$.b7().fJ(this.a,B.an.cK([!0]))}, -$S:0} -A.ajS.prototype={ -gvq(){var s=this.a -return s===$?this.a=new A.awB(this):s}, -gje(){var s,r,q,p=this,o=null,n=p.f -if(n===$){s=$.c5 -if((s==null?$.c5=A.en():s).b){s=A.baP(p) -r=s}else{if($.bN().ge3()===B.bs)q=new A.ajV(p,A.c([],t.Up),$,$,$,o,o) -else if($.bN().ge3()===B.hR)q=new A.act(p,A.c([],t.Up),$,$,$,o,o) -else if($.bN().gfi()===B.c9)q=new A.wT(p,A.c([],t.Up),$,$,$,o,o) -else q=$.bN().gfi()===B.eC?new A.ahN(p,A.c([],t.Up),$,$,$,o,o):A.b8f(p) -r=q}p.f!==$&&A.aK() -n=p.f=r}return n}, -am2(){var s,r,q=this -q.c=!0 -s=q.gje() -r=q.d -r.toString -s.JN(r,new A.ajT(q),new A.ajU(q))}, -Nf(){var s,r=this -if(r.c){r.c=!1 -r.gje().jD() -r.gvq() -s=r.b -$.b7().jJ("flutter/textinput",B.bD.kj(new A.j3("TextInputClient.onConnectionClosed",[s])),A.abG())}}} -A.ajU.prototype={ -$2(a,b){var s,r,q="flutter/textinput",p=this.a -if(p.d.r){p.gvq() -p=p.b -s=t.N -r=t.z -$.b7().jJ(q,B.bD.kj(new A.j3(u.s,[p,A.aG(["deltas",A.c([A.aG(["oldText",b.a,"deltaText",b.b,"deltaStart",b.c,"deltaEnd",b.d,"selectionBase",b.e,"selectionExtent",b.f,"composingBase",b.r,"composingExtent",b.w],s,r)],t.H7)],s,r)])),A.abG())}else{p.gvq() -p=p.b -$.b7().jJ(q,B.bD.kj(new A.j3("TextInputClient.updateEditingState",[p,a.a1z()])),A.abG())}}, -$S:336} -A.ajT.prototype={ -$1(a){var s=this.a -s.gvq() -s=s.b -$.b7().jJ("flutter/textinput",B.bD.kj(new A.j3("TextInputClient.performAction",[s,a])),A.abG())}, -$S:148} -A.ah0.prototype={ -fC(a){var s=this,r=a.style -A.a_(r,"text-align",A.bkZ(s.d,s.e)) -A.a_(r,"font",s.b+" "+A.j(s.a)+"px "+A.j(A.aT9(s.c)))}} -A.agj.prototype={ -fC(a){var s=A.b1F(this.c),r=a.style -A.a_(r,"width",A.j(this.a)+"px") -A.a_(r,"height",A.j(this.b)+"px") -A.a_(r,"transform",s)}} -A.agk.prototype={ -$1(a){return A.fg(a)}, -$S:319} -A.Cd.prototype={ -N(){return"IntlSegmenterGranularity."+this.b}} -A.Gn.prototype={ -N(){return"TransformKind."+this.b}} -A.RF.prototype={ -gH(a){return this.b.b}, -h(a,b){var s=this.c.h(0,b) -return s==null?null:s.d.b}, -OH(a,b){var s,r,q,p=this.b -p.nr(new A.a5j(a,b)) -s=this.c -r=p.a -q=r.b.y5() -q.toString -s.m(0,a,q) -if(p.b>this.a){s.J(0,r.a.gAT().a) -p.jQ(0)}}} -A.nA.prototype={ -j(a,b){if(b==null)return!1 -return b instanceof A.nA&&b.a===this.a&&b.b===this.b}, -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"BitmapSize("+this.a+", "+this.b+")"}, -ayx(){return new A.L(this.a,this.b)}} -A.mg.prototype={ -dl(a){var s=a.a,r=this.a,q=s[15] -r.$flags&2&&A.az(r) -r[15]=q -r[14]=s[14] -r[13]=s[13] -r[12]=s[12] -r[11]=s[11] -r[10]=s[10] -r[9]=s[9] -r[8]=s[8] -r[7]=s[7] -r[6]=s[6] -r[5]=s[5] -r[4]=s[4] -r[3]=s[3] -r[2]=s[2] -r[1]=s[1] -r[0]=s[0]}, -h(a,b){return this.a[b]}, -m(a,b,c){var s=this.a -s.$flags&2&&A.az(s) -s[b]=c}, -qk(a,b,c){var s=this.a -s.$flags&2&&A.az(s) -s[14]=c -s[13]=b -s[12]=a}, -k(a){return this.kI(0)}} -A.aeY.prototype={ -a8h(a,b){var s=this,r=b.nT(new A.aeZ(s)) -s.d=r -r=A.b1t(new A.af_(s)) -s.c=r -r.observe(s.b)}, -bn(){var s,r=this -r.NP() -s=r.c -s===$&&A.a() -s.disconnect() -s=r.d -s===$&&A.a() -if(s!=null)s.bg() -r.e.bn()}, -ga0h(){var s=this.e -return new A.e3(s,A.n(s).i("e3<1>"))}, -IO(){var s=$.dm(),r=s.d -if(r==null)r=s.gcN() -s=this.b -return new A.L(s.clientWidth*r,s.clientHeight*r)}, -Xz(a,b){return B.fJ}} -A.aeZ.prototype={ -$1(a){this.a.e.G(0,null)}, -$S:103} -A.af_.prototype={ -$2(a,b){var s,r,q,p -for(s=a.$ti,r=new A.bf(a,a.gH(0),s.i("bf")),q=this.a.e,s=s.i("aX.E");r.v();){p=r.d -if(p==null)s.a(p) -if(!q.gqV())A.a0(q.qy()) -q.nk(null)}}, -$S:141} -A.PQ.prototype={ -bn(){}} -A.Qt.prototype={ -aiZ(a){this.c.G(0,null)}, -bn(){this.NP() -var s=this.b -s===$&&A.a() -s.b.removeEventListener(s.a,s.c) -this.c.bn()}, -ga0h(){var s=this.c -return new A.e3(s,A.n(s).i("e3<1>"))}, -IO(){var s,r,q=A.lh("windowInnerWidth"),p=A.lh("windowInnerHeight"),o=v.G,n=o.window.visualViewport,m=$.dm(),l=m.d -if(l==null)l=m.gcN() -if(n!=null)if($.bN().ge3()===B.bs){s=o.document.documentElement.clientWidth -r=o.document.documentElement.clientHeight -q.b=s*l -p.b=r*l}else{o=n.width -o.toString -q.b=o*l -o=n.height -o.toString -p.b=o*l}else{m=o.window.innerWidth -m.toString -q.b=m*l -o=o.window.innerHeight -o.toString -p.b=o*l}return new A.L(q.bc(),p.bc())}, -Xz(a,b){var s,r,q=$.dm(),p=q.d -if(p==null)p=q.gcN() -q=v.G -s=q.window.visualViewport -r=A.lh("windowInnerHeight") -if(s!=null)if($.bN().ge3()===B.bs&&!b)r.b=q.document.documentElement.clientHeight*p -else{q=s.height -q.toString -r.b=q*p}else{q=q.window.innerHeight -q.toString -r.b=q*p}return new A.Zc(0,0,0,a-r.bc())}} -A.PV.prototype={ -UN(){var s,r=this,q=v.G.window,p=r.b -r.d=q.matchMedia("(resolution: "+A.j(p)+"dppx)") -q=r.d -q===$&&A.a() -p=A.bi(r.gaid()) -s=A.ac(A.aG(["once",!0,"passive",!0],t.N,t.K)) -s.toString -q.addEventListener("change",p,s)}, -aie(a){var s=this,r=s.a,q=r.d -r=q==null?r.gcN():q -s.b=r -s.c.G(0,r) -s.UN()}} -A.afY.prototype={ -Ns(a){var s=this.r -if(a!==s){if(s!=null)s.remove() -this.r=a -this.d.append(a)}}} -A.af0.prototype={ -gDz(){var s=this.b -s===$&&A.a() -return s}, -No(a){var s=A.ac(a.oN("-")) -s.toString -this.a.setAttribute("lang",s)}, -WW(a){A.a_(a.style,"width","100%") -A.a_(a.style,"height","100%") -A.a_(a.style,"display","block") -A.a_(a.style,"overflow","hidden") -A.a_(a.style,"position","relative") -A.a_(a.style,"touch-action","none") -this.a.appendChild(a) -$.aPU() -this.b!==$&&A.bs() -this.b=a}, -gnR(){return this.a}} -A.aiG.prototype={ -gDz(){return v.G.window}, -No(a){var s,r=v.G.document.documentElement -r.toString -s=A.ac(a.oN("-")) -s.toString -r.setAttribute("lang",s)}, -WW(a){var s=a.style -A.a_(s,"position","absolute") -A.a_(s,"top","0") -A.a_(s,"right","0") -A.a_(s,"bottom","0") -A.a_(s,"left","0") -this.a.append(a) -$.aPU()}, -a9g(){var s,r,q,p -for(s=v.G,r=s.document.head.querySelectorAll('meta[name="viewport"]'),q=new A.tR(r,t.JW);q.v();)A.fT(r.item(q.b)).remove() -p=A.cw(s.document,"meta") -r=A.ac("") -r.toString -p.setAttribute("flt-viewport",r) -p.name="viewport" -p.content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" -s.document.head.append(p) -$.aPU()}, -gnR(){return this.a}} -A.Ql.prototype={ -h(a,b){return this.b.h(0,b)}, -a11(a,b){var s=a.a -this.b.m(0,s,a) -if(b!=null)this.c.m(0,s,b) -this.d.G(0,s) -return a}, -axK(a){return this.a11(a,null)}, -YB(a){var s,r=this.b,q=r.h(0,a) -if(q==null)return null -r.J(0,a) -s=this.c.J(0,a) -this.e.G(0,a) -q.l() -return s}, -w3(a){var s,r=a==null?null:a.closest("flutter-view[flt-view-id]") -if(r==null)return null -s=r.getAttribute("flt-view-id") -s.toString -return this.b.h(0,A.DE(s,null))}, -MZ(a){return A.qz(new A.ai3(this,a),t.H)}, -a2B(a){return A.qz(new A.ai4(this,a),t.H)}, -HC(a,b){var s,r,q=v.G.document.activeElement -if(a!==q)s=b&&a.contains(q) -else s=!0 -if(s){r=this.w3(a) -if(r!=null)r.gfZ().a.focus($.eH())}if(b)a.remove()}, -amK(a){return this.HC(a,!1)}} -A.ai3.prototype={ -$0(){this.a.amK(this.b)}, -$S:13} -A.ai4.prototype={ -$0(){this.a.HC(this.b,!0) -return null}, -$S:0} -A.aj5.prototype={} -A.aNB.prototype={ -$0(){return null}, -$S:272} -A.pK.prototype={} -A.axY.prototype={ -$1(a){return this.a[this.b+a.index]}, -$S:241} -A.acs.prototype={ -gH(a){return this.b.length}, -ac5(){var s,r,q,p,o,n,m,l,k,j,i=this.a,h=$.bx.cj().CodeUnits.compute(i),g=B.b.eI(h,t.m) -for(h=this.b,s=h.length,r=g.a,q=J.bk(r),p=g.$ti.y[1],o=h.$flags|0,n=0;n>>0}for(i=l.c,s=i.length,k=0;k>>0}for(i=l.a,s=i.length,n=0;n>>0}else{r=h[j] -o&2&&A.az(h) -h[j]=(r|8)>>>0}}}} -A.axZ.prototype={ -mm(a){return this.av3(a)}, -av3(a0){var s=0,r=A.I(t.S7),q,p=this,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a -var $async$mm=A.J(function(a1,a2){if(a1===1)return A.F(a2,r) -for(;;)switch(s){case 0:b=A.c([],t.Rh) -for(o=a0.a,n=o.length,m=0;mq&&m.a<=p)return(n.a&1)===0?B.i:B.aj}return this.a.a.b}, -as5(){var s,r,q,p,o,n,m,l,k,j,i=this -for(s=i.a,r=s.b,q=r.length,p=i.f,o=0;o")),s=this.d,o=o.i("aX.E");n.v();){r=n.d -if(r==null)r=o.a(r) -q=this.gqS().CY(r.start,r.end) -p=r.level -r.level -A.j(r.start) -A.j(r.end) -q.k(0) -s.push(new A.pK(p,q))}}, -azg(a){var s,r,q,p=this -B.b.aa(p.e) -s=p.a -if(s.c.length===0){s.z=a -s.y=s.x=0 -s.Q=s.w=-1/0 -r=B.b.gaC(p.gqS().b).geH() -s.f=r.d-r.b -return}q=new A.axe(p) -q.ap3(a) -s.z=a -s.x=q.b -s.y=q.c -s.w=q.d -s.Q=q.e -s.f=q.f}, -aop(d2,d3,d4,d5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0=this,d1=d0.w -if(d1.length!==0){d1=B.b.gad(d1) -s=B.b.gaC(d0.w) -r=B.b.gad(d0.w) -q=d0.a.a.e -q.toString -p=d0.x -p.toString -o=(p&1)===0?B.i:B.aj -n=A.aS9(s.a.a+s.c,d1.a.a+d1.b,r.a.c,q,o) -o=new A.iU(0,n.b-n.a) -m=new A.Br(0,o,n,p,o,new A.bI(0,n.f.length),0)}else m=null -d1=d0.gqS() -l=d1.x0(d2) -k=d1.x0(d3) -s=d0.e -r=s.length -q=A.c([],t.MH) -j=new A.YN(d2,l,new A.bI(l.a,k.b),d4,r,B.ag,q) -r=d0.d -h=r.length -p=d2.a -o=d3.b -g=o-1 -f=-1 -e=0 -for(;;){if(!(ep&&d.a<=g -if(c&&f===-1)f=e -if(!c&&f>-1){i=e -break}++e}b=A.bcd(r,f,i===-1?h:i) -r=m!=null -if(r&&d0.a.a.b===B.aj){g=m.geH() -a=g.c-g.a}else a=0 -for(g=b.$ti,d=new A.bf(b,b.gH(0),g.i("bf")),a0=d0.a,a1=a0.b,a2=t.fm,a3=d0.f,a4=t.NJ,a5=d2.b,a6=d3.a,g=g.i("aE.E"),a7=0;d.v();){a8=d.d -if(a8==null)a8=g.a(a8) -a9=a8.b -b0=a9.a -a9=a9.b -b1=new A.iU(Math.max(b0,p),Math.min(a9,a5)) -b0=Math.max(b0,a6) -a9=Math.min(a9,o) -b2=new A.iU(b0,a9) -b3=d1.x0(b1.E(b2)) -b4=b0c1&&b7<=c2-1))continue -c1=Math.max(b7,c1) -c2=Math.min(b8,c2) -c3=new A.bI(c1,c2) -c0.k(0) -b3.k(0) -c3.k(0) -c4=d1.CY(c1,c2) -if(c0 instanceof A.ru){q.push(new A.rt(a,c0,a8,c4,c3,a)) -c5=c0.f}else{c6=(b6?a3[c4.a]:a3[c4.b-1]).geH() -a2.a(c0) -c7=new A.oQ(a-c6.a,c4,c0,a8,c4,c3,a) -q.push(c7) -c6=Math.max(c1,b0) -c8=Math.min(c2,b5) -c9=d1.x0(b1) -c1=Math.max(c1,c9.a) -c9=Math.min(c2,c9.b) -if(c60)if(!m)if(n)l.z=i-l.Q -else if(o)l.z=i/2 -j.k(0) -g.k(0)}}, -a2c(a6,a7,a8,a9){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=new A.bI(a6,a7),a5=A.c([],t.Lx) -for(s=this.e,r=a9===B.pH,q=a8.a,p=t.fm,o=this.a,n=o.a,m=n.r,l=m==null,k=a7-1,n=n.b,j=0;ja6&&h.a<=k))continue -for(h=i.as,g=h.length,f=0;f0.001)B.b.mh(a5,0,new A.eC(0,B.b.gad(a5).b,B.b.gad(a5).a,B.b.gad(a5).d,n)) -if(Math.abs(B.b.gaC(a5).c-o.Q)>0.001)a5.push(new A.eC(B.b.gaC(a5).c,B.b.gad(a5).b,o.Q,B.b.gad(a5).d,n))}for(h=a5.length,f=0;fp)return new A.ap(m.a.a,B.k) -else if(l.dk)continue -j.k(0) -new A.w(f,i.b+h-0.001,g,i.d+h+0.001).k(0) -a1.k(0) -i=(j.b&1)===0 -h=j.c -e=i?h.a:h.b-1 -d=i?h.b:h.a-1 -c=i?1:-1 -for(b=e;b!==d;b+=c){a=l[b] -i=a.geH() -h=m.w.a+m.z+j.gDW() -g=m.w.b+m.x -f=i.a+h-0.001 -h=i.c+h+0.001 -a0=new A.w(f,i.b+g-0.001,h,i.d+g+0.001) -a0.k(0) -a1.k(0) -if(a0.q(0,a1))if(k-f<=h-k)return new A.ap(a.gbA().a+a.ghy(),B.k) -else if(a.gbA().a+a.gkZ()===s)return new A.ap(a.gbA().a+a.gkZ()-1,B.k) -else return new A.ap(a.gbA().a+a.gkZ(),B.at)}}return new A.ap(r.b-1,B.k)}return new A.ap(s,B.at)}, -qd(a){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=i.a,f=g.c.length -if(f===0||a<0||a>=f)return h -s=i.gqS().CY(a,a+1) -f=s.a -r=s.b -if(f===r)return h -q=g.a2i(a) -if(q==null)return h -p=i.e[q] -for(g=p.as,o=g.length,n=0;nf)continue}g=Math.max(l,f) -Math.min(k,r) -j=i.f[g] -g=j.geH() -k=p.w.a+p.z+m.gDW() -o=p.w.b+p.x -return new A.nT(new A.w(g.a+k,g.b+o,g.c+k,g.d+o),new A.bI(j.gbA().a+j.ghy(),j.gbA().a+j.gkZ()),i.ab5(s))}return h}, -fM(a){var s,r,q,p,o=a+1 -for(s=this.c,r=o;r>0;){--r -s===$&&A.a() -if((s.b[r]&16)!==0)break}s===$&&A.a() -s=s.b -q=s.length -p=o -while(pa)return new A.bI(o,p.b)}return B.be}} -A.ax1.prototype={ -$2(a,b){return B.j.bt(a.gbA().a+a.ghy(),b.gbA().a+b.ghy())}, -$S:249} -A.aKd.prototype={ -aog(a,b,c){var s=this.c -s.$flags&2&&A.az(s) -s[c]=b;++this.d}, -CY(a,b){var s,r,q=this -if(a<0||b>q.a||a>b)throw A.i(A.c1("TextRange ["+a+":"+b+") is out of paragraph text range: [0:"+q.a,null)) -if(a===q.a){s=q.b.length -return new A.iU(s,s)}if(a===b){r=q.c[a] -return new A.iU(r,r)}s=q.c -return new A.iU(s[a],s[b-1]+1)}, -x0(a){var s,r,q,p=a.a,o=this.b -if(p===o.length){p=this.a -return new A.bI(p,p)}s=o[p] -r=a.b -if(p===r){p=s.gbA().a+s.ghy() -return new A.bI(p,p)}q=o[r-1] -return new A.bI(Math.min(s.gbA().a+s.ghy(),q.gbA().a+q.gkZ()),Math.max(s.gbA().a+s.ghy(),q.gbA().a+q.gkZ()))}} -A.kd.prototype={ -k(a){var s=this -return"WebCluster ["+(s.gbA().a+s.ghy())+":"+(s.gbA().a+s.gkZ())+")"}} -A.FV.prototype={ -gqr(){return this.a.c}, -gkT(){var s,r,q,p,o,n=this,m=n.d -if(m===$){s=n.a.gnf().getActualBoundingBox(n.b,n.c) -r=s.left -q=s.top -p=s.width -o=s.height -n.d!==$&&A.aK() -m=n.d=new A.w(r,q,r+p,q+o)}return m}, -geH(){var s,r=this,q=r.e -if(q===$){s=A.ag0(r.a.gnf(),r.b,r.c) -r.e!==$&&A.aK() -r.e=s -q=s}return q}, -Bg(a,b,c){A.b7h(a,this.f,0,this.a.giY(),A.aG(["x",b,"y",c],t.N,t.i))}, -k(a){var s=this.a.a,r=s+this.b -s+=this.c -return"TextCluster ["+r+":"+s+") "+(s-r)}, -gbA(){return this.a}, -ghy(){return this.b}, -gkZ(){return this.c}} -A.Q2.prototype={ -gqr(){return this.b.c}, -gkT(){var s=this.e -return s===$?this.e=new A.w(0,0,0,0+this.a):s}, -geH(){var s=this.f -return s===$?this.f=new A.w(0,0,0,0+this.a):s}, -Bg(a,b,c){}, -k(a){var s=""+this.b.a -return"EmptyCluster ["+s+":"+s+")"}, -gbA(){return this.b}, -ghy(){return 0}, -gkZ(){return 0}} -A.wt.prototype={ -gqr(){return this.a.c}, -gkT(){var s,r=this.d -if(r===$){s=this.a -r=this.d=new A.w(0,0,0+s.f,0+s.r)}return r}, -geH(){return this.gkT()}, -Bg(a,b,c){}, -gbA(){return this.a}, -ghy(){return 0}, -gkZ(){return this.c}} -A.qW.prototype={} -A.oQ.prototype={ -gbA(){return t.fm.a(this.a)}, -geH(){var s,r,q,p,o=this,n=o.f -if(n===$){s=t.fm.a(o.a) -r=o.d -q=s.a -p=A.ag0(s.gnf(),r.a-q,r.b-q) -q=o.e -r=p.b -o.f!==$&&A.aK() -n=o.f=new A.w(q,r,q+(p.c-p.a),r+(p.d-r))}return n}, -gS8(){if(this.gbA().c.ay==null)var s=1 -else{s=this.gbA().c.ay -s.toString}return s}, -gDW(){return this.r}} -A.rt.prototype={ -gbA(){return t.mX.a(this.a)}, -geH(){var s=this.f -s===$&&A.a() -return s}, -api(a,b){var s,r,q,p=this,o=t.mX,n=o.a(p.a).x===B.a6?b/2:0,m=o.a(p.a).r,l=o.a(p.a).y -switch(o.a(p.a).w.a){case 0:p.w!==$&&A.bs() -p.w=0-n+l -p.x!==$&&A.bs() -p.x=n+m-l -break -case 1:p.w!==$&&A.bs() -p.w=m-n -p.x!==$&&A.bs() -p.x=n -break -case 2:p.w!==$&&A.bs() -p.w=0-n -p.x!==$&&A.bs() -p.x=n+m -break -case 3:p.w!==$&&A.bs() -p.w=a -p.x!==$&&A.bs() -p.x=m-a -break -case 4:p.w!==$&&A.bs() -p.w=m-b -p.x!==$&&A.bs() -p.x=b -break -case 5:s=(a+b-m)/2 -p.w!==$&&A.bs() -p.w=a-s -p.x!==$&&A.bs() -p.x=b-s -break}r=p.w -r===$&&A.a() -q=a-r -r=p.r -o=new A.w(r,q,r+o.a(p.a).f,q+o.a(p.a).r) -p.f!==$&&A.bs() -p.f=o -o.k(0) -p.x===$&&A.a()}, -gDW(){return this.r}} -A.Br.prototype={} -A.YN.prototype={ -Dv(){var s=this,r=s.x,q=s.y,p=s.w,o=p.b,n=p.a -$.ab() -return new A.vu(s.f,r,q,r,p.d-o,p.c-n,n,o+r,s.r)}} -A.ax3.prototype={ -SV(a2,a3,a4,a5,a6,a7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1 -for(s=a5.as,r=s.length,q=a2.a,p=t.fm,o=t.NJ,n=this.b,m=$.bx.a,l=a3.a,k=0;k=a4||0>=a1)continue -switch(q){case 1:c=$.ut() -c.save() -b=d.gqr().x -b.toString -b=J.bG(b) -a2=a2-100+100 -a4=a4+100+100 -a1=a1+100+100 -while(b.v()){a=b.gT() -a0=i?j:o -a8=d.gqr() -a5=a8.r -if(a5!=null)a5=A.bu(a5.r) -else{a5=a8.f -a5=a5!=null?a5:B.l}a5=A.mj(A.ul(a5.gp())) -c.fillStyle=a5 -a5=a.a -c.shadowColor=A.ul(a5.gp()) -c.shadowBlur=a.c -a=a.b -c.shadowOffsetX=a.a -c.shadowOffsetY=a.b -A.ul(a5.gp()) -if(a0)a=0 -else{a=d.geH() -a=a.c-a.a}d.Bg(c,a+100,100) -a=a7.a -a0=a7.b -a5=a7.c -a6=a7.d -a9=$.Mb().transferToImageBitmap() -b0=$.bx.b -if(b0===$.bx)A.a0(A.qS(n)) -b0=b0.MakeLazyImageFromTextureSource(a9,0,!0) -if(b0==null)A.a0(A.cX(b3)) -b1=new A.C_(a9) -b2=new A.pT(b1) -b2.Er(b0,b1) -$.ab() -b5.AP(b2,new A.w(a2,0,a4,a1),new A.w(a-100,a0-100,a5+100,a6+100),new A.jB(B.c8,B.bJ,B.dE,B.ek,B.cq))}c.restore() -break -case 3:c=i?j:o -a8=d.gqr() -b=$.ut() -a=a8.r -if(a!=null)a=A.bu(a.r) -else{a=a8.f -a=a!=null?a:B.l}a=A.mj(A.ul(a.gp())) -b.fillStyle=a -if(c)c=0 -else{c=d.geH() -c=c.c-c.a}d.Bg(b,c,0) -a9=$.Mb().transferToImageBitmap() -c=$.bx.b -if(c===$.bx)A.a0(A.qS(n)) -c=c.MakeLazyImageFromTextureSource(a9,0,!0) -if(c==null)A.a0(A.cX(b3)) -b=new A.C_(a9) -b2=new A.pT(b) -b2.Er(c,b) -$.ab() -b5.AP(b2,new A.w(a2,0,a4,a1),a7,new A.jB(B.c8,B.bJ,B.dE,B.ek,B.cq)) -break}}}}} -A.apk.prototype={ -ay7(a){var s,r=$.b1w -if(r===a)return -if(r!=null)$.ut().restore() -r=$.Mb() -r.width=Math.ceil(1000*a) -r.height=Math.ceil(500*a) -s=$.ut() -s.scale(a,a) -s.save() -$.b1w=a -A.j(r.width) -A.j(r.height)}} -A.adZ.prototype={ -asj(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g -A.b7i($.ut(),A.ul(a.gbA().c.a2g().gp())) -s=a.gbA().c -r=s.c -r.toString -s=s.as -if(s==null)s=1 -q=r/14*s -for(s=[B.aa6,B.ib,B.aa5],r=b.a,p=b.b,o=r+(b.c-r),n=0;n<3;++n){m=s[n] -l=a.gbA().c.y.a -if((l|m.a)!==l)continue -k=this.apj(m,q,a.gbA().giY()+a.gbA().gpw(),a.gbA().giY()) -m.k(0) -j=p+k -l=$.ut() -l.reset() -l.lineWidth=q -i=A.mj(A.ul(a.gbA().c.z.gp())) -l.strokeStyle=i -switch(a.gbA().c.Q.a){case 4:this.apk(r,j,a.gbA().c,b,q) -break -case 1:h=j+3+q -l.beginPath() -l.moveTo(r,j) -l.lineTo(o,j) -l.moveTo(r,h) -l.lineTo(o,h) -l.stroke() -break -case 3:case 2:g=new Float32Array(2) -i=a.gbA().c.Q -i.toString -g[0]=q*(i===B.aa4?1:4) -g[1]=q -l.setLineDash(g) -l.beginPath() -l.moveTo(r,j) -l.lineTo(o,j) -l.stroke() -break -case 0:l.beginPath() -l.moveTo(r,j) -l.lineTo(o,j) -l.stroke() -A.ul(a.gbA().c.z.gp()) -break}}}, -apj(a,b,c,d){var s=a.a -if(s===1)return b+d -if(s===2)return b/2 -if(s===4)return c/2 -return 0}, -apk(a,b,c,d,e){var s,r,q,p,o,n,m=b+e,l=$.ut() -l.beginPath() -for(s=e*2,r=d.c-d.a,q=0,p=0;o=p+s,o0)l.quadraticCurveTo(p,m+e*((q&1)===0?1:-1),p+n,m) -l.stroke()}} -A.GA.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.GA&&s.b===b.b&&s.c===b.c&&s.d==b.d&&s.e==b.e&&J.b(s.f,b.f)&&J.b(s.r,b.r)&&s.a.j(0,b.a)}, -gt(a){var s=this -return A.N(s.b,s.c,s.d,s.e,s.f,s.r,s.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return this.kI(0)}, -arE(){var s=this.c -if(s===B.aN)return this.b===B.i?B.dF:B.em -else if(s===B.l6)return this.b===B.i?B.em:B.dF -else return s}} -A.xv.prototype={ -N(){return"StyleElements."+this.b}} -A.GC.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(!(b instanceof A.GC))return!1 -return b.a==s.a&&A.hR(b.b,s.b)&&b.c==s.c&&b.d==s.d&&J.b(b.e,s.e)&&J.b(b.f,s.f)&&A.b1W(b.r,s.r)&&A.b1W(b.w,s.w)&&A.hR(b.x,s.x)&&J.b(b.y,s.y)&&J.b(b.z,s.z)&&b.Q==s.Q&&b.as==s.as&&b.at==s.at&&b.ax==s.ax&&b.ay==s.ay&&b.ch==s.ch&&b.CW==s.CW&&J.b(b.cx,s.cx)&&A.hR(b.cy,s.cy)&&A.hR(b.db,s.db)}, -gt(a){var s=this,r=null,q=s.b,p=s.x,o=s.cy,n=s.db,m=q==null?r:A.bh(q),l=p==null?r:A.bh(p),k=o==null?r:A.bh(o) -return A.N(s.a,m,s.c,s.d,s.e,s.f,s.r,s.w,l,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,A.N(k,n==null?r:A.bh(n),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a))}, -a2g(){var s=this.r -if(s!=null)s=A.bu(s.r) -else{s=this.f -s=s!=null?s:B.l}return s}, -k(a){return this.kI(0)}, -a9e(a){var s,r,q,p=this.cy -if(p==null)return -s=A.c([],t.xU) -for(p=J.bG(p),r=!1;p.v();){q=p.gT() -switch(q.gYV()){case"smcp":q.gp() -a.fontVariantCaps="small-caps" -break -case"c2sc":q.gp() -a.fontVariantCaps="all-small-caps" -break -case"pcap":q.gp() -a.fontVariantCaps="petite-caps" -break -case"c2pc":q.gp() -a.fontVariantCaps="all-petite-caps" -break -case"unic":q.gp() -a.fontVariantCaps="unicase" -break -case"titl":q.gp() -a.fontVariantCaps="titling-caps" -break -default:s.push(q) -q.gp() -r=!0}}if(s.length!==0){p=r?"optimizeLegibility":"optimizeSpeed" -a.textRendering=p -A.a_(a.canvas.style,"font-feature-settings",A.bjW(s))}}, -ZV(a){var s,r=this -switch(a.a){case 0:s=r.w -return s!=null&&A.bu(s.r).a!==0 -case 1:s=r.x -return s!=null&&J.jt(s) -case 2:s=r.y -if(s!=null){s=s.a -s=0!==s&&r.Q!=null&&r.z!=null}else s=!1 -return s -case 3:return!0}}} -A.iU.prototype={ -E(a){var s,r,q=a.b,p=a.a -if(q-p<0)return this -else{s=this.b -r=this.a -if(s-r<0)return a}return new A.iU(Math.min(r,p),Math.max(s,q))}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -return b instanceof A.iU&&b.a===this.a&&b.b===this.b}, -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"ClusterRange ["+this.a+":"+this.b+")"}} -A.ws.prototype={} -A.ru.prototype={ -giY(){return this.r}, -gpw(){return 0}, -JT(){return A.c([new A.wt(this,this.b-this.a)],t.tg)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -return b instanceof A.ru&&b.a===s.a&&b.b===s.b&&b.c.j(0,s.c)&&b.f===s.f&&b.r===s.r&&b.w===s.w&&b.x===s.x&&b.y===s.y}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.f,s.r,s.w,s.x,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.tB.prototype={ -gnf(){var s,r,q,p,o,n,m=this,l="normal",k=m.w -if(k===$){s=m.c -r=$.aUy() -q=s.d -if(q==null)p=null -else{q=q===B.aS?l:"italic" -p=q}if(p==null)p=l -q=s.e -o=q==null?null:A.aTn(q.gpD()) -if(o==null)o=l -q=s.c -n=B.d.ih(q==null?14:q) -q=A.aT9(s.a) -q.toString -r.font=p+" "+o+" "+n+"px "+q -q=s.at -q=q!=null?A.j(q)+"px":"0px" -r.letterSpacing=q -q=s.ax -q=q!=null?A.j(q)+"px":"0px" -r.wordSpacing=q -s.a9e(r) -s=m.r===B.i?"ltr":"rtl" -r.direction=s -k=r.measureText(m.f) -m.w!==$&&A.aK() -m.w=k}return k}, -giY(){var s,r=this,q=r.x -if(q===$){s=r.gnf().fontBoundingBoxAscent -r.x!==$&&A.aK() -r.x=s -q=s}return q}, -gpw(){var s,r=this,q=r.y -if(q===$){s=r.gnf().fontBoundingBoxDescent -r.y!==$&&A.aK() -r.y=s -q=s}return q}, -JT(){var s,r,q,p=A.c([],t.bG),o=this.gnf().getTextClusters() -o=B.b.eI(o,t.m) -s=o.$ti -o=new A.bf(o,o.gH(0),s.i("bf")) -s=s.i("aX.E") -while(o.v()){r=o.d -if(r==null)r=s.a(r) -q=r.begin -if(q==null)q=r.start -p.push(new A.FV(this,q,r.end,r))}return p}, -MT(a,b){var s,r,q,p,o=a.d,n=A.b7Q(o,b),m=n.a,l=n.b -if(m===l)return B.ag -s=this.gnf() -r=this.a -m-=r -q=A.ag0(s,o.a-r,m) -p=A.ag0(s,m,l-r) -r=p.a -l=a.e+r-q.a -m=p.b -return new A.w(l,m,l+(p.c-r),m+(p.d-m))}, -k(a){var s=this -return"TextSpan("+s.a+", "+s.b+', "'+s.f+'", '+s.c.k(0)+")"}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -return b instanceof A.tB&&b.a===s.a&&b.b===s.b&&b.c.j(0,s.c)&&b.f===s.f}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.GB.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.GB&&b.a==s.a&&b.c==s.c&&b.d==s.d&&b.e==s.e&&b.x==s.x&&J.b(b.f,s.f)&&b.r==s.r&&b.w==s.w&&A.hR(b.b,s.b)}, -gt(a){var s=this,r=s.b -r=r!=null?A.bh(r):null -return A.N(s.a,r,s.c,s.d,s.e,s.x,s.f,s.r,s.w,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -aph(){var s,r,q,p,o,n,m,l,k,j=this,i="normal",h=j.c,g=h==null -if(g||h<0)return -s=j.r -if(s==null)r=null -else{s=s===B.aS?i:"italic" -r=s}if(r==null)r=i -s=j.f -q=s==null?null:A.aTn(s.gpD()) -if(q==null)q=i -p=B.d.ih(g?14:h) -s=A.aT9(j.a) -s.toString -o=$.aUy() -o.font=r+" "+q+" "+p+"px "+s -n=o.measureText("") -m=j.d -if(m!=null)if(j.x===B.A){l=(m*h-(n.fontBoundingBoxAscent+n.fontBoundingBoxDescent))/2 -j.y=n.fontBoundingBoxAscent+l -j.z=n.fontBoundingBoxDescent+l}else{k=n.fontBoundingBoxAscent+n.fontBoundingBoxDescent -m=k===0?m:m*h/k -j.y=n.fontBoundingBoxAscent*m -j.z=n.fontBoundingBoxDescent*m}else{j.y=n.fontBoundingBoxAscent -j.z=n.fontBoundingBoxDescent}}} -A.Zg.prototype={ -xd(){return this.giK().xd()}, -xe(a,b,c,d){var s=this.giK().a2c(a,b,c,d) -c.k(0) -d.k(0) -A.j(s) -return s}, -Dn(a,b,c){return this.xe(a,b,c,B.d4)}, -ds(a){var s=this.c.length===0?B.fE:this.giK().ds(a) -a.k(0) -s.k(0) -return s}, -MF(a){var s="TextAffinity.",r=this.ds(a),q=this.qd(r.a) -if(q==null){B.c.tk(r.b.N(),s,"") -return null}B.c.tk(r.b.N(),s,"") -q.a.k(0) -B.c.tk(q.c.N(),"TextDirection.","") -return q}, -qd(a){var s -if(a<0||a>=this.c.length)return null -s=this.giK().qd(a) -A.j(s) -return s}, -fM(a){var s,r,q -switch(a.b.a){case 0:s=a.a-1 -break -case 1:s=a.a -break -default:s=null}if(s<0)return B.aar -r=this.c.length -if(s>=r)return new A.bI(r,r) -q=this.giK().fM(s) -a.k(0) -q.k(0) -return q}, -hu(a){var s,r,q=this,p=q.giK(),o=a.a -if(p.b){p.b=!1 -s=p.a -r=s.c -r=new A.acs(r,new Uint8Array(r.length+1)) -r.ac5() -p.c!==$&&A.bs() -p.c=r -p.as5() -s=s.a.r -if(s!=null)s.aph() -p.as4()}p.azg(o) -p.asF(o) -B.d.aq(o,4) -B.d.aq(q.z,4) -B.d.aq(q.f,4) -B.d.aq(q.y,4) -B.d.aq(q.x,4) -B.d.aq(q.w,4) -B.d.aq(q.Q,4)}, -b1(a,b){var s,r,q,p,o,n,m,l,k=this.gaj3() -$.zm.toString -s=$.dm() -r=s.d -s=r==null?s.gcN():r -k.b.ay7(s) -for(s=this.giK(),r=s.e,q=r.length,p=b.a,o=b.b,n=0;n=this.giK().e.length)return null -s=this.giK().e -s[a].Dv().k(0) -return s[a].Dv()}, -gLk(){return this.giK().e.length}, -a2i(a){var s,r,q,p,o -if(a<0||a>=this.c.length)return null -for(s=this.giK().e,r=s.length,q=0;qa)break -return p.r}return null}, -l(){}, -giK(){var s,r,q,p,o=this,n=o.at -if(n===$){s=A.c([],t.tM) -r=A.c([],t.zs) -q=t.Uu -p=A.c([],q) -q=A.c([],q) -o.at!==$&&A.aK() -n=o.at=new A.ax0(o,s,r,p,q)}return n}, -gaj3(){var s=this.ax -return s===$?this.ax=new A.ax3(this,new A.adZ()):s}, -gWD(){return 0}, -gYt(){return!1}, -gbY(){return this.f}, -ga_5(){return 0}, -ga_W(){return this.w}, -gpT(){return this.x}, -gLe(){return this.y}, -gmF(){return this.z}} -A.ay0.prototype={ -zU(a,b,c,d,e){var s,r,q,p,o=this -c.k(0) -A.j(d) -o.EZ() -s=o.d -r=s.a -o.rf("\ufffc") -s=s.a -q=B.b.gaC(o.c).Lc() -p=e==null?b:e -o.b.push(new A.ru(a,b,c,B.u,p,q,r.length,s.length)) -o.e=null -o.f=new A.cf("");++o.r -o.w.push(1)}, -Ww(a,b,c){return this.zU(a,b,c,null,null)}, -rf(a){var s=this -if(a.length===0)return -if(s.alz())s.EZ() -s.e=B.b.gaC(s.c).Lc() -s.f.a+=a -s.d.a+=a}, -alz(){var s=this.e -if(s==null)return!1 -return!s.j(0,B.b.gaC(this.c).Lc())}, -EZ(){var s,r,q=this,p=q.e -if(p==null)return -s=q.d.a.length -r=q.f.a -q.b.push(A.aS9(s,s-r.length,p,r.charCodeAt(0)==0?r:r,q.a.b)) -q.e=null -q.f=new A.cf("")}, -aM(){var s,r,q,p=this -p.EZ() -s=p.d.a -r=p.b -for(q=0;q1)s.pop()}, -tc(a){var s=this.c -s.push(new A.N8(B.b.gaC(s),t.Vu.a(a)))}} -A.xw.prototype={ -Lc(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this,a=b.a -if(a==null){a=b.gF1() -s=b.gFq() -r=b.gFr() -q=b.gFs() -p=b.gFt() -o=b.gFT() -n=b.gFR() -m=b.gHx() -l=b.gEt() -k=b.gFO() -j=b.gFP() -i=b.gFS() -h=b.gFQ() -g=b.gGy() -f=b.gI6() -e=b.gGm() -d=b.gGx() -c=b.gGC() -f=b.a=A.aSo(b.gEJ(),a,s,r,q,p,l,k,j,h,n,i,o,b.gFV(),e,d,g,c,b.gHm(),m,f) -a=f}return a}} -A.N8.prototype={ -gF1(){var s=this.c.f -return s==null?this.b.gF1():s}, -gFq(){var s=this.c.y -return s==null?this.b.gFq():s}, -gFr(){var s=this.c.z -return s==null?this.b.gFr():s}, -gFs(){var s=this.c.Q -return s==null?this.b.gFs():s}, -gFt(){var s=this.c.as -return s==null?this.b.gFt():s}, -gFT(){var s=this.c.e -return s==null?this.b.gFT():s}, -gFR(){var s=this.c.d -return s==null?this.b.gFR():s}, -gHx(){var s=this.c.ch -return s==null?this.b.gHx():s}, -gFO(){var s=this.c.b -return s==null?this.b.gFO():s}, -gFP(){var s=this.c.cy -return s==null?this.b.gFP():s}, -gFS(){var s=this.c.db -return s==null?this.b.gFS():s}, -gFQ(){var s=this.c.c -return s==null?this.b.gFQ():s}, -gGy(){var s=this.c.at -return s==null?this.b.gGy():s}, -gI6(){var s=this.c.ax -return s==null?this.b.gI6():s}, -gGm(){var s=this.c.ay -if(s===0)s=null -else if(s==null)s=this.b.gGm() -return s}, -gGx(){var s=this.c.CW -return s==null?this.b.gGx():s}, -gGC(){var s=this.c.cx -return s==null?this.b.gGC():s}, -gEJ(){var s=this.c.w -return s==null?this.b.gEJ():s}, -gFV(){var s=this.c.r -return s==null?this.b.gFV():s}, -gHm(){var s=this.c.x -return s==null?this.b.gHm():s}, -gEt(){var s=this.c.a -return s==null?this.b.gEt():s}} -A.Vg.prototype={ -gF1(){return null}, -gFq(){return null}, -gFr(){return null}, -gFs(){return null}, -gFt(){return null}, -gFT(){return this.b.e}, -gFR(){return this.b.d}, -gHx(){return null}, -gEt(){var s=this.b.a -return s==null?"sans-serif":s}, -gFO(){return null}, -gFP(){return null}, -gFS(){return null}, -gFQ(){var s=this.b.c -return s==null?14:s}, -gGy(){return null}, -gI6(){return null}, -gGm(){return this.b.ay}, -gGx(){return null}, -gGC(){return this.b.cx}, -gEJ(){var s=this.b.w -if(s==null){$.ab() -s=A.bt()}s.r=B.D.gp() -return s}, -gFV(){return null}, -gHm(){return null}} -A.axe.prototype={ -ap3(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=h.a,f=new A.aDO(g,a) -for(s=g.f,r=!1,q=0;qr}, -gatI(){var s=this.e,r=this.f -return s!==r}, -avy(a){this.ax=!0 -this.rt()}, -rt(){var s=this,r=s.z,q=s.y -s.z=Math.max(r,q) -r=s.r -if(r<=s.f)return -s.f=s.e=r -s.w=s.w+(s.x+q) -s.y=s.x=0}, -K(a){var s,r=this,q=r.Q,p=r.w -r.Q=Math.max(q,p) -r.as=Math.max(r.as,p) -r.at=Math.max(r.at,p+r.x) -p=r.d -q=r.e -s=r.a.aop(new A.iU(p,q),new A.iU(q,r.f),a,r.c) -r.ax=!1 -r.e=r.d=r.f -r.x=r.w=0 -r.c+=s -return s}, -CF(){var s=this.a,r=s.a.a.d -if(r==null)return!1 -return s.e.length>=r}, -YP(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this -if(d.CF())return!1 -s=d.a -r=s.a.a.e -q=r==null -if(q||r.length===0)return!0 -for(p=d.b,o=s.f,n=r.length,m=t.m,l=$.bx.a,k=0;;){if(a<=d.d)return!1;--a -j=o[a] -i=j.geH() -h=i.c-i.a -i=j.gqr() -if(q)g=s.x=0 -else{g=s.x -if(g==null){g=$.bx.b -if(g===$.bx)A.a0(A.qS(l)) -g=g.Bidi.getBidiRegions(r,$.aPY()[1]) -f=B.b.eI(g,m) -if(f.gH(0)===0)A.a0(A.cD()) -g=f.h(0,0).level -s.x=g}}g.toString -e=new A.tB(r,(g&1)===0?B.i:B.aj,i,0,n) -i=e.gnf() -i.width.toString -k+=h -g=s.c -g===$&&A.a() -if((g.b[j.gbA().a+j.ghy()]&1)===0){i=i.width -i.toString -if(d.w+d.x+d.y+(i-k)<=p){s.w=e.JT() -break}}if(a>=d.f){d.y-=h -d.r=a}else if(a>=d.e){d.x-=h -d.f=a}else{d.w-=h -d.f=d.e=a}}return!0}} -A.lT.prototype={ -OF(a,b,c,d){var s,r,q,p=this,o=p.c,n=p.gfZ().a -o.WW(n) -s=$.aRe -s=s==null?null:s.gFi() -s=new A.apN(p,new A.apO(),s) -r=$.bN().gfi()===B.c9&&$.bN().ge3()===B.bs -if(r){r=$.b34() -s.a=r -r.aze()}s.f=s.aaN() -p.z!==$&&A.bs() -p.z=s -s=p.ch.ga0h().nT(p.gado()) -p.d!==$&&A.bs() -p.d=s -q=p.r -if(q===$){o=o.gnR() -p.r!==$&&A.aK() -q=p.r=new A.aj5(n,o)}$.ab() -o=A.ac(p.a) -o.toString -q.a.setAttribute("flt-view-id",o) -o=q.b -n=A.ac("canvaskit") -n.toString -o.setAttribute("flt-renderer",n) -n=A.ac("release") -n.toString -o.setAttribute("flt-build-mode",n) -n=A.ac("false") -n.toString -o.setAttribute("spellcheck",n) -$.jo.push(p.gdm())}, -l(){var s,r,q=this -if(q.f)return -q.f=!0 -s=q.d -s===$&&A.a() -s.bg() -q.ch.bn() -s=q.z -s===$&&A.a() -r=s.f -r===$&&A.a() -r.l() -s=s.a -if(s!=null){r=s.a -if(r!=null){v.G.document.removeEventListener("touchstart",r) -s.a=null}}q.gfZ().a.remove() -$.ab() -$.b5X.aa(0) -q.gxx().iu()}, -gXG(){var s,r=this,q=r.x -if(q===$){s=r.gfZ() -r.x!==$&&A.aK() -q=r.x=new A.aeK(s.a)}return q}, -gfZ(){var s,r,q,p,o,n,m,l,k="flutter-view",j=this.y -if(j===$){s=$.dm() -r=s.d -s=r==null?s.gcN():r -r=v.G -q=A.cw(r.document,k) -p=A.cw(r.document,"flt-glass-pane") -o=A.ac(A.aG(["mode","open","delegatesFocus",!1],t.N,t.z)) -o.toString -o=p.attachShadow(o) -n=A.cw(r.document,"flt-scene-host") -m=A.cw(r.document,"flt-text-editing-host") -l=A.cw(r.document,"flt-semantics-host") -q.appendChild(p) -q.appendChild(m) -q.appendChild(l) -o.append(n) -A.aZB(k,q,"flt-text-editing-stylesheet",A.dU().ga08()) -A.aZB("",o,"flt-internals-stylesheet",A.dU().ga08()) -o=A.dU().gJa() -A.a_(n.style,"pointer-events","none") -if(o)A.a_(n.style,"opacity","0.3") -r=l.style -A.a_(r,"position","absolute") -A.a_(r,"transform-origin","0 0 0") -A.a_(l.style,"transform","scale("+A.j(1/s)+")") -this.y!==$&&A.aK() -j=this.y=new A.afY(q,n,m,l)}return j}, -gxx(){var s,r=this,q=r.as -if(q===$){s=A.b7P(r.a,r.gfZ().f) -r.as!==$&&A.aK() -r.as=s -q=s}return q}, -gwF(){var s=this.at -return s==null?this.at=this.F8():s}, -F8(){var s=this.ch.IO() -return s}, -adp(a){var s,r=this,q=r.gfZ(),p=$.dm(),o=p.d -p=o==null?p.gcN():o -A.a_(q.f.style,"transform","scale("+A.j(1/p)+")") -s=r.F8() -if(!B.oi.q(0,$.bN().ge3())&&$.uu().c&&!r.agX(s))r.PV(!0) -else{r.at=s -r.PV(!1)}r.b.KP()}, -agX(a){var s,r,q=this.at -if(q!=null){s=q.b -r=a.b -if(s!==r&&q.a!==a.a){q=q.a -if(!(s>q&&rs&&a.a").bN(b).i("fk<1,2>"))}, -G(a,b){a.$flags&1&&A.az(a,29) -a.push(b)}, -kx(a,b){a.$flags&1&&A.az(a,"removeAt",1) -if(b<0||b>=a.length)throw A.i(A.aq5(b,null)) -return a.splice(b,1)[0]}, -mh(a,b,c){a.$flags&1&&A.az(a,"insert",2) -if(b<0||b>a.length)throw A.i(A.aq5(b,null)) -a.splice(b,0,c)}, -rY(a,b,c){var s,r -a.$flags&1&&A.az(a,"insertAll",2) -A.aXx(b,0,a.length,"index") -if(!t.Ee.b(c))c=J.Mf(c) -s=J.cg(c) -a.length=a.length+s -r=b+s -this.ej(a,r,a.length,a,b) -this.jY(a,b,r,c)}, -jQ(a){a.$flags&1&&A.az(a,"removeLast",1) -if(a.length===0)throw A.i(A.abM(a,-1)) -return a.pop()}, -J(a,b){var s -a.$flags&1&&A.az(a,"remove",1) -for(s=0;s"))}, -a_(a,b){var s -a.$flags&1&&A.az(a,"addAll",2) -if(Array.isArray(b)){this.a8L(a,b) -return}for(s=J.bG(b);s.v();)a.push(s.gT())}, -a8L(a,b){var s,r=b.length -if(r===0)return -if(a===b)throw A.i(A.cd(a)) -for(s=0;s").bN(c).i("am<1,2>"))}, -bJ(a,b){var s,r=A.bO(a.length,"",!1,t.N) -for(s=0;ss)throw A.i(A.cR(b,0,s,"start",null)) -if(c==null)c=s -else if(cs)throw A.i(A.cR(c,b,s,"end",null)) -if(b===c)return A.c([],A.a6(a)) -return A.c(a.slice(b,c),A.a6(a))}, -hz(a,b){return this.d1(a,b,null)}, -xk(a,b,c){A.fv(b,c,a.length,null,null) -return A.fN(a,b,c,A.a6(a).c)}, -gad(a){if(a.length>0)return a[0] -throw A.i(A.cD())}, -gaC(a){var s=a.length -if(s>0)return a[s-1] -throw A.i(A.cD())}, -gcM(a){var s=a.length -if(s===1)return a[0] -if(s===0)throw A.i(A.cD()) -throw A.i(A.aWn())}, -axV(a,b,c){a.$flags&1&&A.az(a,18) -A.fv(b,c,a.length,null,null) -a.splice(b,c-b)}, -ej(a,b,c,d,e){var s,r,q,p,o -a.$flags&2&&A.az(a,5) -A.fv(b,c,a.length,null,null) -s=c-b -if(s===0)return -A.dk(e,"skipCount") -if(t.j.b(d)){r=d -q=e}else{p=J.uy(d,e) -r=p.eR(p,!1) -q=0}p=J.bk(r) -if(q+s>p.gH(r))throw A.i(A.aWm()) -if(q=0;--o)a[b+o]=p.h(r,q+o) -else for(o=0;o0){a[0]=q -a[1]=r}return}p=0 -if(A.a6(a).c.b(null))for(o=0;o0)this.akk(a,p)}, -jZ(a){return this.fO(a,null)}, -akk(a,b){var s,r=a.length -for(;s=r-1,r>0;r=s)if(a[s]===null){a[s]=void 0;--b -if(b===0)break}}, -ik(a,b){var s,r=a.length -if(0>=r)return-1 -for(s=0;s"))}, -gt(a){return A.h7(a)}, -gH(a){return a.length}, -sH(a,b){a.$flags&1&&A.az(a,"set length","change the length of") -if(b<0)throw A.i(A.cR(b,0,null,"newLength",null)) -if(b>a.length)A.a6(a).c.a(null) -a.length=b}, -h(a,b){if(!(b>=0&&b=0&&b"))}, -a8(a,b){var s=A.aa(a,A.a6(a).c) -this.a_(s,b) -return s}, -a_9(a,b,c){var s -if(c>=a.length)return-1 -for(s=c;s=0;--s)if(b.$1(a[s]))return s -return-1}, -gez(a){return A.bM(A.a6(a))}, -$ifs:1, -$iaO:1, -$iy:1, -$iU:1} -J.Rh.prototype={ -ayQ(a){var s,r,q -if(!Array.isArray(a))return null -s=a.$flags|0 -if((s&4)!==0)r="const, " -else if((s&2)!==0)r="unmodifiable, " -else r=(s&1)!==0?"fixed, ":"" -q="Instance of '"+A.Uq(a)+"'" -if(r==="")return q -return q+" ("+r+"length: "+a.length+")"}} -J.akt.prototype={} -J.cO.prototype={ -gT(){var s=this.d -return s==null?this.$ti.c.a(s):s}, -v(){var s,r=this,q=r.a,p=q.length -if(r.b!==p)throw A.i(A.C(q)) -s=r.c -if(s>=p){r.d=null -return!1}r.d=q[s] -r.c=s+1 -return!0}} -J.o2.prototype={ -bt(a,b){var s -if(ab)return 1 -else if(a===b){if(a===0){s=this.gwi(b) -if(this.gwi(a)===s)return 0 -if(this.gwi(a))return-1 -return 1}return 0}else if(isNaN(a)){if(isNaN(b))return 0 -return 1}else return-1}, -gwi(a){return a===0?1/a<0:a<0}, -Wn(a){return Math.abs(a)}, -gDT(a){var s -if(a>0)s=1 -else s=a<0?-1:a -return s}, -iw(a){var s -if(a>=-2147483648&&a<=2147483647)return a|0 -if(isFinite(a)){s=a<0?Math.ceil(a):Math.floor(a) -return s+0}throw A.i(A.c2(""+a+".toInt()"))}, -vo(a){var s,r -if(a>=0){if(a<=2147483647){s=a|0 -return a===s?s:s+1}}else if(a>=-2147483648)return a|0 -r=Math.ceil(a) -if(isFinite(r))return r -throw A.i(A.c2(""+a+".ceil()"))}, -ih(a){var s,r -if(a>=0){if(a<=2147483647)return a|0}else if(a>=-2147483648){s=a|0 -return a===s?s:s-1}r=Math.floor(a) -if(isFinite(r))return r -throw A.i(A.c2(""+a+".floor()"))}, -aY(a){if(a>0){if(a!==1/0)return Math.round(a)}else if(a>-1/0)return 0-Math.round(0-a) -throw A.i(A.c2(""+a+".round()"))}, -CS(a){if(a<0)return-Math.round(-a) -else return Math.round(a)}, -eX(a,b,c){if(B.j.bt(b,c)>0)throw A.i(A.zo(b)) -if(this.bt(a,b)<0)return b -if(this.bt(a,c)>0)return c -return a}, -aq(a,b){var s -if(b>20)throw A.i(A.cR(b,0,20,"fractionDigits",null)) -s=a.toFixed(b) -if(a===0&&this.gwi(a))return"-"+s -return s}, -ayy(a,b){var s -if(b<1||b>21)throw A.i(A.cR(b,1,21,"precision",null)) -s=a.toPrecision(b) -if(a===0&&this.gwi(a))return"-"+s -return s}, -oc(a,b){var s,r,q,p -if(b<2||b>36)throw A.i(A.cR(b,2,36,"radix",null)) -s=a.toString(b) -if(s.charCodeAt(s.length-1)!==41)return s -r=/^([\da-z]+)(?:\.([\da-z]+))?\(e\+(\d+)\)$/.exec(s) -if(r==null)A.a0(A.c2("Unexpected toString result: "+s)) -s=r[1] -q=+r[3] -p=r[2] -if(p!=null){s+=p -q-=p.length}return s+B.c.ak("0",q)}, -k(a){if(a===0&&1/a<0)return"-0.0" -else return""+a}, -gt(a){var s,r,q,p,o=a|0 -if(a===o)return o&536870911 -s=Math.abs(a) -r=Math.log(s)/0.6931471805599453|0 -q=Math.pow(2,r) -p=s<1?s/q:q/s -return((p*9007199254740992|0)+(p*3542243181176521|0))*599197+r*1259&536870911}, -a8(a,b){return a+b}, -ac(a,b){return a-b}, -ak(a,b){return a*b}, -cn(a,b){var s=a%b -if(s===0)return 0 -if(s>0)return s -if(b<0)return s-b -else return s+b}, -qx(a,b){if((a|0)===a)if(b>=1||b<-1)return a/b|0 -return this.UV(a,b)}, -el(a,b){return(a|0)===a?a/b|0:this.UV(a,b)}, -UV(a,b){var s=a/b -if(s>=-2147483648&&s<=2147483647)return s|0 -if(s>0){if(s!==1/0)return Math.floor(s)}else if(s>-1/0)return Math.ceil(s) -throw A.i(A.c2("Result of truncating division is "+A.j(s)+": "+A.j(a)+" ~/ "+A.j(b)))}, -a3k(a,b){if(b<0)throw A.i(A.zo(b)) -return b>31?0:a<>>0}, -fU(a,b){var s -if(a>0)s=this.UA(a,b) -else{s=b>31?31:b -s=a>>s>>>0}return s}, -alS(a,b){if(0>b)throw A.i(A.zo(b)) -return this.UA(a,b)}, -UA(a,b){return b>31?0:a>>>b}, -r5(a,b){if(b>31)return 0 -return a>>>b}, -gez(a){return A.bM(t.Ci)}, -$icn:1, -$iR:1, -$idA:1} -J.vQ.prototype={ -Wn(a){return Math.abs(a)}, -gDT(a){var s -if(a>0)s=1 -else s=a<0?-1:a -return s}, -gez(a){return A.bM(t.S)}, -$icU:1, -$io:1} -J.Ch.prototype={ -gez(a){return A.bM(t.i)}, -$icU:1} -J.kH.prototype={ -Ig(a,b,c){var s=b.length -if(c>s)throw A.i(A.cR(c,0,s,null,null)) -return new A.a8T(b,a,c)}, -rg(a,b){return this.Ig(a,b,0)}, -pS(a,b,c){var s,r,q=null -if(c<0||c>b.length)throw A.i(A.cR(c,0,b.length,q,q)) -s=a.length -if(c+s>b.length)return q -for(r=0;rr)return!1 -return b===this.cD(a,r-s)}, -tk(a,b,c){A.aXx(0,0,a.length,"startIndex") -return A.bkY(a,b,c,0)}, -xI(a,b){var s=A.c(a.split(b),t.s) -return s}, -ky(a,b,c,d){var s=A.fv(b,c,a.length,null,null) -return A.b2a(a,b,s,d)}, -dP(a,b,c){var s -if(c<0||c>a.length)throw A.i(A.cR(c,0,a.length,null,null)) -if(typeof b=="string"){s=c+b.length -if(s>a.length)return!1 -return b===a.substring(c,s)}return J.aUE(b,a,c)!=null}, -c8(a,b){return this.dP(a,b,0)}, -a6(a,b,c){return a.substring(b,A.fv(b,c,a.length,null,null))}, -cD(a,b){return this.a6(a,b,null)}, -hS(a){var s,r,q,p=a.trim(),o=p.length -if(o===0)return p -if(p.charCodeAt(0)===133){s=J.aWt(p,1) -if(s===o)return""}else s=0 -r=o-1 -q=p.charCodeAt(r)===133?J.aWu(p,r):o -if(s===0&&q===o)return p -return p.substring(s,q)}, -ayO(a){var s=a.trimStart() -if(s.length===0)return s -if(s.charCodeAt(0)!==133)return s -return s.substring(J.aWt(s,1))}, -D6(a){var s,r=a.trimEnd(),q=r.length -if(q===0)return r -s=q-1 -if(r.charCodeAt(s)!==133)return r -return r.substring(0,J.aWu(r,s))}, -ak(a,b){var s,r -if(0>=b)return"" -if(b===1||a.length===0)return a -if(b!==b>>>0)throw A.i(B.LS) -for(s=a,r="";;){if((b&1)===1)r=s+r -b=b>>>1 -if(b===0)break -s+=s}return r}, -mt(a,b,c){var s=b-a.length -if(s<=0)return a -return this.ak(c,s)+a}, -awK(a,b){var s=b-a.length -if(s<=0)return a -return a+this.ak(" ",s)}, -kn(a,b,c){var s,r,q,p -if(c<0||c>a.length)throw A.i(A.cR(c,0,a.length,null,null)) -if(typeof b=="string")return a.indexOf(b,c) -if(b instanceof A.vS){s=b.QE(a,c) -return s==null?-1:s.b.index}for(r=a.length,q=J.abP(b),p=c;p<=r;++p)if(q.pS(b,a,p)!=null)return p -return-1}, -ik(a,b){return this.kn(a,b,0)}, -BT(a,b,c){var s,r -if(c==null)c=a.length -else if(c<0||c>a.length)throw A.i(A.cR(c,0,a.length,null,null)) -s=b.length -r=a.length -if(c+s>r)c=r-s -return a.lastIndexOf(b,c)}, -BS(a,b){return this.BT(a,b,null)}, -q(a,b){return A.bkW(a,b,0)}, -bt(a,b){var s -if(a===b)s=0 -else s=a>6}r=r+((r&67108863)<<3)&536870911 -r^=r>>11 -return r+((r&16383)<<15)&536870911}, -gez(a){return A.bM(t.N)}, -gH(a){return a.length}, -h(a,b){if(!(b>=0&&b"))}, -gH(a){return J.cg(this.gi3())}, -gan(a){return J.js(this.gi3())}, -gc6(a){return J.jt(this.gi3())}, -hZ(a,b){var s=A.n(this) -return A.nE(J.uy(this.gi3(),b),s.c,s.y[1])}, -kz(a,b){var s=A.n(this) -return A.nE(J.Me(this.gi3(),b),s.c,s.y[1])}, -cY(a,b){return A.n(this).y[1].a(J.uw(this.gi3(),b))}, -gad(a){return A.n(this).y[1].a(J.lx(this.gi3()))}, -gaC(a){return A.n(this).y[1].a(J.ux(this.gi3()))}, -q(a,b){return J.aQ0(this.gi3(),b)}, -k(a){return J.cB(this.gi3())}} -A.N6.prototype={ -v(){return this.a.v()}, -gT(){return this.$ti.y[1].a(this.a.gT())}} -A.pR.prototype={ -eI(a,b){return A.nE(this.a,A.n(this).c,b)}, -gi3(){return this.a}} -A.HL.prototype={$iaO:1} -A.H9.prototype={ -h(a,b){return this.$ti.y[1].a(J.iQ(this.a,b))}, -m(a,b,c){J.lw(this.a,b,this.$ti.c.a(c))}, -sH(a,b){J.b5p(this.a,b)}, -G(a,b){J.eJ(this.a,this.$ti.c.a(b))}, -fO(a,b){var s=b==null?null:new A.aAr(this,b) -J.ac9(this.a,s)}, -J(a,b){return J.aUF(this.a,b)}, -jQ(a){return this.$ti.y[1].a(J.b5o(this.a))}, -xk(a,b,c){var s=this.$ti -return A.nE(J.b5n(this.a,b,c),s.c,s.y[1])}, -$iaO:1, -$iU:1} -A.aAr.prototype={ -$2(a,b){var s=this.a.$ti.y[1] -return this.b.$2(s.a(a),s.a(b))}, -$S(){return this.a.$ti.i("o(1,1)")}} -A.fk.prototype={ -eI(a,b){return new A.fk(this.a,this.$ti.i("@<1>").bN(b).i("fk<1,2>"))}, -gi3(){return this.a}} -A.lL.prototype={ -eI(a,b){return new A.lL(this.a,this.b,this.$ti.i("@<1>").bN(b).i("lL<1,2>"))}, -G(a,b){return this.a.G(0,this.$ti.c.a(b))}, -a_(a,b){var s=this.$ti -this.a.a_(0,A.nE(b,s.y[1],s.c))}, -J(a,b){return this.a.J(0,b)}, -f4(a,b){this.a.f4(0,new A.ae7(this,b))}, -il(a){var s=this -if(s.b!=null)return s.PY(a,!0) -return new A.lL(s.a.il(a),null,s.$ti)}, -fY(a){var s=this -if(s.b!=null)return s.PY(a,!1) -return new A.lL(s.a.fY(a),null,s.$ti)}, -PY(a,b){var s,r=this.b,q=this.$ti,p=q.y[1],o=r==null?A.kN(p):r.$1$0(p) -for(p=this.a,p=p.gai(p),q=q.y[1];p.v();){s=q.a(p.gT()) -if(b===a.q(0,s))o.G(0,s)}return o}, -PK(){var s=this.b,r=this.$ti.y[1],q=s==null?A.kN(r):s.$1$0(r) -q.a_(0,this) -return q}, -ix(a){var s=this.b,r=this.$ti.y[1],q=s==null?A.kN(r):s.$1$0(r) -q.a_(0,this) -return q}, -$iaO:1, -$ibq:1, -gi3(){return this.a}} -A.ae7.prototype={ -$1(a){return this.b.$1(this.a.$ti.y[1].a(a))}, -$S(){return this.a.$ti.i("K(1)")}} -A.pS.prototype={ -jy(a,b,c){return new A.pS(this.a,this.$ti.i("@<1,2>").bN(b).bN(c).i("pS<1,2,3,4>"))}, -aN(a){return this.a.aN(a)}, -h(a,b){return this.$ti.i("4?").a(this.a.h(0,b))}, -m(a,b,c){var s=this.$ti -this.a.m(0,s.c.a(b),s.y[1].a(c))}, -cl(a,b){var s=this.$ti -return s.y[3].a(this.a.cl(s.c.a(a),new A.ae6(this,b)))}, -J(a,b){return this.$ti.i("4?").a(this.a.J(0,b))}, -aL(a,b){this.a.aL(0,new A.ae5(this,b))}, -gcd(){var s=this.$ti -return A.nE(this.a.gcd(),s.c,s.y[2])}, -gh8(){var s=this.$ti -return A.nE(this.a.gh8(),s.y[1],s.y[3])}, -gH(a){var s=this.a -return s.gH(s)}, -gan(a){var s=this.a -return s.gan(s)}, -gc6(a){var s=this.a -return s.gc6(s)}, -gfj(){var s=this.a.gfj() -return s.hI(s,new A.ae4(this),this.$ti.i("aV<3,4>"))}} -A.ae6.prototype={ -$0(){return this.a.$ti.y[1].a(this.b.$0())}, -$S(){return this.a.$ti.i("2()")}} -A.ae5.prototype={ -$2(a,b){var s=this.a.$ti -this.b.$2(s.y[2].a(a),s.y[3].a(b))}, -$S(){return this.a.$ti.i("~(1,2)")}} -A.ae4.prototype={ -$1(a){var s=this.a.$ti -return new A.aV(s.y[2].a(a.a),s.y[3].a(a.b),s.i("aV<3,4>"))}, -$S(){return this.a.$ti.i("aV<3,4>(aV<1,2>)")}} -A.lK.prototype={ -eI(a,b){return new A.lK(this.a,this.$ti.i("@<1>").bN(b).i("lK<1,2>"))}, -$iaO:1, -gi3(){return this.a}} -A.jM.prototype={ -k(a){return"LateInitializationError: "+this.a}} -A.hW.prototype={ -gH(a){return this.a.length}, -h(a,b){return this.a.charCodeAt(b)}} -A.aPs.prototype={ -$0(){return A.di(null,t.H)}, -$S:10} -A.aub.prototype={} -A.aO.prototype={} -A.aE.prototype={ -gai(a){var s=this -return new A.bf(s,s.gH(s),A.n(s).i("bf"))}, -aL(a,b){var s,r=this,q=r.gH(r) -for(s=0;s").bN(c).i("am<1,2>"))}, -wS(a,b){var s,r,q=this,p=q.gH(q) -if(p===0)throw A.i(A.cD()) -s=q.cY(0,0) -for(r=1;rs)throw A.i(A.cR(r,0,s,"start",null))}}, -gabQ(){var s=J.cg(this.a),r=this.c -if(r==null||r>s)return s -return r}, -gam4(){var s=J.cg(this.a),r=this.b -if(r>s)return s -return r}, -gH(a){var s,r=J.cg(this.a),q=this.b -if(q>=r)return 0 -s=this.c -if(s==null||s>=r)return r-q -return s-q}, -cY(a,b){var s=this,r=s.gam4()+b -if(b<0||r>=s.gabQ())throw A.i(A.R7(b,s.gH(0),s,null,"index")) -return J.uw(s.a,r)}, -hZ(a,b){var s,r,q=this -A.dk(b,"count") -s=q.b+b -r=q.c -if(r!=null&&s>=r)return new A.i0(q.$ti.i("i0<1>")) -return A.fN(q.a,s,r,q.$ti.c)}, -kz(a,b){var s,r,q,p=this -A.dk(b,"count") -s=p.c -r=p.b -q=r+b -if(s==null)return A.fN(p.a,r,q,p.$ti.c) -else{if(s=o){r.d=null -return!1}r.d=p.cY(q,s);++r.c -return!0}} -A.h6.prototype={ -gai(a){return new A.w5(J.bG(this.a),this.b,A.n(this).i("w5<1,2>"))}, -gH(a){return J.cg(this.a)}, -gan(a){return J.js(this.a)}, -gad(a){return this.b.$1(J.lx(this.a))}, -gaC(a){return this.b.$1(J.ux(this.a))}, -cY(a,b){return this.b.$1(J.uw(this.a,b))}} -A.qe.prototype={$iaO:1} -A.w5.prototype={ -v(){var s=this,r=s.b -if(r.v()){s.a=s.c.$1(r.gT()) -return!0}s.a=null -return!1}, -gT(){var s=this.a -return s==null?this.$ti.y[1].a(s):s}} -A.am.prototype={ -gH(a){return J.cg(this.a)}, -cY(a,b){return this.b.$1(J.uw(this.a,b))}} -A.b1.prototype={ -gai(a){return new A.n5(J.bG(this.a),this.b)}, -hI(a,b,c){return new A.h6(this,b,this.$ti.i("@<1>").bN(c).i("h6<1,2>"))}} -A.n5.prototype={ -v(){var s,r -for(s=this.a,r=this.b;s.v();)if(r.$1(s.gT()))return!0 -return!1}, -gT(){return this.a.gT()}} -A.fo.prototype={ -gai(a){return new A.vx(J.bG(this.a),this.b,B.lQ,this.$ti.i("vx<1,2>"))}} -A.vx.prototype={ -gT(){var s=this.d -return s==null?this.$ti.y[1].a(s):s}, -v(){var s,r,q=this,p=q.c -if(p==null)return!1 -for(s=q.a,r=q.b;!p.v();){q.d=null -if(s.v()){q.c=null -p=J.bG(r.$1(s.gT())) -q.c=p}else return!1}q.d=q.c.gT() -return!0}} -A.tx.prototype={ -gai(a){return new A.YB(J.bG(this.a),this.b,A.n(this).i("YB<1>"))}} -A.Bp.prototype={ -gH(a){var s=J.cg(this.a),r=this.b -if(s>r)return r -return s}, -$iaO:1} -A.YB.prototype={ -v(){if(--this.b>=0)return this.a.v() -this.b=-1 -return!1}, -gT(){if(this.b<0){this.$ti.c.a(null) -return null}return this.a.gT()}} -A.mM.prototype={ -hZ(a,b){A.lE(b,"count") -A.dk(b,"count") -return new A.mM(this.a,this.b+b,A.n(this).i("mM<1>"))}, -gai(a){return new A.Y4(J.bG(this.a),this.b)}} -A.vq.prototype={ -gH(a){var s=J.cg(this.a)-this.b -if(s>=0)return s -return 0}, -hZ(a,b){A.lE(b,"count") -A.dk(b,"count") -return new A.vq(this.a,this.b+b,this.$ti)}, -$iaO:1} -A.Y4.prototype={ -v(){var s,r -for(s=this.a,r=0;r"))}, -hZ(a,b){A.dk(b,"count") -return this}, -kz(a,b){A.dk(b,"count") -return this}, -eR(a,b){var s=this.$ti.c -return b?J.vP(0,s):J.Ce(0,s)}, -eA(a){return this.eR(0,!0)}, -ix(a){return A.kN(this.$ti.c)}} -A.Q3.prototype={ -v(){return!1}, -gT(){throw A.i(A.cD())}} -A.m0.prototype={ -gai(a){return new A.Qo(J.bG(this.a),this.b)}, -gH(a){return J.cg(this.a)+J.cg(this.b)}, -gan(a){return J.js(this.a)&&J.js(this.b)}, -gc6(a){return J.jt(this.a)||J.jt(this.b)}, -q(a,b){return J.aQ0(this.a,b)||J.aQ0(this.b,b)}, -gad(a){var s=J.bG(this.a) -if(s.v())return s.gT() -return J.lx(this.b)}, -gaC(a){var s,r=J.bG(this.b) -if(r.v()){s=r.gT() -while(r.v())s=r.gT() -return s}return J.ux(this.a)}} -A.Bo.prototype={ -cY(a,b){var s=this.a,r=J.bk(s),q=r.gH(s) -if(b"))}} -A.le.prototype={ -v(){var s,r -for(s=this.a,r=this.$ti.c;s.v();)if(r.b(s.gT()))return!0 -return!1}, -gT(){return this.$ti.c.a(this.a.gT())}} -A.m8.prototype={ -gH(a){return J.cg(this.a)}, -gan(a){return J.js(this.a)}, -gc6(a){return J.jt(this.a)}, -gad(a){return new A.an(this.b,J.lx(this.a))}, -cY(a,b){return new A.an(b+this.b,J.uw(this.a,b))}, -q(a,b){var s,r,q,p=null,o=null,n=!1 -if(t.mi.b(b)){s=b.a -if(A.np(s)){A.eF(s) -r=b.b -n=s>=this.b -o=r -p=s}}if(n){n=J.uy(this.a,p-this.b) -q=n.gai(n) -return q.v()&&J.b(q.gT(),o)}return!1}, -kz(a,b){A.lE(b,"count") -A.dk(b,"count") -return new A.m8(J.Me(this.a,b),this.b,A.n(this).i("m8<1>"))}, -hZ(a,b){A.lE(b,"count") -A.dk(b,"count") -return new A.m8(J.uy(this.a,b),b+this.b,A.n(this).i("m8<1>"))}, -gai(a){return new A.C4(J.bG(this.a),this.b)}} -A.qd.prototype={ -gaC(a){var s,r=this.a,q=J.bk(r),p=q.gH(r) -if(p<=0)throw A.i(A.cD()) -s=q.gaC(r) -if(p!==q.gH(r))throw A.i(A.cd(this)) -return new A.an(p-1+this.b,s)}, -q(a,b){var s,r,q,p,o=null,n=null,m=!1 -if(t.mi.b(b)){s=b.a -if(A.np(s)){A.eF(s) -r=b.b -m=s>=this.b -n=r -o=s}}if(m){q=o-this.b -m=this.a -p=J.bk(m) -return q=0&&this.a.v())return!0 -this.c=-2 -return!1}, -gT(){var s=this.c -return s>=0?new A.an(this.b+s,this.a.gT()):A.a0(A.cD())}} -A.BC.prototype={ -sH(a,b){throw A.i(A.c2("Cannot change the length of a fixed-length list"))}, -G(a,b){throw A.i(A.c2("Cannot add to a fixed-length list"))}, -J(a,b){throw A.i(A.c2("Cannot remove from a fixed-length list"))}, -jQ(a){throw A.i(A.c2("Cannot remove from a fixed-length list"))}} -A.Z3.prototype={ -m(a,b,c){throw A.i(A.c2("Cannot modify an unmodifiable list"))}, -sH(a,b){throw A.i(A.c2("Cannot change the length of an unmodifiable list"))}, -G(a,b){throw A.i(A.c2("Cannot add to an unmodifiable list"))}, -J(a,b){throw A.i(A.c2("Cannot remove from an unmodifiable list"))}, -fO(a,b){throw A.i(A.c2("Cannot modify an unmodifiable list"))}, -jQ(a){throw A.i(A.c2("Cannot remove from an unmodifiable list"))}} -A.xY.prototype={} -A.a3u.prototype={ -gH(a){return J.cg(this.a)}, -cY(a,b){A.aR5(b,J.cg(this.a),this,null) -return b}} -A.mc.prototype={ -h(a,b){return this.aN(b)?J.iQ(this.a,A.eF(b)):null}, -gH(a){return J.cg(this.a)}, -gh8(){return A.fN(this.a,0,null,this.$ti.c)}, -gcd(){return new A.a3u(this.a)}, -gan(a){return J.js(this.a)}, -gc6(a){return J.jt(this.a)}, -aN(a){return A.np(a)&&a>=0&&a>"))}, -arU(){var s=this -return function(){var r=0,q=1,p=[],o,n,m -return function $async$gfj(a,b,c){if(b===1){p.push(c) -r=q}for(;;)switch(r){case 0:o=s.gcd(),o=o.gai(o),n=A.n(s).i("aV<1,2>") -case 2:if(!o.v()){r=3 -break}m=o.gT() -r=4 -return a.b=new A.aV(m,s.h(0,m),n),1 -case 4:r=2 -break -case 3:return 0 -case 1:return a.c=p.at(-1),3}}}}, -mn(a,b,c,d){var s=A.t(c,d) -this.aL(0,new A.aeI(this,b,s)) -return s}, -$iba:1} -A.aeI.prototype={ -$2(a,b){var s=this.b.$2(a,b) -this.c.m(0,s.a,s.b)}, -$S(){return A.n(this.a).i("~(1,2)")}} -A.a3.prototype={ -gH(a){return this.b.length}, -gSt(){var s=this.$keys -if(s==null){s=Object.keys(this.a) -this.$keys=s}return s}, -aN(a){if(typeof a!="string")return!1 -if("__proto__"===a)return!1 -return this.a.hasOwnProperty(a)}, -h(a,b){if(!this.aN(b))return null -return this.b[this.a[b]]}, -aL(a,b){var s,r,q=this.gSt(),p=this.b -for(s=q.length,r=0;r"))}, -gh8(){return new A.u_(this.b,this.$ti.i("u_<2>"))}} -A.u_.prototype={ -gH(a){return this.a.length}, -gan(a){return 0===this.a.length}, -gc6(a){return 0!==this.a.length}, -gai(a){var s=this.a -return new A.p7(s,s.length,this.$ti.i("p7<1>"))}} -A.p7.prototype={ -gT(){var s=this.d -return s==null?this.$ti.c.a(s):s}, -v(){var s=this,r=s.c -if(r>=s.b){s.d=null -return!1}s.d=s.a[r] -s.c=r+1 -return!0}} -A.dY.prototype={ -n9(){var s=this,r=s.$map -if(r==null){r=new A.qO(s.$ti.i("qO<1,2>")) -A.b1C(s.a,r) -s.$map=r}return r}, -aN(a){return this.n9().aN(a)}, -h(a,b){return this.n9().h(0,b)}, -aL(a,b){this.n9().aL(0,b)}, -gcd(){var s=this.n9() -return new A.bD(s,A.n(s).i("bD<1>"))}, -gh8(){var s=this.n9() -return new A.bo(s,A.n(s).i("bo<2>"))}, -gH(a){return this.n9().a}} -A.AF.prototype={ -G(a,b){A.Nz()}, -a_(a,b){A.Nz()}, -J(a,b){A.Nz()}, -CM(a){A.Nz()}, -f4(a,b){A.Nz()}} -A.fW.prototype={ -gH(a){return this.b}, -gan(a){return this.b===0}, -gc6(a){return this.b!==0}, -gai(a){var s,r=this,q=r.$keys -if(q==null){q=Object.keys(r.a) -r.$keys=q}s=q -return new A.p7(s,s.length,r.$ti.i("p7<1>"))}, -q(a,b){if(typeof b!="string")return!1 -if("__proto__"===b)return!1 -return this.a.hasOwnProperty(b)}, -ix(a){return A.ep(this,this.$ti.c)}} -A.dR.prototype={ -gH(a){return this.a.length}, -gan(a){return this.a.length===0}, -gc6(a){return this.a.length!==0}, -gai(a){var s=this.a -return new A.p7(s,s.length,this.$ti.i("p7<1>"))}, -n9(){var s,r,q,p,o=this,n=o.$map -if(n==null){n=new A.qO(o.$ti.i("qO<1,1>")) -for(s=o.a,r=s.length,q=0;q")}} -A.nX.prototype={ -$0(){return this.a.$1$0(this.$ti.y[0])}, -$1(a){return this.a.$1$1(a,this.$ti.y[0])}, -$2(a,b){return this.a.$1$2(a,b,this.$ti.y[0])}, -$S(){return A.bkl(A.abL(this.a),this.$ti)}} -A.Cg.prototype={ -ga02(){var s=this.a -if(s instanceof A.fz)return s -return this.a=new A.fz(s)}, -gax5(){var s,r,q,p,o,n=this -if(n.c===1)return B.wL -s=n.d -r=J.bk(s) -q=r.gH(s)-J.cg(n.e)-n.f -if(q===0)return B.wL -p=[] -for(o=0;o>>0}, -k(a){return"Closure '"+this.$_name+"' of "+("Instance of '"+A.Uq(this.a)+"'")}} -A.Vk.prototype={ -k(a){return"RuntimeError: "+this.a}} -A.PJ.prototype={ -k(a){return"Deferred library "+this.a+" was not loaded."}} -A.aPj.prototype={ -$0(){var s,r,q,p,o,n,m,l,k,j,i,h=this -for(s=h.a,r=s.b,q=h.b,p=h.f,o=h.w,n=h.r,m=h.e,l=h.c,k=h.d;r"))}, -gh8(){return new A.bo(this,A.n(this).i("bo<2>"))}, -gfj(){return new A.dZ(this,A.n(this).i("dZ<1,2>"))}, -aN(a){var s,r -if(typeof a=="string"){s=this.b -if(s==null)return!1 -return s[a]!=null}else if(typeof a=="number"&&(a&0x3fffffff)===a){r=this.c -if(r==null)return!1 -return r[a]!=null}else return this.a_j(a)}, -a_j(a){var s=this.d -if(s==null)return!1 -return this.pH(s[this.pG(a)],a)>=0}, -apS(a){return new A.bD(this,A.n(this).i("bD<1>")).i8(0,new A.akv(this,a))}, -a_(a,b){b.aL(0,new A.aku(this))}, -h(a,b){var s,r,q,p,o=null -if(typeof b=="string"){s=this.b -if(s==null)return o -r=s[b] -q=r==null?o:r.b -return q}else if(typeof b=="number"&&(b&0x3fffffff)===b){p=this.c -if(p==null)return o -r=p[b] -q=r==null?o:r.b -return q}else return this.a_k(b)}, -a_k(a){var s,r,q=this.d -if(q==null)return null -s=q[this.pG(a)] -r=this.pH(s,a) -if(r<0)return null -return s[r].b}, -m(a,b,c){var s,r,q=this -if(typeof b=="string"){s=q.b -q.OM(s==null?q.b=q.GO():s,b,c)}else if(typeof b=="number"&&(b&0x3fffffff)===b){r=q.c -q.OM(r==null?q.c=q.GO():r,b,c)}else q.a_m(b,c)}, -a_m(a,b){var s,r,q,p=this,o=p.d -if(o==null)o=p.d=p.GO() -s=p.pG(a) -r=o[s] -if(r==null)o[s]=[p.GP(a,b)] -else{q=p.pH(r,a) -if(q>=0)r[q].b=b -else r.push(p.GP(a,b))}}, -cl(a,b){var s,r,q=this -if(q.aN(a)){s=q.h(0,a) -return s==null?A.n(q).y[1].a(s):s}r=b.$0() -q.m(0,a,r) -return r}, -J(a,b){var s=this -if(typeof b=="string")return s.Tz(s.b,b) -else if(typeof b=="number"&&(b&0x3fffffff)===b)return s.Tz(s.c,b) -else return s.a_l(b)}, -a_l(a){var s,r,q,p,o=this,n=o.d -if(n==null)return null -s=o.pG(a) -r=n[s] -q=o.pH(r,a) -if(q<0)return null -p=r.splice(q,1)[0] -o.Vk(p) -if(r.length===0)delete n[s] -return p.b}, -aa(a){var s=this -if(s.a>0){s.b=s.c=s.d=s.e=s.f=null -s.a=0 -s.GM()}}, -aL(a,b){var s=this,r=s.e,q=s.r -while(r!=null){b.$2(r.a,r.b) -if(q!==s.r)throw A.i(A.cd(s)) -r=r.c}}, -OM(a,b,c){var s=a[b] -if(s==null)a[b]=this.GP(b,c) -else s.b=c}, -Tz(a,b){var s -if(a==null)return null -s=a[b] -if(s==null)return null -this.Vk(s) -delete a[b] -return s.b}, -GM(){this.r=this.r+1&1073741823}, -GP(a,b){var s,r=this,q=new A.al4(a,b) -if(r.e==null)r.e=r.f=q -else{s=r.f -s.toString -q.d=s -r.f=s.c=q}++r.a -r.GM() -return q}, -Vk(a){var s=this,r=a.d,q=a.c -if(r==null)s.e=q -else r.c=q -if(q==null)s.f=r -else q.d=r;--s.a -s.GM()}, -pG(a){return J.D(a)&1073741823}, -pH(a,b){var s,r -if(a==null)return-1 -s=a.length -for(r=0;r"]=s -delete s[""] -return s}} -A.akv.prototype={ -$1(a){return J.b(this.a.h(0,a),this.b)}, -$S(){return A.n(this.a).i("K(1)")}} -A.aku.prototype={ -$2(a,b){this.a.m(0,a,b)}, -$S(){return A.n(this.a).i("~(1,2)")}} -A.al4.prototype={} -A.bD.prototype={ -gH(a){return this.a.a}, -gan(a){return this.a.a===0}, -gai(a){var s=this.a -return new A.eS(s,s.r,s.e)}, -q(a,b){return this.a.aN(b)}, -aL(a,b){var s=this.a,r=s.e,q=s.r -while(r!=null){b.$1(r.a) -if(q!==s.r)throw A.i(A.cd(s)) -r=r.c}}} -A.eS.prototype={ -gT(){return this.d}, -v(){var s,r=this,q=r.a -if(r.b!==q.r)throw A.i(A.cd(q)) -s=r.c -if(s==null){r.d=null -return!1}else{r.d=s.a -r.c=s.c -return!0}}} -A.bo.prototype={ -gH(a){return this.a.a}, -gan(a){return this.a.a===0}, -gai(a){var s=this.a -return new A.db(s,s.r,s.e)}, -aL(a,b){var s=this.a,r=s.e,q=s.r -while(r!=null){b.$1(r.b) -if(q!==s.r)throw A.i(A.cd(s)) -r=r.c}}} -A.db.prototype={ -gT(){return this.d}, -v(){var s,r=this,q=r.a -if(r.b!==q.r)throw A.i(A.cd(q)) -s=r.c -if(s==null){r.d=null -return!1}else{r.d=s.b -r.c=s.c -return!0}}} -A.dZ.prototype={ -gH(a){return this.a.a}, -gan(a){return this.a.a===0}, -gai(a){var s=this.a -return new A.Rx(s,s.r,s.e,this.$ti.i("Rx<1,2>"))}} -A.Rx.prototype={ -gT(){var s=this.d -s.toString -return s}, -v(){var s,r=this,q=r.a -if(r.b!==q.r)throw A.i(A.cd(q)) -s=r.c -if(s==null){r.d=null -return!1}else{r.d=new A.aV(s.a,s.b,r.$ti.i("aV<1,2>")) -r.c=s.c -return!0}}} -A.Cj.prototype={ -pG(a){return A.pA(a)&1073741823}, -pH(a,b){var s,r,q -if(a==null)return-1 -s=a.length -for(r=0;r0;){--q;--s -j[q]=r[s]}}return A.al9(j,k)}} -A.a5e.prototype={ -yq(){return[this.a,this.b]}, -j(a,b){if(b==null)return!1 -return b instanceof A.a5e&&this.$s===b.$s&&J.b(this.a,b.a)&&J.b(this.b,b.b)}, -gt(a){return A.N(this.$s,this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a5f.prototype={ -yq(){return[this.a,this.b,this.c]}, -j(a,b){var s=this -if(b==null)return!1 -return b instanceof A.a5f&&s.$s===b.$s&&J.b(s.a,b.a)&&J.b(s.b,b.b)&&J.b(s.c,b.c)}, -gt(a){var s=this -return A.N(s.$s,s.a,s.b,s.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a5g.prototype={ -yq(){return this.a}, -j(a,b){if(b==null)return!1 -return b instanceof A.a5g&&this.$s===b.$s&&A.bdt(this.a,b.a)}, -gt(a){return A.N(this.$s,A.bh(this.a),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.vS.prototype={ -k(a){return"RegExp/"+this.a+"/"+this.b.flags}, -gahN(){var s=this,r=s.c -if(r!=null)return r -r=s.b -return s.c=A.aRa(s.a,r.multiline,!r.ignoreCase,r.unicode,r.dotAll,"g")}, -gahM(){var s=this,r=s.d -if(r!=null)return r -r=s.b -return s.d=A.aRa(s.a,r.multiline,!r.ignoreCase,r.unicode,r.dotAll,"y")}, -pv(a){var s=this.b.exec(a) -if(s==null)return null -return new A.yD(s)}, -a3O(a){var s=this.pv(a) -if(s!=null)return s.b[0] -return null}, -Ig(a,b,c){var s=b.length -if(c>s)throw A.i(A.cR(c,0,s,null,null)) -return new A.a0e(this,b,c)}, -rg(a,b){return this.Ig(0,b,0)}, -QE(a,b){var s,r=this.gahN() -r.lastIndex=b -s=r.exec(a) -if(s==null)return null -return new A.yD(s)}, -abW(a,b){var s,r=this.gahM() -r.lastIndex=b -s=r.exec(a) -if(s==null)return null -return new A.yD(s)}, -pS(a,b,c){if(c<0||c>b.length)throw A.i(A.cR(c,0,b.length,null,null)) -return this.abW(b,c)}} -A.yD.prototype={ -gc4(){var s=this.b -return s.index+s[0].length}, -h(a,b){return this.b[b]}, -$ir3:1, -$iUF:1} -A.a0e.prototype={ -gai(a){return new A.GR(this.a,this.b,this.c)}} -A.GR.prototype={ -gT(){var s=this.d -return s==null?t.Qz.a(s):s}, -v(){var s,r,q,p,o,n,m=this,l=m.b -if(l==null)return!1 -s=m.c -r=l.length -if(s<=r){q=m.a -p=q.QE(l,s) -if(p!=null){m.d=p -o=p.gc4() -if(p.b.index===o){s=!1 -if(q.b.unicode){q=m.c -n=q+1 -if(n=55296&&r<=56319){s=l.charCodeAt(n) -s=s>=56320&&s<=57343}}}o=(s?o+1:o)+1}m.c=o -return!0}}m.b=m.d=null -return!1}} -A.xt.prototype={ -gc4(){return this.a+this.c.length}, -h(a,b){if(b!==0)A.a0(A.aq5(b,null)) -return this.c}, -$ir3:1} -A.a8T.prototype={ -gai(a){return new A.a8U(this.a,this.b,this.c)}, -gad(a){var s=this.b,r=this.a.indexOf(s,this.c) -if(r>=0)return new A.xt(r,s) -throw A.i(A.cD())}} -A.a8U.prototype={ -v(){var s,r,q=this,p=q.c,o=q.b,n=o.length,m=q.a,l=m.length -if(p+n>l){q.d=null -return!1}s=m.indexOf(o,p) -if(s<0){q.c=l+1 -q.d=null -return!1}r=s+n -q.d=new A.xt(s,o) -q.c=r===q.c?r+1:r -return!0}, -gT(){var s=this.d -s.toString -return s}} -A.a11.prototype={ -bc(){var s=this.b -if(s===this)throw A.i(new A.jM("Local '"+this.a+"' has not been initialized.")) -return s}, -cj(){var s=this.b -if(s===this)throw A.i(A.qS(this.a)) -return s}, -sed(a){var s=this -if(s.b!==s)throw A.i(new A.jM("Local '"+s.a+"' has already been initialized.")) -s.b=a}} -A.aDe.prototype={ -eF(){var s,r=this,q=r.b -if(q===r){s=r.c.$0() -if(r.b!==r)throw A.i(new A.jM("Local '' has been assigned during initialization.")) -r.b=s -q=s}return q}} -A.wj.prototype={ -gez(a){return B.afE}, -A4(a,b,c){A.no(a,b,c) -return c==null?new Uint8Array(a,b):new Uint8Array(a,b,c)}, -In(a){return this.A4(a,0,null)}, -WQ(a,b,c){A.no(a,b,c) -return new Int32Array(a,b,c)}, -WR(a,b,c){throw A.i(A.c2("Int64List not supported by dart2js."))}, -WO(a,b,c){A.no(a,b,c) -return new Float32Array(a,b,c)}, -WP(a,b,c){A.no(a,b,c) -return new Float64Array(a,b,c)}, -A3(a,b,c){A.no(a,b,c) -return c==null?new DataView(a,b):new DataView(a,b,c)}, -WN(a){return this.A3(a,0,null)}, -$icU:1, -$ilJ:1} -A.re.prototype={$ire:1} -A.Dc.prototype={ -gcF(a){if(((a.$flags|0)&2)!==0)return new A.aab(a.buffer) -else return a.buffer}, -gYO(a){return a.BYTES_PER_ELEMENT}, -agP(a,b,c,d){var s=A.cR(b,0,c,d,null) -throw A.i(s)}, -Pv(a,b,c,d){if(b>>>0!==b||b>c)this.agP(a,b,c,d)}} -A.aab.prototype={ -A4(a,b,c){var s=A.aX0(this.a,b,c) -s.$flags=3 -return s}, -In(a){return this.A4(0,0,null)}, -WQ(a,b,c){var s=A.b9t(this.a,b,c) -s.$flags=3 -return s}, -WR(a,b,c){J.aQ_(this.a,b,c)}, -WO(a,b,c){var s=A.b9q(this.a,b,c) -s.$flags=3 -return s}, -WP(a,b,c){var s=A.b9s(this.a,b,c) -s.$flags=3 -return s}, -A3(a,b,c){var s=A.b9p(this.a,b,c) -s.$flags=3 -return s}, -WN(a){return this.A3(0,0,null)}, -$ilJ:1} -A.D7.prototype={ -gez(a){return B.afF}, -gYO(a){return 1}, -ML(a,b,c){throw A.i(A.c2("Int64 accessor not supported by dart2js."))}, -Nm(a,b,c,d){throw A.i(A.c2("Int64 accessor not supported by dart2js."))}, -$icU:1, -$id9:1} -A.wk.prototype={ -gH(a){return a.length}, -alq(a,b,c,d,e){var s,r,q=a.length -this.Pv(a,b,q,"start") -this.Pv(a,c,q,"end") -if(b>c)throw A.i(A.cR(b,0,c,null,null)) -s=c-b -if(e<0)throw A.i(A.c1(e,null)) -r=d.length -if(r-e0){s=Date.now()-r.c -if(s>(p+1)*o)p=B.j.qx(s,o)}q.c=p -r.d.$1(q)}, -$S:13} -A.GX.prototype={ -dR(a){var s,r=this -if(a==null)a=r.$ti.c.a(a) -if(!r.b)r.a.lI(a) -else{s=r.a -if(r.$ti.i("av<1>").b(a))s.Pm(a) -else s.qD(a)}}, -fX(a,b){var s=this.a -if(this.b)s.hf(new A.d7(a,b)) -else s.oI(new A.d7(a,b))}, -$iNt:1} -A.aLX.prototype={ -$1(a){return this.a.$2(0,a)}, -$S:46} -A.aLY.prototype={ -$2(a,b){this.a.$2(1,new A.Bx(a,b))}, -$S:373} -A.aOz.prototype={ -$2(a,b){this.a(a,b)}, -$S:374} -A.nk.prototype={ -gT(){return this.b}, -akz(a,b){var s,r,q -a=a -b=b -s=this.a -for(;;)try{r=s(this,a,b) -return r}catch(q){b=q -a=1}}, -v(){var s,r,q,p,o=this,n=null,m=0 -for(;;){s=o.d -if(s!=null)try{if(s.v()){o.b=s.gT() -return!0}else o.d=null}catch(r){n=r -m=1 -o.d=null}q=o.akz(m,n) -if(1===q)return!0 -if(0===q){o.b=null -p=o.e -if(p==null||p.length===0){o.a=A.b_Y -return!1}o.a=p.pop() -m=0 -n=null -continue}if(2===q){m=0 -n=null -continue}if(3===q){n=o.c -o.c=null -p=o.e -if(p==null||p.length===0){o.b=null -o.a=A.b_Y -throw n -return!1}o.a=p.pop() -m=1 -continue}throw A.i(A.aL("sync*"))}return!1}, -Wm(a){var s,r,q=this -if(a instanceof A.hi){s=a.a() -r=q.e -if(r==null)r=q.e=[] -r.push(q.a) -q.a=s -return 2}else{q.d=J.bG(a) -return 2}}} -A.hi.prototype={ -gai(a){return new A.nk(this.a())}} -A.d7.prototype={ -k(a){return A.j(this.a)}, -$icC:1, -gtU(){return this.b}} -A.e3.prototype={} -A.tL.prototype={ -ng(){}, -nh(){}} -A.n8.prototype={ -gE1(){return new A.e3(this,A.n(this).i("e3<1>"))}, -gqV(){return this.c<4}, -TA(a){var s=a.CW,r=a.ch -if(s==null)this.d=r -else s.ch=r -if(r==null)this.e=s -else r.CW=s -a.CW=a -a.ch=a}, -Ht(a,b,c,d){var s,r,q,p,o,n,m,l,k=this -if((k.c&4)!==0)return A.b_t(c) -s=$.as -r=d?1:0 -q=b!=null?32:0 -p=A.azS(s,a) -o=A.aSu(s,b) -n=c==null?A.b1j():c -m=new A.tL(k,p,o,n,s,r|q,A.n(k).i("tL<1>")) -m.CW=m -m.ch=m -m.ay=k.c&1 -l=k.e -k.e=m -m.ch=null -m.CW=l -if(l==null)k.d=m -else l.ch=m -if(k.d===m)A.abI(k.a) -return m}, -Tk(a){var s,r=this -A.n(r).i("tL<1>").a(a) -if(a.ch===a)return null -s=a.ay -if((s&2)!==0)a.ay=s|4 -else{r.TA(a) -if((r.c&2)===0&&r.d==null)r.EO()}return null}, -Tm(a){}, -Tn(a){}, -qy(){if((this.c&4)!==0)return new A.fM("Cannot add new events after calling close") -return new A.fM("Cannot add new events while doing an addStream")}, -G(a,b){if(!this.gqV())throw A.i(this.qy()) -this.nk(b)}, -kf(a,b){var s -if(!this.gqV())throw A.i(this.qy()) -s=A.aNE(a,b) -this.oS(s.a,s.b)}, -bn(){var s,r,q=this -if((q.c&4)!==0){s=q.r -s.toString -return s}if(!q.gqV())throw A.i(q.qy()) -q.c|=4 -r=q.r -if(r==null)r=q.r=new A.ax($.as,t.c) -q.oR() -return r}, -FU(a){var s,r,q,p=this,o=p.c -if((o&2)!==0)throw A.i(A.aL(u.c)) -s=p.d -if(s==null)return -r=o&1 -p.c=o^3 -while(s!=null){o=s.ay -if((o&1)===r){s.ay=o|2 -a.$1(s) -o=s.ay^=1 -q=s.ch -if((o&4)!==0)p.TA(s) -s.ay&=4294967293 -s=q}else s=s.ch}p.c&=4294967293 -if(p.d==null)p.EO()}, -EO(){if((this.c&4)!==0){var s=this.r -if((s.a&30)===0)s.lI(null)}A.abI(this.b)}, -$ie8:1} -A.Km.prototype={ -gqV(){return A.n8.prototype.gqV.call(this)&&(this.c&2)===0}, -qy(){if((this.c&2)!==0)return new A.fM(u.c) -return this.a6i()}, -nk(a){var s=this,r=s.d -if(r==null)return -if(r===s.e){s.c|=2 -r.n2(a) -s.c&=4294967293 -if(s.d==null)s.EO() -return}s.FU(new A.aK4(s,a))}, -oS(a,b){if(this.d==null)return -this.FU(new A.aK6(this,a,b))}, -oR(){var s=this -if(s.d!=null)s.FU(new A.aK5(s)) -else s.r.lI(null)}} -A.aK4.prototype={ -$1(a){a.n2(this.b)}, -$S(){return this.a.$ti.i("~(iI<1>)")}} -A.aK6.prototype={ -$1(a){a.y_(this.b,this.c)}, -$S(){return this.a.$ti.i("~(iI<1>)")}} -A.aK5.prototype={ -$1(a){a.EY()}, -$S(){return this.a.$ti.i("~(iI<1>)")}} -A.GY.prototype={ -nk(a){var s -for(s=this.d;s!=null;s=s.ch)s.lG(new A.tQ(a))}, -oS(a,b){var s -for(s=this.d;s!=null;s=s.ch)s.lG(new A.yh(a,b))}, -oR(){var s=this.d -if(s!=null)for(;s!=null;s=s.ch)s.lG(B.iz) -else this.r.lI(null)}} -A.vj.prototype={ -k(a){return"DeferredLoadException: '"+this.a+"'"}, -$icx:1} -A.aiK.prototype={ -$0(){var s,r,q,p,o,n,m=null -try{m=this.a.$0()}catch(q){s=A.aj(q) -r=A.b3(q) -p=s -o=r -n=A.ui(p,o) -p=new A.d7(p,o) -this.b.hf(p) -return}this.b.n7(m)}, -$S:0} -A.aiJ.prototype={ -$0(){var s,r,q,p,o,n,m=this,l=m.a -if(l==null){m.c.a(null) -m.b.n7(null)}else{s=null -try{s=l.$0()}catch(p){r=A.aj(p) -q=A.b3(p) -l=r -o=q -n=A.ui(l,o) -l=new A.d7(l,o) -m.b.hf(l) -return}m.b.n7(s)}}, -$S:0} -A.aiM.prototype={ -$2(a,b){var s=this,r=s.a,q=--r.b -if(r.a!=null){r.a=null -r.d=a -r.c=b -if(q===0||s.c)s.d.hf(new A.d7(a,b))}else if(q===0&&!s.c){q=r.d -q.toString -r=r.c -r.toString -s.d.hf(new A.d7(q,r))}}, -$S:57} -A.aiL.prototype={ -$1(a){var s,r,q,p,o,n,m=this,l=m.a,k=--l.b,j=l.a -if(j!=null){J.lw(j,m.b,a) -if(J.b(k,0)){l=m.d -s=A.c([],l.i("z<0>")) -for(q=j,p=q.length,o=0;o")) -r=b==null?1:3 -this.u8(new A.li(s,r,a,b,this.$ti.i("@<1>").bN(c).i("li<1,2>"))) -return s}, -c1(a,b){return this.hP(a,null,b)}, -V6(a,b,c){var s=new A.ax($.as,c.i("ax<0>")) -this.u8(new A.li(s,19,a,b,this.$ti.i("@<1>").bN(c).i("li<1,2>"))) -return s}, -agw(){var s,r -if(((this.a|=1)&4)!==0){s=this -do s=s.c -while(r=s.a,(r&4)!==0) -s.a=r|1}}, -app(a,b){var s=this.$ti,r=$.as,q=new A.ax(r,s) -if(r!==B.aR)a=A.b0Y(a,r) -this.u8(new A.li(q,2,b,a,s.i("li<1,1>"))) -return q}, -Ac(a){return this.app(a,null)}, -h9(a){var s=this.$ti,r=new A.ax($.as,s) -this.u8(new A.li(r,8,a,null,s.i("li<1,1>"))) -return r}, -alo(a){this.a=this.a&1|16 -this.c=a}, -ya(a){this.a=a.a&30|this.a&1 -this.c=a.c}, -u8(a){var s=this,r=s.a -if(r<=3){a.a=s.c -s.c=a}else{if((r&4)!==0){r=s.c -if((r.a&24)===0){r.u8(a) -return}s.ya(r)}A.nq(null,null,s.b,new A.aCo(s,a))}}, -Tg(a){var s,r,q,p,o,n=this,m={} -m.a=a -if(a==null)return -s=n.a -if(s<=3){r=n.c -n.c=a -if(r!=null){q=a.a -for(p=a;q!=null;p=q,q=o)o=q.a -p.a=r}}else{if((s&4)!==0){s=n.c -if((s.a&24)===0){s.Tg(a) -return}n.ya(s)}m.a=n.zd(a) -A.nq(null,null,n.b,new A.aCw(m,n))}}, -uP(){var s=this.c -this.c=null -return this.zd(s)}, -zd(a){var s,r,q -for(s=a,r=null;s!=null;r=s,s=q){q=s.a -s.a=r}return r}, -ET(a){var s,r,q,p=this -p.a^=2 -try{a.hP(new A.aCt(p),new A.aCu(p),t.a)}catch(q){s=A.aj(q) -r=A.b3(q) -A.fE(new A.aCv(p,s,r))}}, -n7(a){var s,r=this -if(r.$ti.i("av<1>").b(a))if(a instanceof A.ax)A.aCr(a,r,!0) -else r.ET(a) -else{s=r.uP() -r.a=8 -r.c=a -A.tW(r,s)}}, -qD(a){var s=this,r=s.uP() -s.a=8 -s.c=a -A.tW(s,r)}, -aas(a){var s,r,q=this -if((a.a&16)!==0){s=q.b===a.b -s=!(s||s)}else s=!1 -if(s)return -r=q.uP() -q.ya(a) -A.tW(q,r)}, -hf(a){var s=this.uP() -this.alo(a) -A.tW(this,s)}, -aar(a,b){this.hf(new A.d7(a,b))}, -lI(a){if(this.$ti.i("av<1>").b(a)){this.Pm(a) -return}this.P7(a)}, -P7(a){this.a^=2 -A.nq(null,null,this.b,new A.aCq(this,a))}, -Pm(a){if(a instanceof A.ax){A.aCr(a,this,!1) -return}this.ET(a)}, -oI(a){this.a^=2 -A.nq(null,null,this.b,new A.aCp(this,a))}, -$iav:1} -A.aCo.prototype={ -$0(){A.tW(this.a,this.b)}, -$S:0} -A.aCw.prototype={ -$0(){A.tW(this.b,this.a.a)}, -$S:0} -A.aCt.prototype={ -$1(a){var s,r,q,p=this.a -p.a^=2 -try{p.qD(p.$ti.c.a(a))}catch(q){s=A.aj(q) -r=A.b3(q) -p.hf(new A.d7(s,r))}}, -$S:30} -A.aCu.prototype={ -$2(a,b){this.a.hf(new A.d7(a,b))}, -$S:70} -A.aCv.prototype={ -$0(){this.a.hf(new A.d7(this.b,this.c))}, -$S:0} -A.aCs.prototype={ -$0(){A.aCr(this.a.a,this.b,!0)}, -$S:0} -A.aCq.prototype={ -$0(){this.a.qD(this.b)}, -$S:0} -A.aCp.prototype={ -$0(){this.a.hf(this.b)}, -$S:0} -A.aCz.prototype={ -$0(){var s,r,q,p,o,n,m,l,k=this,j=null -try{q=k.a.a -j=q.b.b.hN(q.d)}catch(p){s=A.aj(p) -r=A.b3(p) -if(k.c&&k.b.a.c.a===s){q=k.a -q.c=k.b.a.c}else{q=s -o=r -if(o==null)o=A.pH(q) -n=k.a -n.c=new A.d7(q,o) -q=n}q.b=!0 -return}if(j instanceof A.ax&&(j.a&24)!==0){if((j.a&16)!==0){q=k.a -q.c=j.c -q.b=!0}return}if(t.L0.b(j)){m=k.b.a -l=new A.ax(m.b,m.$ti) -j.hP(new A.aCA(l,m),new A.aCB(l),t.H) -q=k.a -q.c=l -q.b=!1}}, -$S:0} -A.aCA.prototype={ -$1(a){this.a.aas(this.b)}, -$S:30} -A.aCB.prototype={ -$2(a,b){this.a.hf(new A.d7(a,b))}, -$S:70} -A.aCy.prototype={ -$0(){var s,r,q,p,o,n -try{q=this.a -p=q.a -q.c=p.b.b.CT(p.d,this.b)}catch(o){s=A.aj(o) -r=A.b3(o) -q=s -p=r -if(p==null)p=A.pH(q) -n=this.a -n.c=new A.d7(q,p) -n.b=!0}}, -$S:0} -A.aCx.prototype={ -$0(){var s,r,q,p,o,n,m,l=this -try{s=l.a.a.c -p=l.b -if(p.a.avz(s)&&p.a.e!=null){p.c=p.a.asM(s) -p.b=!1}}catch(o){r=A.aj(o) -q=A.b3(o) -p=l.a.a.c -if(p.a===r){n=l.b -n.c=p -p=n}else{p=r -n=q -if(n==null)n=A.pH(p) -m=l.b -m.c=new A.d7(p,n) -p=m}p.b=!0}}, -$S:0} -A.a0E.prototype={} -A.d1.prototype={ -gH(a){var s={},r=new A.ax($.as,t.wJ) -s.a=0 -this.f8(new A.aw3(s,this),!0,new A.aw4(s,r),r.gF4()) -return r}, -eA(a){var s=A.n(this),r=A.c([],s.i("z")),q=new A.ax($.as,s.i("ax>")) -this.f8(new A.aw5(this,r),!0,new A.aw6(q,r),q.gF4()) -return q}, -gad(a){var s=new A.ax($.as,A.n(this).i("ax")),r=this.f8(null,!0,new A.aw1(s),s.gF4()) -r.Ln(new A.aw2(this,r,s)) -return s}} -A.aw_.prototype={ -$1(a){var s,r,q,p,o,n,m,l={} -l.a=null -try{p=this.a -l.a=new J.cO(p,p.length,A.a6(p).i("cO<1>"))}catch(o){s=A.aj(o) -r=A.b3(o) -l=s -p=r -n=A.ui(l,p) -l=new A.d7(l,p==null?A.pH(l):p) -q=l -a.kf(q.a,q.b) -a.bn() -return}m=$.as -l.b=!0 -p=new A.aw0(l,a,m) -a.f=new A.avZ(l,m,p) -A.nq(null,null,m,p)}, -$S(){return this.b.i("~(D3<0>)")}} -A.aw0.prototype={ -$0(){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=h.b -if((g.b&1)!==0)l=(g.gnn().e&4)!==0 -else l=!0 -if(l){h.a.b=!1 -return}s=null -try{s=h.a.a.v()}catch(k){r=A.aj(k) -q=A.b3(k) -l=r -j=q -i=A.ui(l,j) -l=new A.d7(l,j==null?A.pH(l):j) -p=l -g.Wt(p.a,p.b) -g.IL() -return}if(s){try{l=h.a.a -j=l.d -g.aot(j==null?l.$ti.c.a(j):j)}catch(k){o=A.aj(k) -n=A.b3(k) -l=o -j=n -i=A.ui(l,j) -l=new A.d7(l,j==null?A.pH(l):j) -m=l -g.Wt(m.a,m.b)}if((g.b&1)!==0){g=g.gnn().e -g=(g&4)===0}else g=!1 -if(g)A.nq(null,null,h.c,h) -else h.a.b=!1}else g.IL()}, -$S:0} -A.avZ.prototype={ -$0(){var s=this.a -if(!s.b){s.b=!0 -A.nq(null,null,this.b,this.c)}}, -$S:0} -A.aw3.prototype={ -$1(a){++this.a.a}, -$S(){return A.n(this.b).i("~(d1.T)")}} -A.aw4.prototype={ -$0(){this.b.n7(this.a.a)}, -$S:0} -A.aw5.prototype={ -$1(a){this.b.push(a)}, -$S(){return A.n(this.a).i("~(d1.T)")}} -A.aw6.prototype={ -$0(){this.a.n7(this.b)}, -$S:0} -A.aw1.prototype={ -$0(){var s,r=A.iy(),q=new A.fM("No element") -A.aq4(q,r) -s=A.ui(q,r) -s=new A.d7(q,r) -this.a.hf(s)}, -$S:0} -A.aw2.prototype={ -$1(a){A.ber(this.b,this.c,a)}, -$S(){return A.n(this.a).i("~(d1.T)")}} -A.FA.prototype={ -f8(a,b,c,d){return this.a.f8(a,b,c,d)}, -t0(a,b,c){return this.f8(a,null,b,c)}} -A.Yt.prototype={} -A.ud.prototype={ -gE1(){return new A.jh(this,A.n(this).i("jh<1>"))}, -gajl(){if((this.b&8)===0)return this.a -return this.a.gra()}, -FA(){var s,r=this -if((r.b&8)===0){s=r.a -return s==null?r.a=new A.IR():s}s=r.a.gra() -return s}, -gnn(){var s=this.a -return(this.b&8)!==0?s.gra():s}, -n4(){if((this.b&4)!==0)return new A.fM("Cannot add event after closing") -return new A.fM("Cannot add event while adding a stream")}, -QA(){var s=this.c -if(s==null)s=this.c=(this.b&2)!==0?$.uq():new A.ax($.as,t.c) -return s}, -G(a,b){if(this.b>=4)throw A.i(this.n4()) -this.n2(b)}, -kf(a,b){var s,r,q=this -if(q.b>=4)throw A.i(q.n4()) -s=A.aNE(a,b) -a=s.a -b=s.b -r=q.b -if((r&1)!==0)q.oS(a,b) -else if((r&3)===0)q.FA().G(0,new A.yh(a,b))}, -bn(){var s=this,r=s.b -if((r&4)!==0)return s.QA() -if(r>=4)throw A.i(s.n4()) -s.PM() -return s.QA()}, -PM(){var s=this.b|=4 -if((s&1)!==0)this.oR() -else if((s&3)===0)this.FA().G(0,B.iz)}, -n2(a){var s=this.b -if((s&1)!==0)this.nk(a) -else if((s&3)===0)this.FA().G(0,new A.tQ(a))}, -Ht(a,b,c,d){var s,r,q,p=this -if((p.b&3)!==0)throw A.i(A.aL("Stream has already been listened to.")) -s=A.bcZ(p,a,b,c,d) -r=p.gajl() -if(((p.b|=1)&8)!==0){q=p.a -q.sra(s) -q.tn()}else p.a=s -s.alp(r) -s.G3(new A.aJK(p)) -return s}, -Tk(a){var s,r,q,p,o,n,m,l=this,k=null -if((l.b&8)!==0)k=l.a.bg() -l.a=null -l.b=l.b&4294967286|2 -s=l.r -if(s!=null)if(k==null)try{r=s.$0() -if(t.uz.b(r))k=r}catch(o){q=A.aj(o) -p=A.b3(o) -n=new A.ax($.as,t.c) -n.oI(new A.d7(q,p)) -k=n}else k=k.h9(s) -m=new A.aJJ(l) -if(k!=null)k=k.h9(m) -else m.$0() -return k}, -Tm(a){if((this.b&8)!==0)this.a.wE() -A.abI(this.e)}, -Tn(a){if((this.b&8)!==0)this.a.tn() -A.abI(this.f)}, -$ie8:1} -A.aJK.prototype={ -$0(){A.abI(this.a.d)}, -$S:0} -A.aJJ.prototype={ -$0(){var s=this.a.c -if(s!=null&&(s.a&30)===0)s.lI(null)}, -$S:0} -A.a0F.prototype={ -nk(a){this.gnn().lG(new A.tQ(a))}, -oS(a,b){this.gnn().lG(new A.yh(a,b))}, -oR(){this.gnn().lG(B.iz)}} -A.lg.prototype={} -A.jh.prototype={ -gt(a){return(A.h7(this.a)^892482866)>>>0}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -return b instanceof A.jh&&b.a===this.a}} -A.tN.prototype={ -GT(){return this.w.Tk(this)}, -ng(){this.w.Tm(this)}, -nh(){this.w.Tn(this)}} -A.iI.prototype={ -alp(a){var s=this -if(a==null)return -s.r=a -if(a.c!=null){s.e=(s.e|128)>>>0 -a.xq(s)}}, -Ln(a){this.a=A.azS(this.d,a)}, -wE(){var s,r,q=this,p=q.e -if((p&8)!==0)return -s=(p+256|4)>>>0 -q.e=s -if(p<256){r=q.r -if(r!=null)if(r.a===1)r.a=3}if((p&4)===0&&(s&64)===0)q.G3(q.gyY())}, -tn(){var s=this,r=s.e -if((r&8)!==0)return -if(r>=256){r=s.e=r-256 -if(r<256)if((r&128)!==0&&s.r.c!=null)s.r.xq(s) -else{r=(r&4294967291)>>>0 -s.e=r -if((r&64)===0)s.G3(s.gz0())}}}, -bg(){var s=this,r=(s.e&4294967279)>>>0 -s.e=r -if((r&8)===0)s.ER() -r=s.f -return r==null?$.uq():r}, -ER(){var s,r=this,q=r.e=(r.e|8)>>>0 -if((q&128)!==0){s=r.r -if(s.a===1)s.a=3}if((q&64)===0)r.r=null -r.f=r.GT()}, -n2(a){var s=this.e -if((s&8)!==0)return -if(s<64)this.nk(a) -else this.lG(new A.tQ(a))}, -y_(a,b){var s -if(t.Lt.b(a))A.aq4(a,b) -s=this.e -if((s&8)!==0)return -if(s<64)this.oS(a,b) -else this.lG(new A.yh(a,b))}, -EY(){var s=this,r=s.e -if((r&8)!==0)return -r=(r|2)>>>0 -s.e=r -if(r<64)s.oR() -else s.lG(B.iz)}, -ng(){}, -nh(){}, -GT(){return null}, -lG(a){var s,r=this,q=r.r -if(q==null)q=r.r=new A.IR() -q.G(0,a) -s=r.e -if((s&128)===0){s=(s|128)>>>0 -r.e=s -if(s<256)q.xq(r)}}, -nk(a){var s=this,r=s.e -s.e=(r|64)>>>0 -s.d.wW(s.a,a) -s.e=(s.e&4294967231)>>>0 -s.EV((r&4)!==0)}, -oS(a,b){var s,r=this,q=r.e,p=new A.azU(r,a,b) -if((q&1)!==0){r.e=(q|16)>>>0 -r.ER() -s=r.f -if(s!=null&&s!==$.uq())s.h9(p) -else p.$0()}else{p.$0() -r.EV((q&4)!==0)}}, -oR(){var s,r=this,q=new A.azT(r) -r.ER() -r.e=(r.e|16)>>>0 -s=r.f -if(s!=null&&s!==$.uq())s.h9(q) -else q.$0()}, -G3(a){var s=this,r=s.e -s.e=(r|64)>>>0 -a.$0() -s.e=(s.e&4294967231)>>>0 -s.EV((r&4)!==0)}, -EV(a){var s,r,q=this,p=q.e -if((p&128)!==0&&q.r.c==null){p=q.e=(p&4294967167)>>>0 -s=!1 -if((p&4)!==0)if(p<256){s=q.r -s=s==null?null:s.c==null -s=s!==!1}if(s){p=(p&4294967291)>>>0 -q.e=p}}for(;;a=r){if((p&8)!==0){q.r=null -return}r=(p&4)!==0 -if(a===r)break -q.e=(p^64)>>>0 -if(r)q.ng() -else q.nh() -p=(q.e&4294967231)>>>0 -q.e=p}if((p&128)!==0&&p<256)q.r.xq(q)}, -$imS:1} -A.azU.prototype={ -$0(){var s,r,q=this.a,p=q.e -if((p&8)!==0&&(p&16)===0)return -q.e=(p|64)>>>0 -s=q.b -p=this.b -r=q.d -if(t.hK.b(s))r.ayi(s,p,this.c) -else r.wW(s,p) -q.e=(q.e&4294967231)>>>0}, -$S:0} -A.azT.prototype={ -$0(){var s=this.a,r=s.e -if((r&16)===0)return -s.e=(r|74)>>>0 -s.d.wV(s.c) -s.e=(s.e&4294967231)>>>0}, -$S:0} -A.Kh.prototype={ -f8(a,b,c,d){return this.a.Ht(a,d,c,b===!0)}, -nT(a){return this.f8(a,null,null,null)}, -t0(a,b,c){return this.f8(a,null,b,c)}} -A.a1W.prototype={ -gmo(){return this.a}, -smo(a){return this.a=a}} -A.tQ.prototype={ -LI(a){a.nk(this.b)}} -A.yh.prototype={ -LI(a){a.oS(this.b,this.c)}} -A.aBn.prototype={ -LI(a){a.oR()}, -gmo(){return null}, -smo(a){throw A.i(A.aL("No events after a done."))}} -A.IR.prototype={ -xq(a){var s=this,r=s.a -if(r===1)return -if(r>=1){s.a=1 -return}A.fE(new A.aFb(s,a)) -s.a=1}, -G(a,b){var s=this,r=s.c -if(r==null)s.b=s.c=b -else{r.smo(b) -s.c=b}}} -A.aFb.prototype={ -$0(){var s,r,q=this.a,p=q.a -q.a=0 -if(p===3)return -s=q.b -r=s.gmo() -q.b=r -if(r==null)q.c=null -s.LI(this.b)}, -$S:0} -A.yj.prototype={ -Ln(a){}, -wE(){var s=this.a -if(s>=0)this.a=s+2}, -tn(){var s=this,r=s.a-2 -if(r<0)return -if(r===0){s.a=1 -A.fE(s.gSO())}else s.a=r}, -bg(){this.a=-1 -this.c=null -return $.uq()}, -aiw(){var s,r=this,q=r.a-1 -if(q===0){r.a=-1 -s=r.c -if(s!=null){r.c=null -r.b.wV(s)}}else r.a=q}, -$imS:1} -A.z2.prototype={ -gT(){if(this.c)return this.b -return null}, -v(){var s,r=this,q=r.a -if(q!=null){if(r.c){s=new A.ax($.as,t.tq) -r.b=s -r.c=!1 -q.tn() -return s}throw A.i(A.aL("Already waiting for next."))}return r.agG()}, -agG(){var s,r,q=this,p=q.b -if(p!=null){s=new A.ax($.as,t.tq) -q.b=s -r=p.f8(q.gai9(),!0,q.gaib(),q.gaii()) -if(q.b!=null)q.a=r -return s}return $.b2u()}, -bg(){var s=this,r=s.a,q=s.b -s.b=null -if(r!=null){s.a=null -if(!s.c)q.lI(!1) -else s.c=!1 -return r.bg()}return $.uq()}, -aia(a){var s,r,q=this -if(q.a==null)return -s=q.b -q.b=a -q.c=!0 -s.n7(!0) -if(q.c){r=q.a -if(r!=null)r.wE()}}, -aij(a,b){var s=this,r=s.a,q=s.b -s.b=s.a=null -if(r!=null)q.hf(new A.d7(a,b)) -else q.oI(new A.d7(a,b))}, -aic(){var s=this,r=s.a,q=s.b -s.b=s.a=null -if(r!=null)q.qD(!1) -else q.P7(!1)}} -A.HM.prototype={ -f8(a,b,c,d){return A.b_t(c)}, -t0(a,b,c){return this.f8(a,null,b,c)}} -A.u3.prototype={ -f8(a,b,c,d){var s=null,r=new A.IA(s,s,s,s,this.$ti.i("IA<1>")) -r.d=new A.aES(this,r) -return r.Ht(a,d,c,b===!0)}, -t0(a,b,c){return this.f8(a,null,b,c)}} -A.aES.prototype={ -$0(){this.a.b.$1(this.b)}, -$S:0} -A.IA.prototype={ -aot(a){var s=this.b -if(s>=4)throw A.i(this.n4()) -if((s&1)!==0)this.gnn().n2(a)}, -Wt(a,b){var s=this.b -if(s>=4)throw A.i(this.n4()) -if((s&1)!==0){s=this.gnn() -s.y_(a,b==null?B.eF:b)}}, -IL(){var s=this,r=s.b -if((r&4)!==0)return -if(r>=4)throw A.i(s.n4()) -r|=4 -s.b=r -if((r&1)!==0)s.gnn().EY()}, -gE1(){throw A.i(A.c2("Not available"))}, -$iD3:1} -A.aM1.prototype={ -$0(){return this.a.n7(this.b)}, -$S:0} -A.HN.prototype={ -G(a,b){var s=this.a -if((s.e&2)!==0)A.a0(A.aL("Stream is already closed")) -s.u3(b)}, -kf(a,b){var s=this.a,r=b==null?A.pH(a):b -if((s.e&2)!==0)A.a0(A.aL("Stream is already closed")) -s.u4(a,r)}, -bn(){var s=this.a -if((s.e&2)!==0)A.a0(A.aL("Stream is already closed")) -s.Eo()}, -$ie8:1} -A.z1.prototype={ -ng(){var s=this.x -if(s!=null)s.wE()}, -nh(){var s=this.x -if(s!=null)s.tn()}, -GT(){var s=this.x -if(s!=null){this.x=null -return s.bg()}return null}, -adF(a){var s,r,q,p -try{q=this.w -q===$&&A.a() -q.G(0,a)}catch(p){s=A.aj(p) -r=A.b3(p) -if((this.e&2)!==0)A.a0(A.aL("Stream is already closed")) -this.u4(s,r)}}, -a9i(a,b){var s,r,q,p,o=this,n="Stream is already closed" -try{q=o.w -q===$&&A.a() -q.kf(a,b)}catch(p){s=A.aj(p) -r=A.b3(p) -if(s===a){if((o.e&2)!==0)A.a0(A.aL(n)) -o.u4(a,b)}else{if((o.e&2)!==0)A.a0(A.aL(n)) -o.u4(s,r)}}}, -adO(){var s,r,q,p,o=this -try{o.x=null -q=o.w -q===$&&A.a() -q.bn()}catch(p){s=A.aj(p) -r=A.b3(p) -if((o.e&2)!==0)A.a0(A.aL("Stream is already closed")) -o.u4(s,r)}}} -A.Ki.prototype={ -p5(a){return new A.n6(this.a,a,this.$ti.i("n6<1,2>"))}} -A.n6.prototype={ -f8(a,b,c,d){var s=$.as,r=b===!0?1:0,q=A.azS(s,a),p=A.aSu(s,d),o=new A.z1(q,p,c,s,r|32) -o.w=this.a.$1(new A.HN(o)) -o.x=this.b.t0(o.gadE(),o.gadN(),o.ga9h()) -return o}, -t0(a,b,c){return this.f8(a,null,b,c)}} -A.yr.prototype={ -G(a,b){var s=this.d -if(s==null)throw A.i(A.aL("Sink is closed")) -this.a.$2(b,s)}, -kf(a,b){var s=this.d -if(s==null)throw A.i(A.aL("Sink is closed")) -s.kf(a,b)}, -bn(){var s,r=this.d -if(r==null)return -this.d=null -s=r.a -if((s.e&2)!==0)A.a0(A.aL("Stream is already closed")) -s.Eo()}, -$ie8:1} -A.Kg.prototype={ -p5(a){return this.a7g(a)}} -A.aJL.prototype={ -$1(a){var s=this -return new A.yr(s.a,s.b,s.c,a,s.e.i("@<0>").bN(s.d).i("yr<1,2>"))}, -$S(){return this.e.i("@<0>").bN(this.d).i("yr<1,2>(e8<2>)")}} -A.aLO.prototype={} -A.aGM.prototype={ -wV(a){var s,r,q -try{if(B.aR===$.as){a.$0() -return}A.b10(null,null,this,a)}catch(q){s=A.aj(q) -r=A.b3(q) -A.zk(s,r)}}, -aym(a,b){var s,r,q -try{if(B.aR===$.as){a.$1(b) -return}A.b12(null,null,this,a,b)}catch(q){s=A.aj(q) -r=A.b3(q) -A.zk(s,r)}}, -wW(a,b){return this.aym(a,b,t.z)}, -ayh(a,b,c){var s,r,q -try{if(B.aR===$.as){a.$2(b,c) -return}A.b11(null,null,this,a,b,c)}catch(q){s=A.aj(q) -r=A.b3(q) -A.zk(s,r)}}, -ayi(a,b,c){var s=t.z -return this.ayh(a,b,c,s,s)}, -X1(a,b,c){return new A.aGQ(this,a,c,b)}, -aoZ(a,b,c,d){return new A.aGN(this,a,c,d,b)}, -It(a){return new A.aGO(this,a)}, -X2(a,b){return new A.aGP(this,a,b)}, -h(a,b){return null}, -aye(a){if($.as===B.aR)return a.$0() -return A.b10(null,null,this,a)}, -hN(a){return this.aye(a,t.z)}, -ayl(a,b){if($.as===B.aR)return a.$1(b) -return A.b12(null,null,this,a,b)}, -CT(a,b){var s=t.z -return this.ayl(a,b,s,s)}, -ayg(a,b,c){if($.as===B.aR)return a.$2(b,c) -return A.b11(null,null,this,a,b,c)}, -a1n(a,b,c){var s=t.z -return this.ayg(a,b,c,s,s,s)}, -axI(a){return a}, -LV(a){var s=t.z -return this.axI(a,s,s,s)}} -A.aGQ.prototype={ -$1(a){return this.a.CT(this.b,a)}, -$S(){return this.d.i("@<0>").bN(this.c).i("1(2)")}} -A.aGN.prototype={ -$2(a,b){return this.a.a1n(this.b,a,b)}, -$S(){return this.e.i("@<0>").bN(this.c).bN(this.d).i("1(2,3)")}} -A.aGO.prototype={ -$0(){return this.a.wV(this.b)}, -$S:0} -A.aGP.prototype={ -$1(a){return this.a.wW(this.b,a)}, -$S(){return this.c.i("~(0)")}} -A.aO7.prototype={ -$0(){A.aVV(this.a,this.b)}, -$S:0} -A.nd.prototype={ -gH(a){return this.a}, -gan(a){return this.a===0}, -gc6(a){return this.a!==0}, -gcd(){return new A.tX(this,A.n(this).i("tX<1>"))}, -gh8(){var s=A.n(this) -return A.w4(new A.tX(this,s.i("tX<1>")),new A.aCJ(this),s.c,s.y[1])}, -aN(a){var s,r -if(typeof a=="string"&&a!=="__proto__"){s=this.b -return s==null?!1:s[a]!=null}else if(typeof a=="number"&&(a&1073741823)===a){r=this.c -return r==null?!1:r[a]!=null}else return this.Q1(a)}, -Q1(a){var s=this.d -if(s==null)return!1 -return this.i1(this.QY(s,a),a)>=0}, -h(a,b){var s,r,q -if(typeof b=="string"&&b!=="__proto__"){s=this.b -r=s==null?null:A.aSw(s,b) -return r}else if(typeof b=="number"&&(b&1073741823)===b){q=this.c -r=q==null?null:A.aSw(q,b) -return r}else return this.QW(b)}, -QW(a){var s,r,q=this.d -if(q==null)return null -s=this.QY(q,a) -r=this.i1(s,a) -return r<0?null:s[r+1]}, -m(a,b,c){var s,r,q=this -if(typeof b=="string"&&b!=="__proto__"){s=q.b -q.PO(s==null?q.b=A.aSx():s,b,c)}else if(typeof b=="number"&&(b&1073741823)===b){r=q.c -q.PO(r==null?q.c=A.aSx():r,b,c)}else q.Uh(b,c)}, -Uh(a,b){var s,r,q,p=this,o=p.d -if(o==null)o=p.d=A.aSx() -s=p.iI(a) -r=o[s] -if(r==null){A.aSy(o,s,[a,b]);++p.a -p.e=null}else{q=p.i1(r,a) -if(q>=0)r[q+1]=b -else{r.push(a,b);++p.a -p.e=null}}}, -cl(a,b){var s,r,q=this -if(q.aN(a)){s=q.h(0,a) -return s==null?A.n(q).y[1].a(s):s}r=b.$0() -q.m(0,a,r) -return r}, -J(a,b){var s=this -if(typeof b=="string"&&b!=="__proto__")return s.n6(s.b,b) -else if(typeof b=="number"&&(b&1073741823)===b)return s.n6(s.c,b) -else return s.r_(b)}, -r_(a){var s,r,q,p,o=this,n=o.d -if(n==null)return null -s=o.iI(a) -r=n[s] -q=o.i1(r,a) -if(q<0)return null;--o.a -o.e=null -p=r.splice(q,2)[1] -if(0===r.length)delete n[s] -return p}, -aa(a){var s=this -if(s.a>0){s.b=s.c=s.d=s.e=null -s.a=0}}, -aL(a,b){var s,r,q,p,o,n=this,m=n.F7() -for(s=m.length,r=A.n(n).y[1],q=0;q"))}, -q(a,b){return this.a.aN(b)}} -A.ys.prototype={ -gT(){var s=this.d -return s==null?this.$ti.c.a(s):s}, -v(){var s=this,r=s.b,q=s.c,p=s.a -if(r!==p.e)throw A.i(A.cd(p)) -else if(q>=r.length){s.d=null -return!1}else{s.d=r[q] -s.c=q+1 -return!0}}} -A.Ij.prototype={ -h(a,b){if(!this.y.$1(b))return null -return this.a4x(b)}, -m(a,b,c){this.a4z(b,c)}, -aN(a){if(!this.y.$1(a))return!1 -return this.a4w(a)}, -J(a,b){if(!this.y.$1(b))return null -return this.a4y(b)}, -pG(a){return this.x.$1(a)&1073741823}, -pH(a,b){var s,r,q -if(a==null)return-1 -s=a.length -for(r=this.w,q=0;q"))}, -gai(a){return new A.hI(this,this.qE(),A.n(this).i("hI<1>"))}, -gH(a){return this.a}, -gan(a){return this.a===0}, -gc6(a){return this.a!==0}, -q(a,b){var s,r -if(typeof b=="string"&&b!=="__proto__"){s=this.b -return s==null?!1:s[b]!=null}else if(typeof b=="number"&&(b&1073741823)===b){r=this.c -return r==null?!1:r[b]!=null}else return this.Fc(b)}, -Fc(a){var s=this.d -if(s==null)return!1 -return this.i1(s[this.iI(a)],a)>=0}, -G(a,b){var s,r,q=this -if(typeof b=="string"&&b!=="__proto__"){s=q.b -return q.uf(s==null?q.b=A.aSz():s,b)}else if(typeof b=="number"&&(b&1073741823)===b){r=q.c -return q.uf(r==null?q.c=A.aSz():r,b)}else return q.he(b)}, -he(a){var s,r,q=this,p=q.d -if(p==null)p=q.d=A.aSz() -s=q.iI(a) -r=p[s] -if(r==null)p[s]=[a] -else{if(q.i1(r,a)>=0)return!1 -r.push(a)}++q.a -q.e=null -return!0}, -a_(a,b){var s -for(s=J.bG(b);s.v();)this.G(0,s.gT())}, -J(a,b){var s=this -if(typeof b=="string"&&b!=="__proto__")return s.n6(s.b,b) -else if(typeof b=="number"&&(b&1073741823)===b)return s.n6(s.c,b) -else return s.r_(b)}, -r_(a){var s,r,q,p=this,o=p.d -if(o==null)return!1 -s=p.iI(a) -r=o[s] -q=p.i1(r,a) -if(q<0)return!1;--p.a -p.e=null -r.splice(q,1) -if(0===r.length)delete o[s] -return!0}, -aa(a){var s=this -if(s.a>0){s.b=s.c=s.d=s.e=null -s.a=0}}, -qE(){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.e -if(h!=null)return h -h=A.bO(i.a,null,!1,t.z) -s=i.b -r=0 -if(s!=null){q=Object.getOwnPropertyNames(s) -p=q.length -for(o=0;o=r.length){s.d=null -return!1}else{s.d=r[q] -s.c=q+1 -return!0}}} -A.hK.prototype={ -yX(){return new A.hK(A.n(this).i("hK<1>"))}, -SG(a){return new A.hK(a.i("hK<0>"))}, -ai1(){return this.SG(t.z)}, -gai(a){var s=this,r=new A.p8(s,s.r,A.n(s).i("p8<1>")) -r.c=s.e -return r}, -gH(a){return this.a}, -gan(a){return this.a===0}, -gc6(a){return this.a!==0}, -q(a,b){var s,r -if(typeof b=="string"&&b!=="__proto__"){s=this.b -if(s==null)return!1 -return s[b]!=null}else if(typeof b=="number"&&(b&1073741823)===b){r=this.c -if(r==null)return!1 -return r[b]!=null}else return this.Fc(b)}, -Fc(a){var s=this.d -if(s==null)return!1 -return this.i1(s[this.iI(a)],a)>=0}, -aL(a,b){var s=this,r=s.e,q=s.r -while(r!=null){b.$1(r.a) -if(q!==s.r)throw A.i(A.cd(s)) -r=r.b}}, -gad(a){var s=this.e -if(s==null)throw A.i(A.aL("No elements")) -return s.a}, -gaC(a){var s=this.f -if(s==null)throw A.i(A.aL("No elements")) -return s.a}, -G(a,b){var s,r,q=this -if(typeof b=="string"&&b!=="__proto__"){s=q.b -return q.uf(s==null?q.b=A.aSB():s,b)}else if(typeof b=="number"&&(b&1073741823)===b){r=q.c -return q.uf(r==null?q.c=A.aSB():r,b)}else return q.he(b)}, -he(a){var s,r,q=this,p=q.d -if(p==null)p=q.d=A.aSB() -s=q.iI(a) -r=p[s] -if(r==null)p[s]=[q.F0(a)] -else{if(q.i1(r,a)>=0)return!1 -r.push(q.F0(a))}return!0}, -J(a,b){var s=this -if(typeof b=="string"&&b!=="__proto__")return s.n6(s.b,b) -else if(typeof b=="number"&&(b&1073741823)===b)return s.n6(s.c,b) -else return s.r_(b)}, -r_(a){var s,r,q,p,o=this,n=o.d -if(n==null)return!1 -s=o.iI(a) -r=n[s] -q=o.i1(r,a) -if(q<0)return!1 -p=r.splice(q,1)[0] -if(0===r.length)delete n[s] -o.PP(p) -return!0}, -f4(a,b){this.ym(b,!0)}, -ym(a,b){var s,r,q,p,o=this,n=o.e -for(;n!=null;n=r){s=n.a -r=n.b -q=o.r -p=a.$1(s) -if(q!==o.r)throw A.i(A.cd(o)) -if(!0===p)o.J(0,s)}}, -aa(a){var s=this -if(s.a>0){s.b=s.c=s.d=s.e=s.f=null -s.a=0 -s.F_()}}, -uf(a,b){if(a[b]!=null)return!1 -a[b]=this.F0(b) -return!0}, -n6(a,b){var s -if(a==null)return!1 -s=a[b] -if(s==null)return!1 -this.PP(s) -delete a[b] -return!0}, -F_(){this.r=this.r+1&1073741823}, -F0(a){var s,r=this,q=new A.aDQ(a) -if(r.e==null)r.e=r.f=q -else{s=r.f -s.toString -q.c=s -r.f=s.b=q}++r.a -r.F_() -return q}, -PP(a){var s=this,r=a.c,q=a.b -if(r==null)s.e=q -else r.b=q -if(q==null)s.f=r -else q.c=r;--s.a -s.F_()}, -iI(a){return J.D(a)&1073741823}, -i1(a,b){var s,r -if(a==null)return-1 -s=a.length -for(r=0;r"))}, -gH(a){return this.b}, -aa(a){var s,r,q,p=this;++p.a -if(p.b===0)return -s=p.c -s.toString -r=s -do{q=r.h1$ -q.toString -r.h1$=r.ie$=r.fl$=null -if(q!==s){r=q -continue}else break}while(!0) -p.c=null -p.b=0}, -gad(a){var s -if(this.b===0)throw A.i(A.aL("No such element")) -s=this.c -s.toString -return s}, -gaC(a){var s -if(this.b===0)throw A.i(A.aL("No such element")) -s=this.c.ie$ -s.toString -return s}, -gan(a){return this.b===0}, -oL(a,b,c){var s,r,q=this -if(b.fl$!=null)throw A.i(A.aL("LinkedListEntry is already in a LinkedList"));++q.a -b.fl$=q -s=q.b -if(s===0){b.h1$=b -q.c=b.ie$=b -q.b=s+1 -return}r=a.ie$ -r.toString -b.ie$=r -b.h1$=a -a.ie$=r.h1$=b -if(c&&a==q.c)q.c=b -q.b=s+1}, -v0(a){var s,r,q=this;++q.a -s=a.h1$ -s.ie$=a.ie$ -a.ie$.h1$=s -r=--q.b -a.fl$=a.h1$=a.ie$=null -if(r===0)q.c=null -else if(a===q.c)q.c=s}} -A.yB.prototype={ -gT(){var s=this.c -return s==null?this.$ti.c.a(s):s}, -v(){var s=this,r=s.a -if(s.b!==r.a)throw A.i(A.cd(s)) -if(r.b!==0)r=s.e&&s.d===r.gad(0) -else r=!0 -if(r){s.c=null -return!1}s.e=!0 -r=s.d -s.c=r -s.d=r.h1$ -return!0}} -A.ft.prototype={ -gmo(){var s=this.fl$ -if(s==null||s.gad(0)===this.h1$)return null -return this.h1$}, -gwJ(){var s=this.fl$ -if(s==null||this===s.gad(0))return null -return this.ie$}} -A.aX.prototype={ -gai(a){return new A.bf(a,this.gH(a),A.df(a).i("bf"))}, -cY(a,b){return this.h(a,b)}, -aL(a,b){var s,r=this.gH(a) -for(s=0;s"))}, -MB(a,b){return new A.cN(a,b.i("cN<0>"))}, -hI(a,b,c){return new A.am(a,b,A.df(a).i("@").bN(c).i("am<1,2>"))}, -hZ(a,b){return A.fN(a,b,null,A.df(a).i("aX.E"))}, -kz(a,b){return A.fN(a,0,A.kj(b,"count",t.S),A.df(a).i("aX.E"))}, -eR(a,b){var s,r,q,p,o=this -if(o.gan(a)){s=A.df(a).i("aX.E") -return b?J.vP(0,s):J.Ce(0,s)}r=o.h(a,0) -q=A.bO(o.gH(a),r,b,A.df(a).i("aX.E")) -for(p=1;p").bN(b).i("fk<1,2>"))}, -jQ(a){var s,r=this -if(r.gH(a)===0)throw A.i(A.cD()) -s=r.h(a,r.gH(a)-1) -r.sH(a,r.gH(a)-1) -return s}, -fO(a,b){var s=b==null?A.bjk():b -A.Yj(a,0,this.gH(a)-1,s)}, -a8(a,b){var s=A.aa(a,A.df(a).i("aX.E")) -B.b.a_(s,b) -return s}, -d1(a,b,c){var s,r=this.gH(a) -if(c==null)c=r -A.fv(b,c,r,null,null) -s=A.aa(this.xk(a,b,c),A.df(a).i("aX.E")) -return s}, -hz(a,b){return this.d1(a,b,null)}, -xk(a,b,c){A.fv(b,c,this.gH(a),null,null) -return A.fN(a,b,c,A.df(a).i("aX.E"))}, -ask(a,b,c,d){var s -A.fv(b,c,this.gH(a),null,null) -for(s=b;sp.gH(q))throw A.i(A.aWm()) -if(r=0;--o)this.m(a,b+o,p.h(q,r+o)) -else for(o=0;o"))}, -mn(a,b,c,d){var s,r,q,p,o,n=A.t(c,d) -for(s=this.gcd(),s=s.gai(s),r=A.n(this).i("bz.V");s.v();){q=s.gT() -p=this.h(0,q) -o=b.$2(q,p==null?r.a(p):p) -n.m(0,o.a,o.b)}return n}, -Ws(a){var s,r -for(s=a.gai(a);s.v();){r=s.gT() -this.m(0,r.a,r.b)}}, -f4(a,b){var s,r,q,p,o=this,n=A.n(o),m=A.c([],n.i("z")) -for(s=o.gcd(),s=s.gai(s),n=n.i("bz.V");s.v();){r=s.gT() -q=o.h(0,r) -if(b.$2(r,q==null?n.a(q):q))m.push(r)}for(n=m.length,p=0;p"))}, -k(a){return A.RI(this)}, -$iba:1} -A.alr.prototype={ -$1(a){var s=this.a,r=s.h(0,a) -if(r==null)r=A.n(s).i("bz.V").a(r) -return new A.aV(a,r,A.n(s).i("aV"))}, -$S(){return A.n(this.a).i("aV(bz.K)")}} -A.als.prototype={ -$2(a,b){var s,r=this.a -if(!r.a)this.b.a+=", " -r.a=!1 -r=this.b -s=A.j(a) -r.a=(r.a+=s)+": " -s=A.j(b) -r.a+=s}, -$S:109} -A.xZ.prototype={} -A.In.prototype={ -gH(a){var s=this.a -return s.gH(s)}, -gan(a){var s=this.a -return s.gan(s)}, -gc6(a){var s=this.a -return s.gc6(s)}, -gad(a){var s=this.a,r=s.gcd() -r=s.h(0,r.gad(r)) -return r==null?this.$ti.y[1].a(r):r}, -gaC(a){var s=this.a,r=s.gcd() -r=s.h(0,r.gaC(r)) -return r==null?this.$ti.y[1].a(r):r}, -gai(a){var s=this.a,r=s.gcd() -return new A.a3G(r.gai(r),s,this.$ti.i("a3G<1,2>"))}} -A.a3G.prototype={ -v(){var s=this,r=s.a -if(r.v()){s.c=s.b.h(0,r.gT()) -return!0}s.c=null -return!1}, -gT(){var s=this.c -return s==null?this.$ti.y[1].a(s):s}} -A.KH.prototype={ -m(a,b,c){throw A.i(A.c2("Cannot modify unmodifiable map"))}, -J(a,b){throw A.i(A.c2("Cannot modify unmodifiable map"))}, -cl(a,b){throw A.i(A.c2("Cannot modify unmodifiable map"))}} -A.CF.prototype={ -jy(a,b,c){return this.a.jy(0,b,c)}, -h(a,b){return this.a.h(0,b)}, -m(a,b,c){this.a.m(0,b,c)}, -cl(a,b){return this.a.cl(a,b)}, -aN(a){return this.a.aN(a)}, -aL(a,b){this.a.aL(0,b)}, -gan(a){var s=this.a -return s.gan(s)}, -gc6(a){var s=this.a -return s.gc6(s)}, -gH(a){var s=this.a -return s.gH(s)}, -gcd(){return this.a.gcd()}, -J(a,b){return this.a.J(0,b)}, -k(a){return this.a.k(0)}, -gh8(){return this.a.gh8()}, -gfj(){return this.a.gfj()}, -mn(a,b,c,d){return this.a.mn(0,b,c,d)}, -$iba:1} -A.n2.prototype={ -jy(a,b,c){return new A.n2(this.a.jy(0,b,c),b.i("@<0>").bN(c).i("n2<1,2>"))}} -A.HC.prototype={ -ah8(a,b){var s=this -s.b=b -s.a=a -if(a!=null)a.b=s -if(b!=null)b.a=s}, -amT(){var s,r=this,q=r.a -if(q!=null)q.b=r.b -s=r.b -if(s!=null)s.a=q -r.a=r.b=null}} -A.HB.prototype={ -Tv(){var s,r,q=this -q.c=null -s=q.a -if(s!=null)s.b=q.b -r=q.b -if(r!=null)r.a=s -q.a=q.b=null -return q.d}, -fI(a){var s=this,r=s.c -if(r!=null)--r.b -s.c=null -s.amT() -return s.d}, -y5(){return this}, -$iaVM:1, -gAT(){return this.d}} -A.HD.prototype={ -y5(){return null}, -Tv(){throw A.i(A.cD())}, -gAT(){throw A.i(A.cD())}} -A.Bf.prototype={ -eI(a,b){return new A.lK(this,this.$ti.i("@<1>").bN(b).i("lK<1,2>"))}, -gH(a){return this.b}, -nr(a){var s=this.a -new A.HB(this,a,s.$ti.i("HB<1>")).ah8(s,s.b);++this.b}, -jQ(a){var s=this.a.a.Tv();--this.b -return s}, -gad(a){return this.a.b.gAT()}, -gaC(a){return this.a.a.gAT()}, -gan(a){var s=this.a -return s.b===s}, -gai(a){return new A.a26(this,this.a.b,this.$ti.i("a26<1>"))}, -k(a){return A.o_(this,"{","}")}, -$iaO:1} -A.a26.prototype={ -v(){var s=this,r=s.b,q=r==null?null:r.y5() -if(q==null){s.a=s.b=s.c=null -return!1}r=s.a -if(r!=q.c)throw A.i(A.cd(r)) -s.c=q.d -s.b=q.b -return!0}, -gT(){var s=this.c -return s==null?this.$ti.c.a(s):s}} -A.Cv.prototype={ -eI(a,b){return new A.lK(this,this.$ti.i("@<1>").bN(b).i("lK<1,2>"))}, -gai(a){var s=this -return new A.a3v(s,s.c,s.d,s.b,s.$ti.i("a3v<1>"))}, -gan(a){return this.b===this.c}, -gH(a){return(this.c-this.b&this.a.length-1)>>>0}, -gad(a){var s=this,r=s.b -if(r===s.c)throw A.i(A.cD()) -r=s.a[r] -return r==null?s.$ti.c.a(r):r}, -gaC(a){var s=this,r=s.b,q=s.c -if(r===q)throw A.i(A.cD()) -r=s.a -r=r[(q-1&r.length-1)>>>0] -return r==null?s.$ti.c.a(r):r}, -cY(a,b){var s,r=this -A.aR5(b,r.gH(0),r,null) -s=r.a -s=s[(r.b+b&s.length-1)>>>0] -return s==null?r.$ti.c.a(s):s}, -eR(a,b){var s,r,q,p,o,n,m=this,l=m.a.length-1,k=(m.c-m.b&l)>>>0 -if(k===0){s=m.$ti.c -return b?J.vP(0,s):J.Ce(0,s)}s=m.$ti.c -r=A.bO(k,m.gad(0),b,s) -for(q=m.a,p=m.b,o=0;o>>0] -r[o]=n==null?s.a(n):n}return r}, -eA(a){return this.eR(0,!0)}, -a_(a,b){var s,r,q,p,o,n,m,l,k=this -if(t.j.b(b)){s=b.length -r=k.gH(0) -q=r+s -p=k.a -o=p.length -if(q>=o){n=A.bO(A.aWG(q+(q>>>1)),null,!1,k.$ti.i("1?")) -k.c=k.anY(n) -k.a=n -k.b=0 -B.b.ej(n,r,q,b,0) -k.c+=s}else{q=k.c -m=o-q -if(s>>0)s[p]=null -q.b=q.c=0;++q.d}}, -k(a){return A.o_(this,"{","}")}, -nr(a){var s=this,r=s.b,q=s.a -r=s.b=(r-1&q.length-1)>>>0 -q[r]=a -if(r===s.c)s.Rv();++s.d}, -ti(){var s,r,q=this,p=q.b -if(p===q.c)throw A.i(A.cD());++q.d -s=q.a -r=s[p] -if(r==null)r=q.$ti.c.a(r) -s[p]=null -q.b=(p+1&s.length-1)>>>0 -return r}, -jQ(a){var s,r=this,q=r.b,p=r.c -if(q===p)throw A.i(A.cD());++r.d -q=r.a -p=r.c=(p-1&q.length-1)>>>0 -s=q[p] -if(s==null)s=r.$ti.c.a(s) -q[p]=null -return s}, -he(a){var s=this,r=s.a,q=s.c -r[q]=a -r=(q+1&r.length-1)>>>0 -s.c=r -if(s.b===r)s.Rv();++s.d}, -Rv(){var s=this,r=A.bO(s.a.length*2,null,!1,s.$ti.i("1?")),q=s.a,p=s.b,o=q.length-p -B.b.ej(r,0,o,q,p) -B.b.ej(r,o,o+s.b,s.a,0) -s.b=0 -s.c=s.a.length -s.a=r}, -anY(a){var s,r,q=this,p=q.b,o=q.c,n=q.a -if(p<=o){s=o-p -B.b.ej(a,0,s,n,p) -return s}else{r=n.length-p -B.b.ej(a,0,r,n,p) -B.b.ej(a,r,r+q.c,q.a,0) -return q.c+r}}} -A.a3v.prototype={ -gT(){var s=this.e -return s==null?this.$ti.c.a(s):s}, -v(){var s,r=this,q=r.a -if(r.c!==q.d)A.a0(A.cd(q)) -s=r.d -if(s===r.b){r.e=null -return!1}q=q.a -r.e=q[s] -r.d=(s+1&q.length-1)>>>0 -return!0}} -A.j9.prototype={ -gan(a){return this.gH(this)===0}, -gc6(a){return this.gH(this)!==0}, -a_(a,b){var s -for(s=J.bG(b);s.v();)this.G(0,s.gT())}, -CM(a){var s,r -for(s=a.length,r=0;r").bN(c).i("qe<1,2>"))}, -k(a){return A.o_(this,"{","}")}, -aL(a,b){var s -for(s=this.gai(this);s.v();)b.$1(s.gT())}, -bJ(a,b){var s,r,q=this.gai(this) -if(!q.v())return"" -s=J.cB(q.gT()) -if(!q.v())return s -if(b.length===0){r=s -do r+=A.j(q.gT()) -while(q.v())}else{r=s -do r=r+b+A.j(q.gT()) -while(q.v())}return r.charCodeAt(0)==0?r:r}, -i8(a,b){var s -for(s=this.gai(this);s.v();)if(b.$1(s.gT()))return!0 -return!1}, -kz(a,b){return A.aZG(this,b,A.n(this).c)}, -hZ(a,b){return A.aZs(this,b,A.n(this).c)}, -gad(a){var s=this.gai(this) -if(!s.v())throw A.i(A.cD()) -return s.gT()}, -gaC(a){var s,r=this.gai(this) -if(!r.v())throw A.i(A.cD()) -do s=r.gT() -while(r.v()) -return s}, -cY(a,b){var s,r -A.dk(b,"index") -s=this.gai(this) -for(r=b;s.v();){if(r===0)return s.gT();--r}throw A.i(A.R7(b,b-r,this,null,"index"))}, -$iaO:1, -$iy:1, -$ibq:1} -A.z_.prototype={ -fY(a){var s,r,q=this.yX() -for(s=this.gai(this);s.v();){r=s.gT() -if(!a.q(0,r))q.G(0,r)}return q}, -il(a){var s,r,q=this.yX() -for(s=this.gai(this);s.v();){r=s.gT() -if(a.q(0,r))q.G(0,r)}return q}, -ix(a){var s=this.yX() -s.a_(0,this) -return s}} -A.K9.prototype={} -A.hh.prototype={} -A.hg.prototype={} -A.pk.prototype={ -r6(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=h.ghB() -if(f==null){h.F3(a,a) -return-1}s=h.gF2() -for(r=g,q=f,p=r,o=p,n=o,m=n;;){r=s.$2(q.a,a) -if(r>0){l=q.b -if(l==null)break -r=s.$2(l.a,a) -if(r>0){q.b=l.c -l.c=q -k=l.b -if(k==null){q=l -break}q=l -l=k}if(m==null)n=q -else m.b=q -m=q -q=l}else{if(r<0){j=q.c -if(j==null)break -r=s.$2(j.a,a) -if(r<0){q.c=j.b -j.b=q -i=j.c -if(i==null){q=j -break}q=j -j=i}if(o==null)p=q -else o.c=q}else break -o=q -q=j}}if(o!=null){o.c=q.b -q.b=p}if(m!=null){m.b=q.c -q.c=n}if(h.ghB()!==q){h.shB(q);++h.c}return r}, -UE(a){var s,r,q -for(s=a,r=0;;s=q,r=1){q=s.b -if(q!=null){s.b=q.c -q.c=s}else break}this.c+=r -return s}, -Hq(a){var s,r,q -for(s=a,r=0;;s=q,r=1){q=s.c -if(q!=null){s.c=q.b -q.b=s}else break}this.c+=r -return s}, -H3(){var s,r=this,q=r.ghB(),p=q.b,o=q.c -if(p==null)r.shB(o) -else if(o==null)r.shB(p) -else{s=r.Hq(p) -s.c=o -r.shB(s)}--r.a;++r.b}, -Ex(a,b){var s=this,r=s.ghB() -if(r!=null)if(b<0){a.b=r -a.c=r.c -r.c=null}else{a.c=r -a.b=r.b -r.b=null}++s.b;++s.a -s.shB(a)}, -kN(a){var s=this -s.gWa() -if(!A.n(s).i("pk.K").b(a))return null -if(s.r6(a)===0)return s.ghB() -return null}, -F3(a,b){return this.gF2().$2(a,b)}} -A.Fx.prototype={ -h(a,b){var s=this.kN(b) -return s==null?null:s.d}, -J(a,b){var s=this.kN(b) -if(s==null)return null -this.H3() -return s.d}, -m(a,b,c){var s=this,r=s.r6(b) -if(r===0){s.d.d=c -return}s.Ex(new A.hg(c,b,s.$ti.i("hg<1,2>")),r)}, -cl(a,b){var s,r,q,p=this,o=p.r6(a) -if(o===0)return p.d.d -s=p.b -r=p.c -q=b.$0() -if(s!==p.b||r!==p.c){o=p.r6(a) -if(o===0)return p.d.d=q}p.Ex(new A.hg(q,a,p.$ti.i("hg<1,2>")),o) -return q}, -gan(a){return this.d==null}, -gc6(a){return this.d!=null}, -aL(a,b){var s,r=this.$ti,q=new A.ua(this,A.c([],r.i("z>")),this.c,r.i("ua<1,2>")) -while(q.e=null,q.Ep()){s=q.gT() -b.$2(s.a,s.b)}}, -gH(a){return this.a}, -aN(a){return this.kN(a)!=null}, -gcd(){return new A.ni(this,this.$ti.i("ni<1,hg<1,2>>"))}, -gh8(){return new A.ub(this,this.$ti.i("ub<1,2>"))}, -gfj(){return new A.K7(this,this.$ti.i("K7<1,2>"))}, -ass(){var s,r=this.d -if(r==null)return null -s=this.UE(r) -this.d=s -return s.a}, -a_O(){var s,r=this.d -if(r==null)return null -s=this.Hq(r) -this.d=s -return s.a}, -$iba:1, -F3(a,b){return this.e.$2(a,b)}, -ghB(){return this.d}, -gF2(){return this.e}, -gWa(){return null}, -shB(a){return this.d=a}} -A.ki.prototype={ -gT(){var s=this.b -if(s.length===0){A.n(this).i("ki.T").a(null) -return null}return this.G0(B.b.gaC(s))}, -ak2(a){var s,r,q=this,p=q.b -B.b.aa(p) -s=q.a -if(s.r6(a)===0){r=s.ghB() -r.toString -p.push(r) -q.d=s.c -return}throw A.i(A.cd(q))}, -v(){var s,r,q=this,p=q.c,o=q.a,n=o.b -if(p!==n){if(p==null){q.c=n -s=o.ghB() -for(p=q.b;s!=null;){p.push(s) -s=s.b}return p.length!==0}throw A.i(A.cd(o))}p=q.b -if(p.length===0)return!1 -if(q.d!==o.c)q.ak2(B.b.gaC(p).a) -s=B.b.gaC(p) -r=s.c -if(r!=null){while(r!=null){p.push(r) -r=r.b}return!0}p.pop() -for(;;){if(!(p.length!==0&&B.b.gaC(p).c===s))break -s=p.pop()}return p.length!==0}} -A.ni.prototype={ -gH(a){return this.a.a}, -gan(a){return this.a.a===0}, -gai(a){var s=this.a,r=this.$ti -return new A.nj(s,A.c([],r.i("z<2>")),s.c,r.i("nj<1,2>"))}, -q(a,b){return this.a.kN(b)!=null}, -ix(a){var s=this.a,r=A.avM(s.e,null,this.$ti.c),q=s.d -if(q!=null){r.d=r.Fj(q) -r.a=s.a}return r}} -A.ub.prototype={ -gH(a){return this.a.a}, -gan(a){return this.a.a===0}, -gai(a){var s=this.a,r=this.$ti -return new A.Kc(s,A.c([],r.i("z>")),s.c,r.i("Kc<1,2>"))}} -A.K7.prototype={ -gH(a){return this.a.a}, -gan(a){return this.a.a===0}, -gai(a){var s=this.a,r=this.$ti -return new A.ua(s,A.c([],r.i("z>")),s.c,r.i("ua<1,2>"))}} -A.nj.prototype={ -G0(a){return a.a}} -A.Kc.prototype={ -v(){var s=this.Ep() -this.e=s?B.b.gaC(this.b).d:null -return s}, -G0(a){var s=this.e -return s==null?this.$ti.y[1].a(s):s}} -A.ua.prototype={ -G0(a){var s=this.e -return s==null?this.e=new A.aV(a.a,a.d,this.$ti.i("aV<1,2>")):s}, -v(){this.e=null -return this.Ep()}} -A.xp.prototype={ -gai(a){var s=this.$ti -return new A.nj(this,A.c([],s.i("z>")),this.c,s.i("nj<1,hh<1>>"))}, -gH(a){return this.a}, -gan(a){return this.d==null}, -gc6(a){return this.d!=null}, -gad(a){var s,r=this.d -if(r==null)throw A.i(A.cD()) -s=this.UE(r) -this.d=s -return s.a}, -gaC(a){var s,r=this.d -if(r==null)throw A.i(A.cD()) -s=this.Hq(r) -this.d=s -return s.a}, -q(a,b){return this.kN(b)!=null}, -G(a,b){return this.he(b)}, -he(a){var s=this.r6(a) -if(s===0)return!1 -this.Ex(new A.hh(a,this.$ti.i("hh<1>")),s) -return!0}, -J(a,b){if(this.kN(b)==null)return!1 -this.H3() -return!0}, -a_(a,b){var s -for(s=J.bG(b);s.v();)this.he(s.gT())}, -CM(a){var s,r -for(s=a.length,r=0;r"),q=new A.nj(l,A.c([],s.i("z>")),l.c,s.i("nj<1,hh<1>>")),p=null,o=0;q.v();){n=q.gT() -if(b.q(0,n)===c){m=new A.hh(n,r) -m.b=p;++o -p=m}}s=A.avM(l.e,l.f,s.c) -s.d=p -s.a=o -return s}, -aaM(a){var s,r,q,p,o=this.$ti.i("hh<1>"),n=new A.hh(a.a,o) -for(s=n;;){r=a.b -q=a.c -if(r!=null)if(q!=null)s.b=this.Fj(r) -else{p=new A.hh(r.a,o) -s.b=p -s=p -a=r -continue}else if(q==null)break -p=new A.hh(q.a,o) -s.c=p -s=p -a=q}return n}, -Fj(a){return this.aaM(a,this.$ti.i("K9<1,@>"))}, -ix(a){var s=this,r=A.avM(s.e,s.f,s.$ti.c),q=s.d -if(q!=null){r.d=s.Fj(q) -r.a=s.a}return r}, -k(a){return A.o_(this,"{","}")}, -$iaO:1, -$ibq:1, -F3(a,b){return this.e.$2(a,b)}, -ghB(){return this.d}, -gF2(){return this.e}, -gWa(){return this.f}, -shB(a){return this.d=a}} -A.K8.prototype={} -A.Ka.prototype={} -A.Kb.prototype={} -A.KI.prototype={} -A.a3m.prototype={ -h(a,b){var s,r=this.b -if(r==null)return this.c.h(0,b) -else if(typeof b!="string")return null -else{s=r[b] -return typeof s=="undefined"?this.ajX(b):s}}, -gH(a){return this.b==null?this.c.a:this.qF().length}, -gan(a){return this.gH(0)===0}, -gc6(a){return this.gH(0)>0}, -gcd(){if(this.b==null){var s=this.c -return new A.bD(s,A.n(s).i("bD<1>"))}return new A.a3n(this)}, -gh8(){var s,r=this -if(r.b==null){s=r.c -return new A.bo(s,A.n(s).i("bo<2>"))}return A.w4(r.qF(),new A.aDE(r),t.N,t.z)}, -m(a,b,c){var s,r,q=this -if(q.b==null)q.c.m(0,b,c) -else if(q.aN(b)){s=q.b -s[b]=c -r=q.a -if(r==null?s!=null:r!==s)r[b]=null}else q.W6().m(0,b,c)}, -aN(a){if(this.b==null)return this.c.aN(a) -if(typeof a!="string")return!1 -return Object.prototype.hasOwnProperty.call(this.a,a)}, -cl(a,b){var s -if(this.aN(a))return this.h(0,a) -s=b.$0() -this.m(0,a,s) -return s}, -J(a,b){if(this.b!=null&&!this.aN(b))return null -return this.W6().J(0,b)}, -aL(a,b){var s,r,q,p,o=this -if(o.b==null)return o.c.aL(0,b) -s=o.qF() -for(r=0;r"))}return s}, -q(a,b){return this.a.aN(b)}} -A.yz.prototype={ -bn(){var s,r,q=this -q.a7h() -s=q.a -r=s.a -s.a="" -s=q.c -s.G(0,A.LM(r.charCodeAt(0)==0?r:r,q.b)) -s.bn()}} -A.aLw.prototype={ -$0(){var s,r -try{s=new TextDecoder("utf-8",{fatal:true}) -return s}catch(r){}return null}, -$S:193} -A.aLv.prototype={ -$0(){var s,r -try{s=new TextDecoder("utf-8",{fatal:false}) -return s}catch(r){}return null}, -$S:193} -A.acT.prototype={ -avR(a1,a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=null,a0="Invalid base64 encoding length " -a3=A.fv(a2,a3,a1.length,a,a) -s=$.aU0() -for(r=a2,q=r,p=a,o=-1,n=-1,m=0;r=0){g=u.z.charCodeAt(f) -if(g===k)continue -k=g}else{if(f===-1){if(o<0){e=p==null?a:p.a.length -if(e==null)e=0 -o=e+(r-q) -n=r}++m -if(k===61)continue}k=g}if(f!==-2){if(p==null){p=new A.cf("") -e=p}else e=p -e.a+=B.c.a6(a1,q,r) -d=A.eV(k) -e.a+=d -q=l -continue}}throw A.i(A.ca("Invalid base64 data",a1,r))}if(p!=null){e=B.c.a6(a1,q,a3) -e=p.a+=e -d=e.length -if(o>=0)A.aUS(a1,n,a3,o,m,d) -else{c=B.j.cn(d-1,4)+1 -if(c===1)throw A.i(A.ca(a0,a1,a3)) -while(c<4){e+="=" -p.a=e;++c}}e=p.a -return B.c.ky(a1,a2,a3,e.charCodeAt(0)==0?e:e)}b=a3-a2 -if(o>=0)A.aUS(a1,n,a3,o,m,b) -else{c=B.j.cn(b,4) -if(c===1)throw A.i(A.ca(a0,a1,a3)) -if(c>1)a1=B.c.ky(a1,a3,a3,c===2?"==":"=")}return a1}} -A.MH.prototype={ -e8(a){var s=a.length -if(s===0)return"" -s=new A.H0(u.z).JP(a,0,s,!0) -s.toString -return A.oO(s,0,null)}, -k_(a){var s=u.z -if(t.NC.b(a))return new A.aLt(new A.aah(new A.zd(!1),a,a.a),new A.H0(s)) -return new A.azj(a,new A.azR(s))}} -A.H0.prototype={ -Y2(a){return new Uint8Array(a)}, -JP(a,b,c,d){var s,r=this,q=(r.a&3)+(c-b),p=B.j.el(q,3),o=p*4 -if(d&&q-p*3>0)o+=4 -s=r.Y2(o) -r.a=A.bcX(r.b,a,b,c,d,s,0,r.a) -if(o>0)return s -return null}} -A.azR.prototype={ -Y2(a){var s=this.c -if(s==null||s.length0)throw A.i(A.ca("Invalid length, must be multiple of four",a,b)) -this.a=-1}} -A.a0L.prototype={ -G(a,b){var s,r=b.length -if(r===0)return -s=this.b.Jb(b,0,r) -if(s!=null)this.a.G(0,s)}, -bn(){this.b.IK(null,null) -this.a.bn()}, -jt(a,b,c,d){var s,r -A.fv(b,c,a.length,null,null) -if(b===c)return -s=this.b -r=s.Jb(a,b,c) -if(r!=null)this.a.G(0,r) -if(d){s.IK(a,c) -this.a.bn()}}} -A.adG.prototype={} -A.a0Z.prototype={ -G(a,b){this.a.G(0,b)}, -bn(){this.a.bn()}} -A.H7.prototype={ -G(a,b){var s,r,q=this,p=q.b,o=q.c,n=J.bk(b) -if(n.gH(b)>p.length-o){p=q.b -s=n.gH(b)+p.length-1 -s|=B.j.fU(s,1) -s|=s>>>2 -s|=s>>>4 -s|=s>>>8 -r=new Uint8Array((((s|s>>>16)>>>0)+1)*2) -p=q.b -B.a0.jY(r,0,p.length,p) -q.b=r}p=q.b -o=q.c -B.a0.jY(p,o,o+n.gH(b),b) -q.c=q.c+n.gH(b)}, -bn(){this.a.$1(B.a0.d1(this.b,0,this.c))}} -A.N9.prototype={} -A.a8E.prototype={ -G(a,b){this.b.push(b)}, -bn(){this.a.$1(this.b)}} -A.tO.prototype={ -G(a,b){this.b.G(0,b)}, -kf(a,b){A.kj(a,"error",t.K) -this.a.kf(a,b)}, -bn(){this.b.bn()}, -$ie8:1} -A.Nr.prototype={} -A.cP.prototype={ -Kf(a,b){return new A.HW(this,a,A.n(this).i("@").bN(b).i("HW<1,2,3>"))}, -k_(a){throw A.i(A.c2("This converter does not support chunked conversions: "+this.k(0)))}, -p5(a){return new A.n6(new A.aeO(this),a,t.cu.bN(A.n(this).i("cP.T")).i("n6<1,2>"))}} -A.aeO.prototype={ -$1(a){return new A.tO(a,this.a.k_(a))}, -$S:414} -A.HW.prototype={ -e8(a){return A.LM(this.a.e8(a),this.b.a)}, -k_(a){return this.a.k_(new A.yz(this.b.a,a,new A.cf("")))}} -A.vs.prototype={} -A.Ck.prototype={ -k(a){var s=A.qg(this.a) -return(this.b!=null?"Converting object to an encodable object failed:":"Converting object did not return an encodable object:")+" "+s}} -A.Rj.prototype={ -k(a){return"Cyclic error in JSON stringify"}} -A.akw.prototype={ -Yb(a,b){var s=A.LM(a,this.garf().a) -return s}, -ic(a){return this.Yb(a,null)}, -JO(a,b){if(b==null)b=null -if(b==null)return A.b_E(a,this.garJ().b,null) -return A.b_E(a,b,null)}, -rE(a){return this.JO(a,null)}, -garJ(){return B.Qi}, -garf(){return B.ne}} -A.Rl.prototype={ -e8(a){var s,r=new A.cf("") -A.aSA(a,r,this.b,null) -s=r.a -return s.charCodeAt(0)==0?s:s}, -k_(a){var s=t.NC.b(a)?a:new A.Kk(a) -return new A.aDD(null,this.b,s)}} -A.aDD.prototype={ -G(a,b){var s,r=this -if(r.d)throw A.i(A.aL("Only one call to add allowed")) -r.d=!0 -s=r.c.WT() -A.aSA(b,s,r.b,r.a) -s.bn()}, -bn(){}} -A.Rk.prototype={ -k_(a){return new A.yz(this.a,a,new A.cf(""))}, -e8(a){return A.LM(a,this.a)}} -A.aDG.prototype={ -a1Z(a){var s,r,q,p,o,n=this,m=a.length -for(s=0,r=0;r92){if(q>=55296){p=q&64512 -if(p===55296){o=r+1 -o=!(o=0&&(a.charCodeAt(p)&64512)===55296)}else p=!1 -else p=!0 -if(p){if(r>s)n.Dk(a,s,r) -s=r+1 -n.eB(92) -n.eB(117) -n.eB(100) -p=q>>>8&15 -n.eB(p<10?48+p:87+p) -p=q>>>4&15 -n.eB(p<10?48+p:87+p) -p=q&15 -n.eB(p<10?48+p:87+p)}}continue}if(q<32){if(r>s)n.Dk(a,s,r) -s=r+1 -n.eB(92) -switch(q){case 8:n.eB(98) -break -case 9:n.eB(116) -break -case 10:n.eB(110) -break -case 12:n.eB(102) -break -case 13:n.eB(114) -break -default:n.eB(117) -n.eB(48) -n.eB(48) -p=q>>>4&15 -n.eB(p<10?48+p:87+p) -p=q&15 -n.eB(p<10?48+p:87+p) -break}}else if(q===34||q===92){if(r>s)n.Dk(a,s,r) -s=r+1 -n.eB(92) -n.eB(q)}}if(s===0)n.iz(a) -else if(s16)this.Ff()}, -xa(a){if(this.a.a.length!==0)this.Ff() -this.b.G(0,a)}, -Ff(){var s=this.a,r=s.a -s.a="" -this.b.G(0,r.charCodeAt(0)==0?r:r)}} -A.z3.prototype={ -bn(){}, -jt(a,b,c,d){var s,r,q -if(b!==0||c!==a.length)for(s=this.a,r=b;r>>18|240 -q=o.b=p+1 -r[p]=s>>>12&63|128 -p=o.b=q+1 -r[q]=s>>>6&63|128 -o.b=p+1 -r[p]=s&63|128 -return!0}else{o.zJ() -return!1}}, -QG(a,b,c){var s,r,q,p,o,n,m,l,k=this -if(b!==c&&(a.charCodeAt(c-1)&64512)===55296)--c -for(s=k.c,r=s.$flags|0,q=s.length,p=b;p=q)break -k.b=n+1 -r&2&&A.az(s) -s[n]=o}else{n=o&64512 -if(n===55296){if(k.b+4>q)break -m=p+1 -if(k.Wl(o,a.charCodeAt(m)))p=m}else if(n===56320){if(k.b+3>q)break -k.zJ()}else if(o<=2047){n=k.b -l=n+1 -if(l>=q)break -k.b=l -r&2&&A.az(s) -s[n]=o>>>6|192 -k.b=l+1 -s[l]=o&63|128}else{n=k.b -if(n+2>=q)break -l=k.b=n+1 -r&2&&A.az(s) -s[n]=o>>>12|224 -n=k.b=l+1 -s[l]=o>>>6&63|128 -k.b=n+1 -s[n]=o&63|128}}}return p}} -A.aag.prototype={ -bn(){if(this.a!==0){this.jt("",0,0,!0) -return}this.d.a.bn()}, -jt(a,b,c,d){var s,r,q,p,o,n=this -n.b=0 -s=b===c -if(s&&!d)return -r=n.a -if(r!==0){if(n.Wl(r,!s?a.charCodeAt(b):0))++b -n.a=0}s=n.d -r=n.c -q=c-1 -p=r.length-3 -do{b=n.QG(a,b,c) -o=d&&b===c -if(b===q&&(a.charCodeAt(b)&64512)===55296){if(d&&n.b=15){p=m.a -o=A.be9(p,r,b,l) -if(o!=null){if(!p)return o -if(o.indexOf("\ufffd")<0)return o}}o=m.Fp(r,b,l,d) -p=m.b -if((p&1)!==0){n=A.b0i(p) -m.b=0 -throw A.i(A.ca(n,a,q+m.c))}return o}, -Fp(a,b,c,d){var s,r,q=this -if(c-b>1000){s=B.j.el(b+c,2) -r=q.Fp(a,b,s,!1) -if((q.b&1)!==0)return r -return r+q.Fp(a,s,c,d)}return q.are(a,b,c,d)}, -Zj(a){var s,r=this.b -this.b=0 -if(r<=32)return -if(this.a){s=A.eV(65533) -a.a+=s}else throw A.i(A.ca(A.b0i(77),null,null))}, -are(a,b,c,d){var s,r,q,p,o,n,m,l=this,k=65533,j=l.b,i=l.c,h=new A.cf(""),g=b+1,f=a[b] -A:for(s=l.a;;){for(;;g=p){r="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFFFFFFFFFFFFFFFGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHHHHHHHHIHHHJEEBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBKCCCCCCCCCCCCDCLONNNMEEEEEEEEEEE".charCodeAt(f)&31 -i=j<=32?f&61694>>>r:(f&63|i<<6)>>>0 -j=" \x000:XECCCCCN:lDb \x000:XECCCCCNvlDb \x000:XECCCCCN:lDb AAAAA\x00\x00\x00\x00\x00AAAAA00000AAAAA:::::AAAAAGG000AAAAA00KKKAAAAAG::::AAAAA:IIIIAAAAA000\x800AAAAA\x00\x00\x00\x00 AAAAA".charCodeAt(j+r) -if(j===0){q=A.eV(i) -h.a+=q -if(g===c)break A -break}else if((j&1)!==0){if(s)switch(j){case 69:case 67:q=A.eV(k) -h.a+=q -break -case 65:q=A.eV(k) -h.a+=q;--g -break -default:q=A.eV(k) -h.a=(h.a+=q)+q -break}else{l.b=j -l.c=g-1 -return""}j=0}if(g===c)break A -p=g+1 -f=a[g]}p=g+1 -f=a[g] -if(f<128){for(;;){if(!(p=128){o=n-1 -p=n -break}p=n}if(o-g<20)for(m=g;m32)if(s){s=A.eV(k) -h.a+=s}else{l.b=77 -l.c=c -return""}l.b=j -l.c=i -s=h.a -return s.charCodeAt(0)==0?s:s}} -A.aby.prototype={} -A.pq.prototype={} -A.aoR.prototype={ -$2(a,b){var s=this.b,r=this.a,q=(s.a+=r.a)+a.a -s.a=q -s.a=q+": " -q=A.qg(b) -s.a+=q -r.a=", "}, -$S:450} -A.aLr.prototype={ -$2(a,b){var s,r -if(typeof b=="string")this.a.set(a,b) -else if(b==null)this.a.set(a,"") -else for(s=J.bG(b),r=this.a;s.v();){b=s.gT() -if(typeof b=="string")r.append(a,b) -else if(b==null)r.append(a,"") -else A.bH(b)}}, -$S:92} -A.Px.prototype={ -$0(){var s=this -return A.a0(A.c1("("+A.j(s.a)+", "+A.j(s.b)+", "+A.j(s.c)+", "+A.j(s.d)+", "+A.j(s.e)+", "+A.j(s.f)+", "+A.j(s.r)+", "+s.w+")",null))}, -$S:467} -A.fY.prototype={ -fY(a){return A.cI(this.b-a.b,this.a-a.a)}, -j(a,b){if(b==null)return!1 -return b instanceof A.fY&&this.a===b.a&&this.b===b.b&&this.c===b.c}, -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -a_s(a){var s=this.a,r=a.a -if(s>=r)s=s===r&&this.b=-9999&&A.DD(s)<=9999?A.aVu(A.DD(s)):A.b6W(A.DD(s)),q=A.lO(A.aRB(s)),p=A.lO(A.aRy(s)),o=A.lO(A.aRz(s)),n=A.lO(A.aRA(s)),m=A.lO(A.aXr(s)),l=A.af7(A.aXq(s)),k=s.b,j=k===0?"":A.af7(k) -k=r+"-"+q -if(s.c)return k+"-"+p+"T"+o+":"+n+":"+m+"."+l+j+"Z" -else return k+"-"+p+"T"+o+":"+n+":"+m+"."+l+j}, -$icn:1} -A.af8.prototype={ -$1(a){if(a==null)return 0 -return A.fU(a,null)}, -$S:174} -A.af9.prototype={ -$1(a){var s,r,q -if(a==null)return 0 -for(s=a.length,r=0,q=0;q<6;++q){r*=10 -if(qr)s=": Not in inclusive range "+A.j(r)+".."+A.j(q) -else s=qe.length -else s=!1 -if(s)f=null -if(f==null){if(e.length>78)e=B.c.a6(e,0,75)+"..." -return g+"\n"+e}for(r=1,q=0,p=!1,o=0;o1?g+(" (at line "+r+", character "+(f-q+1)+")\n"):g+(" (at character "+(f+1)+")\n") -m=e.length -for(o=f;o78){k="..." -if(f-q<75){j=q+75 -i=q}else{if(m-f<75){i=m-75 -j=m -k=""}else{i=f-36 -j=f+36}l="..."}}else{j=m -i=q -k=""}return g+l+B.c.a6(e,i,j)+k+"\n"+B.c.ak(" ",f-i+l.length)+"^\n"}else return f!=null?g+(" (at offset "+A.j(f)+")"):g}, -$icx:1, -gwt(){return this.a}, -gxH(){return this.b}, -gcU(){return this.c}} -A.y.prototype={ -eI(a,b){return A.nE(this,A.df(this).i("y.E"),b)}, -Zp(a,b){var s=this -if(t.Ee.b(s))return A.b86(s,b,A.df(s).i("y.E")) -return new A.m0(s,b,A.df(s).i("m0"))}, -hI(a,b,c){return A.w4(this,b,A.df(this).i("y.E"),c)}, -lw(a,b){return new A.b1(this,b,A.df(this).i("b1"))}, -MB(a,b){return new A.cN(this,b.i("cN<0>"))}, -q(a,b){var s -for(s=this.gai(this);s.v();)if(J.b(s.gT(),b))return!0 -return!1}, -aL(a,b){var s -for(s=this.gai(this);s.v();)b.$1(s.gT())}, -en(a,b){var s -for(s=this.gai(this);s.v();)if(!b.$1(s.gT()))return!1 -return!0}, -bJ(a,b){var s,r,q=this.gai(this) -if(!q.v())return"" -s=J.cB(q.gT()) -if(!q.v())return s -if(b.length===0){r=s -do r+=J.cB(q.gT()) -while(q.v())}else{r=s -do r=r+b+J.cB(q.gT()) -while(q.v())}return r.charCodeAt(0)==0?r:r}, -BP(a){return this.bJ(0,"")}, -i8(a,b){var s -for(s=this.gai(this);s.v();)if(b.$1(s.gT()))return!0 -return!1}, -eR(a,b){var s=A.df(this).i("y.E") -if(b)s=A.aa(this,s) -else{s=A.aa(this,s) -s.$flags=1 -s=s}return s}, -eA(a){return this.eR(0,!0)}, -ix(a){return A.ep(this,A.df(this).i("y.E"))}, -gH(a){var s,r=this.gai(this) -for(s=0;r.v();)++s -return s}, -gan(a){return!this.gai(this).v()}, -gc6(a){return!this.gan(this)}, -kz(a,b){return A.aZG(this,b,A.df(this).i("y.E"))}, -hZ(a,b){return A.aZs(this,b,A.df(this).i("y.E"))}, -gad(a){var s=this.gai(this) -if(!s.v())throw A.i(A.cD()) -return s.gT()}, -gaC(a){var s,r=this.gai(this) -if(!r.v())throw A.i(A.cD()) -do s=r.gT() -while(r.v()) -return s}, -a_P(a,b){var s,r,q=this.gai(this) -do{if(!q.v())throw A.i(A.cD()) -s=q.gT()}while(!b.$1(s)) -while(q.v()){r=q.gT() -if(b.$1(r))s=r}return s}, -cY(a,b){var s,r -A.dk(b,"index") -s=this.gai(this) -for(r=b;s.v();){if(r===0)return s.gT();--r}throw A.i(A.R7(b,b-r,this,null,"index"))}, -k(a){return A.aWq(this,"(",")")}} -A.HX.prototype={ -cY(a,b){A.aR5(b,this.a,this,null) -return this.b.$1(b)}, -gH(a){return this.a}} -A.aV.prototype={ -k(a){return"MapEntry("+A.j(this.a)+": "+A.j(this.b)+")"}} -A.bv.prototype={ -gt(a){return A.Q.prototype.gt.call(this,0)}, -k(a){return"null"}} -A.Q.prototype={$iQ:1, -j(a,b){return this===b}, -gt(a){return A.h7(this)}, -k(a){return"Instance of '"+A.Uq(this)+"'"}, -M(a,b){throw A.i(A.kP(this,b))}, -gez(a){return A.l(this)}, -toString(){return this.k(this)}, -$0(){return this.M(this,A.B("call","$0",0,[],[],0))}, -$1(a){return this.M(this,A.B("call","$1",0,[a],[],0))}, -$2(a,b){return this.M(this,A.B("call","$2",0,[a,b],[],0))}, -$1$2$onError(a,b,c){return this.M(this,A.B("call","$1$2$onError",0,[a,b,c],["onError"],1))}, -$3(a,b,c){return this.M(this,A.B("call","$3",0,[a,b,c],[],0))}, -$4(a,b,c,d){return this.M(this,A.B("call","$4",0,[a,b,c,d],[],0))}, -$4$cancelOnError$onDone$onError(a,b,c,d){return this.M(this,A.B("call","$4$cancelOnError$onDone$onError",0,[a,b,c,d],["cancelOnError","onDone","onError"],0))}, -$1$growable(a){return this.M(this,A.B("call","$1$growable",0,[a],["growable"],0))}, -$1$highContrast(a){return this.M(this,A.B("call","$1$highContrast",0,[a],["highContrast"],0))}, -$1$accessibilityFeatures(a){return this.M(this,A.B("call","$1$accessibilityFeatures",0,[a],["accessibilityFeatures"],0))}, -$1$1(a,b){return this.M(this,A.B("call","$1$1",0,[a,b],[],1))}, -$1$accessibleNavigation(a){return this.M(this,A.B("call","$1$accessibleNavigation",0,[a],["accessibleNavigation"],0))}, -$1$semanticsEnabled(a){return this.M(this,A.B("call","$1$semanticsEnabled",0,[a],["semanticsEnabled"],0))}, -$1$locales(a){return this.M(this,A.B("call","$1$locales",0,[a],["locales"],0))}, -$1$paragraphSpacingOverride(a){return this.M(this,A.B("call","$1$paragraphSpacingOverride",0,[a],["paragraphSpacingOverride"],0))}, -$1$wordSpacingOverride(a){return this.M(this,A.B("call","$1$wordSpacingOverride",0,[a],["wordSpacingOverride"],0))}, -$1$letterSpacingOverride(a){return this.M(this,A.B("call","$1$letterSpacingOverride",0,[a],["letterSpacingOverride"],0))}, -$1$lineHeightScaleFactorOverride(a){return this.M(this,A.B("call","$1$lineHeightScaleFactorOverride",0,[a],["lineHeightScaleFactorOverride"],0))}, -$1$textScaleFactor(a){return this.M(this,A.B("call","$1$textScaleFactor",0,[a],["textScaleFactor"],0))}, -$1$platformBrightness(a){return this.M(this,A.B("call","$1$platformBrightness",0,[a],["platformBrightness"],0))}, -$13$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$scale$signalKind$timeStamp$viewId(a,b,c,d,e,f,g,h,i,j,k,l,m){return this.M(this,A.B("call","$13$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$scale$signalKind$timeStamp$viewId",0,[a,b,c,d,e,f,g,h,i,j,k,l,m],["buttons","change","device","kind","physicalX","physicalY","pressure","pressureMax","scale","signalKind","timeStamp","viewId"],0))}, -$15$buttons$change$device$kind$onRespond$physicalX$physicalY$pressure$pressureMax$scrollDeltaX$scrollDeltaY$signalKind$timeStamp$viewId(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return this.M(this,A.B("call","$15$buttons$change$device$kind$onRespond$physicalX$physicalY$pressure$pressureMax$scrollDeltaX$scrollDeltaY$signalKind$timeStamp$viewId",0,[a,b,c,d,e,f,g,h,i,j,k,l,m,n,o],["buttons","change","device","kind","onRespond","physicalX","physicalY","pressure","pressureMax","scrollDeltaX","scrollDeltaY","signalKind","timeStamp","viewId"],0))}, -$26$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scale$scrollDeltaX$scrollDeltaY$signalKind$size$tilt$timeStamp$viewId(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6){return this.M(this,A.B("call","$26$buttons$change$device$distance$distanceMax$kind$obscured$orientation$physicalX$physicalY$platformData$pressure$pressureMax$pressureMin$radiusMajor$radiusMax$radiusMin$radiusMinor$scale$scrollDeltaX$scrollDeltaY$signalKind$size$tilt$timeStamp$viewId",0,[a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6],["buttons","change","device","distance","distanceMax","kind","obscured","orientation","physicalX","physicalY","platformData","pressure","pressureMax","pressureMin","radiusMajor","radiusMax","radiusMin","radiusMinor","scale","scrollDeltaX","scrollDeltaY","signalKind","size","tilt","timeStamp","viewId"],0))}, -$3$data$details$event(a,b,c){return this.M(this,A.B("call","$3$data$details$event",0,[a,b,c],["data","details","event"],0))}, -$13$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$signalKind$tilt$timeStamp$viewId(a,b,c,d,e,f,g,h,i,j,k,l,m){return this.M(this,A.B("call","$13$buttons$change$device$kind$physicalX$physicalY$pressure$pressureMax$signalKind$tilt$timeStamp$viewId",0,[a,b,c,d,e,f,g,h,i,j,k,l,m],["buttons","change","device","kind","physicalX","physicalY","pressure","pressureMax","signalKind","tilt","timeStamp","viewId"],0))}, -$1$style(a){return this.M(this,A.B("call","$1$style",0,[a],["style"],0))}, -$2$priority$scheduler(a,b){return this.M(this,A.B("call","$2$priority$scheduler",0,[a,b],["priority","scheduler"],0))}, -$1$allowPlatformDefault(a){return this.M(this,A.B("call","$1$allowPlatformDefault",0,[a],["allowPlatformDefault"],0))}, -$3$replace$state(a,b,c){return this.M(this,A.B("call","$3$replace$state",0,[a,b,c],["replace","state"],0))}, -$2$params(a,b){return this.M(this,A.B("call","$2$params",0,[a,b],["params"],0))}, -$3$onAction$onChange(a,b,c){return this.M(this,A.B("call","$3$onAction$onChange",0,[a,b,c],["onAction","onChange"],0))}, -$2$composingBaseOffset$composingExtentOffset(a,b){return this.M(this,A.B("call","$2$composingBaseOffset$composingExtentOffset",0,[a,b],["composingBaseOffset","composingExtentOffset"],0))}, -$2$baseOffset$extentOffset(a,b){return this.M(this,A.B("call","$2$baseOffset$extentOffset",0,[a,b],["baseOffset","extentOffset"],0))}, -$1$0(a){return this.M(this,A.B("call","$1$0",0,[a],[],1))}, -$2$position(a,b){return this.M(this,A.B("call","$2$position",0,[a,b],["position"],0))}, -$1$debugBuildRoot(a){return this.M(this,A.B("call","$1$debugBuildRoot",0,[a],["debugBuildRoot"],0))}, -$2$aspect(a,b){return this.M(this,A.B("call","$2$aspect",0,[a,b],["aspect"],0))}, -$1$isBuildFromExternalSources(a){return this.M(this,A.B("call","$1$isBuildFromExternalSources",0,[a],["isBuildFromExternalSources"],0))}, -$1$alpha(a){return this.M(this,A.B("call","$1$alpha",0,[a],["alpha"],0))}, -$1$isLiveRegion(a){return this.M(this,A.B("call","$1$isLiveRegion",0,[a],["isLiveRegion"],0))}, -$1$namesRoute(a){return this.M(this,A.B("call","$1$namesRoute",0,[a],["namesRoute"],0))}, -$1$scopesRoute(a){return this.M(this,A.B("call","$1$scopesRoute",0,[a],["scopesRoute"],0))}, -$1$isFocused(a){return this.M(this,A.B("call","$1$isFocused",0,[a],["isFocused"],0))}, -$1$isHeader(a){return this.M(this,A.B("call","$1$isHeader",0,[a],["isHeader"],0))}, -$1$isButton(a){return this.M(this,A.B("call","$1$isButton",0,[a],["isButton"],0))}, -$1$isToggled(a){return this.M(this,A.B("call","$1$isToggled",0,[a],["isToggled"],0))}, -$1$isEnabled(a){return this.M(this,A.B("call","$1$isEnabled",0,[a],["isEnabled"],0))}, -$2$primaryTextTheme$textTheme(a,b){return this.M(this,A.B("call","$2$primaryTextTheme$textTheme",0,[a,b],["primaryTextTheme","textTheme"],0))}, -$1$brightness(a){return this.M(this,A.B("call","$1$brightness",0,[a],["brightness"],0))}, -$25$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontVariations$fontWeight$foreground$height$leadingDistribution$letterSpacing$locale$overflow$package$shadows$textBaseline$wordSpacing(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5){return this.M(this,A.B("call","$25$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontVariations$fontWeight$foreground$height$leadingDistribution$letterSpacing$locale$overflow$package$shadows$textBaseline$wordSpacing",0,[a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5],["background","backgroundColor","color","debugLabel","decoration","decorationColor","decorationStyle","decorationThickness","fontFamily","fontFamilyFallback","fontFeatures","fontSize","fontStyle","fontVariations","fontWeight","foreground","height","leadingDistribution","letterSpacing","locale","overflow","package","shadows","textBaseline","wordSpacing"],0))}, -$3$bodyColor$decorationColor$displayColor(a,b,c){return this.M(this,A.B("call","$3$bodyColor$decorationColor$displayColor",0,[a,b,c],["bodyColor","decorationColor","displayColor"],0))}, -$1$fontFamily(a){return this.M(this,A.B("call","$1$fontFamily",0,[a],["fontFamily"],0))}, -$2$color$fontFamily(a,b){return this.M(this,A.B("call","$2$color$fontFamily",0,[a,b],["color","fontFamily"],0))}, -$3$color$fontSize$height(a,b,c){return this.M(this,A.B("call","$3$color$fontSize$height",0,[a,b,c],["color","fontSize","height"],0))}, -$2$fontSize$height(a,b){return this.M(this,A.B("call","$2$fontSize$height",0,[a,b],["fontSize","height"],0))}, -$1$fontSize(a){return this.M(this,A.B("call","$1$fontSize",0,[a],["fontSize"],0))}, -$2$color$fontWeight(a,b){return this.M(this,A.B("call","$2$color$fontWeight",0,[a,b],["color","fontWeight"],0))}, -$1$color(a){return this.M(this,A.B("call","$1$color",0,[a],["color"],0))}, -$1$fontWeight(a){return this.M(this,A.B("call","$1$fontWeight",0,[a],["fontWeight"],0))}, -$1$2(a,b,c){return this.M(this,A.B("call","$1$2",0,[a,b,c],[],1))}, -$3$color$fontWeight$height(a,b,c){return this.M(this,A.B("call","$3$color$fontWeight$height",0,[a,b,c],["color","fontWeight","height"],0))}, -$2$after(a,b){return this.M(this,A.B("call","$2$after",0,[a,b],["after"],0))}, -$1$range(a){return this.M(this,A.B("call","$1$range",0,[a],["range"],0))}, -$4$boxHeightStyle$boxWidthStyle(a,b,c,d){return this.M(this,A.B("call","$4$boxHeightStyle$boxWidthStyle",0,[a,b,c,d],["boxHeightStyle","boxWidthStyle"],0))}, -$3$dimensions$textScaler(a,b,c){return this.M(this,A.B("call","$3$dimensions$textScaler",0,[a,b,c],["dimensions","textScaler"],0))}, -$2$defaultBlurTileMode(a,b){return this.M(this,A.B("call","$2$defaultBlurTileMode",0,[a,b],["defaultBlurTileMode"],0))}, -$3$boxHeightStyle(a,b,c){return this.M(this,A.B("call","$3$boxHeightStyle",0,[a,b,c],["boxHeightStyle"],0))}, -$3$includePlaceholders$includeSemanticsLabels(a,b,c){return this.M(this,A.B("call","$3$includePlaceholders$includeSemanticsLabels",0,[a,b,c],["includePlaceholders","includeSemanticsLabels"],0))}, -$9$applyTextScaling$color$fill$grade$opacity$opticalSize$shadows$size$weight(a,b,c,d,e,f,g,h,i){return this.M(this,A.B("call","$9$applyTextScaling$color$fill$grade$opacity$opticalSize$shadows$size$weight",0,[a,b,c,d,e,f,g,h,i],["applyTextScaling","color","fill","grade","opacity","opticalSize","shadows","size","weight"],0))}, -$3$cancel$down$reason(a,b,c){return this.M(this,A.B("call","$3$cancel$down$reason",0,[a,b,c],["cancel","down","reason"],0))}, -$1$move(a){return this.M(this,A.B("call","$1$move",0,[a],["move"],0))}, -$2$down$up(a,b){return this.M(this,A.B("call","$2$down$up",0,[a,b],["down","up"],0))}, -$1$down(a){return this.M(this,A.B("call","$1$down",0,[a],["down"],0))}, -$1$findFirstFocus(a){return this.M(this,A.B("call","$1$findFirstFocus",0,[a],["findFirstFocus"],0))}, -$2$node$oldScope(a,b){return this.M(this,A.B("call","$2$node$oldScope",0,[a,b],["node","oldScope"],0))}, -$3$color$gradient$shadows(a,b,c){return this.M(this,A.B("call","$3$color$gradient$shadows",0,[a,b,c],["color","gradient","shadows"],0))}, -$4$color$decoration$decorationColor$decorationStyle(a,b,c,d){return this.M(this,A.B("call","$4$color$decoration$decorationColor$decorationStyle",0,[a,b,c,d],["color","decoration","decorationColor","decorationStyle"],0))}, -$3$textDirection(a,b,c){return this.M(this,A.B("call","$3$textDirection",0,[a,b,c],["textDirection"],0))}, -$13$blRadiusX$blRadiusY$bottom$brRadiusX$brRadiusY$left$right$tlRadiusX$tlRadiusY$top$trRadiusX$trRadiusY$uniformRadii(a,b,c,d,e,f,g,h,i,j,k,l,m){return this.M(this,A.B("call","$13$blRadiusX$blRadiusY$bottom$brRadiusX$brRadiusY$left$right$tlRadiusX$tlRadiusY$top$trRadiusX$trRadiusY$uniformRadii",0,[a,b,c,d,e,f,g,h,i,j,k,l,m],["blRadiusX","blRadiusY","bottom","brRadiusX","brRadiusY","left","right","tlRadiusX","tlRadiusY","top","trRadiusX","trRadiusY","uniformRadii"],0))}, -$1$minimum(a){return this.M(this,A.B("call","$1$minimum",0,[a],["minimum"],0))}, -$2$textDirection(a,b){return this.M(this,A.B("call","$2$textDirection",0,[a,b],["textDirection"],0))}, -$2$reverse(a,b){return this.M(this,A.B("call","$2$reverse",0,[a,b],["reverse"],0))}, -$3$notifyField(a,b,c){return this.M(this,A.B("call","$3$notifyField",0,[a,b,c],["notifyField"],0))}, -$3$composing$selection$text(a,b,c){return this.M(this,A.B("call","$3$composing$selection$text",0,[a,b,c],["composing","selection","text"],0))}, -$1$selectable(a){return this.M(this,A.B("call","$1$selectable",0,[a],["selectable"],0))}, -$1$direction(a){return this.M(this,A.B("call","$1$direction",0,[a],["direction"],0))}, -$4$axis$rect(a,b,c,d){return this.M(this,A.B("call","$4$axis$rect",0,[a,b,c,d],["axis","rect"],0))}, -$2$maxWidth$minWidth(a,b){return this.M(this,A.B("call","$2$maxWidth$minWidth",0,[a,b],["maxWidth","minWidth"],0))}, -$2$maxHeight$minHeight(a,b){return this.M(this,A.B("call","$2$maxHeight$minHeight",0,[a,b],["maxHeight","minHeight"],0))}, -$1$iconTheme(a){return this.M(this,A.B("call","$1$iconTheme",0,[a],["iconTheme"],0))}, -$1$side(a){return this.M(this,A.B("call","$1$side",0,[a],["side"],0))}, -$2$reversed(a,b){return this.M(this,A.B("call","$2$reversed",0,[a,b],["reversed"],0))}, -$4$borderRadius$circularity$eccentricity$side(a,b,c,d){return this.M(this,A.B("call","$4$borderRadius$circularity$eccentricity$side",0,[a,b,c,d],["borderRadius","circularity","eccentricity","side"],0))}, -$2$color$fontSize(a,b){return this.M(this,A.B("call","$2$color$fontSize",0,[a,b],["color","fontSize"],0))}, -$1$withDelay(a){return this.M(this,A.B("call","$1$withDelay",0,[a],["withDelay"],0))}, -$3$debugReport(a,b,c){return this.M(this,A.B("call","$3$debugReport",0,[a,b,c],["debugReport"],0))}, -$2$value(a,b){return this.M(this,A.B("call","$2$value",0,[a,b],["value"],0))}, -$1$details(a){return this.M(this,A.B("call","$1$details",0,[a],["details"],0))}, -$11$borderRadius$color$containedInkWell$controller$customBorder$onRemoved$position$radius$rectCallback$referenceBox$textDirection(a,b,c,d,e,f,g,h,i,j,k){return this.M(this,A.B("call","$11$borderRadius$color$containedInkWell$controller$customBorder$onRemoved$position$radius$rectCallback$referenceBox$textDirection",0,[a,b,c,d,e,f,g,h,i,j,k],["borderRadius","color","containedInkWell","controller","customBorder","onRemoved","position","radius","rectCallback","referenceBox","textDirection"],0))}, -$1$context(a){return this.M(this,A.B("call","$1$context",0,[a],["context"],0))}, -$1$textTheme(a){return this.M(this,A.B("call","$1$textTheme",0,[a],["textTheme"],0))}, -$2$1(a,b,c){return this.M(this,A.B("call","$2$1",0,[a,b,c],[],2))}, -$2$minHeight$minWidth(a,b){return this.M(this,A.B("call","$2$minHeight$minWidth",0,[a,b],["minHeight","minWidth"],0))}, -$1$hasImplicitScrolling(a){return this.M(this,A.B("call","$1$hasImplicitScrolling",0,[a],["hasImplicitScrolling"],0))}, -$2$padding$viewPadding(a,b){return this.M(this,A.B("call","$2$padding$viewPadding",0,[a,b],["padding","viewPadding"],0))}, -$1$iconColor(a){return this.M(this,A.B("call","$1$iconColor",0,[a],["iconColor"],0))}, -$3$foregroundColor$iconSize$overlayColor(a,b,c){return this.M(this,A.B("call","$3$foregroundColor$iconSize$overlayColor",0,[a,b,c],["foregroundColor","iconSize","overlayColor"],0))}, -$2$maxScaleFactor$minScaleFactor(a,b){return this.M(this,A.B("call","$2$maxScaleFactor$minScaleFactor",0,[a,b],["maxScaleFactor","minScaleFactor"],0))}, -$1$textScaler(a){return this.M(this,A.B("call","$1$textScaler",0,[a],["textScaler"],0))}, -$3$imperativeRemoval$isReplaced(a,b,c){return this.M(this,A.B("call","$3$imperativeRemoval$isReplaced",0,[a,b,c],["imperativeRemoval","isReplaced"],0))}, -$1$path(a){return this.M(this,A.B("call","$1$path",0,[a],["path"],0))}, -$2$2(a,b,c,d){return this.M(this,A.B("call","$2$2",0,[a,b,c,d],[],2))}, -$3$onDone$onError(a,b,c){return this.M(this,A.B("call","$3$onDone$onError",0,[a,b,c],["onDone","onError"],0))}, -$1$end(a){return this.M(this,A.B("call","$1$end",0,[a],["end"],0))}, -$1$text(a){return this.M(this,A.B("call","$1$text",0,[a],["text"],0))}, -$1$line(a){return this.M(this,A.B("call","$1$line",0,[a],["line"],0))}, -$2$color(a,b){return this.M(this,A.B("call","$2$color",0,[a,b],["color"],0))}, -$2$withDrive(a,b){return this.M(this,A.B("call","$2$withDrive",0,[a,b],["withDrive"],0))}, -$1$scheme(a){return this.M(this,A.B("call","$1$scheme",0,[a],["scheme"],0))}, -$2$color$size(a,b){return this.M(this,A.B("call","$2$color$size",0,[a,b],["color","size"],0))}, -$1$task(a){return this.M(this,A.B("call","$1$task",0,[a],["task"],0))}, -$1$oldWidget(a){return this.M(this,A.B("call","$1$oldWidget",0,[a],["oldWidget"],0))}, -$1$selection(a){return this.M(this,A.B("call","$1$selection",0,[a],["selection"],0))}, -$1$rect(a){return this.M(this,A.B("call","$1$rect",0,[a],["rect"],0))}, -$4$curve$descendant$duration$rect(a,b,c,d){return this.M(this,A.B("call","$4$curve$descendant$duration$rect",0,[a,b,c,d],["curve","descendant","duration","rect"],0))}, -$3$rect(a,b,c){return this.M(this,A.B("call","$3$rect",0,[a,b,c],["rect"],0))}, -$2$cause$from(a,b){return this.M(this,A.B("call","$2$cause$from",0,[a,b],["cause","from"],0))}, -$1$composing(a){return this.M(this,A.B("call","$1$composing",0,[a],["composing"],0))}, -$2$ignoreCurrentFocus(a,b){return this.M(this,A.B("call","$2$ignoreCurrentFocus",0,[a,b],["ignoreCurrentFocus"],0))}, -$3$alignmentPolicy$forward(a,b,c){return this.M(this,A.B("call","$3$alignmentPolicy$forward",0,[a,b,c],["alignmentPolicy","forward"],0))}, -$5$alignment$alignmentPolicy$curve$duration(a,b,c,d,e){return this.M(this,A.B("call","$5$alignment$alignmentPolicy$curve$duration",0,[a,b,c,d,e],["alignment","alignmentPolicy","curve","duration"],0))}, -$1$affinity(a){return this.M(this,A.B("call","$1$affinity",0,[a],["affinity"],0))}, -$3$code$details$message(a,b,c){return this.M(this,A.B("call","$3$code$details$message",0,[a,b,c],["code","details","message"],0))}, -$2$code$message(a,b){return this.M(this,A.B("call","$2$code$message",0,[a,b],["code","message"],0))}, -$2$composing$selection(a,b){return this.M(this,A.B("call","$2$composing$selection",0,[a,b],["composing","selection"],0))}, -$5$baseline$baselineOffset(a,b,c,d,e){return this.M(this,A.B("call","$5$baseline$baselineOffset",0,[a,b,c,d,e],["baseline","baselineOffset"],0))}, -$1$bottom(a){return this.M(this,A.B("call","$1$bottom",0,[a],["bottom"],0))}, -$3$curve$duration$rect(a,b,c){return this.M(this,A.B("call","$3$curve$duration$rect",0,[a,b,c],["curve","duration","rect"],0))}, -$1$errorText(a){return this.M(this,A.B("call","$1$errorText",0,[a],["errorText"],0))}, -$2$alignmentPolicy(a,b){return this.M(this,A.B("call","$2$alignmentPolicy",0,[a,b],["alignmentPolicy"],0))}, -$2$affinity$extentOffset(a,b){return this.M(this,A.B("call","$2$affinity$extentOffset",0,[a,b],["affinity","extentOffset"],0))}, -$1$extentOffset(a){return this.M(this,A.B("call","$1$extentOffset",0,[a],["extentOffset"],0))}, -$2$overscroll$scrollbars(a,b){return this.M(this,A.B("call","$2$overscroll$scrollbars",0,[a,b],["overscroll","scrollbars"],0))}, -$2$0(a,b){return this.M(this,A.B("call","$2$0",0,[a,b],[],2))}, -$1$isReadOnly(a){return this.M(this,A.B("call","$1$isReadOnly",0,[a],["isReadOnly"],0))}, -$1$isTextField(a){return this.M(this,A.B("call","$1$isTextField",0,[a],["isTextField"],0))}, -$1$isMultiline(a){return this.M(this,A.B("call","$1$isMultiline",0,[a],["isMultiline"],0))}, -$1$isObscured(a){return this.M(this,A.B("call","$1$isObscured",0,[a],["isObscured"],0))}, -$1$spellCheckService(a){return this.M(this,A.B("call","$1$spellCheckService",0,[a],["spellCheckService"],0))}, -$1$height(a){return this.M(this,A.B("call","$1$height",0,[a],["height"],0))}, -$1$borderSide(a){return this.M(this,A.B("call","$1$borderSide",0,[a],["borderSide"],0))}, -$2$enabled$hintMaxLines(a,b){return this.M(this,A.B("call","$2$enabled$hintMaxLines",0,[a,b],["enabled","hintMaxLines"],0))}, -$35$alignLabelWithHint$border$constraints$contentPadding$counterStyle$disabledBorder$enabledBorder$errorBorder$errorMaxLines$errorStyle$fillColor$filled$floatingLabelAlignment$floatingLabelBehavior$floatingLabelStyle$focusColor$focusedBorder$focusedErrorBorder$helperMaxLines$helperStyle$hintFadeDuration$hintMaxLines$hintStyle$hoverColor$iconColor$isCollapsed$isDense$labelStyle$prefixIconColor$prefixIconConstraints$prefixStyle$suffixIconColor$suffixIconConstraints$suffixStyle$visualDensity(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5){return this.M(this,A.B("call","$35$alignLabelWithHint$border$constraints$contentPadding$counterStyle$disabledBorder$enabledBorder$errorBorder$errorMaxLines$errorStyle$fillColor$filled$floatingLabelAlignment$floatingLabelBehavior$floatingLabelStyle$focusColor$focusedBorder$focusedErrorBorder$helperMaxLines$helperStyle$hintFadeDuration$hintMaxLines$hintStyle$hoverColor$iconColor$isCollapsed$isDense$labelStyle$prefixIconColor$prefixIconConstraints$prefixStyle$suffixIconColor$suffixIconConstraints$suffixStyle$visualDensity",0,[a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5],["alignLabelWithHint","border","constraints","contentPadding","counterStyle","disabledBorder","enabledBorder","errorBorder","errorMaxLines","errorStyle","fillColor","filled","floatingLabelAlignment","floatingLabelBehavior","floatingLabelStyle","focusColor","focusedBorder","focusedErrorBorder","helperMaxLines","helperStyle","hintFadeDuration","hintMaxLines","hintStyle","hoverColor","iconColor","isCollapsed","isDense","labelStyle","prefixIconColor","prefixIconConstraints","prefixStyle","suffixIconColor","suffixIconConstraints","suffixStyle","visualDensity"],0))}, -$2$animation$builder(a,b){return this.M(this,A.B("call","$2$animation$builder",0,[a,b],["animation","builder"],0))}, -$1$width(a){return this.M(this,A.B("call","$1$width",0,[a],["width"],0))}, -$5$destructiveButtonTheme$ghostButtonTheme$outlineButtonTheme$primaryButtonTheme$secondaryButtonTheme(a,b,c,d,e){return this.M(this,A.B("call","$5$destructiveButtonTheme$ghostButtonTheme$outlineButtonTheme$primaryButtonTheme$secondaryButtonTheme",0,[a,b,c,d,e],["destructiveButtonTheme","ghostButtonTheme","outlineButtonTheme","primaryButtonTheme","secondaryButtonTheme"],0))}, -$1$hasError(a){return this.M(this,A.B("call","$1$hasError",0,[a],["hasError"],0))}, -$1$shadows(a){return this.M(this,A.B("call","$1$shadows",0,[a],["shadows"],0))}, -$1$top(a){return this.M(this,A.B("call","$1$top",0,[a],["top"],0))}, -$1$secondaryBorder(a){return this.M(this,A.B("call","$1$secondaryBorder",0,[a],["secondaryBorder"],0))}, -$3$color$fontSize$fontWeight(a,b,c){return this.M(this,A.B("call","$3$color$fontSize$fontWeight",0,[a,b,c],["color","fontSize","fontWeight"],0))}, -$18$background$backgroundColor$color$decoration$decorationColor$decorationStyle$decorationThickness$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$letterSpacing$locale$shadows$textBaseline$wordSpacing(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){return this.M(this,A.B("call","$18$background$backgroundColor$color$decoration$decorationColor$decorationStyle$decorationThickness$fontFeatures$fontSize$fontStyle$fontWeight$foreground$height$letterSpacing$locale$shadows$textBaseline$wordSpacing",0,[a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r],["background","backgroundColor","color","decoration","decorationColor","decorationStyle","decorationThickness","fontFeatures","fontSize","fontStyle","fontWeight","foreground","height","letterSpacing","locale","shadows","textBaseline","wordSpacing"],0))}, -$2$fontFamily$fontFamilyFallback(a,b){return this.M(this,A.B("call","$2$fontFamily$fontFamilyFallback",0,[a,b],["fontFamily","fontFamilyFallback"],0))}, -$2$fontFamily(a,b){return this.M(this,A.B("call","$2$fontFamily",0,[a,b],["fontFamily"],0))}, -$5(a,b,c,d,e){return this.M(this,A.B("call","$5",0,[a,b,c,d,e],[],0))}, -$2$bottom$top(a,b){return this.M(this,A.B("call","$2$bottom$top",0,[a,b],["bottom","top"],0))}, -$2$left$right(a,b){return this.M(this,A.B("call","$2$left$right",0,[a,b],["left","right"],0))}, -$1$padding(a){return this.M(this,A.B("call","$1$padding",0,[a],["padding"],0))}, -$2$hitTest$paintTransform(a,b){return this.M(this,A.B("call","$2$hitTest$paintTransform",0,[a,b],["hitTest","paintTransform"],0))}, -$3$crossAxisPosition$mainAxisPosition(a,b,c){return this.M(this,A.B("call","$3$crossAxisPosition$mainAxisPosition",0,[a,b,c],["crossAxisPosition","mainAxisPosition"],0))}, -$2$hitTest$paintOffset(a,b){return this.M(this,A.B("call","$2$hitTest$paintOffset",0,[a,b],["hitTest","paintOffset"],0))}, -$2$viewInsets$viewPadding(a,b){return this.M(this,A.B("call","$2$viewInsets$viewPadding",0,[a,b],["viewInsets","viewPadding"],0))}, -$2$amount$direction(a,b){return this.M(this,A.B("call","$2$amount$direction",0,[a,b],["amount","direction"],0))}, -$1$6$cancelToken$data$onReceiveProgress$options$queryParameters(a,b,c,d,e,f,g){return this.M(this,A.B("call","$1$6$cancelToken$data$onReceiveProgress$options$queryParameters",0,[a,b,c,d,e,f,g],["cancelToken","data","onReceiveProgress","options","queryParameters"],1))}, -$3$amount$withdrawAddress$withdrawContact(a,b,c){return this.M(this,A.B("call","$3$amount$withdrawAddress$withdrawContact",0,[a,b,c],["amount","withdrawAddress","withdrawContact"],0))}, -$1$amount(a){return this.M(this,A.B("call","$1$amount",0,[a],["amount"],0))}, -$1$type(a){return this.M(this,A.B("call","$1$type",0,[a],["type"],0))}, -$8$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(a,b,c,d,e,f,g,h){return this.M(this,A.B("call","$8$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding",0,[a,b,c,d,e,f,g,h],["removeBottomInset","removeBottomPadding","removeLeftPadding","removeRightPadding","removeTopPadding"],0))}, -$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(a,b,c,d,e,f,g){return this.M(this,A.B("call","$7$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding",0,[a,b,c,d,e,f,g],["removeBottomPadding","removeLeftPadding","removeRightPadding","removeTopPadding"],0))}, -$8$maintainBottomViewPadding$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(a,b,c,d,e,f,g,h){return this.M(this,A.B("call","$8$maintainBottomViewPadding$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding",0,[a,b,c,d,e,f,g,h],["maintainBottomViewPadding","removeBottomPadding","removeLeftPadding","removeRightPadding","removeTopPadding"],0))}, -$1$floatingActionButtonScale(a){return this.M(this,A.B("call","$1$floatingActionButtonScale",0,[a],["floatingActionButtonScale"],0))}, -$1$removeBottom(a){return this.M(this,A.B("call","$1$removeBottom",0,[a],["removeBottom"],0))}, -$4$closeIcon$descriptionStyle$padding$titleStyle(a,b,c,d){return this.M(this,A.B("call","$4$closeIcon$descriptionStyle$padding$titleStyle",0,[a,b,c,d],["closeIcon","descriptionStyle","padding","titleStyle"],0))}, -$2$destructiveToastTheme$primaryToastTheme(a,b){return this.M(this,A.B("call","$2$destructiveToastTheme$primaryToastTheme",0,[a,b],["destructiveToastTheme","primaryToastTheme"],0))}, -$1$2$arguments(a,b,c){return this.M(this,A.B("call","$1$2$arguments",0,[a,b,c],["arguments"],1))}, -$1$5(a,b,c,d,e,f){return this.M(this,A.B("call","$1$5",0,[a,b,c,d,e,f],[],1))}, -$1$reversed(a){return this.M(this,A.B("call","$1$reversed",0,[a],["reversed"],0))}, -$2$imperativeRemoval(a,b){return this.M(this,A.B("call","$2$imperativeRemoval",0,[a,b],["imperativeRemoval"],0))}, -$1$includeChildren(a){return this.M(this,A.B("call","$1$includeChildren",0,[a],["includeChildren"],0))}, -$1$isHidden(a){return this.M(this,A.B("call","$1$isHidden",0,[a],["isHidden"],0))}, -$1$config(a){return this.M(this,A.B("call","$1$config",0,[a],["config"],0))}, -$2$descendant$rect(a,b){return this.M(this,A.B("call","$2$descendant$rect",0,[a,b],["descendant","rect"],0))}, -$1$isImage(a){return this.M(this,A.B("call","$1$isImage",0,[a],["isImage"],0))}, -$1$isRequired(a){return this.M(this,A.B("call","$1$isRequired",0,[a],["isRequired"],0))}, -$1$isInMutuallyExclusiveGroup(a){return this.M(this,A.B("call","$1$isInMutuallyExclusiveGroup",0,[a],["isInMutuallyExclusiveGroup"],0))}, -$1$isAccessibilityFocusBlocked(a){return this.M(this,A.B("call","$1$isAccessibilityFocusBlocked",0,[a],["isAccessibilityFocusBlocked"],0))}, -$1$isKeyboardKey(a){return this.M(this,A.B("call","$1$isKeyboardKey",0,[a],["isKeyboardKey"],0))}, -$1$isSlider(a){return this.M(this,A.B("call","$1$isSlider",0,[a],["isSlider"],0))}, -$1$isLink(a){return this.M(this,A.B("call","$1$isLink",0,[a],["isLink"],0))}, -$1$isExpanded(a){return this.M(this,A.B("call","$1$isExpanded",0,[a],["isExpanded"],0))}, -$1$isSelected(a){return this.M(this,A.B("call","$1$isSelected",0,[a],["isSelected"],0))}, -$1$3$onlyFirst(a,b,c,d){return this.M(this,A.B("call","$1$3$onlyFirst",0,[a,b,c,d],["onlyFirst"],1))}, -$1$oldLayer(a){return this.M(this,A.B("call","$1$oldLayer",0,[a],["oldLayer"],0))}, -$6(a,b,c,d,e,f){return this.M(this,A.B("call","$6",0,[a,b,c,d,e,f],[],0))}, -$4$childPaintBounds(a,b,c,d){return this.M(this,A.B("call","$4$childPaintBounds",0,[a,b,c,d],["childPaintBounds"],0))}, -$3$x$y(a,b,c){return this.M(this,A.B("call","$3$x$y",0,[a,b,c],["x","y"],0))}, -$6$oldLayer(a,b,c,d,e,f){return this.M(this,A.B("call","$6$oldLayer",0,[a,b,c,d,e,f],["oldLayer"],0))}, -$5$borderRadius$shape$textDirection(a,b,c,d,e){return this.M(this,A.B("call","$5$borderRadius$shape$textDirection",0,[a,b,c,d,e],["borderRadius","shape","textDirection"],0))}, -$6$blend$blendMode(a,b,c,d,e,f){return this.M(this,A.B("call","$6$blend$blendMode",0,[a,b,c,d,e,f],["blend","blendMode"],0))}, -$4$textDirection(a,b,c,d){return this.M(this,A.B("call","$4$textDirection",0,[a,b,c,d],["textDirection"],0))}, -$1$maximum(a){return this.M(this,A.B("call","$1$maximum",0,[a],["maximum"],0))}, -$6$gapExtent$gapPercentage$gapStart$textDirection(a,b,c,d,e,f){return this.M(this,A.B("call","$6$gapExtent$gapPercentage$gapStart$textDirection",0,[a,b,c,d,e,f],["gapExtent","gapPercentage","gapStart","textDirection"],0))}, -$4$borderRadius$textDirection(a,b,c,d){return this.M(this,A.B("call","$4$borderRadius$textDirection",0,[a,b,c,d],["borderRadius","textDirection"],0))}, -$2$parentUsesSize(a,b){return this.M(this,A.B("call","$2$parentUsesSize",0,[a,b],["parentUsesSize"],0))}, -$1$4$context$id$parent$render(a,b,c,d,e){return this.M(this,A.B("call","$1$4$context$id$parent$render",0,[a,b,c,d,e],["context","id","parent","render"],1))}, -$1$maxWidth(a){return this.M(this,A.B("call","$1$maxWidth",0,[a],["maxWidth"],0))}, -$1$maxHeight(a){return this.M(this,A.B("call","$1$maxHeight",0,[a],["maxHeight"],0))}, -$4$isScrolling$newPosition$oldPosition$velocity(a,b,c,d){return this.M(this,A.B("call","$4$isScrolling$newPosition$oldPosition$velocity",0,[a,b,c,d],["isScrolling","newPosition","oldPosition","velocity"],0))}, -$2$from$to(a,b){return this.M(this,A.B("call","$2$from$to",0,[a,b],["from","to"],0))}, -$2$bottomNavigationBarTop$floatingActionButtonArea(a,b){return this.M(this,A.B("call","$2$bottomNavigationBarTop$floatingActionButtonArea",0,[a,b],["bottomNavigationBarTop","floatingActionButtonArea"],0))}, -$2$scheduleNewFrame(a,b){return this.M(this,A.B("call","$2$scheduleNewFrame",0,[a,b],["scheduleNewFrame"],0))}, -h(a,b){return this.M(a,A.B("[]","h",0,[b],[],0))}, -aN(a){return this.M(this,A.B("containsKey","aN",0,[a],[],0))}, -m(a,b,c){return this.M(a,A.B("[]=","m",0,[b,c],[],0))}, -Wm(a){return this.M(this,A.B("_yieldStar","Wm",0,[a],[],0))}, -kC(){return this.M(this,A.B("toJson","kC",0,[],[],0))}, -bC(){return this.M(this,A.B("didRegisterListener","bC",0,[],[],0))}, -rB(){return this.M(this,A.B("didUnregisterListener","rB",0,[],[],0))}, -ac(a,b){return this.M(a,A.B("-","ac",0,[b],[],0))}, -ak(a,b){return this.M(a,A.B("*","ak",0,[b],[],0))}, -a8(a,b){return this.M(a,A.B("+","a8",0,[b],[],0))}, -gH(a){return this.M(a,A.B("length","gH",1,[],[],0))}, -gR(){return this.M(this,A.B("child","gR",1,[],[],0))}, -gvs(){return this.M(this,A.B("coinCode","gvs",1,[],[],0))}, -gLO(){return this.M(this,A.B("quantity","gLO",1,[],[],0))}, -gm0(){return this.M(this,A.B("currentValue","gm0",1,[],[],0))}, -gBm(){return this.M(this,A.B("formattedProfitRate","gBm",1,[],[],0))}, -gKU(){return this.M(this,A.B("isProfit","gKU",1,[],[],0))}} -A.a8V.prototype={ -k(a){return""}, -$ifx:1} -A.tv.prototype={ -gYM(){var s=this.gYN() -if($.ur()===1e6)return s -return s*1000}, -gJK(){var s=this.gYN() -if($.ur()===1000)return s -return B.j.el(s,1000)}, -mV(){var s=this,r=s.b -if(r!=null){s.a=s.a+($.wz.$0()-r) -s.b=null}}, -iu(){var s=this.b -this.a=s==null?$.wz.$0():s}, -gYN(){var s=this.b -if(s==null)s=$.wz.$0() -return s-this.a}} -A.as7.prototype={ -gT(){return this.d}, -v(){var s,r,q,p=this,o=p.b=p.c,n=p.a,m=n.length -if(o===m){p.d=-1 -return!1}s=n.charCodeAt(o) -r=o+1 -if((s&64512)===55296&&r=0}, -a1d(a,b){var s,r,q,p,o,n,m,l,k=this,j=k.a -if(b!=null){b=A.aSR(b,0,b.length) -s=b!==j}else{b=j -s=!1}r=b==="file" -q=k.b -p=k.d -if(s)p=A.aLo(p,b) -o=k.c -if(!(o!=null))o=q.length!==0||p!=null||r?"":null -n=o!=null -if(a!=null){m=a.length -a=A.aSQ(a,0,m,null,b,n)}else{l=k.e -if(!r)m=n&&l.length!==0 -else m=!0 -if(m&&!B.c.c8(l,"/"))l="/"+l -a=l}return A.KM(b,q,o,p,a,k.f,k.r)}, -ay0(a){return this.a1d(a,null)}, -a1c(a){return this.a1d(null,a)}, -a09(){var s=this,r=s.e,q=A.b0e(r,s.a,s.c!=null) -if(q===r)return s -return s.ay0(q)}, -SE(a,b){var s,r,q,p,o,n,m -for(s=0,r=0;B.c.dP(b,"../",r);){r+=3;++s}q=B.c.BS(a,"/") -for(;;){if(!(q>0&&s>0))break -p=B.c.BT(a,"/",q-1) -if(p<0)break -o=q-p -n=o!==2 -m=!1 -if(!n||o===3)if(a.charCodeAt(p+1)===46)n=!n||a.charCodeAt(p+2)===46 -else n=m -else n=m -if(n)break;--s -q=p}return B.c.ky(a,q+1,null,B.c.cD(b,r-3*s))}, -af(a){return this.wT(A.iD(a,0,null))}, -wT(a){var s,r,q,p,o,n,m,l,k,j,i,h=this -if(a.ghb().length!==0)return a -else{s=h.a -if(a.gKy()){r=a.a1c(s) -return r}else{q=h.b -p=h.c -o=h.d -n=h.e -if(a.gZW())m=a.gBE()?a.gtd():h.f -else{l=A.be8(h,n) -if(l>0){k=B.c.a6(n,0,l) -n=a.gKw()?k+A.uf(a.gfa()):k+A.uf(h.SE(B.c.cD(n,k.length),a.gfa()))}else if(a.gKw())n=A.uf(a.gfa()) -else if(n.length===0)if(p==null)n=s.length===0?a.gfa():A.uf(a.gfa()) -else n=A.uf("/"+a.gfa()) -else{j=h.SE(n,a.gfa()) -r=s.length===0 -if(!r||p!=null||B.c.c8(n,"/"))n=A.uf(j) -else n=A.aST(j,!r||p!=null)}m=a.gBE()?a.gtd():null}}}i=a.gKA()?a.gl8():null -return A.KM(s,q,p,o,n,m,i)}, -gZY(){return this.a.length!==0}, -gKy(){return this.c!=null}, -gBE(){return this.f!=null}, -gKA(){return this.r!=null}, -gZW(){return this.e.length===0}, -gKw(){return B.c.c8(this.e,"/")}, -M6(){var s,r=this,q=r.a -if(q!==""&&q!=="file")throw A.i(A.c2("Cannot extract a file path from a "+q+" URI")) -q=r.f -if((q==null?"":q)!=="")throw A.i(A.c2(u.B)) -q=r.r -if((q==null?"":q)!=="")throw A.i(A.c2(u.A)) -if(r.c!=null&&r.gpB()!=="")A.a0(A.c2(u.Q)) -s=r.gwD() -A.be0(s,!1) -q=A.aw7(B.c.c8(r.e,"/")?"/":"",s,"/") -q=q.charCodeAt(0)==0?q:q -return q}, -k(a){return this.guY()}, -j(a,b){var s,r,q,p=this -if(b==null)return!1 -if(p===b)return!0 -s=!1 -if(t.Xu.b(b))if(p.a===b.ghb())if(p.c!=null===b.gKy())if(p.b===b.gMq())if(p.gpB()===b.gpB())if(p.gwH()===b.gwH())if(p.e===b.gfa()){r=p.f -q=r==null -if(!q===b.gBE()){if(q)r="" -if(r===b.gtd()){r=p.r -q=r==null -if(!q===b.gKA()){s=q?"":r -s=s===b.gl8()}}}}return s}, -$iZ4:1, -ghb(){return this.a}, -gfa(){return this.e}} -A.aLq.prototype={ -$2(a,b){var s=this.b,r=this.a -s.a+=r.a -r.a="&" -r=A.zc(1,a,B.ao,!0) -r=s.a+=r -if(b!=null&&b.length!==0){s.a=r+"=" -r=A.zc(1,b,B.ao,!0) -s.a+=r}}, -$S:504} -A.aLp.prototype={ -$2(a,b){var s,r -if(b==null||typeof b=="string")this.a.$2(a,b) -else for(s=J.bG(b),r=this.a;s.v();)r.$2(a,s.gT())}, -$S:92} -A.aLs.prototype={ -$3(a,b,c){var s,r,q,p -if(a===c)return -s=this.a -r=this.b -if(b<0){q=A.po(s,a,c,r,!0) -p=""}else{q=A.po(s,a,b,r,!0) -p=A.po(s,b+1,c,r,!0)}J.eJ(this.c.cl(q,A.bjy()),p)}, -$S:517} -A.axJ.prototype={ -gjU(){var s,r,q,p,o=this,n=null,m=o.c -if(m==null){m=o.a -s=o.b[0]+1 -r=B.c.kn(m,"?",s) -q=m.length -if(r>=0){p=A.KN(m,r+1,q,256,!1,!1) -q=r}else p=n -m=o.c=new A.a1L("data","",n,n,A.KN(m,s,q,128,!1,!1),p,n)}return m}, -k(a){var s=this.a -return this.b[0]===-1?"data:"+s:s}} -A.jk.prototype={ -gZY(){return this.b>0}, -gKy(){return this.c>0}, -gKC(){return this.c>0&&this.d+1r?B.c.a6(this.a,r,s-1):""}, -gpB(){var s=this.c -return s>0?B.c.a6(this.a,s,this.d):""}, -gwH(){var s,r=this -if(r.gKC())return A.fU(B.c.a6(r.a,r.d+1,r.e),null) -s=r.b -if(s===4&&B.c.c8(r.a,"http"))return 80 -if(s===5&&B.c.c8(r.a,"https"))return 443 -return 0}, -gfa(){return B.c.a6(this.a,this.e,this.f)}, -gtd(){var s=this.f,r=this.r -return s=this.r)return B.DJ -var s=A.b0g(this.gtd()) -s.a1M(A.b1p()) -return A.Ny(s,t.N,t.yp)}, -Sq(a){var s=this.d+1 -return s+a.length===this.e&&B.c.dP(this.a,a,s)}, -a09(){return this}, -axU(){var s=this,r=s.r,q=s.a -if(r>=q.length)return s -return new A.jk(B.c.a6(q,0,r),s.b,s.c,s.d,s.e,s.f,r,s.w)}, -a1c(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null -a=A.aSR(a,0,a.length) -s=!(h.b===a.length&&B.c.c8(h.a,a)) -r=a==="file" -q=h.c -p=q>0?B.c.a6(h.a,h.b+3,q):"" -o=h.gKC()?h.gwH():g -if(s)o=A.aLo(o,a) -q=h.c -if(q>0)n=B.c.a6(h.a,q,h.d) -else n=p.length!==0||o!=null||r?"":g -q=h.a -m=h.f -l=B.c.a6(q,h.e,m) -if(!r)k=n!=null&&l.length!==0 -else k=!0 -if(k&&!B.c.c8(l,"/"))l="/"+l -k=h.r -j=m0)return b -s=b.c -if(s>0){r=a.b -if(r<=0)return b -q=r===4 -if(q&&B.c.c8(a.a,"file"))p=b.e!==b.f -else if(q&&B.c.c8(a.a,"http"))p=!b.Sq("80") -else p=!(r===5&&B.c.c8(a.a,"https"))||!b.Sq("443") -if(p){o=r+1 -return new A.jk(B.c.a6(a.a,0,o)+B.c.cD(b.a,c+1),r,s+o,b.d+o,b.e+o,b.f+o,b.r+o,a.w)}else return this.Va().wT(b)}n=b.e -c=b.f -if(n===c){s=b.r -if(c0?l:m -o=k-n -return new A.jk(B.c.a6(a.a,0,k)+B.c.cD(s,n),a.b,a.c,a.d,m,c+o,b.r+o,a.w)}j=a.e -i=a.f -if(j===i&&a.c>0){while(B.c.dP(s,"../",n))n+=3 -o=j-n+1 -return new A.jk(B.c.a6(a.a,0,j)+"/"+B.c.cD(s,n),a.b,a.c,a.d,j,c+o,b.r+o,a.w)}h=a.a -l=A.b_X(this) -if(l>=0)g=l -else for(g=j;B.c.dP(h,"../",g);)g+=3 -f=0 -for(;;){e=n+3 -if(!(e<=c&&B.c.dP(s,"../",n)))break;++f -n=e}for(d="";i>g;){--i -if(h.charCodeAt(i)===47){if(f===0){d="/" -break}--f -d="/"}}if(i===g&&a.b<=0&&!B.c.dP(h,"/",j)){n-=f*3 -d=""}o=i-n+d.length -return new A.jk(B.c.a6(h,0,i)+d+B.c.cD(s,n),a.b,a.c,a.d,j,c+o,b.r+o,a.w)}, -M6(){var s,r=this,q=r.b -if(q>=0){s=!(q===4&&B.c.c8(r.a,"file")) -q=s}else q=!1 -if(q)throw A.i(A.c2("Cannot extract a file path from a "+r.ghb()+" URI")) -q=r.f -s=r.a -if(q0?s.gpB():r,n=s.gKC()?s.gwH():r,m=s.a,l=s.f,k=B.c.a6(m,s.e,l),j=s.r -l=l864e13)A.a0(A.cR(r,-864e13,864e13,"millisecondsSinceEpoch",null)) -A.kj(!0,"isUtc",t.y) -return new A.fY(r,0,!0)}if(a instanceof RegExp)throw A.i(A.c1("structured clone of RegExp",null)) -if(a instanceof Promise)return A.hS(a,t.X) -q=Object.getPrototypeOf(a) -if(q===Object.prototype||q===null){p=t.X -o=A.t(p,p) -s.m(0,a,o) -n=Object.keys(a) -m=[] -for(s=J.d5(n),p=s.gai(n);p.v();)m.push(A.aTj(p.gT())) -for(l=0;l>>0>a;r=!0){q=s.ti() -A.ns(q.b,q.c,null)}return r}, -aby(){var s,r=this,q=r.a -if(!q.gan(0)&&r.e!=null){s=q.ti() -r.e.dM(s.a,s.ga_n()) -A.fE(r.gQs())}else r.d=!1}} -A.aea.prototype={ -axd(a,b,c){this.a.cl(a,new A.aeb()).o5(new A.Kf(b,c,$.as))}, -a37(a,b){var s=this.a.cl(a,new A.aec()),r=s.e -s.e=new A.aAs(b,$.as) -if(r==null&&!s.d){s.d=!0 -A.fE(s.gQs())}}, -asZ(a){var s,r,q,p,o,n,m,l="Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (arguments must be a two-element list, channel name and new capacity)",k="Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (arguments must be a two-element list, channel name and flag state)",j=J.jr(B.aU.gcF(a),a.byteOffset,a.byteLength) -if(j[0]===7){s=j[1] -if(s>=254)throw A.i(A.cX("Unrecognized message sent to dev.flutter/channel-buffers (method name too long)")) -r=2+s -q=B.ao.ic(B.a0.d1(j,2,r)) -switch(q){case"resize":if(j[r]!==12)throw A.i(A.cX(l)) -p=r+1 -if(j[p]<2)throw A.i(A.cX(l));++p -if(j[p]!==7)throw A.i(A.cX("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (first argument must be a string)"));++p -o=j[p] -if(o>=254)throw A.i(A.cX("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (channel name must be less than 254 characters long)"));++p -r=p+o -n=B.ao.ic(B.a0.d1(j,p,r)) -if(j[r]!==3)throw A.i(A.cX("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (second argument must be an integer in the range 0 to 2147483647)")) -this.a1g(n,a.getUint32(r+1,B.b0===$.ei())) -break -case"overflow":if(j[r]!==12)throw A.i(A.cX(k)) -p=r+1 -if(j[p]<2)throw A.i(A.cX(k));++p -if(j[p]!==7)throw A.i(A.cX("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (first argument must be a string)"));++p -o=j[p] -if(o>=254)throw A.i(A.cX("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (channel name must be less than 254 characters long)"));++p -r=p+o -B.ao.ic(B.a0.d1(j,p,r)) -r=j[r] -if(r!==1&&r!==2)throw A.i(A.cX("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (second argument must be a boolean)")) -break -default:throw A.i(A.cX("Unrecognized method '"+q+"' sent to dev.flutter/channel-buffers"))}}else{m=A.c(B.ao.ic(j).split("\r"),t.s) -if(m.length===3&&m[0]==="resize")this.a1g(m[1],A.fU(m[2],null)) -else throw A.i(A.cX("Unrecognized message "+A.j(m)+" sent to dev.flutter/channel-buffers."))}}, -a1g(a,b){var s=this.a,r=s.h(0,a) -if(r==null)s.m(0,a,new A.n9(A.o6(b,t.S8),b)) -else{r.c=b -r.Qu(b)}}} -A.aeb.prototype={ -$0(){return new A.n9(A.o6(1,t.S8),1)}, -$S:164} -A.aec.prototype={ -$0(){return new A.n9(A.o6(1,t.S8),1)}, -$S:164} -A.TV.prototype={ -j(a,b){if(b==null)return!1 -return b instanceof A.TV&&b.a===this.a&&b.b===this.b}, -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"OffsetBase("+B.d.aq(this.a,1)+", "+B.d.aq(this.b,1)+")"}} -A.h.prototype={ -gd3(){var s=this.a,r=this.b -return Math.sqrt(s*s+r*r)}, -gvL(){var s=this.a,r=this.b -return s*s+r*r}, -ac(a,b){return new A.h(this.a-b.a,this.b-b.b)}, -a8(a,b){return new A.h(this.a+b.a,this.b+b.b)}, -ak(a,b){return new A.h(this.a*b,this.b*b)}, -d7(a,b){return new A.h(this.a/b,this.b/b)}, -j(a,b){if(b==null)return!1 -return b instanceof A.h&&b.a===this.a&&b.b===this.b}, -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"Offset("+B.d.aq(this.a,1)+", "+B.d.aq(this.b,1)+")"}} -A.L.prototype={ -gan(a){return this.a<=0||this.b<=0}, -ac(a,b){var s=this -if(b instanceof A.L)return new A.h(s.a-b.a,s.b-b.b) -if(b instanceof A.h)return new A.L(s.a-b.a,s.b-b.b) -throw A.i(A.c1(b,null))}, -a8(a,b){return new A.L(this.a+b.a,this.b+b.b)}, -ak(a,b){return new A.L(this.a*b,this.b*b)}, -d7(a,b){return new A.L(this.a/b,this.b/b)}, -gft(){return Math.min(Math.abs(this.a),Math.abs(this.b))}, -lW(a){return new A.h(a.a+this.a/2,a.b+this.b/2)}, -A5(a){return new A.h(a.a+this.a,a.b+this.b)}, -q(a,b){var s=b.a,r=!1 -if(s>=0)if(s=0&&s=s.c||s.b>=s.d}, -e0(a){var s=this,r=a.a,q=a.b -return new A.w(s.a+r,s.b+q,s.c+r,s.d+q)}, -lu(a,b){var s=this -return new A.w(s.a+a,s.b+b,s.c+a,s.d+b)}, -d5(a){var s=this -return new A.w(s.a-a,s.b-a,s.c+a,s.d+a)}, -f0(a){var s=this -return new A.w(Math.max(s.a,a.a),Math.max(s.b,a.b),Math.min(s.c,a.c),Math.min(s.d,a.d))}, -hr(a){var s=this -return new A.w(Math.min(s.a,a.a),Math.min(s.b,a.b),Math.max(s.c,a.c),Math.max(s.d,a.d))}, -hL(a){var s=this -if(s.c<=a.a||a.c<=s.a)return!1 -if(s.d<=a.b||a.d<=s.b)return!1 -return!0}, -gft(){var s=this -return Math.min(Math.abs(s.c-s.a),Math.abs(s.d-s.b))}, -gXk(){var s=this.b -return new A.h(this.a,s+(this.d-s)/2)}, -gbp(){var s=this,r=s.a,q=s.b -return new A.h(r+(s.c-r)/2,q+(s.d-q)/2)}, -q(a,b){var s=this,r=b.a,q=!1 -if(r>=s.a)if(r=s.b&&rd&&s!==0)return Math.min(a,d/s) -return a}, -N1(){var s=this,r=s.c,q=s.a,p=Math.abs(r-q),o=s.d,n=s.b,m=Math.abs(o-n),l=s.Q,k=s.f,j=s.e,i=s.r,h=s.w,g=s.y,f=s.x,e=s.z,d=s.ys(s.ys(s.ys(s.ys(1,l,k,m),j,i,p),h,g,m),f,e,p) -if(d<1)return s.qH(e*d,l*d,o,f*d,g*d,q,r,j*d,k*d,n,i*d,h*d,s.gr8()) -return s.qH(e,l,o,f,g,q,r,j,k,n,i,h,s.gr8())}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(A.l(s)!==J.S(b))return!1 -return b instanceof A.yQ&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.e===s.e&&b.f===s.f&&b.r===s.r&&b.w===s.w&&b.z===s.z&&b.Q===s.Q&&b.x===s.x&&b.y===s.y}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.z,s.Q,s.x,s.y,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -Vi(a){var s,r,q=this,p=B.d.aq(q.a,1)+", "+B.d.aq(q.b,1)+", "+B.d.aq(q.c,1)+", "+B.d.aq(q.d,1),o=q.e,n=q.f,m=q.r,l=q.w -if(new A.aR(o,n).j(0,new A.aR(m,l))){s=q.x -r=q.y -s=new A.aR(m,l).j(0,new A.aR(s,r))&&new A.aR(s,r).j(0,new A.aR(q.z,q.Q))}else s=!1 -if(s){if(o===n)return a+".fromLTRBR("+p+", "+B.d.aq(o,1)+")" -return a+".fromLTRBXY("+p+", "+B.d.aq(o,1)+", "+B.d.aq(n,1)+")"}return a+".fromLTRBAndCorners("+p+", topLeft: "+new A.aR(o,n).k(0)+", topRight: "+new A.aR(m,l).k(0)+", bottomRight: "+new A.aR(q.x,q.y).k(0)+", bottomLeft: "+new A.aR(q.z,q.Q).k(0)+")"}} -A.jW.prototype={ -qH(a,b,c,d,e,f,g,h,i,j,k,l,m){return A.ba8(a,b,c,d,e,f,g,h,i,j,k,l)}, -gr8(){return!1}, -q(a,b){var s,r,q,p,o,n=this,m=b.a,l=n.a,k=!0 -if(!(m=n.c)){k=b.b -k=k=n.d}if(k)return!1 -s=n.N1() -r=s.e -if(mk-r&&b.bk-r&&b.b>n.d-s.y){q=m-k+r -p=s.y -o=b.b-n.d+p}else{r=s.z -if(mn.d-s.Q){q=m-l-r -p=s.Q -o=b.b-n.d+p}else return!0}}}q/=r -o/=p -if(q*q+o*o>1)return!1 -return!0}, -k(a){return this.Vi("RRect")}} -A.rG.prototype={ -qH(a,b,c,d,e,f,g,h,i,j,k,l,m){return A.ba9(a,b,c,d,e,f,g,h,i,j,k,l,m)}, -a1C(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this -if(c.as){s=c.a -r=c.c-s -q=c.b -p=c.d-q -return new A.an($.b3O().mI(r,p,c.akN()),new A.h(s+r/2,q+p/2))}else{s=c.amD() -c=A.co($.ab().r) -r=s.a -q=s.c -p=s.e -o=s.r -n=A.aFz(r,q,p,o) -m=s.b -l=s.d -k=s.w -j=s.y -i=A.aFz(m,l,k,j) -h=s.z -g=s.x -f=A.aFz(r,q,h,g) -e=s.f -s=s.Q -d=A.aFz(m,l,e,s) -c.b9(new A.ig(n,m)) -A.a58(new A.h(n,i),new A.h(q,m),new A.aR(o,k),B.IY).v8(c,!1) -A.a58(new A.h(f,i),new A.h(q,l),new A.aR(g,j),B.l4).v8(c,!0) -A.a58(new A.h(f,d),new A.h(r,l),new A.aR(h,s),B.IZ).v8(c,!1) -A.a58(new A.h(n,d),new A.h(r,m),new A.aR(p,e),B.J_).v8(c,!0) -c.b9(new A.d3(n,m)) -c.b9(new A.pW()) -return new A.an(c,B.f)}}, -amD(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5=this,a6=null,a7="Pattern matching error",a8=a5.c,a9=a5.a,b0=a8-a9 -if(!(b0>0&&a5.d-a5.b>0))return new A.rG(!0,a9,a5.b,a8,a5.d,0,0,0,0,0,0,0,0) -s=A.Ux(a5.e,a5.f) -r=s.a -q=a6 -p=s.b -q=p -o=r -n=A.Ux(a5.r,a5.w) -m=n.a -l=a6 -k=n.b -l=k -j=m -i=A.Ux(a5.z,a5.Q) -h=i.a -g=a6 -f=i.b -g=f -e=h -d=A.Ux(a5.x,a5.y) -c=d.a -b=a6 -a=d.b -b=a -a0=c -a1=a5.d -a2=a5.b -a3=a1-a2 -a4=A.DG(l,b,a3,A.DG(q,g,a3,A.DG(e,a0,b0,A.DG(o,j,b0,1)))) -if(a4<1)return a5.qH(e*a4,g*a4,a1,a0*a4,b*a4,a9,a8,o*a4,q*a4,a2,j*a4,l*a4,a5.as) -else return a5}, -akN(){var s,r,q,p,o,n,m=this,l=m.c-m.a -if(!(l>0&&m.d-m.b>0))return B.H -s=A.Ux(m.e,m.f) -r=s.a -q=null -p=s.b -q=p -o=r -n=A.DG(q,q,m.d-m.b,A.DG(o,o,l,1)) -return new A.aR(o*n,q*n)}, -k(a){return this.Vi("RSuperellipse")}, -gr8(){return this.as}} -A.Cn.prototype={ -N(){return"KeyEventType."+this.b}, -gKY(){switch(this.a){case 0:var s="Key Down" -break -case 1:s="Key Up" -break -case 2:s="Key Repeat" -break -default:s=null}return s}} -A.akA.prototype={ -N(){return"KeyEventDeviceType."+this.b}} -A.hw.prototype={ -ahd(){var s=this.e,r=B.j.oc(s,16),q=B.d.ih(s/4294967296) -A:{if(0===q){s=" (Unicode)" -break A}if(1===q){s=" (Unprintable)" -break A}if(2===q){s=" (Flutter)" -break A}if(17===q){s=" (Android)" -break A}if(18===q){s=" (Fuchsia)" -break A}if(19===q){s=" (iOS)" -break A}if(20===q){s=" (macOS)" -break A}if(21===q){s=" (GTK)" -break A}if(22===q){s=" (Windows)" -break A}if(23===q){s=" (Web)" -break A}if(24===q){s=" (GLFW)" -break A}s="" -break A}return"0x"+r+s}, -abT(){var s,r=this.f -A:{if(r==null){s="" -break A}if("\n"===r){s='"\\n"' -break A}if("\t"===r){s='"\\t"' -break A}if("\r"===r){s='"\\r"' -break A}if("\b"===r){s='"\\b"' -break A}if("\f"===r){s='"\\f"' -break A}s='"'+r+'"' -break A}return s}, -ak_(){var s=this.f -if(s==null)return"" -return" (0x"+new A.am(new A.hW(s),new A.akz(),t.Hz.i("am")).bJ(0," ")+")"}, -k(a){var s=this,r=s.b.gKY(),q=B.j.oc(s.d,16),p=s.ahd(),o=s.abT(),n=s.ak_(),m=s.r?", synthesized":"" -return"KeyData("+r+", physical: 0x"+q+", logical: "+p+", character: "+o+n+m+")"}} -A.akz.prototype={ -$1(a){return B.c.mt(B.j.oc(a,16),2,"0")}, -$S:102} -A.x.prototype={ -gp(){return this.A()}, -A(){var s=this -return((B.d.aY(s.a*255)&255)<<24|(B.d.aY(s.b*255)&255)<<16|(B.d.aY(s.c*255)&255)<<8|B.d.aY(s.d*255)&255)>>>0}, -ger(){return this.A()>>>24&255}, -gdY(){return(this.A()>>>24&255)/255}, -ga0X(){return this.A()>>>16&255}, -gMY(){return this.A()>>>8&255}, -gX3(){return this.A()&255}, -Di(a,b,c,d,e){var s=this,r=new A.x(a,s.b,s.c,s.d,s.e) -return r==null?s:r}, -bT(a){var s=null -return this.Di(a,s,s,s,s)}, -e_(a){return A.ar(a,this.A()>>>16&255,this.A()>>>8&255,this.A()&255)}, -aI(a){return A.ar(B.d.aY(255*a),this.A()>>>16&255,this.A()>>>8&255,this.A()&255)}, -IN(){return 0.2126*A.aQo(this.b)+0.7152*A.aQo(this.c)+0.0722*A.aQo(this.d)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return t.G.b(b)&&b.goY()===s.a&&b.go6()===s.b&&b.gmH()===s.c&&b.gnt()===s.d&&b.gvt()===s.e}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=this -return"Color(alpha: "+B.d.aq(s.a,4)+", red: "+B.d.aq(s.b,4)+", green: "+B.d.aq(s.c,4)+", blue: "+B.d.aq(s.d,4)+", colorSpace: "+s.e.k(0)+")"}, -goY(){return this.a}, -go6(){return this.b}, -gmH(){return this.c}, -gnt(){return this.d}, -gvt(){return this.e}} -A.FE.prototype={ -N(){return"StrokeCap."+this.b}} -A.Yx.prototype={ -N(){return"StrokeJoin."+this.b}} -A.U8.prototype={ -N(){return"PaintingStyle."+this.b}} -A.A7.prototype={ -N(){return"BlendMode."+this.b}} -A.uX.prototype={ -N(){return"Clip."+this.b}} -A.MN.prototype={ -N(){return"BlurStyle."+this.b}} -A.w7.prototype={ -j(a,b){if(b==null)return!1 -return b instanceof A.w7&&b.a===this.a&&b.b===this.b}, -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"MaskFilter.blur("+this.a.k(0)+", "+B.d.aq(this.b,1)+")"}} -A.qn.prototype={ -N(){return"FilterQuality."+this.b}} -A.aR3.prototype={} -A.aeE.prototype={ -N(){return"ColorSpace."+this.b}} -A.k2.prototype={ -bi(a){return new A.k2(this.a,this.b.ak(0,a),this.c*a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -return b instanceof A.k2&&b.a.j(0,s.a)&&b.b.j(0,s.b)&&b.c===s.c}, -gt(a){return A.N(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"TextShadow("+this.a.k(0)+", "+this.b.k(0)+", "+A.j(this.c)+")"}} -A.apC.prototype={} -A.nS.prototype={ -k(a){var s,r=A.l(this).k(0),q=this.a,p=A.cI(q[2],0),o=q[1],n=A.cI(o,0),m=q[4],l=A.cI(m,0),k=A.cI(q[3],0) -o=A.cI(o,0) -s=q[0] -return r+"(buildDuration: "+(A.j((p.a-n.a)*0.001)+"ms")+", rasterDuration: "+(A.j((l.a-k.a)*0.001)+"ms")+", vsyncOverhead: "+(A.j((o.a-A.cI(s,0).a)*0.001)+"ms")+", totalSpan: "+(A.j((A.cI(m,0).a-A.cI(s,0).a)*0.001)+"ms")+", layerCacheCount: "+q[6]+", layerCacheBytes: "+q[7]+", pictureCacheCount: "+q[8]+", pictureCacheBytes: "+q[9]+", frameNumber: "+B.b.gaC(q)+")"}} -A.jw.prototype={ -N(){return"AppLifecycleState."+this.b}} -A.zY.prototype={ -N(){return"AppExitResponse."+this.b}} -A.md.prototype={ -gdV(){var s=this.a,r=B.ch.h(0,s) -return r==null?s:r}, -gdS(){var s=this.c,r=B.cO.h(0,s) -return r==null?s:r}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -return b instanceof A.md&&b.gdV()===s.gdV()&&b.b==s.b&&b.gdS()==s.gdS()}, -gt(a){return A.N(this.gdV(),this.b,this.gdS(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return this.oN("_")}, -oN(a){var s=this,r=s.gdV(),q=s.b -if(q!=null&&q.length!==0)r+=a+q -if(s.c!=null&&s.gdS().length!==0)r+=a+A.j(s.gdS()) -return r.charCodeAt(0)==0?r:r}} -A.af4.prototype={ -N(){return"DartPerformanceMode."+this.b}} -A.oB.prototype={ -k(a){return"SemanticsActionEvent("+this.a.k(0)+", view: "+this.b+", node: "+this.c+")"}} -A.y2.prototype={ -k(a){return"ViewFocusEvent(viewId: "+this.a+", state: "+this.b.k(0)+", direction: "+this.c.k(0)+")"}} -A.Zb.prototype={ -N(){return"ViewFocusState."+this.b}} -A.Gy.prototype={ -N(){return"ViewFocusDirection."+this.b}} -A.mp.prototype={ -N(){return"PointerChange."+this.b}} -A.kS.prototype={ -N(){return"PointerDeviceKind."+this.b}} -A.ww.prototype={ -N(){return"PointerSignalKind."+this.b}} -A.j4.prototype={ -o8(a){var s=this.p4 -if(s!=null)s.$1$allowPlatformDefault(a)}, -k(a){return"PointerData(viewId: "+this.a+", x: "+A.j(this.x)+", y: "+A.j(this.y)+")"}} -A.oj.prototype={} -A.aLc.prototype={ -$1(a){return this.a.$1(this.b.$1(a))}, -$S:76} -A.aLf.prototype={ -$1(a){var s=this.a -return new A.h(a.a+s.a,a.b+s.b)}, -$S:76} -A.aLd.prototype={ -$1(a){var s=this.a -return new A.h(a.a*s.a,a.b*s.b)}, -$S:76} -A.aLb.prototype={ -$1(a){return new A.h(a.b,a.a)}, -$S:76} -A.a57.prototype={ -zY(a8,a9,b0,b1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6=this,a7=A.a9Q(a9,A.aLe(a6.a)) -if(b0)a7=A.a9Q(a7,$.b3S()) -s=a6.e -r=a6.f -q=s.ac(0,r) -p=a6.r -o=-p -n=Math.cos(o) -m=Math.sin(o) -o=q.a -l=q.b -k=o*n-l*m -j=o*m+l*n -i=new A.h(k,j) -h=r.a8(0,i) -g=new A.h(l,-o).d7(0,q.gd3()) -f=new A.h(-j,k).d7(0,i.gd3()) -e=Math.tan(p/4)*4/3 -d=q.gd3() -c=[s,s.a8(0,g.ak(0,e).ak(0,d)),h.a8(0,f.ak(0,e).ak(0,d)),h] -p=a6.b -b=new A.h(0,p) -a=s.ac(0,r) -f=new A.h(-a.b,a.a).d7(0,a.gd3()) -a0=A.bdq(a6.c) -a1=a0.a -a2=null -a3=a0.b -a2=a3 -a4=a1 -a5=[b,b.a8(0,B.dw.ak(0,a4).ak(0,p)),s.a8(0,f.ak(0,a2).ak(0,p)),s] -if(!b1){A.aFA(a8,a7.$1(a5[1]),a7.$1(a5[2]),a7.$1(a5[3])) -A.aFA(a8,a7.$1(c[1]),a7.$1(c[2]),a7.$1(c[3]))}else{A.aFA(a8,a7.$1(c[2]),a7.$1(c[1]),a7.$1(c[0])) -A.aFA(a8,a7.$1(a5[2]),a7.$1(a5[1]),a7.$1(a5[0]))}}} -A.aFB.prototype={ -zX(a,b,c){var s,r,q=this,p=q.b,o=A.a9Q(A.aLe(q.a),A.bdQ(new A.h(p.a*b.a,p.b*b.b))) -p=q.d -if(p.c<2||q.e.c<2){if(!c){p=q.e -s=A.a9Q(o,A.aLe(p.a)) -p=p.b -r=s.$1(new A.h(p,p)) -a.b9(new A.d3(r.a,r.b)) -p=s.$1(new A.h(p,0)) -a.b9(new A.d3(p.a,p.b))}else{s=A.a9Q(o,A.aLe(p.a)) -p=p.b -r=s.$1(new A.h(p,p)) -a.b9(new A.d3(r.a,r.b)) -p=s.$1(new A.h(0,p)) -a.b9(new A.d3(p.a,p.b))}return}r=q.e -if(!c){p.zY(a,o,!1,!1) -r.zY(a,o,!0,!0)}else{r.zY(a,o,!0,!1) -p.zY(a,o,!1,!0)}}, -v8(a,b){return this.zX(a,B.l4,b)}} -A.aSF.prototype={} -A.IW.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -return b instanceof A.IW&&s.a===b.a&&s.b===b.b&&s.c===b.c&&s.d===b.d}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=this -return"_RSuperellipseCacheKey(width: "+A.j(s.a/100)+",height: "+A.j(s.b/100)+",radiusX: "+A.j(s.c/100)+",radiusY: "+A.j(s.d/100)+")"}} -A.aFy.prototype={ -mI(a,b,c){var s,r,q=B.d.aY(a*100),p=B.d.aY(b*100),o=B.d.aY(c.a*100),n=B.d.aY(c.b*100),m=new A.IW(q,p,o,n),l=this.b,k=l.J(0,m) -if(k!=null){l.m(0,m,k) -return k}else{s=A.co($.ab().r) -p=p/100/2 -r=A.a58(B.f,new A.h(q/100/2,p),new A.aR(o/100,n/100),B.l4) -s.b9(new A.ig(0,p)) -r.v8(s,!1) -r.zX(s,B.IY,!0) -r.zX(s,B.J_,!1) -r.zX(s,B.IZ,!0) -s.b9(new A.d3(0,p)) -s.b9(new A.pW()) -l.m(0,m,s) -this.aa4() -return s}}, -aa4(){var s,r,q,p -for(s=this.b,r=this.a,q=A.n(s).i("bD<1>");s.a>r;){p=new A.bD(s,q).gai(0) -if(!p.v())A.a0(A.cD()) -s.J(0,p.gT())}}} -A.d0.prototype={ -k(a){return"SemanticsAction."+this.b}} -A.uQ.prototype={ -N(){return"CheckedState."+this.b}, -E(a){if(this===B.h1||a===B.h1)return B.h1 -if(this===B.eH||a===B.eH)return B.eH -if(this===B.lV||a===B.lV)return B.lV -return B.eG}} -A.Gp.prototype={ -N(){return"Tristate."+this.b}, -E(a){if(this===B.aO||a===B.aO)return B.aO -if(this===B.ic||a===B.ic)return B.ic -return B.V}} -A.EM.prototype={ -E(a5){var s=this,r=s.a.E(a5.a),q=s.b.E(a5.b),p=s.c.E(a5.c),o=s.d.E(a5.d),n=s.e.E(a5.e),m=s.f.E(a5.f),l=s.r.E(a5.r),k=s.w||a5.w,j=s.x||a5.x,i=s.y||a5.y,h=s.z||a5.z,g=s.Q||a5.Q,f=s.as||a5.as,e=s.at||a5.at,d=s.ax||a5.ax,c=s.ay||a5.ay,b=s.ch||a5.ch,a=s.CW||a5.CW,a0=s.cx||a5.cx,a1=s.cy||a5.cy,a2=s.db||a5.db,a3=s.dx||a5.dx,a4=s.dy||a5.dy -return A.aXS(a,s.fr||a5.fr,k,r,p,n,l,h,d,c,i,a4,a2,b,a0,g,a1,m,q,a3,j,o,e,f)}, -es(a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5){var s=this,r=a5==null?s.a:a5,q=c0==null?s.b:c0,p=a4==null?s.w:a4,o=c2==null?s.x:c2,n=a8==null?s.r:a8,m=a6==null?s.c:a6,l=a9==null?s.z:a9,k=b7==null?s.Q:b7,j=c5==null?s.as:c5,i=c4==null?s.at:c4,h=b0==null?s.ax:b0,g=b5==null?s.ch:b5,f=c3==null?s.d:c3,e=a2==null?s.CW:a2,d=b6==null?s.cx:b6,c=b8==null?s.cy:b8,b=b4==null?s.db:b4,a=a7==null?s.e:a7,a0=b9==null?s.f:b9,a1=a3==null?s.fr:a3 -return A.aXS(e,a1,p,r,m,a,n,l,h,s.ay,s.y,s.dy,b,g,d,k,c,a0,q,s.dx,o,f,i,j)}, -aqg(a){var s=null -return this.es(s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s)}, -aqp(a){var s=null -return this.es(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s)}, -aqr(a){var s=null -return this.es(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a)}, -IX(a){var s=null -return this.es(s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -aqb(a){var s=null -return this.es(s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -aq8(a){var s=null -return this.es(s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -aqo(a){var s=null -return this.es(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s)}, -aq9(a){var s=null -return this.es(s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -aq2(a){var s=null -return this.es(a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -aqj(a){var s=null -return this.es(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s)}, -aqn(a){var s=null -return this.es(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s)}, -aqh(a){var s=null -return this.es(s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s)}, -aqi(a){var s=null -return this.es(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s)}, -IY(a){var s=null -return this.es(s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -aqc(a){var s=null -return this.es(s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -aqk(a){var s=null -return this.es(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s)}, -aqd(a){var s=null -return this.es(s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -aq7(a){var s=null -return this.es(s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -aqe(a){var s=null -return this.es(s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s)}, -aqm(a){var s=null -return this.es(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s)}, -aqf(a){var s=null -return this.es(s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s)}, -aqa(a){var s=null -return this.es(s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -aql(a){var s=null -return this.es(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r!==b)s=b instanceof A.EM&&A.l(r)===A.l(b)&&r.a===b.a&&r.b===b.b&&r.c===b.c&&r.d===b.d&&r.e===b.e&&r.f===b.f&&r.r===b.r&&r.w===b.w&&r.x===b.x&&r.y===b.y&&r.z===b.z&&r.Q===b.Q&&r.as===b.as&&r.at===b.at&&r.ax===b.ax&&r.ay===b.ay&&r.ch===b.ch&&r.CW===b.CW&&r.cx===b.cx&&r.cy===b.cy&&r.db===b.db&&r.dx===b.dx&&r.dy===b.dy&&r.fr===b.fr -else s=!0 -return s}, -gt(a){var s=this -return A.bh([s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,s.fr])}} -A.ir.prototype={ -N(){return"SemanticsRole."+this.b}} -A.t5.prototype={ -N(){return"SemanticsInputType."+this.b}} -A.EP.prototype={ -N(){return"SemanticsValidationResult."+this.b}} -A.VS.prototype={ -N(){return"SemanticsHitTestBehavior."+this.b}} -A.au9.prototype={} -A.qu.prototype={ -N(){return"FontStyle."+this.b}} -A.oi.prototype={ -N(){return"PlaceholderAlignment."+this.b}} -A.fp.prototype={ -gpD(){return B.j.eX(B.j.el(this.a,100)-1,0,8)}, -j(a,b){if(b==null)return!1 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.fp&&b.a===this.a}, -gt(a){return this.a}, -k(a){var s=this.a -if(B.j.cn(s,100)!==0)return"FontWeight("+s+")" -s=B.a13.h(0,this.gpD()) -s.toString -return s}} -A.jI.prototype={ -j(a,b){if(b==null)return!1 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.jI&&b.a===this.a&&b.b===this.b}, -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"FontVariation('"+this.a+"', "+A.j(this.b)+")"}} -A.nT.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -return b instanceof A.nT&&s.a.j(0,b.a)&&s.b.j(0,b.b)&&s.c===b.c}, -gt(a){return A.N(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"Glyph("+this.a.k(0)+", textRange: "+this.b.k(0)+", direction: "+this.c.k(0)+")"}} -A.mV.prototype={ -N(){return"TextAlign."+this.b}} -A.k8.prototype={ -N(){return"TextBaseline."+this.b}} -A.l8.prototype={ -j(a,b){if(b==null)return!1 -return b instanceof A.l8&&b.a===this.a}, -gt(a){return B.j.gt(this.a)}, -k(a){var s,r=this.a -if(r===0)return"TextDecoration.none" -s=A.c([],t.s) -if((r&1)!==0)s.push("underline") -if((r&2)!==0)s.push("overline") -if((r&4)!==0)s.push("lineThrough") -if(s.length===1)return"TextDecoration."+s[0] -return"TextDecoration.combine(["+B.b.bJ(s,", ")+"])"}} -A.oR.prototype={ -N(){return"TextDecorationStyle."+this.b}} -A.G0.prototype={ -N(){return"TextLeadingDistribution."+this.b}} -A.FZ.prototype={ -j(a,b){if(b==null)return!1 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.FZ&&b.c===this.c}, -gt(a){return A.N(!0,!0,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"TextHeightBehavior(applyHeightToFirstAscent: true, applyHeightToLastDescent: true, leadingDistribution: "+this.c.k(0)+")"}} -A.FW.prototype={ -N(){return"TextDirection."+this.b}} -A.eC.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.eC&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.e===s.e}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=this -return"TextBox.fromLTRBD("+B.d.aq(s.a,1)+", "+B.d.aq(s.b,1)+", "+B.d.aq(s.c,1)+", "+B.d.aq(s.d,1)+", "+s.e.k(0)+")"}} -A.FS.prototype={ -N(){return"TextAffinity."+this.b}} -A.ap.prototype={ -j(a,b){if(b==null)return!1 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.ap&&b.a===this.a&&b.b===this.b}, -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return A.l(this).k(0)+"(offset: "+this.a+", affinity: "+this.b.k(0)+")"}} -A.bI.prototype={ -gca(){return this.a>=0&&this.b>=0}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -return b instanceof A.bI&&b.a===this.a&&b.b===this.b}, -gt(a){return A.N(B.j.gt(this.a),B.j.gt(this.b),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"TextRange(start: "+this.a+", end: "+this.b+")"}} -A.og.prototype={ -j(a,b){if(b==null)return!1 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.og&&b.a===this.a}, -gt(a){return B.d.gt(this.a)}, -k(a){return A.l(this).k(0)+"(width: "+A.j(this.a)+")"}} -A.Ad.prototype={ -N(){return"BoxHeightStyle."+this.b}} -A.MV.prototype={ -N(){return"BoxWidthStyle."+this.b}} -A.Gb.prototype={ -N(){return"TileMode."+this.b}} -A.afU.prototype={} -A.N0.prototype={ -N(){return"Brightness."+this.b}} -A.adN.prototype={ -j(a,b){if(b==null)return!1 -return this===b}, -gt(a){return A.Q.prototype.gt.call(this,0)}} -A.BQ.prototype={} -A.Qw.prototype={ -j(a,b){if(b==null)return!1 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.Qw}, -gt(a){return A.N(null,null,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"GestureSettings(physicalTouchSlop: null, physicalDoubleTapSlop: null)"}} -A.acK.prototype={ -xc(a){var s,r,q,p -if(A.iD(a,0,null).gZY())return A.zc(4,a,B.ao,!1) -s=this.b -if(s==null){s=v.G -r=s.window.document.querySelector("meta[name=assetBase]") -q=r==null?null:r.content -p=q==null -if(!p)s.window.console.warn("The `assetBase` meta tag is now deprecated.\nUse engineInitializer.initializeEngine(config) instead.\nSee: https://docs.flutter.dev/development/platform-integration/web/initialization") -s=this.b=p?"":q}return A.zc(4,s+"assets/"+a,B.ao,!1)}} -A.Ae.prototype={ -N(){return"BrowserEngine."+this.b}} -A.mk.prototype={ -N(){return"OperatingSystem."+this.b}} -A.adk.prototype={ -gnq(){var s=this.b -return s===$?this.b=v.G.window.navigator.userAgent:s}, -gfi(){var s,r,q,p=this,o=p.d -if(o===$){s=v.G.window.navigator.vendor -r=p.gnq() -q=p.arl(s,r.toLowerCase()) -p.d!==$&&A.aK() -p.d=q -o=q}r=o -return r}, -arl(a,b){if(a==="Google Inc.")return B.dN -else if(a==="Apple Computer, Inc.")return B.c9 -else if(B.c.q(b,"Edg/"))return B.dN -else if(a===""&&B.c.q(b,"firefox"))return B.eC -A.aTB("WARNING: failed to detect current browser engine. Assuming this is a Chromium-compatible browser.") -return B.dN}, -ge3(){var s,r,q=this,p=q.f -if(p===$){s=q.arm() -q.f!==$&&A.aK() -q.f=s -p=s}r=p -return r}, -arm(){var s,r,q=v.G,p=q.window -p=p.navigator.platform -p.toString -s=p -if(B.c.c8(s,"Mac")){q=q.window -q=q.navigator.maxTouchPoints -q=q==null?null:J.b4(q) -r=q -if((r==null?0:r)>2)return B.bs -return B.cz}else if(B.c.q(s.toLowerCase(),"iphone")||B.c.q(s.toLowerCase(),"ipad")||B.c.q(s.toLowerCase(),"ipod"))return B.bs -else{q=this.gnq() -if(B.c.q(q,"Android"))return B.hR -else if(B.c.c8(s,"Linux"))return B.ks -else if(B.c.c8(s,"Win"))return B.nW -else return B.E3}}} -A.aOB.prototype={ -$1(a){return this.a26(a)}, -$0(){return this.$1(null)}, -a26(a){var s=0,r=A.I(t.H) -var $async$$1=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:s=2 -return A.p(A.aP9(a),$async$$1) -case 2:return A.G(null,r)}}) -return A.H($async$$1,r)}, -$S:354} -A.aOC.prototype={ -$0(){var s=0,r=A.I(t.H),q=this -var $async$$0=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:q.a.$0() -s=2 -return A.p(A.aTs(),$async$$0) -case 2:q.b.$0() -return A.G(null,r)}}) -return A.H($async$$0,r)}, -$S:10} -A.adA.prototype={ -MP(a){return $.b0W.cl(a,new A.adB(A.bi(new A.adC(a))))}} -A.adC.prototype={ -$1(a){this.a.$1(a)}, -$S:3} -A.adB.prototype={ -$0(){return this.a}, -$S:577} -A.QH.prototype={ -Ie(a){var s=new A.ajk(a) -v.G.window.addEventListener("popstate",B.pI.MP(s)) -return new A.ajj(this,s)}, -a2s(){var s=v.G.window.location.hash -if(s.length===0||s==="#")return"/" -return B.c.cD(s,1)}, -MS(){var s=v.G.window.history.state -if(s==null)s=null -else{s=A.aTj(s) -s.toString}return s}, -a0D(a){var s=a.length===0||a==="/"?"":"#"+a,r=v.G,q=r.window.location.pathname -q.toString -r=r.window.location.search -r.toString -return q+r+s}, -a0R(a,b,c){var s=this.a0D(c),r=v.G.window.history,q=A.ac(a) -q.toString -r.pushState(q,b,s)}, -q5(a,b,c){var s,r=this.a0D(c),q=v.G.window.history -if(a==null)s=null -else{s=A.ac(a) -s.toString}q.replaceState(s,b,r)}, -xo(a){v.G.window.history.go(a) -return this.anO()}, -anO(){var s=new A.ax($.as,t.c),r=A.lh("unsubscribe") -r.b=this.Ie(new A.aji(r,new A.bC(s,t.R))) -return s}} -A.ajk.prototype={ -$1(a){var s=A.fT(a).state -if(s==null)s=null -else{s=A.aTj(s) -s.toString}this.a.$1(s)}, -$S:606} -A.ajj.prototype={ -$0(){var s=this.b -v.G.window.removeEventListener("popstate",B.pI.MP(s)) -$.b0W.J(0,s) -return null}, -$S:0} -A.aji.prototype={ -$1(a){this.a.bc().$0() -this.b.fW()}, -$S:11} -A.awy.prototype={} -A.N4.prototype={} -A.N3.prototype={ -dR(a){var s,r=this -if(!r.e)throw A.i(A.aL("Operation already completed")) -r.e=!1 -s=r.$ti -if(!s.i("av<1>").b(a)){s=r.F5() -if(s!=null)s.dR(a) -return}if(r.a==null){A.vD(a,s.c) -return}a.hP(new A.adQ(r),new A.adR(r),t.a)}, -F5(){var s=this.a -if(s==null)return null -this.b=null -return s}, -aa_(){var s=this,r=s.b -if(r==null)return A.di(null,t.H) -if(s.a!=null){s.a=null -r.dR(s.yJ())}return r.a}, -yJ(){var s=0,r=A.I(t.X),q,p -var $async$yJ=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:p=A.c([],t.Y_) -s=p.length!==0?3:4 -break -case 3:s=5 -return A.p(A.i2(p,t.X),$async$yJ) -case 5:case 4:q=null -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$yJ,r)}} -A.adQ.prototype={ -$1(a){var s=this.a.F5() -if(s!=null)s.dR(a)}, -$S(){return this.a.$ti.i("bv(1)")}} -A.adR.prototype={ -$2(a,b){var s=this.a.F5() -if(s!=null)s.fX(a,b)}, -$S:70} -A.N_.prototype={$iih:1} -A.TP.prototype={} -A.nC.prototype={ -gcm(){return t.x.a(A.dF.prototype.gcm.call(this))}, -gqA(){var s=t.x.a(A.dF.prototype.gcm.call(this)).gbk() -s.toString -return t.sr.a(s)}, -hu(a){var s,r,q,p,o=this -if(o.gqA().a0!=null){s=t.x -r=s.a(A.dF.prototype.gcm.call(o)).b -r.toString -q=t.GV -if(q.a(r).x!=null)throw A.i(A.h_("The "+o.gqA().n.k(0)+' boxy delegate tried to lay out the child with id "'+A.j(o.a)+'" more than once.\nEach child must be laid out exactly once.')) -r=s.a(A.dF.prototype.gcm.call(o)).b -r.toString -q.a(r) -p=s.a(A.dF.prototype.gcm.call(o)) -r.x=p.aO(B.S,a,p.gcu()) -o.gqA() -s=s.a(A.dF.prototype.gcm.call(o)).b -s.toString -s=q.a(s).x -return new A.Fr(s.a,s.b)}s=t.x -s.a(A.dF.prototype.gcm.call(o)).cs(a,!0) -o.gqA() -s=s.a(A.dF.prototype.gcm.call(o)).gC() -return new A.Fr(s.a,s.b)}, -KH(){var s,r=this,q=r.gqA(),p=t.x.a(A.dF.prototype.gcm.call(r)),o=r.gqA().rP$ -o.toString -s=r.gcm().b -s.toString -s=t.GV.a(s).r -return q.atW(!0,p,o,s)}} -A.wK.prototype={ -eT(a){var s,r=null -if(!(a.b instanceof A.ho))if(a instanceof A.A){s=new A.bc(new Float64Array(16)) -s.ei() -a.b=new A.N_(s,r,r,B.f)}else{s=new A.bc(new Float64Array(16)) -s.ei() -a.b=new A.TP(s,r,r,B.f)}}, -ax_(){this.mG(B.L3,new A.aqW(this))}, -dg(a){var s,r=this,q={} -r.ty() -r.a0=a -q.a=null -try{r.mG(B.L4,new A.aqO(q,r,a))}catch(s){throw s}finally{r.a0=null}q=q.a -q.toString -return q}, -bP(a){this.ty() -return this.mG(B.fX,new A.aqS(this,a))}, -bH(a){this.ty() -return this.mG(B.fX,new A.aqQ(this,a))}, -bO(a){this.ty() -return this.mG(B.fX,new A.aqR(this,a))}, -bG(a){this.ty() -return this.mG(B.fX,new A.aqP(this,a))}, -hm(a){this.ty() -return this.mG(B.fX,new A.aqN(this,a))}, -cT(a,b){var s,r=this -r.a3=a -r.rP$=new A.Yb(b.a,b.b) -try{s=r.mG(B.L6,new A.aqV(r)) -return s}finally{r.rP$=r.a3=null}}, -atW(a,b,c,d){return this.a3.v9(new A.aqT(!0,b),c,d)}, -au_(a,b,c,d){c=A.bg(t.q.a(A.r.prototype.gab.call(b)).a)===B.L?c:new A.h(c.b,c.a) -return this.a3.v9(new A.aqU(!0,b),c,d)}, -jF(a,b){return this.n.a3V(a,b)}} -A.aqW.prototype={ -$0(){var s=this.a -s.fy=t.k.a(A.r.prototype.gab.call(s)).bx(s.n.pM())}, -$S:13} -A.aqO.prototype={ -$0(){var s=this.b.n.pM(),r=this.a -r.a=s -r.a=this.c.bx(s)}, -$S:13} -A.aqS.prototype={ -$0(){return 0}, -$S:51} -A.aqQ.prototype={ -$0(){return 0}, -$S:51} -A.aqR.prototype={ -$0(){return 0}, -$S:51} -A.aqP.prototype={ -$0(){return 0}, -$S:51} -A.aqN.prototype={ -$0(){return null}, -$S:181} -A.aqV.prototype={ -$0(){var s=this.a,r=s.n -s=s.rP$ -s.toString -return r.pA(s)}, -$S:58} -A.aqT.prototype={ -$2(a,b){var s=this.b,r=s.gC() -r=new A.w(0,0,0+r.a,0+r.b).q(0,b) -if(!r)return!1 -return s.cT(a,b)}, -$S:19} -A.aqU.prototype={ -$2(a,b){var s,r=this.b,q=t.q,p=q.a(A.r.prototype.gab.call(r)).w,o=r.dy.r -q=A.bg(q.a(A.r.prototype.gab.call(r)).a) -q=q===B.L -s=q?p:o -q=q?o:p -q=!new A.w(0,0,0+s,0+q).q(0,b) -if(q)return!1 -return r.KI(A.aZu(a),b.a,b.b)}, -$S:19} -A.MR.prototype={ -gab(){var s=t.rv.a(A.ek.prototype.gcm.call(this)),r=s.a0 -return r==null?t.k.a(A.r.prototype.gab.call(s)):r}} -A.MX.prototype={} -A.H5.prototype={} -A.J5.prototype={ -aP(a){var s,r,q -this.eV(a) -s=this.al$ -for(r=t.GV;s!=null;){s.aP(a) -q=s.b -q.toString -s=r.a(q).aJ$}}, -az(){var s,r,q -this.eW() -s=this.al$ -for(r=t.GV;s!=null;){s.az() -q=s.b -q.toString -s=r.a(q).aJ$}}} -A.J6.prototype={} -A.J7.prototype={ -c7(){this.a4r()}, -aP(a){this.a6G(a) -this.n.a.a.a9(this.gpR())}, -az(){this.n.a.a.O(this.gpR()) -this.a6H()}} -A.Pu.prototype={} -A.aeX.prototype={ -$1$0(a){return a.i("0?").a(this.a)}, -$0(){return this.$1$0(t.I9)}, -$S:684} -A.a1J.prototype={ -bf(a){var s=null,r=t.Db,q=t.K -r=new A.wK(this.w,this.e,B.L2,s,s,s,s,s,s,0,!1,!1,A.c([],r),A.t(q,t.Jr),A.aU(q),A.c([],r),0,s,s,new A.b8(),A.at(),t.rv) -r.be() -return r}, -bj(a,b){var s=b.n -b.n=this.w -b.avS(s)}} -A.ho.prototype={$iqJ:1, -gpC(){return this.e}, -spC(a){return this.e=a}} -A.wL.prototype={ -ax9(a){a.f=!1}, -azf(a,b){var s,r=this,q=r -r.n.c=r -try{s=b.$0() -return s}finally{r.n.c=q}}, -mG(a,b){return this.azf(a,b,t.z)}, -avS(a){var s,r=this,q=r.n -if(q===a)return -q=A.l(q) -s=A.l(a) -if(q!==s)r.ag() -if(r.y!=null){q=r.gpR() -a.a.a.O(q) -r.n.a.a.a9(q)}}, -b1(a,b){var s=this -s.ps$=a -try{s.mG(B.L5,new A.aqM(s,a,b))}finally{s.l5$=s.ps$=null}}, -dz(a,b){var s=a.b -s.toString -b.f2(t.GV.a(s).r)}, -fK(a){var s -for(s=this.K9$,s=new A.db(s,s.r,s.e);s.v();)a.$1(s.d.gcm())}, -gkg(){return!1}} -A.aqM.prototype={ -$0(){var s,r,q,p,o=this.b -J.b4(o.gcw().a.save()) -s=this.c -r=s.a -q=s.b -o.gcw().a.translate(r,q) -p=this.a -p.l5$=B.f -o.gcw().a.restore() -p.l5$=s -p.n.awP() -J.b4(o.gcw().a.save()) -o.gcw().a.translate(r,q) -p.l5$=B.f -o.gcw().a.restore()}, -$S:13} -A.nD.prototype={ -N(){return"BoxyDelegatePhase."+this.b}} -A.ade.prototype={ -axe(a,b,c,d){var s,r=this.a,q=r.ps$,p=r.l5$,o=p -try{s=q -s.toString -p.toString -s.q2(b,new A.adf(this,d),c.a8(0,p),a)}finally{r.ps$=q -r.l5$=o}}} -A.adf.prototype={ -$2(a,b){var s=this.a.a -s.ps$=a -s.l5$=b -this.b.$0()}, -$S:17} -A.lF.prototype={ -a3d(a){var s -if(this.gqI().a0!=null){s=this.gcm().b -s.toString -t.GV.a(s) -return}s=this.gcm().b -s.toString -t.GV.a(s).r=a}, -gqI(){var s=this.gcm().gbk() -s.toString -return t.sr.a(s)}, -awN(){var s,r,q,p,o,n,m=this,l=m.gcm().b -l.toString -s=t.GV.a(l).r -r=A.anK(s) -if(r==null){l=m.gqI().n -q=l.d -l=q==null?l.d=new A.ade(t.rv.a(A.ek.prototype.gcm.call(l))):q -q=l.a.l5$ -p=q.a8(0,B.f) -o=A.aSi(p,s) -l.axe(null,o,new A.h(-q.a,-q.b),new A.acU(m)) -return}l=m.gqI().l5$ -l.toString -q=m.gqI().ps$ -q.toString -n=m.gcm() -if(!(r==null))l=l.a8(0,r) -q.e4(n,l)}, -KH(){return!1}, -k(a){return"BoxyChild(id: "+A.j(this.a)+")"}} -A.acU.prototype={ -$0(){var s,r=this.a,q=r.gqI().ps$ -q.toString -s=r.gcm() -r=r.gqI().l5$ -r.toString -q.e4(s,r)}, -$S:0} -A.ek.prototype={ -gcm(){var s=this.c -s.toString -return s}, -k(a){return A.l(this).k(0)}, -awP(){var s,r,q -for(s=t.rv.a(A.ek.prototype.gcm.call(this)).l4$,r=s.length,q=0;q"),p=new A.cu(r,q),p=new A.bf(p,p.gH(0),q.i("bf")),q=q.i("aE.E");p.v();){o=p.d -if((o==null?q.a(o):o).KH()){q=A.ek.prototype.gatZ.call(m) -p=s.a(A.ek.prototype.gcm.call(m)) -n=s.a(A.ek.prototype.gcm.call(m)).rP$ -n.toString -p=new A.lI(n,p) -q.Rt() -p.b=B.b.gaC(q.b) -q.a.push(p) -return!0}}return!1}, -awf(a,b){}} -A.qU.prototype={ -cf(){return new A.R9(new A.mb(t.FF),A.h0(null,null,null,t.K,t.rO),A.dv(t.Q),this,B.ae)}} -A.p6.prototype={} -A.dF.prototype={ -gcm(){var s=this.c -if(s!=null)return s -this.b.Zl() -s=this.c -s.toString -return s}} -A.i7.prototype={ -ghE(){var s=this.nN$ -s.toString -return s}, -OW(a){this.wf(new A.akb(a),t.Nq)}, -Zl(){var s=this,r=s.Z7$.length -if(r===0)return -s.Z6$=!1 -s.OW(new A.akd(s))}, -a1N(a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=this -if(a1)a0.K9$.aa(0) -s=a0.al$ -r=a0.l4$ -q=Math.min(a0.nN$.p1.length,r.length) -p=a0.$ti -o=p.i("i7.1") -n=a0.K9$ -m=t.GV -l=0 -k=0 -for(;;){if(!(l1?j/(o-1):r -break -case 4:r=a1.dJ$ -h.b=r>0?j/r:0 -i.b=h.bc()/2 -break -case 5:r=a1.dJ$ -h.b=r>0?j/(r+1):0 -i.b=h.bc() -break}f=g?l-i.bc():i.bc() -s=a1.al$ -for(r=t.J,o=a4/2,e=h.a;s!=null;){d=s.b -d.toString -r.a(d) -c=a1.yo(s) -b=0 -switch(c.a){case 0:case 1:a=a1.n -if(!(A.b1a(A.b1E(a),a1.a5,a1.au)===(c===B.T))){a0=s.fy -if(a0==null)a0=A.a0(A.aL(a2+A.l(s).k(0)+"#"+A.bF(s))) -b=a4-(a===B.L?a0.a:a0.b)}break -case 2:a=s.fy -if(a==null)a=A.a0(A.aL(a2+A.l(s).k(0)+"#"+A.bF(s))) -b=o-(a1.n===B.L?a.a:a.b)/2 -break -case 3:break -case 4:if(a1.n===B.am){a=a1.L -a.toString -n=s.qc(a,!0) -b=n!=null?a5-n:0}break -default:b=null}if(g){a=s.fy -if(a==null)a=A.a0(A.aL(a2+A.l(s).k(0)+"#"+A.bF(s))) -f-=a1.n===B.L?a.b:a.a}a=a1.n===B.L -d.a=a?new A.h(b,f):new A.h(f,b) -if(g){a=h.b -if(a===h)A.a0(A.qT(e)) -f-=a}else{a0=s.fy -if(a0==null)a0=A.a0(A.aL(a2+A.l(s).k(0)+"#"+A.bF(s))) -a=a?a0.b:a0.a -a0=h.b -if(a0===h)A.a0(A.qT(e)) -f+=a+a0}s=d.aJ$}}, -da(a,b){return this.vE(a,b)}, -b1(a,b){var s,r,q=this -if(!(q.ao>1e-10)){q.pe(a,b) -return}if(q.gC().gan(0))return -s=q.cx -s===$&&A.a() -r=q.gC() -a.axh(s,b,new A.w(0,0,0+r.a,0+r.b),q.gJd())}, -m3(a){var s -if(this.ao>1e-10){s=this.gC() -s=new A.w(0,0,0+s.a,0+s.b)}else s=null -return s}, -dk(){var s=this.Ol() -return this.ao>1e-10?s+" OVERFLOWING":s}} -A.aqK.prototype={ -$2(a,b){return a.aO(B.bR,b,a.gcG())}, -$S:32} -A.aqI.prototype={ -$2(a,b){return a.aO(B.aK,b,a.gc2())}, -$S:32} -A.aqJ.prototype={ -$2(a,b){return a.aO(B.by,b,a.gcA())}, -$S:32} -A.aqH.prototype={ -$2(a,b){return a.aO(B.bg,b,a.gcp())}, -$S:32} -A.aqG.prototype={ -$2(a,b){var s=a.aO(B.S,b,a.gcu()),r=a.b -r.toString -t.gP.a(r).Q=a.gC() -return s}, -$S:37} -A.aqL.prototype={ -$2(a,b){var s -a.cs(b,!0) -s=a.b -s.toString -t.gP.a(s).Q=a.gC() -return a.gC()}, -$S:37} -A.aDM.prototype={} -A.a5u.prototype={ -aP(a){var s,r,q -this.eV(a) -s=this.al$ -for(r=t.J;s!=null;){s.aP(a) -q=s.b -q.toString -s=r.a(q).aJ$}}, -az(){var s,r,q -this.eW() -s=this.al$ -for(r=t.J;s!=null;){s.az() -q=s.b -q.toString -s=r.a(q).aJ$}}} -A.a5v.prototype={} -A.a5w.prototype={ -l(){var s,r,q -for(s=this.JX$,r=s.length,q=0;q=0;)++r -return r}, -bJ(a,b){var s -if(b==="")return this.a -s=this.a -return A.bf2(s,0,s.length,b,"")}, -cY(a,b){var s,r,q,p,o,n -A.dk(b,"index") -s=this.a -r=s.length -q=0 -if(r!==0){p=new A.jz(s,r,0,240) -for(o=0;n=p.j6(),n>=0;o=n){if(q===b)return B.c.a6(s,o,n);++q}}throw A.i(A.aR4(b,this,"index",null,q))}, -q(a,b){var s -if(typeof b!="string")return!1 -s=b.length -if(s===0)return!1 -if(new A.jz(b,s,0,240).j6()!==s)return!1 -s=this.a -return A.bhW(s,b,0,s.length)>=0}, -UC(a,b,c){var s,r -if(a===0||b===this.a.length)return b -s=this.a -c=new A.jz(s,s.length,b,240) -do{r=c.j6() -if(r<0)break -if(--a,a>0){b=r -continue}else{b=r -break}}while(!0) -return b}, -hZ(a,b){A.dk(b,"count") -return this.alW(b)}, -alW(a){var s=this.UC(a,0,null),r=this.a -if(s===r.length)return B.cT -return new A.f8(B.c.cD(r,s))}, -kz(a,b){A.dk(b,"count") -return this.amh(b)}, -amh(a){var s=this.UC(a,0,null),r=this.a -if(s===r.length)return this -return new A.f8(B.c.a6(r,0,s))}, -lw(a,b){var s=this.Ea(0,b).BP(0) -if(s.length===0)return B.cT -return new A.f8(s)}, -a8(a,b){return new A.f8(this.a+b.a)}, -j(a,b){if(b==null)return!1 -return b instanceof A.f8&&this.a===b.a}, -gt(a){return B.c.gt(this.a)}, -k(a){return this.a}} -A.FD.prototype={ -gT(){var s=this,r=s.d -return r==null?s.d=B.c.a6(s.a,s.b,s.c):r}, -v(){return this.EB(1,this.c)}, -EB(a,b){var s,r,q,p,o,n,m,l,k,j,i=this,h=u.j,g=u.e -if(a>0){s=i.c -for(r=i.a,q=r.length,p=240;s1023)l=g.charCodeAt(h.charCodeAt(o>>>5)+(o&31)) -else{l=1 -if(m>>8)+(n<<2>>>0)))+(k&255))}}}p=u.U.charCodeAt((p&-4)+l) -if((p&1)!==0){--a -j=a===0}else j=!1 -if(j){i.b=b -i.c=s -i.d=null -return!0}}i.b=b -i.c=q -i.d=null -return a===1&&p!==240}else{i.b=b -i.d=null -return!0}}, -TK(a,b){var s,r,q,p=this -A.dk(a,"count") -s=p.b -r=new A.pJ(p.a,0,s,240) -for(;a>0;s=q){q=r.j6() -if(q<0)break;--a}p.b=s -p.c=b -p.d=null -return a===0}} -A.jz.prototype={ -j6(){var s,r,q=this -for(s=q.b;r=q.c,r1023){q.d=n.charCodeAt((q.d&-4)+o.charCodeAt(p.charCodeAt(j>>>5)+(j&31))) -return}if(k>>8)+(i<<2>>>0)))+(s&255)) -q.c=k+1}else r=1 -q.d=n.charCodeAt((q.d&-4)+r)}, -Vj(a){var s,r,q,p,o,n,m,l,k=this,j=u.j,i=u.e,h=u.U,g=k.c -if(g===a){k.d=240 -return g}s=g-1 -r=k.a -q=r.charCodeAt(s) -p=q^55296 -if(p>2047){k.d=h.charCodeAt(280+i.charCodeAt(j.charCodeAt(q>>>5)+(q&31))) -return s}o=1 -if(p>1023){n=s-1 -p&=1023 -if(n>=a){m=r.charCodeAt(n)^55296 -g=m<=1023}else{m=null -g=!1}if(g){o=i.charCodeAt(j.charCodeAt(2048+((p>>>8)+(m<<2>>>0)))+(p&255)) -s=n}}else{if(g>>8)+(p<<2>>>0)))+(l&255))}}k.d=h.charCodeAt(280+o) -return s}} -A.pJ.prototype={ -j6(){var s,r,q,p,o,n=this -for(s=n.b;r=n.c,r>s;){n.tV() -q=n.d -if((q&3)===0)continue -if((q&2)!==0){p=n.c -o=n.GF() -if(q>=340)n.c=p -else if((n.d&3)===3)n.c=o}if((n.d&1)!==0)return r}s=u.t.charCodeAt((n.d&-4)+18) -n.d=s -if((s&1)!==0)return r -return-1}, -tV(){var s,r,q=this,p=u.j,o=u.e,n=u.t,m=q.a,l=--q.c,k=m.charCodeAt(l),j=k^56320 -if(j>1023){q.d=n.charCodeAt((q.d&-4)+o.charCodeAt(p.charCodeAt(k>>>5)+(k&31))) -return}if(l>=q.b){l=q.c=l-1 -s=m.charCodeAt(l)^55296 -m=s<=1023}else{s=null -m=!1}if(m)r=o.charCodeAt(p.charCodeAt(2048+((j>>>8)+(s<<2>>>0)))+(j&255)) -else{q.c=l+1 -r=1}q.d=n.charCodeAt((q.d&-4)+r)}, -GF(){var s,r,q=this -for(s=q.b;r=q.c,r>s;){q.tV() -if(q.d<280)return r}q.d=u.t.charCodeAt((q.d&-4)+18) -return s}} -A.c4.prototype={ -h(a,b){var s,r=this -if(!r.yL(b))return null -s=r.c.h(0,r.a.$1(r.$ti.i("c4.K").a(b))) -return s==null?null:s.b}, -m(a,b,c){var s=this -if(!s.yL(b))return -s.c.m(0,s.a.$1(b),new A.aV(b,c,s.$ti.i("aV")))}, -a_(a,b){b.aL(0,new A.adS(this))}, -jy(a,b,c){return this.c.jy(0,b,c)}, -aN(a){var s=this -if(!s.yL(a))return!1 -return s.c.aN(s.a.$1(s.$ti.i("c4.K").a(a)))}, -gfj(){var s=this.c,r=A.n(s).i("dZ<1,2>") -return A.w4(new A.dZ(s,r),new A.adT(this),r.i("y.E"),this.$ti.i("aV"))}, -aL(a,b){this.c.aL(0,new A.adU(this,b))}, -gan(a){return this.c.a===0}, -gc6(a){return this.c.a!==0}, -gcd(){var s=this.c,r=A.n(s).i("bo<2>") -return A.w4(new A.bo(s,r),new A.adV(this),r.i("y.E"),this.$ti.i("c4.K"))}, -gH(a){return this.c.a}, -mn(a,b,c,d){return this.c.mn(0,new A.adW(this,b,c,d),c,d)}, -cl(a,b){return this.c.cl(this.a.$1(a),new A.adX(this,a,b)).b}, -J(a,b){var s,r=this -if(!r.yL(b))return null -s=r.c.J(0,r.a.$1(r.$ti.i("c4.K").a(b))) -return s==null?null:s.b}, -gh8(){var s=this.c,r=A.n(s).i("bo<2>") -return A.w4(new A.bo(s,r),new A.adY(this),r.i("y.E"),this.$ti.i("c4.V"))}, -k(a){return A.RI(this)}, -yL(a){return this.$ti.i("c4.K").b(a)}, -$iba:1} -A.adS.prototype={ -$2(a,b){this.a.m(0,a,b) -return b}, -$S(){return this.a.$ti.i("~(c4.K,c4.V)")}} -A.adT.prototype={ -$1(a){var s=a.b -return new A.aV(s.a,s.b,this.a.$ti.i("aV"))}, -$S(){return this.a.$ti.i("aV(aV>)")}} -A.adU.prototype={ -$2(a,b){return this.b.$2(b.a,b.b)}, -$S(){return this.a.$ti.i("~(c4.C,aV)")}} -A.adV.prototype={ -$1(a){return a.a}, -$S(){return this.a.$ti.i("c4.K(aV)")}} -A.adW.prototype={ -$2(a,b){return this.b.$2(b.a,b.b)}, -$S(){return this.a.$ti.bN(this.c).bN(this.d).i("aV<1,2>(c4.C,aV)")}} -A.adX.prototype={ -$0(){return new A.aV(this.b,this.c.$0(),this.a.$ti.i("aV"))}, -$S(){return this.a.$ti.i("aV()")}} -A.adY.prototype={ -$1(a){return a.b}, -$S(){return this.a.$ti.i("c4.V(aV)")}} -A.PD.prototype={ -m6(a,b){return J.b(a,b)}, -j_(a){return J.D(a)}} -A.pm.prototype={ -m6(a,b){var s,r,q,p,o -if(a===b)return!0 -s=this.a -r=A.h0(s.garV(),s.gatJ(),s.gauS(),A.n(this).i("pm.E"),t.S) -for(s=J.bG(a),q=0;s.v();){p=s.gT() -o=r.h(0,p) -r.m(0,p,(o==null?0:o)+1);++q}for(s=J.bG(b);s.v();){p=s.gT() -o=r.h(0,p) -if(o==null||o===0)return!1 -r.m(0,p,o-1);--q}return q===0}, -j_(a){var s,r,q -for(s=J.bG(a),r=this.a,q=0;s.v();)q=q+r.j_(s.gT())&2147483647 -q=q+(q<<3>>>0)&2147483647 -q^=q>>>11 -return q+(q<<15>>>0)&2147483647}} -A.y_.prototype={} -A.x0.prototype={} -A.yC.prototype={ -gt(a){var s=this.a -return 3*s.a.j_(this.b)+7*s.b.j_(this.c)&2147483647}, -j(a,b){var s -if(b==null)return!1 -if(b instanceof A.yC){s=this.a -s=s.a.m6(this.b,b.b)&&s.b.m6(this.c,b.c)}else s=!1 -return s}} -A.r2.prototype={ -m6(a,b){var s,r,q,p,o -if(a===b)return!0 -if(a.gH(a)!==b.gH(b))return!1 -s=A.h0(null,null,null,t.PJ,t.S) -for(r=a.gcd(),r=r.gai(r);r.v();){q=r.gT() -p=new A.yC(this,q,a.h(0,q)) -o=s.h(0,p) -s.m(0,p,(o==null?0:o)+1)}for(r=b.gcd(),r=r.gai(r);r.v();){q=r.gT() -p=new A.yC(this,q,b.h(0,q)) -o=s.h(0,p) -if(o==null||o===0)return!1 -s.m(0,p,o-1)}return!0}, -j_(a){var s,r,q,p,o,n,m,l -for(s=a.gcd(),s=s.gai(s),r=this.a,q=this.b,p=this.$ti.y[1],o=0;s.v();){n=s.gT() -m=r.j_(n) -l=a.h(0,n) -o=o+3*m+7*q.j_(l==null?p.a(l):l)&2147483647}o=o+(o<<3>>>0)&2147483647 -o^=o>>>11 -return o+(o<<15>>>0)&2147483647}} -A.PB.prototype={ -m6(a,b){var s,r=this,q=t.Ro -if(q.b(a))return q.b(b)&&new A.x0(r,t.n5).m6(a,b) -q=t.f -if(q.b(a))return q.b(b)&&new A.r2(r,r,t.Dx).m6(a,b) -q=t.JY -if(q.b(a)){s=t.j -if(s.b(a)!==s.b(b))return!1 -return q.b(b)&&new A.y_(r,t.N2).m6(a,b)}return J.b(a,b)}, -j_(a){var s=this -if(t.Ro.b(a))return new A.x0(s,t.n5).j_(a) -if(t.f.b(a))return new A.r2(s,s,t.Dx).j_(a) -if(t.JY.b(a))return new A.y_(s,t.N2).j_(a) -return J.D(a)}, -auT(a){return!0}} -A.QJ.prototype={ -yk(a){var s=this.b[a] -this.$ti.c.a(null) -s=null -return s}, -gH(a){return this.c}, -k(a){var s=this.b -return A.aWq(A.fN(s,0,A.kj(this.c,"count",t.S),A.a6(s).c),"(",")")}, -a9p(a,b){var s,r,q,p,o,n,m,l,k,j,i=this,h=b*2+2 -for(s=i.b,r=i.a,q=i.$ti.c;p=i.c,h0){s[b]=j -b=o}}s[b]=a}} -A.q9.prototype={ -j(a,b){var s,r,q,p,o -if(b==null)return!1 -if(b instanceof A.q9){s=this.a -r=b.a -q=s.length -if(q!==r.length)return!1 -for(p=0,o=0;o1125899906842623)A.a0(A.c2("Hashing is unsupported for messages with more than 2^53 bits.")) -r=l.d.byteLength -r=((s+1+8+r-1&-r)>>>0)-s -q=new Uint8Array(r) -q[0]=128 -p=s*8 -o=r-8 -n=J.zB(B.a0.gcF(q)) -m=B.j.el(p,4294967296) -n.$flags&2&&A.az(n,11) -n.setUint32(o,m,!1) -n.setUint32(o+4,p>>>0,!1) -l.OK(q) -s=l.a -s.G(0,new A.q9(l.a9U())) -s.bn()}, -a9U(){var s,r,q,p,o,n,m -if(B.pO===$.ei())return J.uv(B.ko.gcF(this.y)) -s=this.y -r=s.byteLength -q=new Uint8Array(r) -p=J.zB(B.a0.gcF(q)) -for(r=s.length,o=p.$flags|0,n=0;n>>17|p<<15)^(p>>>19|p<<13)^p>>>10)>>>0)+o>>>0)+((((n>>>7|n<<25)^(n>>>18|n<<14)^n>>>3)>>>0)+m>>>0)>>>0}r=this.y -l=r[0] -k=r[1] -j=r[2] -i=r[3] -h=r[4] -g=r[5] -f=r[6] -e=r[7] -for(d=l,q=0;q<64;++q,e=f,f=g,g=h,h=b,i=j,j=k,k=d,d=a){c=(e+(((h>>>6|h<<26)^(h>>>11|h<<21)^(h>>>25|h<<7))>>>0)>>>0)+(((h&g^~h&f)>>>0)+(B.Tt[q]+s[q]>>>0)>>>0)>>>0 -b=i+c>>>0 -a=c+((((d>>>2|d<<30)^(d>>>13|d<<19)^(d>>>22|d<<10))>>>0)+((d&k^d&j^k&j)>>>0)>>>0)>>>0}r.$flags&2&&A.az(r) -r[0]=d+l>>>0 -r[1]=k+r[1]>>>0 -r[2]=j+r[2]>>>0 -r[3]=i+r[3]>>>0 -r[4]=h+r[4]>>>0 -r[5]=g+r[5]>>>0 -r[6]=f+r[6]>>>0 -r[7]=e+r[7]>>>0}} -A.a6x.prototype={} -A.mD.prototype={ -bn(){return null}} -A.nK.prototype={ -N(){return"DioExceptionType."+this.b}} -A.hs.prototype={ -k(a){var s,r,q,p -try{q=A.b1z(this) -return q}catch(p){s=A.aj(p) -r=A.b3(p) -q=A.b1z(this) -return q}}, -$icx:1} -A.afv.prototype={ -CO(a,b,c,d,e,f,g,h){return this.ay5(a,b,c,d,e,f,g,h,h.i("hA<0>"))}, -ay4(a,b,c,d,e,f,g){return this.CO(a,b,c,d,null,e,f,g)}, -ay5(a8,a9,b0,b1,b2,b3,b4,b5,b6){var s=0,r=A.I(b6),q,p=this,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7 -var $async$CO=A.J(function(b7,b8){if(b7===1)return A.F(b8,r) -for(;;)switch(s){case 0:a7=p.Z2$ -a7===$&&A.a() -o=A.iy() -n=t.N -m=t.z -l=A.t(n,m) -k=a7.vV$ -k===$&&A.a() -l.a_(0,k) -if(b4!=null)l.a_(0,b4) -k=a7.b -k===$&&A.a() -j=A.aOD(k,m) -i=j.h(0,"content-type") -k=a7.y -k===$&&A.a() -h=A.vX(k,n,m) -n=b3.a -if(n==null){n=a7.a -n===$&&A.a()}g=n.toUpperCase() -n=a7.B6$ -n===$&&A.a() -m=a7.c -m===$&&A.a() -k=a7.vW$ -f=a7.d -e=a7.e -d=a7.r -d===$&&A.a() -c=a7.w -c===$&&A.a() -b=a7.x -b===$&&A.a() -a=a7.z -a===$&&A.a() -a0=a7.Q -a0===$&&A.a() -a1=a7.as -a1===$&&A.a() -a2=a7.at -a3=a7.ax -a4=a7.ay -a4===$&&A.a() -a5=i==null?null:i -a7=a5==null?A.bH(a7.b.h(0,"content-type")):a5 -a6=new A.io(b0,a8,a9,b1,b2,$,$,null,g,m,f,e,d,c,b,h,a,a0,a1,a2,a3,a4) -a6.OG(a7,h,a,j,a4,a0,g,a1,m,b,e,a2,a3,d,f,c) -a6.ch=o -a6.vV$=l -a6.sX0(n) -a6.sXC(k) -q=p.AX(a6,b5) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$CO,r)}, -AX(a,b){return this.as7(a,b,b.i("hA<0>"))}, -as7(a4,a5,a6){var s=0,r=A.I(a6),q,p=2,o=[],n=this,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3 -var $async$AX=A.J(function(a7,a8){if(a7===1){o.push(a8) -s=p}for(;;)switch(s){case 0:a2={} -a2.a=a4 -if(A.bM(a5)!==B.JP){i=a4.r -i===$&&A.a() -i=!(i===B.HM||i===B.HL)}else i=!1 -if(i)if(A.bM(a5)===B.p1)a4.r=B.a5v -else a4.r=B.hX -h=new A.afC(a2) -g=new A.afF(a2) -f=new A.afz(a2) -i=t.z -m=A.qz(new A.afx(a2),i) -for(e=n.as9$,d=A.n(e),c=d.i("bf"),b=new A.bf(e,e.gH(0),c),d=d.i("aX.E");b.v();){a=b.d -a0=(a==null?d.a(a):a).gCj() -m=m.c1(h.$1(a0),i)}m=m.c1(h.$1(new A.afy(a2,n,a5)),i) -for(b=new A.bf(e,e.gH(0),c);b.v();){a=b.d -a0=(a==null?d.a(a):a).ga0i() -m=m.c1(g.$1(a0),i)}for(i=new A.bf(e,e.gH(0),c);i.v();){e=i.d -a0=(e==null?d.a(e):e).gLp() -m=m.Ac(f.$1(a0))}p=4 -s=7 -return A.p(m,$async$AX) -case 7:l=a8 -i=l instanceof A.ea?l.a:l -i=A.aVz(i,a2.a,a5) -q=i -s=1 -break -p=2 -s=6 -break -case 4:p=3 -a3=o.pop() -k=A.aj(a3) -j=k instanceof A.ea -if(j)if(k.b===B.Q1){q=A.aVz(k.a,a2.a,a5) -s=1 -break}i=j?k.a:k -throw A.i(A.aQC(i,a2.a)) -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$AX,r)}, -qJ(a,b){return this.abh(a,b)}, -abh(a6,a7){var s=0,r=A.I(t.k8),q,p=2,o=[],n=this,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5 -var $async$qJ=A.J(function(a8,a9){if(a8===1){o.push(a9) -s=p}for(;;)switch(s){case 0:a4=a6.cy -p=4 -s=7 -return A.p(n.zy(a6),$async$qJ) -case 7:m=a9 -d=n.Z3$ -d===$&&A.a() -c=a4 -c=c==null?null:c.gaz7() -c=d.AY(a6,m,c) -d=$.as -d=new A.N3(new A.bC(new A.ax(d,t.pO),t.rM),new A.bC(new A.ax(d,t.xF),t.oe),null,t.ZO) -d.dR(c) -b=d.f -l=b===$?d.f=new A.N4(d,t.yu):b -k=new A.pq(new ($.Ma())(l)) -d=a4 -if(d!=null)d.gaz7().h9(new A.afw(k)) -d=l -c=d.a.a -c=c==null?null:c.a -s=8 -return A.p(c==null?new A.ax($.as,d.$ti.i("ax<1>")):c,$async$qJ) -case 8:j=a9 -d=j.f -c=a6.c -c===$&&A.a() -i=A.aWd(d,c) -j.f=i.b -j.toString -d=A.c([],t.Bw) -c=j.a -a=j.c -a0=j.d -h=A.aRI(null,j.r,i,c,d,a6,a,a0,t.z) -g=a6.az1(j.c) -if(!g){d=a6.x -d===$&&A.a()}else d=!0 -s=d?9:11 -break -case 9:j.b=A.bka(a6,j) -s=12 -return A.p(n.Z4$.D2(a6,j),$async$qJ) -case 12:f=a9 -d=!1 -if(typeof f=="string")if(f.length===0)if(A.bM(a7)!==B.JP)if(A.bM(a7)!==B.p1){d=a6.r -d===$&&A.a() -d=d===B.hX}if(d)f=null -h.a=f -s=10 -break -case 11:j.bn() -case 10:if(g){q=h -s=1 -break}else{d=j.c -if(d>=100&&d<200)a1="This is an informational response - the request was received, continuing processing" -else if(d>=200&&d<300)a1="The request was successfully received, understood, and accepted" -else if(d>=300&&d<400)a1="Redirection: further action needs to be taken in order to complete the request" -else if(d>=400&&d<500)a1="Client error - the request contains bad syntax or cannot be fulfilled" -else a1=d>=500&&d<600?"Server error - the server failed to fulfil an apparently valid request":"A response with a status code that is not within the range of inclusive 100 to exclusive 600is a non-standard response, possibly due to the server's software" -a2=A.bbk("") -d=""+d -a2.Dl("This exception was thrown because the response has a status code of "+d+" and RequestOptions.validateStatus was configured to throw for this status code.") -a2.Dl("The status code of "+d+' has the following meaning: "'+a1+'"') -a2.Dl("Read more about status codes at https://developer.mozilla.org/en-US/docs/Web/HTTP/Status") -a2.Dl("In order to resolve this exception you typically have either to verify and fix your request code or you have to fix the server code.") -d=A.PR(null,a2.k(0),a6,h,null,B.Oq) -throw A.i(d)}p=2 -s=6 -break -case 4:p=3 -a5=o.pop() -e=A.aj(a5) -d=A.aQC(e,a6) -throw A.i(d) -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$qJ,r)}, -agZ(a){var s,r,q -for(s=new A.hW(a),r=t.Hz,s=new A.bf(s,s.gH(0),r.i("bf")),r=r.i("aX.E");s.v();){q=s.d -if(q==null)q=r.a(q) -if(q>=128||" ! #$%&' *+ -. 0123456789 ABCDEFGHIJKLMNOPQRSTUVWXYZ ^_`abcdefghijklmnopqrstuvwxyz | ~ ".charCodeAt(q)===32)return!1}return!0}, -zy(a){return this.amL(a)}, -amL(a){var s=0,r=A.I(t.Dt),q,p=this,o,n,m,l,k,j,i,h,g,f -var $async$zy=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:f=a.a -f===$&&A.a() -if(!p.agZ(f))throw A.i(A.hm(a.gavE(),"method",null)) -s=a.CW!=null?3:4 -break -case 3:o={} -o.a=null -s=5 -return A.p(p.Z4$.Mb(a),$async$zy) -case 5:n=c -m=B.d6.e8(n) -l=m.length -o.a=l -f=a.b -f===$&&A.a() -f.m(0,"content-length",B.j.k(l)) -k=A.c([],t.Zb) -j=B.d.vo(m.length/1024) -for(i=0;i(type: "+this.b.k(0)+", data: "+this.a.k(0)+")"}} -A.azH.prototype={} -A.mC.prototype={ -mp(a){var s=this.a -if((s.a.a&30)!==0)A.a0(A.aL(u.r)) -s.dR(new A.ea(a,B.dh,t.FN))}} -A.rR.prototype={ -mp(a){var s=this.a -if((s.a.a&30)!==0)A.a0(A.aL(u.r)) -s.dR(new A.ea(a,B.dh,t.Pm))}} -A.qf.prototype={ -mp(a){var s=this.a -if((s.a.a&30)!==0)A.a0(A.aL(u.r)) -s.fX(new A.ea(a,B.dh,t.oF),a.e)}} -A.fH.prototype={ -o1(a,b){b.mp(a)}, -Lw(a,b){b.mp(a)}, -t8(a,b){b.mp(a)}} -A.Rf.prototype={ -gH(a){return this.a.length}, -sH(a,b){B.b.sH(this.a,b)}, -h(a,b){var s=this.a[b] -s.toString -return s}, -m(a,b,c){var s=this.a -if(s.length===b)s.push(c) -else s[b]=c}} -A.QI.prototype={ -h(a,b){return this.b.h(0,B.c.hS(b))}, -k(a){var s,r=new A.cf("") -this.b.aL(0,new A.ajo(r)) -s=r.a -return s.charCodeAt(0)==0?s:s}} -A.ajn.prototype={ -$2(a,b){return new A.aV(B.c.hS(a),b,t.Kc)}, -$S:588} -A.ajo.prototype={ -$2(a,b){var s,r,q,p -for(s=J.bG(b),r=this.a,q=a+": ";s.v();){p=q+s.gT()+"\n" -r.a+=p}}, -$S:575} -A.C2.prototype={ -o1(a,b){var s -if(a.CW!=null){s=a.b -s===$&&A.a() -s=A.bH(s.h(0,"content-type"))==null}else s=!1 -if(s)a.sXF("application/json") -b.mp(a)}} -A.CD.prototype={ -o1(a,b){this.ajW(a) -b.mp(a)}, -Lw(a,b){this.Th(a) -b.mp(a)}, -t8(a,b){var s -A.f_("*** DioException ***:") -A.f_("uri: "+a.a.gjU().k(0)) -A.f_(a.k(0)) -s=a.b -if(s!=null)this.Th(s) -A.f_("") -b.mp(a)}, -ajW(a){var s -A.f_("*** Request ***") -A.f_("uri: "+a.gjU().k(0)) -s=a.a -s===$&&A.a() -A.f_("method: "+s) -s=a.r -s===$&&A.a() -A.f_("responseType: "+s.N()) -s=a.z -s===$&&A.a() -A.f_("followRedirects: "+s) -s=a.as -s===$&&A.a() -A.f_("persistentConnection: "+s) -A.f_("connectTimeout: "+A.j(a.vW$)) -A.f_("sendTimeout: "+A.j(a.d)) -A.f_("receiveTimeout: "+A.j(a.e)) -s=a.x -s===$&&A.a() -A.f_("receiveDataWhenStatusError: "+s) -s=a.y -s===$&&A.a() -A.f_("extra: "+s.k(0)) -A.f_("")}, -Th(a){var s -A.f_("*** Response ***") -s=a.b.gjU() -A.f_("uri: "+s.k(0)) -A.f_("")}} -A.wP.prototype={ -N(){return"ResponseType."+this.b}} -A.Ry.prototype={ -N(){return"ListFormat."+this.b}} -A.U_.prototype={ -sX0(a){this.B6$=a}, -sXC(a){if(a!=null&&a.a<0)throw A.i(A.aL("connectTimeout should be positive")) -this.vW$=a}} -A.acW.prototype={} -A.ap5.prototype={} -A.io.prototype={ -gjU(){var s,r,q,p,o=this,n=o.cx -if(!B.c.c8(n,A.cS("https?:",!0,!1))){s=o.B6$ -s===$&&A.a() -n=s+n -r=n.split(":/") -if(r.length===2){s=r[0] -q=r[1] -n=s+":/"+A.nu(q,"//","/")}}s=o.vV$ -s===$&&A.a() -q=o.ay -q===$&&A.a() -p=A.bc1(s,q) -if(p.length!==0)n+=(B.c.q(n,"?")?"&":"?")+p -return A.iD(n,0,null).a09()}} -A.aGI.prototype={ -OG(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,a0){var s,r=this,q="content-type",p=A.aOD(d,t.z) -r.b=p -if(!p.aN(q)&&r.f!=null)r.b.m(0,q,r.f) -s=r.b.aN(q) -if(a!=null&&s&&!J.b(r.b.h(0,q),a))throw A.i(A.hm(a,"contentType","Unable to set different values for `contentType` and the content-type header.")) -if(!s)r.sXF(a)}, -gavE(){var s=this.a -s===$&&A.a() -return s}, -sXF(a){var s,r="content-type",q=a==null?null:B.c.hS(a) -this.f=q -s=this.b -if(q!=null){s===$&&A.a() -s.m(0,r,q)}else{s===$&&A.a() -s.J(0,r)}}, -gaz0(){var s=this.w -s===$&&A.a() -return s}, -az1(a){return this.gaz0().$1(a)}} -A.a0M.prototype={} -A.a5V.prototype={} -A.hA.prototype={ -k(a){var s=this.a -if(t.f.b(s))return B.ca.rE(s) -return J.cB(s)}} -A.aP1.prototype={ -$0(){var s=this.a,r=s.b -if(r!=null)r.bg() -s.b=null -s=this.c -if(s.b==null)s.b=$.wz.$0() -s.iu()}, -$S:0} -A.aP2.prototype={ -$0(){var s,r,q=this,p=q.b -if(p.a<=0)return -s=q.a -r=s.b -if(r!=null)r.bg() -r=q.c -r.iu() -r.mV() -s.b=A.ck(p,new A.aP3(q.d,q.e,q.f,q.r,p,q.w))}, -$S:0} -A.aP3.prototype={ -$0(){var s=this -s.a.$0() -s.b.bn() -s.c.bc().bg() -A.b0D(s.d,A.aQB(s.f,s.e),null)}, -$S:0} -A.aOZ.prototype={ -$1(a){var s=this -s.b.$0() -if(A.cI(s.c.gYM(),0).a<=s.d.a)s.e.G(0,a)}, -$S:573} -A.aP0.prototype={ -$2(a,b){this.a.$0() -A.b0D(this.b,a,b)}, -$S:565} -A.aP_.prototype={ -$0(){this.a.$0() -this.b.bc().bg() -this.c.bn()}, -$S:0} -A.axv.prototype={} -A.axw.prototype={ -$2(a,b){if(b==null)return a -return a+"="+A.zc(1,J.cB(b),B.ao,!0)}, -$S:134} -A.axx.prototype={ -$2(a,b){if(b==null)return a -return a+"="+A.j(b)}, -$S:134} -A.aiI.prototype={ -Mb(a){return this.ayK(a)}, -ayK(a){var s=0,r=A.I(t.N),q -var $async$Mb=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:q=A.bc_(a,A.bjw()) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$Mb,r)}, -D2(a,b){return this.ayL(a,b)}, -ayL(a,b){var s=0,r=A.I(t.z),q,p=this,o,n,m,l -var $async$D2=A.J(function(c,d){if(c===1)return A.F(d,r) -for(;;)switch(s){case 0:l=a.r -l===$&&A.a() -if(l===B.HL){q=b -s=1 -break}if(l===B.HM){q=A.um(b.b) -s=1 -break}o=b.f.h(0,"content-type") -n=A.b_0(o==null?null:J.lx(o))&&l===B.hX -if(n){q=p.qN(a,b) -s=1 -break}s=3 -return A.p(A.um(b.b),$async$D2) -case 3:m=d -l=B.ao.Ya(m,!0) -q=l -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$D2,r)}, -qN(a,b){return this.ac6(a,b)}, -ac6(a,b){var s=0,r=A.I(t.X),q,p=this,o,n,m,l,k,j -var $async$qN=A.J(function(c,d){if(c===1)return A.F(d,r) -for(;;)switch(s){case 0:j=b.f.h(0,"content-length") -s=!(j!=null&&J.jt(j))?3:5 -break -case 3:s=6 -return A.p(A.um(b.b),$async$qN) -case 6:o=d -n=o.length -s=4 -break -case 5:n=A.fU(J.lx(j),null) -o=null -case 4:s=n>=p.a?7:9 -break -case 7:s=o==null?10:12 -break -case 10:s=13 -return A.p(A.um(b.b),$async$qN) -case 13:s=11 -break -case 12:d=o -case 11:m=d -q=A.bjq().$2$2(A.bk0(),m,t.H3,t.X) -s=1 -break -s=8 -break -case 9:s=o!=null?14:16 -break -case 14:if(o.length===0){q=null -s=1 -break}m=$.aPL() -q=A.LM(m.a.e8(o),m.b.a) -s=1 -break -s=15 -break -case 16:l=B.Lj.p5(b.b) -s=17 -return A.p($.aPL().p5(l).eA(0),$async$qN) -case 17:k=d -m=J.bk(k) -if(m.gan(k)){q=null -s=1 -break}q=m.gad(k) -s=1 -break -case 15:case 8:case 1:return A.G(q,r)}}) -return A.H($async$qN,r)}} -A.aff.prototype={ -p5(a){return new A.n6(new A.afg(),a,t.MS)}} -A.afg.prototype={ -$1(a){return new A.yg(a)}, -$S:562} -A.yg.prototype={ -G(a,b){var s -this.b=this.b||!B.a0.gan(b) -s=this.a.a -if((s.e&2)!==0)A.a0(A.aL("Stream is already closed")) -s.u3(b)}, -kf(a,b){return this.a.kf(a,b)}, -bn(){var s,r,q="Stream is already closed" -if(!this.b){s=$.b3H() -r=this.a.a -if((r.e&2)!==0)A.a0(A.aL(q)) -r.u3(s)}s=this.a.a -if((s.e&2)!==0)A.a0(A.aL(q)) -s.Eo()}, -$ie8:1} -A.aOO.prototype={ -$1(a){if(!this.a||a==null||typeof a!="string")return a -return this.b.$1(a)}, -$S:98} -A.aOP.prototype={ -$2(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=g.b,e=A.bhS(f,g.c),d=t.j -if(d.b(a)){s=f===B.rT -if(s||f===B.Qt)for(r=J.bk(a),q=g.f,p=g.d,o=g.e,n=b+o,m=t.f,l=0;l0?b.a=A.ck(l,new A.adp(b,i,a,a1,l)):null -f=a2!=null -if(f){e=a.upload -if(n!=null)A.aSv(e,"progress",new A.adq(b),!1)}d=new A.tv() -$.ur() -b.b=null -A.aSv(a,"progress",new A.adr(b,new A.ady(b,k,d,i,a,a1,new A.adx(b,d)),a1),!1) -new A.tU(a,"error",!1,h).gad(0).c1(new A.ads(b,i,a1),g) -new A.tU(a,"timeout",!1,h).gad(0).c1(new A.adt(b,i,a,l,a1,k),g) -s=f?3:5 -break -case 3:if(o==="GET")A.iy() -b=new A.ax($.as,t.aP) -i=new A.bC(b,t.gI) -c=new A.H7(new A.adu(i),new Uint8Array(1024)) -a2.f8(c.gke(c),!0,c.gAf(),new A.adv(i)) -a0=a -s=6 -return A.p(b,$async$AY) -case 6:a0.send(a5) -s=4 -break -case 5:a.send() -case 4:q=j.h9(new A.adw(p,a)) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$AY,r)}} -A.adn.prototype={ -$2(a,b){var s=this.a -if(t.JY.b(b))s.setRequestHeader(a,J.aQ1(b,", ")) -else s.setRequestHeader(a,J.cB(b))}, -$S:92} -A.ado.prototype={ -$1(a){var s=this.a,r=A.aX0(t.hA.a(s.response),0,null),q=s.status,p=A.bgm(s),o=s.statusText -s=J.b(s.status,302)||J.b(s.status,301)||this.c.gjU().k(0)!==s.responseURL -r=A.aZA(r,t.H3) -this.b.dR(new A.mD(s,r,q,o,p,A.t(t.N,t.z)))}, -$S:39} -A.adp.prototype={ -$0(){var s,r,q=this -q.a.a=null -s=q.b -if((s.a.a&30)!==0)return -r=q.c -if(r.readyState<2){r.abort() -s.fX(A.aVy(q.d,q.e),A.iy())}}, -$S:0} -A.adq.prototype={ -$1(a){var s=this.a,r=s.a -if(r!=null)r.bg() -s.a=null}, -$S:3} -A.adx.prototype={ -$0(){var s=this.a,r=s.b -if(r!=null)r.bg() -s.b=null -s=this.b -if(s.b==null)s.b=$.wz.$0()}, -$S:0} -A.ady.prototype={ -$0(){var s,r,q=this,p=q.b -if(p.a<=0)return -s=q.c -s.iu() -if(s.b!=null)s.mV() -s=q.a -r=s.b -if(r!=null)r.bg() -s.b=A.ck(p,new A.adz(q.d,q.e,p,q.f,q.r))}, -$S:0} -A.adz.prototype={ -$0(){var s=this,r=s.a -if((r.a.a&30)===0){s.b.abort() -r.fX(A.aQB(s.d,s.c),A.iy())}s.e.$0()}, -$S:0} -A.adr.prototype={ -$1(a){var s=this.a,r=s.a -if(r!=null){r.bg() -s.a=null}this.b.$0()}, -$S:3} -A.ads.prototype={ -$1(a){var s=this.a.a -if(s!=null)s.bg() -this.b.fX(A.b7a("The XMLHttpRequest onError callback was called. This typically indicates an error on the network layer.",this.c),A.iy())}, -$S:39} -A.adt.prototype={ -$1(a){var s,r=this,q=r.a.a -if(q!=null)q.bg() -q=r.b -if((q.a.a&30)===0){s=r.e -if(r.c.readyState<2)q.fX(A.aVy(s,r.d),A.iy()) -else q.fX(A.aQB(s,r.f),A.iy())}}, -$S:39} -A.adu.prototype={ -$1(a){return this.a.dR(a)}, -$S:137} -A.adv.prototype={ -$2(a,b){return this.a.fX(a,b)}, -$S:57} -A.adw.prototype={ -$0(){this.a.a.J(0,this.b)}, -$S:13} -A.afu.prototype={} -A.a20.prototype={} -A.aOw.prototype={ -$2(a,b){var s,r="Stream is already closed",q=b.a -if(t.H3.b(a)){if((q.e&2)!==0)A.a0(A.aL(r)) -q.u3(a)}else{s=new Uint8Array(A.iN(a)) -if((q.e&2)!==0)A.a0(A.aL(r)) -q.u3(s)}}, -$S(){return this.b.i("~(0,e8)")}} -A.iR.prototype={ -N(){return"AnimationStatus."+this.b}, -gjK(){var s,r=this -A:{if(B.bC===r||B.c7===r){s=!0 -break A}if(B.a9===r||B.Z===r){s=!1 -break A}s=null}return s}, -gt_(){var s,r=this -A:{if(B.bC===r||B.a9===r){s=!0 -break A}if(B.c7===r||B.Z===r){s=!1 -break A}s=null}return s}} -A.bT.prototype={ -gjK(){return this.gba().gjK()}, -k(a){return"#"+A.bF(this)+"("+this.x_()+")"}, -x_(){switch(this.gba().a){case 1:var s="\u25b6" -break -case 2:s="\u25c0" -break -case 3:s="\u23ed" -break -case 0:s="\u23ee" -break -default:s=null}return s}} -A.y6.prototype={ -N(){return"_AnimationDirection."+this.b}} -A.Mr.prototype={ -N(){return"AnimationBehavior."+this.b}} -A.uG.prototype={ -gp(){var s=this.x -s===$&&A.a() -return s}, -sp(a){var s=this -s.fg() -s.Gu(a) -s.a7() -s.ue()}, -giy(){var s=this.r -if(!(s!=null&&s.a!=null))return 0 -s=this.w -s.toString -return s.h0(this.y.a/1e6)}, -Gu(a){var s=this,r=s.a,q=s.b,p=s.x=A.E(a,r,q) -if(p===r)s.Q=B.Z -else if(p===q)s.Q=B.a9 -else{switch(s.z.a){case 0:r=B.bC -break -case 1:r=B.c7 -break -default:r=null}s.Q=r}}, -gjK(){var s=this.r -return s!=null&&s.a!=null}, -gba(){var s=this.Q -s===$&&A.a() -return s}, -kl(a){var s=this -s.z=B.aP -if(a!=null)s.sp(a) -return s.P_(s.b)}, -cc(){return this.kl(null)}, -M2(a){var s=this -s.z=B.lh -if(a!=null)s.sp(a) -return s.P_(s.a)}, -d6(){return this.M2(null)}, -iG(a,b,c){var s,r,q,p,o,n,m,l,k,j=this,i=j.d -A:{s=B.lG===i -if(s){r=$.EL.B9$ -r===$&&A.a() -q=(r.a&4)!==0 -r=q}else r=!1 -if(r){r=0.05 -break A}if(s||B.lH===i){r=1 -break A}r=null}if(c==null){p=j.b-j.a -if(isFinite(p)){o=j.x -o===$&&A.a() -n=Math.abs(a-o)/p}else n=1 -if(j.z===B.lh&&j.f!=null){o=j.f -o.toString -m=o}else{o=j.e -o.toString -m=o}l=new A.b5(B.d.aY(m.a*n))}else{o=j.x -o===$&&A.a() -l=a===o?B.z:c}j.fg() -o=l.a -if(o===0){r=j.x -r===$&&A.a() -if(r!==a){j.x=A.E(a,j.a,j.b) -j.a7()}j.Q=j.z===B.aP?B.a9:B.Z -j.ue() -return A.aSc()}k=j.x -k===$&&A.a() -return j.zo(new A.aDA(o*r/1e6,k,a,b,B.c6))}, -P_(a){return this.iG(a,B.a7,null)}, -LZ(){var s,r,q=this,p=q.a,o=q.b,n=q.e -q.fg() -s=q.x -s===$&&A.a() -r=n.a/1e6 -s=o===p?0:(A.E(s,p,o)-p)/(o-p)*r -return q.zo(new A.aGH(p,o,!1,null,q.gabb(),r,s,B.c6))}, -abc(a){this.z=a -this.Q=a===B.aP?B.bC:B.c7 -this.ue()}, -Kb(a){var s,r,q,p,o,n,m=this,l=$.b4f(),k=a<0 -m.z=k?B.lh:B.aP -s=k?m.a-0.01:m.b+0.01 -r=m.d -A:{q=B.lG===r -if(q){k=$.EL.B9$ -k===$&&A.a() -p=(k.a&4)!==0 -k=p}else k=!1 -if(k){k=200 -break A}if(q||B.lH===r){k=1 -break A}k=null}o=m.x -o===$&&A.a() -n=new A.ts(s,A.uc(l,o-s,a*k),B.c6) -n.a=B.afm -m.fg() -return m.zo(n)}, -azQ(){return this.Kb(1)}, -A2(a){this.fg() -this.z=B.aP -return this.zo(a)}, -zo(a){var s,r=this -r.w=a -r.y=B.z -r.x=A.E(a.fb(0),r.a,r.b) -s=r.r.mV() -r.Q=r.z===B.aP?B.bC:B.c7 -r.ue() -return s}, -tW(a){this.y=this.w=null -this.r.tW(a)}, -fg(){return this.tW(!0)}, -l(){var s=this -s.r.l() -s.r=null -s.cP$.aa(0) -s.d_$.a.aa(0) -s.xM()}, -ue(){var s=this,r=s.Q -r===$&&A.a() -if(s.as!==r){s.as=r -s.t4(r)}}, -a98(a){var s,r=this -r.y=a -s=a.a/1e6 -r.x=A.E(r.w.fb(s),r.a,r.b) -if(r.w.mi(s)){r.Q=r.z===B.aP?B.a9:B.Z -r.tW(!1)}r.a7() -r.ue()}, -x_(){var s,r=this.r,q=r==null,p=!q&&r.a!=null?"":"; paused" -if(q)s="; DISPOSED" -else s=r.c?"; silenced":"" -r=this.xL() -q=this.x -q===$&&A.a() -return r+" "+B.d.aq(q,3)+p+s}} -A.aDA.prototype={ -fb(a){var s,r=this,q=A.E(a/r.b,0,1) -A:{if(0===q){s=r.c -break A}if(1===q){s=r.d -break A}s=r.c -s+=(r.d-s)*r.e.aj(q) -break A}return s}, -h0(a){return(this.fb(a+0.001)-this.fb(a-0.001))/0.002}, -mi(a){return a>this.b}} -A.aGH.prototype={ -fb(a){var s=this,r=a+s.w,q=s.r,p=B.d.cn(r/q,1) -B.d.qx(r,q) -s.f.$1(B.aP) -q=A.Y(s.b,s.c,p) -q.toString -return q}, -h0(a){return(this.c-this.b)/this.r}, -mi(a){return!1}} -A.a0r.prototype={} -A.a0s.prototype={} -A.a0t.prototype={} -A.Ms.prototype={ -j(a,b){var s,r,q=this -if(b==null)return!1 -if(q===b)return!0 -if(J.S(b)!==A.l(q))return!1 -s=!1 -if(b instanceof A.Ms)if(b.a==q.a){r=b.b -if(r.a===q.b.a){r=b.d -s=r.a===q.d.a}}return s}, -gt(a){return A.N(this.a,this.b,null,this.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a0u.prototype={} -A.a0f.prototype={ -a9(a){}, -O(a){}, -hk(a){}, -dj(a){}, -gba(){return B.a9}, -gp(){return 1}, -k(a){return"kAlwaysCompleteAnimation"}} -A.a0g.prototype={ -a9(a){}, -O(a){}, -hk(a){}, -dj(a){}, -gba(){return B.Z}, -gp(){return 0}, -k(a){return"kAlwaysDismissedAnimation"}} -A.zF.prototype={ -a9(a){}, -O(a){}, -hk(a){}, -dj(a){}, -gba(){return B.bC}, -x_(){return this.xL()+" "+A.j(this.a)+"; paused"}, -gp(){return this.a}} -A.zS.prototype={ -a9(a){return this.gbk().a9(a)}, -O(a){return this.gbk().O(a)}, -hk(a){return this.gbk().hk(a)}, -dj(a){return this.gbk().dj(a)}, -gba(){return this.gbk().gba()}} -A.rF.prototype={ -sbk(a){var s=this,r=s.c -if(a==r)return -if(r!=null){s.a=r.gba() -s.b=s.c.gp() -if(s.nM$>0)s.AJ()}s.c=a -if(a!=null){if(s.nM$>0)s.AI() -if(s.b!==s.c.gp())s.a7() -if(s.a!==s.c.gba())s.t4(s.c.gba()) -s.b=s.a=null}}, -AI(){var s=this,r=s.c -if(r!=null){r.a9(s.gdN()) -s.c.hk(s.ga0a())}}, -AJ(){var s=this,r=s.c -if(r!=null){r.O(s.gdN()) -s.c.dj(s.ga0a())}}, -gba(){var s=this.c -if(s!=null)s=s.gba() -else{s=this.a -s.toString}return s}, -gp(){var s=this.c -if(s!=null)s=s.gp() -else{s=this.b -s.toString}return s}, -k(a){var s=this.c -if(s==null)return"ProxyAnimation(null; "+this.xL()+" "+B.d.aq(this.gp(),3)+")" -return s.k(0)+"\u27a9ProxyAnimation"}} -A.hB.prototype={ -a9(a){this.bC() -this.a.a9(a)}, -O(a){this.a.O(a) -this.rB()}, -AI(){this.a.hk(this.gr7())}, -AJ(){this.a.dj(this.gr7())}, -zp(a){this.t4(this.TL(a))}, -gba(){return this.TL(this.a.gba())}, -gp(){return 1-this.a.gp()}, -TL(a){var s -switch(a.a){case 1:s=B.c7 -break -case 2:s=B.bC -break -case 3:s=B.Z -break -case 0:s=B.a9 -break -default:s=null}return s}, -k(a){return this.a.k(0)+"\u27aaReverseAnimation"}} -A.AY.prototype={ -Vz(a){var s -if(a.gjK()){s=this.d -if(s==null)s=a}else s=null -this.d=s}, -gW7(){if(this.c!=null){var s=this.d -s=(s==null?this.a.gba():s)!==B.c7}else s=!0 -return s}, -l(){this.a.dj(this.gHK())}, -gp(){var s=this,r=s.gW7()?s.b:s.c,q=s.a.gp() -if(r==null)return q -if(q===0||q===1)return q -return r.aj(q)}, -k(a){var s=this -if(s.c==null)return s.a.k(0)+"\u27a9"+s.b.k(0) -if(s.gW7())return s.a.k(0)+"\u27a9"+s.b.k(0)+"\u2092\u2099/"+A.j(s.c) -return s.a.k(0)+"\u27a9"+s.b.k(0)+"/"+A.j(s.c)+"\u2092\u2099"}, -gbk(){return this.a}} -A.a9P.prototype={ -N(){return"_TrainHoppingMode."+this.b}} -A.tH.prototype={ -zp(a){if(a!==this.e){this.t4(a) -this.e=a}}, -gba(){return this.a.gba()}, -anK(){var s,r,q,p,o=this,n=o.b -if(n!=null){switch(o.c.a){case 0:n=n.gp()<=o.a.gp() -break -case 1:n=n.gp()>=o.a.gp() -break -default:n=null}if(n){s=o.a -r=o.gr7() -s.dj(r) -s.O(o.gI2()) -s=o.b -o.a=s -o.b=null -s.hk(r) -o.zp(o.a.gba())}q=n}else q=!1 -p=o.a.gp() -if(p!==o.f){o.a7() -o.f=p}if(q&&o.d!=null)o.d.$0()}, -gp(){return this.a.gp()}, -l(){var s,r,q=this -q.a.dj(q.gr7()) -s=q.gI2() -q.a.O(s) -q.a=null -r=q.b -if(r!=null)r.O(s) -q.b=null -q.d_$.a.aa(0) -q.cP$.aa(0) -q.xM()}, -k(a){var s=this -if(s.b!=null)return A.j(s.a)+"\u27a9TrainHoppingAnimation(next: "+A.j(s.b)+")" -return A.j(s.a)+"\u27a9TrainHoppingAnimation(no next)"}} -A.v6.prototype={ -AI(){var s,r=this,q=r.a,p=r.gSB() -q.a9(p) -s=r.gSC() -q.hk(s) -q=r.b -q.a9(p) -q.hk(s)}, -AJ(){var s,r=this,q=r.a,p=r.gSB() -q.O(p) -s=r.gSC() -q.dj(s) -q=r.b -q.O(p) -q.dj(s)}, -gba(){var s=this.b -return s.gba().gjK()?s.gba():this.a.gba()}, -k(a){return"CompoundAnimation("+this.a.k(0)+", "+this.b.k(0)+")"}, -ahs(a){var s=this -if(s.gba()!==s.c){s.c=s.gba() -s.t4(s.gba())}}, -ahr(){var s=this -if(!J.b(s.gp(),s.d)){s.d=s.gp() -s.a7()}}} -A.zR.prototype={ -gp(){return Math.min(this.a.gp(),this.b.gp())}} -A.Hg.prototype={} -A.Hh.prototype={} -A.Hi.prototype={} -A.a1I.prototype={} -A.a51.prototype={} -A.a52.prototype={} -A.a53.prototype={} -A.a60.prototype={} -A.a61.prototype={} -A.a9M.prototype={} -A.a9N.prototype={} -A.a9O.prototype={} -A.Dw.prototype={ -aj(a){return this.mB(a)}, -mB(a){throw A.i(A.fc(null))}, -k(a){return"ParametricCurve"}} -A.fX.prototype={ -aj(a){if(a===0||a===1)return a -return this.a4V(a)}} -A.Ii.prototype={ -mB(a){return a}} -A.En.prototype={ -mB(a){a*=this.a -return a-(a<0?Math.ceil(a):Math.floor(a))}, -k(a){return"SawTooth("+this.a+")"}} -A.eo.prototype={ -mB(a){var s=this.a -a=A.E((a-s)/(this.b-s),0,1) -if(a===0||a===1)return a -return this.c.aj(a)}, -k(a){var s=this,r=s.c -if(!(r instanceof A.Ii))return"Interval("+A.j(s.a)+"\u22ef"+A.j(s.b)+")\u27a9"+r.k(0) -return"Interval("+A.j(s.a)+"\u22ef"+A.j(s.b)+")"}} -A.G7.prototype={ -mB(a){return a"))}} -A.aw.prototype={ -gp(){return this.b.aj(this.a.gp())}, -k(a){var s=this.a,r=this.b -return s.k(0)+"\u27a9"+r.k(0)+"\u27a9"+A.j(r.aj(s.gp()))}, -x_(){return this.xL()+" "+this.b.k(0)}, -gbk(){return this.a}} -A.eE.prototype={ -aj(a){return this.b.aj(this.a.aj(a))}, -k(a){return this.a.k(0)+"\u27a9"+this.b.k(0)}} -A.aA.prototype={ -eo(a){var s=this.a -return A.n(this).i("aA.T").a(J.b5e(s,J.b5f(J.b5g(this.b,s),a)))}, -aj(a){var s,r=this -if(a===0){s=r.a -return s==null?A.n(r).i("aA.T").a(s):s}if(a===1){s=r.b -return s==null?A.n(r).i("aA.T").a(s):s}return r.eo(a)}, -k(a){return"Animatable("+A.j(this.a)+" \u2192 "+A.j(this.b)+")"}, -sIs(a){return this.a=a}, -sc4(a){return this.b=a}} -A.Eh.prototype={ -eo(a){return this.c.eo(1-a)}} -A.fV.prototype={ -eo(a){return A.k(this.a,this.b,a)}} -A.Y1.prototype={ -eo(a){return A.xi(this.a,this.b,a)}} -A.DL.prototype={ -eo(a){return A.bah(this.a,this.b,a)}} -A.nY.prototype={ -eo(a){var s,r=this.a -r.toString -s=this.b -s.toString -return B.d.aY(r+(s-r)*a)}} -A.v8.prototype={ -eo(a){var s=this.a -return s==null?this.$ti.c.a(s):s}, -k(a){return"ConstantTween(value: "+A.j(this.a)+")"}} -A.fm.prototype={ -aj(a){if(a===0||a===1)return a -return this.a.aj(a)}, -k(a){return"CurveTween(curve: "+this.a.k(0)+")"}} -A.L4.prototype={} -A.Gq.prototype={ -a8z(a,b){var s,r,q,p,o,n,m,l=this.a -B.b.a_(l,a) -for(s=l.length,r=0,q=0;q=n&&a"}} -A.AK.prototype={ -ah(){return new A.a1t(null,null)}} -A.a1t.prototype={ -aw(){var s,r=this -r.b3() -s=A.bX(null,B.eP,null,null,r) -r.d=s -if(r.a.d)s.LZ()}, -aV(a){var s,r -this.bm(a) -s=this.a.d -if(s!==a.d){r=this.d -if(s){r===$&&A.a() -r.LZ()}else{r===$&&A.a() -r.fg()}}}, -l(){var s=this.d -s===$&&A.a() -s.l() -this.a7B()}, -K(a){var s,r=this.a -r.toString -s=this.d -s===$&&A.a() -r=r.c -if(r==null)r=B.O5.cV(a) -return A.a8(A.hY(null,null,null,new A.a1s(s,r,10,this.a.f,new A.jW(-1,-3.3333333333333335,1,-10,1,1,1,1,1,1,1,1),s),B.Q),20,20)}} -A.a1s.prototype={ -b1(a,b){var s,r,q,p,o,n,m,l,k,j,i=this -$.ab() -s=A.bt() -r=a.a -J.b4(r.save()) -r.translate(b.a/2,b.b/2) -q=i.b.x -q===$&&A.a() -p=B.d.ih(8*q) -for(q=i.e,o=8*q,n=i.f,q=q<1,m=i.c,l=0;l"))),q,q.$ti.i("aw")) -p.Uo()}, -aV(a){this.bm(a) -this.Uo()}, -Uo(){var s=this.a.Q -this.d.b=s}, -l(){var s=this.e -s===$&&A.a() -s.l() -this.a7C()}, -afW(a){var s=this -s.ar(new A.aAM(s)) -if(!s.w){s.w=!0 -s.u9()}}, -ag2(a){var s,r,q=this -q.ar(new A.aAN(q)) -if(q.w){q.w=!1 -q.u9()}s=q.c.ga1() -s.toString -t.x.a(s) -r=s.eC(a.a) -s=s.gC() -if(new A.w(0,0,0+s.a,0+s.b).d5(A.aVi()).q(0,r))q.Pj()}, -afU(){var s=this -s.ar(new A.aAL(s)) -if(s.w){s.w=!1 -s.u9()}}, -afZ(a){var s,r,q=this,p=q.c.ga1() -p.toString -t.x.a(p) -s=p.eC(a.a) -p=p.gC() -r=new A.w(0,0,0+p.a,0+p.b).d5(A.aVi()).q(0,s) -if(q.x&&r!==q.w){q.w=r -q.u9()}}, -Pk(a){var s=this.a.w -if(s!=null){s.$0() -this.c.ga1().tP(B.oM)}}, -Pj(){return this.Pk(null)}, -u9(){var s,r,q,p=this.e -p===$&&A.a() -s=p.r -if(s!=null&&s.a!=null)return -r=this.w -if(r){p.z=B.aP -q=p.iG(1,B.fI,B.OB)}else{p.z=B.aP -q=p.iG(0,B.qH,B.OH)}q.c1(new A.aAJ(this,r),t.H)}, -aiC(a){this.ar(new A.aAO(this,a))}, -K(a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this,a=null,a0=b.a,a1=a0.w==null,a2=!a1 -a0=a0.y -s=a0==null?a:new A.L(a0,a0) -r=A.vd(a3) -q=r.gf3() -a0=b.a.e -if(a0==null)a0=a -else if(a0 instanceof A.cL)a0=a0.cV(a3) -if(a0==null)p=a -else{o=b.a.e -o=o==null?a:o.gdY() -if(o==null)o=1 -p=a0.aI(o)}b.a.toString -n=a -A:{if(a2){a0=q -break A}a0=B.O1.cV(a3) -break A}n=a0 -b.a.toString -a0=A.aWc((p==null?B.iR:p).aI(0.8)) -m=new A.vG(a0.a,a0.b,0.835,0.69).a1x() -b.a.toString -a0=r.gls().gao3() -l=a0.c3(n) -a0=A.BZ(a3) -o=l.r -k=a0.XS(n,o!=null?o*1.2:20) -a0=A.c_(a3,B.lm) -j=a0==null?a:a0.cx -a0=A.aU(t.EK) -if(a1)a0.G(0,B.K) -if(b.x)a0.G(0,B.a2) -o=b.r -o===$&&A.a() -if(o)a0.G(0,B.J) -b.a.toString -i=A.dM(a,a0,t.WV) -if(i==null)i=$.b3F().a.$1(a0) -a0=a2&&b.r?new A.bl(m,3.5,B.F,1):B.x -o=b.a.as -a0=A.wQ(o==null?$.b54().h(0,B.qM):o,a0) -if(p!=null&&a1){a1=b.a.f -if(a1 instanceof A.cL)a1=a1.cV(a3)}else a1=p -h=b.y -if(h===$){g=A.aG([B.oX,new A.dg(b.ga9T(),new A.bp(A.c([],t.e),t.d),t.wY)],t.u,t.od) -b.y!==$&&A.aK() -b.y=g -h=g}b.a.toString -o=A.t(t.u,t.xR) -o.m(0,B.id,new A.cK(new A.aAP(),new A.aAQ(b,a2,j),t.UO)) -f=b.a -f.toString -e=s==null -d=e?a:s.a -if(d==null)d=44 -e=e?a:s.b -if(e==null)e=44 -c=b.f -c===$&&A.a() -return A.ie(A.aW2(h,!1,new A.j5(A.cz(!0,new A.dX(new A.al(d,1/0,e,1/0),new A.e9(c,!1,A.vh(new A.bR(f.d,new A.ex(f.ax,1,1,A.fn(A.qI(f.c,k,a),a,a,B.bc,!0,l,a,a,B.al),a),a),new A.iw(a1,a,a,a,a0),B.dT),a),a),!1,a,a,!1,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,B.Y,a),o,B.aG,!1,a),a2,a,B.b2,a,b.gaiB(),a),i,a,a,a,a)}} -A.aAK.prototype={ -$1(a){var s=a.q(0,B.K) -return!s?B.el:B.b2}, -$S:68} -A.aAM.prototype={ -$0(){this.a.x=!0}, -$S:0} -A.aAN.prototype={ -$0(){this.a.x=!1}, -$S:0} -A.aAL.prototype={ -$0(){this.a.x=!1}, -$S:0} -A.aAJ.prototype={ -$1(a){var s=this.a -if(s.c!=null&&this.b!==s.w)s.u9()}, -$S:40} -A.aAO.prototype={ -$0(){this.a.r=this.b}, -$S:0} -A.aAP.prototype={ -$0(){return A.FP(null,null,null)}, -$S:89} -A.aAQ.prototype={ -$1(a){var s=this,r=null,q=s.b -a.n=q?s.a.gafV():r -a.U=q?s.a.gag1():r -a.a5=q?s.a.gafT():r -a.a3=q?s.a.gafY():r -a.b=s.c}, -$S:88} -A.Lb.prototype={ -l(){var s=this,r=s.bu$ -if(r!=null)r.O(s.gfA()) -s.bu$=null -s.aQ()}, -bF(){this.cE() -this.cv() -this.fB()}} -A.cL.prototype={ -guD(){var s=this -return!s.d.j(0,s.e)||!s.w.j(0,s.x)||!s.f.j(0,s.r)||!s.y.j(0,s.z)}, -guB(){var s=this -return!s.d.j(0,s.f)||!s.e.j(0,s.r)||!s.w.j(0,s.y)||!s.x.j(0,s.z)}, -guC(){var s=this -return!s.d.j(0,s.w)||!s.e.j(0,s.x)||!s.f.j(0,s.y)||!s.r.j(0,s.z)}, -cV(a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=this,a1=null -if(a0.guD()){s=a2.aA(t.ri) -r=s==null?a1:s.w.c.giU() -if(r==null){r=A.c_(a2,B.fR) -r=r==null?a1:r.e}q=r==null?B.ar:r}else q=B.ar -if(a0.guC())a2.aA(t.H5) -if(a0.guB()){r=A.c_(a2,B.K6) -r=r==null?a1:r.as -p=r===!0}else p=!1 -A:{o=B.ar===q -r=o -n=a1 -m=a1 -l=!1 -if(r){n=!p -r=n -m=p -k=!0 -j=!0 -i=B.b8 -h=!0 -g=!0 -f=!0}else{r=l -i=a1 -k=i -j=!1 -h=!1 -g=!1 -f=!1}if(r){r=a0.d -break A}e=a1 -d=!1 -r=!1 -if(o){if(j)l=k -else{if(h)l=i -else{i=B.b8 -h=!0 -l=B.b8}k=B.b8===l -l=k -j=!0}if(l){if(f)r=m -else{r=p -m=r -f=!0}e=!0===r -r=e -d=!0}}if(r){r=a0.f -break A}c=a1 -r=!1 -if(o){if(h)l=i -else{i=B.b8 -h=!0 -l=B.b8}c=B.iT===l -l=c -if(l)if(g)r=n -else{if(f)r=m -else{r=p -m=r -f=!0}n=!1===r -r=n -g=!0}b=!0}else b=!1 -if(r){r=a0.w -break A}r=!1 -if(o){if(b)l=c -else{if(h)l=i -else{i=B.b8 -h=!0 -l=B.b8}c=B.iT===l -l=c -b=!0}if(l)if(d)r=e -else{if(f)r=m -else{r=p -m=r -f=!0}e=!0===r -r=e -d=!0}}if(r){r=a0.y -break A}a=B.R===q -r=a -l=!1 -if(r){if(j)r=k -else{if(h)r=i -else{i=B.b8 -h=!0 -r=B.b8}k=B.b8===r -r=k -j=!0}if(r)if(g)r=n -else{if(f)r=m -else{r=p -m=r -f=!0}n=!1===r -r=n -g=!0}else r=l}else r=l -if(r){r=a0.e -break A}r=!1 -if(a){if(j)l=k -else{if(h)l=i -else{i=B.b8 -h=!0 -l=B.b8}k=B.b8===l -l=k}if(l)if(d)r=e -else{if(f)r=m -else{r=p -m=r -f=!0}e=!0===r -r=e -d=!0}}if(r){r=a0.r -break A}r=!1 -if(a){if(b)l=c -else{if(h)l=i -else{i=B.b8 -h=!0 -l=B.b8}c=B.iT===l -l=c -b=!0}if(l)if(g)r=n -else{if(f)r=m -else{r=p -m=r -f=!0}n=!1===r -r=n}}if(r){r=a0.x -break A}r=!1 -if(a){if(b)l=c -else{c=B.iT===(h?i:B.b8) -l=c}if(l)if(d)r=e -else{e=!0===(f?m:p) -r=e}}if(r){r=a0.z -break A}r=a1}return new A.cL(r,a0.b,a1,a0.d,a0.e,a0.f,a0.r,a0.w,a0.x,a0.y,a0.z)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.cL&&b.a.A()===s.a.A()&&b.d.j(0,s.d)&&b.e.j(0,s.e)&&b.f.j(0,s.f)&&b.r.j(0,s.r)&&b.w.j(0,s.w)&&b.x.j(0,s.x)&&b.y.j(0,s.y)&&b.z.j(0,s.z)}, -gt(a){var s=this -return A.N(s.a.A(),s.d,s.e,s.f,s.w,s.x,s.r,s.z,s.y,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=this,r=new A.aeQ(s),q=A.c([r.$2("color",s.d)],t.s) -if(s.guD())q.push(r.$2("darkColor",s.e)) -if(s.guB())q.push(r.$2("highContrastColor",s.f)) -if(s.guD()&&s.guB())q.push(r.$2("darkHighContrastColor",s.r)) -if(s.guC())q.push(r.$2("elevatedColor",s.w)) -if(s.guD()&&s.guC())q.push(r.$2("darkElevatedColor",s.x)) -if(s.guB()&&s.guC())q.push(r.$2("highContrastElevatedColor",s.y)) -if(s.guD()&&s.guB()&&s.guC())q.push(r.$2("darkHighContrastElevatedColor",s.z)) -r=s.b -if(r==null)r="CupertinoDynamicColor" -q=B.b.bJ(q,", ") -return r+"("+q+", resolved by: UNRESOLVED)"}, -gp(){return this.a.A()}, -ger(){return this.a.A()>>>24&255}, -gX3(){return this.a.A()&255}, -IN(){return this.a.IN()}, -gMY(){return this.a.A()>>>8&255}, -gdY(){return(this.a.A()>>>24&255)/255}, -ga0X(){return this.a.A()>>>16&255}, -e_(a){var s=this.a -return A.ar(a,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}, -aI(a){var s=this.a -return A.ar(B.d.aY(255*a),s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}, -goY(){return this.a.a}, -go6(){return this.a.b}, -gmH(){return this.a.c}, -gnt(){return this.a.d}, -gvt(){return this.a.e}, -Di(a,b,c,d,e){return this.a.Di(a,b,c,d,e)}, -bT(a){var s=null -return this.Di(a,s,s,s,s)}, -$ix:1} -A.aeQ.prototype={ -$2(a,b){var s=b.j(0,this.a.a)?"*":"" -return s+a+" = "+b.k(0)+s}, -$S:495} -A.a1w.prototype={} -A.a1v.prototype={} -A.aeP.prototype={ -tE(a){return B.Q}, -A7(a,b,c,d){return B.aE}, -tD(a,b){return B.f}} -A.aaD.prototype={} -A.ND.prototype={ -K(a){var s=null,r=A.c0(a,B.bS,t.l).w.r.b+8,q=this.c.ac(0,new A.h(8,r)),p=A.bJ(this.d,B.o,B.m,B.ak),o=A.c([2.574,-1.43,-0.144,0,0,-0.426,1.57,-0.144,0,0,-0.426,-1.43,2.856,0,0,0,0,0,1,0],t.n),n=A.ak2(20,20) -$.ab() -o=A.bjA(new A.Bv(o)) -o.toString -return new A.bR(new A.a2(8,r,8,8),new A.jC(new A.PL(q),A.bL(s,A.acS(A.vh(new A.bR(B.P8,p,s),new A.iw(B.O_.cV(a),s,s,s,A.wQ(B.d3,new A.bl(B.O4.cV(a),1,B.F,-1))),B.dT),new A.Hd(new A.Ar(o),n)),B.N,s,s,B.a8b,s,s,s,s,s,s,222),s),s)}} -A.q4.prototype={ -ah(){return new A.Ho()}, -gR(){return null}} -A.Ho.prototype={ -aih(a){this.ar(new A.aAS(this))}, -ail(a){this.ar(new A.aAT(this))}, -K(a){var s=this,r=null,q=s.a.f,p=A.ai(q,r,B.bd,r,B.JA.c3(s.d?A.vd(a).gjO():B.iS.cV(a)),r,r) -q=s.d?A.vd(a).gf3():r -return A.a8(A.ie(A.aVh(B.cD,B.cE,p,q,B.O6,0,s.a.c,B.P9,0.7),B.b2,r,s.gaig(),s.gaik(),r),r,1/0)}} -A.aAS.prototype={ -$0(){this.a.d=!0}, -$S:0} -A.aAT.prototype={ -$0(){this.a.d=!1}, -$S:0} -A.NE.prototype={ -af(a){var s=this.f,r=s instanceof A.cL?s.cV(a):s -return J.b(r,s)?this:this.c3(r)}, -pc(a,b,c,d,e,f,g,h,i){var s=this,r=h==null?s.a:h,q=c==null?s.b:c,p=i==null?s.c:i,o=d==null?s.d:d,n=f==null?s.e:f,m=b==null?s.f:b,l=e==null?s.gdY():e,k=g==null?s.w:g -return A.aVj(a==null?s.x:a,m,q,o,l,n,k,r,p)}, -c3(a){var s=null -return this.pc(s,a,s,s,s,s,s,s,s)}, -XS(a,b){var s=null -return this.pc(s,a,s,s,s,s,s,b,s)}} -A.a1x.prototype={} -A.Pt.prototype={ -N(){return"CupertinoUserInterfaceLevelData."+this.b}} -A.a1y.prototype={ -pL(a){return a.gdV()==="en"}, -j3(a){return new A.cF(B.Lh,t.u4)}, -ou(a){return!1}, -k(a){return"DefaultCupertinoLocalizations.delegate(en_US)"}} -A.PC.prototype={ -gY(){return"Cut"}, -gX(){return"Copy"}, -gZ(){return"Paste"}, -gV(){return"Select All"}, -gB(){return"Look Up"}, -gI(){return"Search Web"}, -gF(){return"Share..."}, -$ia7:1} -A.AV.prototype={ -ah(){return new A.Hq(B.f,null,null)}} -A.Hq.prototype={ -aw(){var s,r,q=this -q.b3() -s=A.bX(null,B.c2,null,0,q) -s.bC() -s.d_$.G(0,new A.aB1(q)) -q.f!==$&&A.bs() -q.f=s -r=q.a -r.d.a=s -r.w.a9(q.gGG()) -q.a.toString -s=A.cQ(B.hg,s,null) -q.w!==$&&A.bs() -q.w=s -r=t.Y -q.r!==$&&A.bs() -q.r=new A.aw(s,new A.aA(0,1,r),r.i("aw"))}, -l(){var s,r=this -r.a.d.a=null -s=r.f -s===$&&A.a() -s.l() -s=r.w -s===$&&A.a() -s.l() -r.a.w.O(r.gGG()) -r.a7D()}, -aV(a){var s,r=this,q=a.w -if(q!==r.a.w){s=r.gGG() -q.O(s) -r.a.w.a9(s)}r.bm(a)}, -by(){this.Sx() -this.du()}, -Sx(){var s,r=this,q=r.a.w.gp(),p=q.c.gbp().b,o=q.a,n=p-o.b,m=r.a -m.toString -if(n<-48){o=m.d -if(o.gNA())o.w9(!1) -return}if(!m.d.gNA()){m=r.f -m===$&&A.a() -m.cc()}r.a.toString -s=Math.max(p,p-n/10) -o=o.a-40 -n=s-73.5 -m=r.c -m.toString -m=A.c0(m,B.fQ,t.l).w.a -r.a.toString -n=A.aWL(new A.w(10,-21.5,0+m.a-10,0+m.b+21.5),new A.w(o,n,o+80,n+47.5)) -r.ar(new A.aB_(r,new A.h(n.a,n.b),p,s))}, -K(a){var s,r,q,p=this,o=A.vd(a) -p.a.toString -s=p.d -r=p.r -r===$&&A.a() -q=p.e -return A.aUK(new A.Pp(new A.bl(o.gf3(),2,B.F,-1),r,new A.h(0,q),null),B.hg,B.OM,s.a,s.b)}} -A.aB1.prototype={ -$0(){return this.a.ar(new A.aB0())}, -$S:0} -A.aB0.prototype={ -$0(){}, -$S:0} -A.aB_.prototype={ -$0(){var s=this,r=s.a -r.d=s.b -r.e=s.c-s.d}, -$S:0} -A.Pp.prototype={ -K(a){var s,r,q=this.w,p=q.b -q=q.a -p.aj(q.gp()) -s=new A.h(0,49.75).a8(0,this.x) -r=p.aj(q.gp()) -r=A.rm(B.a3n,B.f,r==null?1:r) -r.toString -q=p.aj(q.gp()) -if(q==null)q=1 -return A.aSg(A.aXy(null,B.v,new A.w3(q,B.Va,new A.dI(B.KC,this.e)),s,1,B.a9c),r,!0)}} -A.Lc.prototype={ -l(){var s=this,r=s.bu$ -if(r!=null)r.O(s.gfA()) -s.bu$=null -s.aQ()}, -bF(){this.cE() -this.cv() -this.fB()}} -A.aeS.prototype={ -$0(){return this.a.gjL()}, -$S:58} -A.aeR.prototype={ -$0(){return this.a.gBN()}, -$S:58} -A.aeT.prototype={ -$0(){var s=this.a -s=A.f3.prototype.ga0z.call(s) -return s}, -$S:58} -A.aeU.prototype={ -$0(){return A.b6B(this.a)}, -$S(){return this.b.i("Hm<0>()")}} -A.AU.prototype={ -ah(){return new A.a1z()}, -gR(){return this.c}} -A.a1z.prototype={ -aw(){this.b3() -this.Up()}, -aV(a){var s,r=this -r.bm(a) -s=r.a -if(a.d!==s.d||a.e!==s.e||a.f!==s.f){r.Qo() -r.Up()}}, -l(){this.Qo() -this.aQ()}, -Qo(){var s=this,r=s.r -if(r!=null)r.l() -r=s.w -if(r!=null)r.l() -r=s.x -if(r!=null)r.l() -s.x=s.w=s.r=null}, -Up(){var s,r,q=this,p=q.a -if(!p.f){q.r=A.cQ(B.lc,p.d,new A.jG(B.lc)) -q.w=A.cQ(B.mj,q.a.e,B.qK) -q.x=A.cQ(B.mj,q.a.d,null)}p=q.r -if(p==null)p=q.a.d -s=$.b4u() -r=t.v -q.d=new A.aw(r.a(p),s,s.$ti.i("aw")) -s=q.w -p=s==null?q.a.e:s -s=$.aUi() -q.e=new A.aw(r.a(p),s,s.$ti.i("aw")) -s=q.x -p=s==null?q.a.d:s -s=$.b3G() -q.f=new A.aw(r.a(p),s,A.n(s).i("aw"))}, -K(a){var s,r,q=this,p=a.aA(t.I).w,o=q.e -o===$&&A.a() -s=q.d -s===$&&A.a() -r=q.f -r===$&&A.a() -return A.oK(A.oK(new A.Pz(r,q.a.c,r,null),s,p,!0),o,p,!1)}} -A.ye.prototype={ -ah(){return new A.yf(this.$ti.i("yf<1>"))}, -arI(){return this.d.$0()}, -awx(){return this.e.$0()}, -gR(){return this.c}} -A.yf.prototype={ -aw(){var s,r=this -r.b3() -s=A.aR1(r,null) -s.ch=r.gakE() -s.CW=r.gakG() -s.cx=r.gakC() -s.cy=r.gadP() -r.e=s}, -l(){var s=this,r=s.e -r===$&&A.a() -r.p2.aa(0) -r.mY() -if(s.d!=null)$.a1.k4$.push(new A.aAI(s)) -s.aQ()}, -akF(a){this.d=this.a.awx()}, -akH(a){var s,r,q=this.d -q.toString -s=a.e -s.toString -s=this.Q2(s/this.c.gC().a) -q=q.a -r=q.x -r===$&&A.a() -q.sp(r-s)}, -akD(a){var s=this,r=s.d -r.toString -r.YG(s.Q2(a.c.a.a/s.c.gC().a)) -s.d=null}, -adQ(){var s=this.d -if(s!=null)s.YG(0) -this.d=null}, -akJ(a){var s -if(this.a.arI()){s=this.e -s===$&&A.a() -s.Id(a)}}, -Q2(a){var s -switch(this.c.aA(t.I).w.a){case 0:s=-a -break -case 1:s=a -break -default:s=null}return s}, -K(a){var s,r=null -switch(a.aA(t.I).w.a){case 0:s=A.c0(a,B.bS,t.l).w.r.c -break -case 1:s=A.c0(a,B.bS,t.l).w.r.a -break -default:s=r}return A.hE(B.aQ,A.c([this.a.c,new A.Ul(0,0,0,Math.max(s,20),A.Cz(B.cs,r,r,this.gakI(),r,r,r),r)],t.p),B.N,B.a9F)}} -A.aAI.prototype={ -$1(a){var s=this.a,r=s.d,q=r==null,p=q?null:r.b.c!=null -if(p===!0)if(!q)r.b.pk() -s.d=null}, -$S:4} -A.Hm.prototype={ -YG(a){var s,r,q,p,o=this,n=o.d.$0() -if(!n)s=o.c.$0() -else if(Math.abs(a)>=1)s=a<=0 -else{r=o.a.x -r===$&&A.a() -s=r>0.5}if(s){r=o.a -r.z=B.aP -r.iG(1,B.lc,B.qY)}else{if(n)o.b.ct() -r=o.a -q=r.r -if(q!=null&&q.a!=null){r.z=B.lh -r.iG(0,B.lc,B.qY)}}q=r.r -if(q!=null&&q.a!=null){p=A.bQ() -p.b=new A.aAH(o,p) -q=p.bc() -r.bC() -r=r.cP$ -r.b=!0 -r.a.push(q)}else o.b.pk()}} -A.aAH.prototype={ -$1(a){var s=this.a -s.b.pk() -s.a.dj(this.b.bc())}, -$S:8} -A.kf.prototype={ -dW(a,b){var s -if(a instanceof A.kf){s=A.aAU(a,this,b) -s.toString -return s}s=A.aAU(null,this,b) -s.toString -return s}, -dX(a,b){var s -if(a instanceof A.kf){s=A.aAU(this,a,b) -s.toString -return s}s=A.aAU(this,null,b) -s.toString -return s}, -J5(a){return new A.aAX(this,a)}, -j(a,b){var s,r -if(b==null)return!1 -if(J.S(b)!==A.l(this))return!1 -if(b instanceof A.kf){s=b.a -r=this.a -r=s==null?r==null:s===r -s=r}else s=!1 -return s}, -gt(a){return J.D(this.a)}} -A.aAV.prototype={ -$1(a){var s=A.k(null,a,this.a) -s.toString -return s}, -$S:72} -A.aAW.prototype={ -$1(a){var s=A.k(null,a,1-this.a) -s.toString -return s}, -$S:72} -A.aAX.prototype={ -li(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this.b.a -if(d==null)return -s=c.e -r=s.a -q=0.05*r -p=s.b -o=q/(d.length-1) -switch(c.d.a){case 0:s=new A.an(1,b.a+r) -break -case 1:s=new A.an(-1,b.a) -break -default:s=null}n=s.a -m=null -l=s.b -m=l -k=n -for(s=b.b,r=s+p,j=a.a,i=0,h=0;h=a.b-7?-7:0)}, -e2(a,b){var s,r,q=this.u$ -if(q==null)return null -s=this.Q_(a) -r=q.f5(s,b) -return r==null?null:r+this.PT(q.aO(B.S,s,q.gcu())).b}, -c7(){var s,r=this,q=r.u$ -if(q==null)return -q.cs(r.Q_(t.k.a(A.r.prototype.gab.call(r))),!0) -s=q.b -s.toString -t.r.a(s).a=r.PT(q.gC()) -r.fy=new A.L(q.gC().a,q.gC().b-7)}, -aam(a,b){var s,r,q,p,o,n,m=this,l=A.co($.ab().r) -if(30>m.gC().a){l.b9(new A.fh(b)) -return l}s=a.gC() -r=m.D -q=r.b>=s.b-7 -p=A.E(m.eC(q?r:m.a4).a,15,m.gC().a-7-8) -s=p+7 -r=p-7 -if(q){o=a.gC().b-7 -n=a.gC() -l.b9(new A.ig(s,o)) -l.b9(new A.d3(p,n.b)) -l.b9(new A.d3(r,o))}else{l.b9(new A.ig(r,7)) -l.b9(new A.d3(p,0)) -l.b9(new A.d3(s,7))}s=A.bdu(l,b,q?1.5707963267948966:-1.5707963267948966) -s.b9(new A.pW()) -return s}, -b1(a,b){var s,r,q,p,o,n,m,l=this,k=l.u$ -if(k==null)return -s=k.b -s.toString -t.r.a(s) -r=A.kT(new A.w(0,7,0+k.gC().a,7+(k.gC().b-14)),B.eg).N1() -q=l.aam(k,r) -p=l.am -if(p!=null){o=A.aXw(r.a,r.b,r.c,r.d+7,B.eg).e0(b.a8(0,s.a).a8(0,B.f)) -a.gcw().eL(o,new A.cm(0,B.az,p,B.f,15).hR())}p=l.bw -n=l.cx -n===$&&A.a() -s=b.a8(0,s.a) -m=k.gC() -p.saR(a.axg(n,s,new A.w(0,0,0+m.a,0+m.b),q,new A.aG0(k),p.a))}, -l(){this.bw.saR(null) -this.fu()}, -da(a,b){var s,r,q=this.u$ -if(q==null)return!1 -s=q.b -s.toString -s=t.r.a(s).a -r=s.a -s=s.b+7 -if(!new A.w(r,s,r+q.gC().a,s+(q.gC().b-14)).q(0,b))return!1 -return this.a5l(a,b)}} -A.aG0.prototype={ -$2(a,b){return a.e4(this.a,b)}, -$S:17} -A.Hs.prototype={ -ah(){return new A.Ht(new A.by(null,t.A),null,null)}, -ayB(a,b,c,d){return this.f.$4(a,b,c,d)}} -A.Ht.prototype={ -ait(a){var s=a.d -if(s!=null&&s!==0)if(s>0)this.RU() -else this.RS()}, -RS(){var s=this,r=$.a1.ap$.x.h(0,s.r) -r=r==null?null:r.ga1() -t.Qv.a(r) -if(r instanceof A.u7){r=r.U -r===$&&A.a()}else r=!1 -if(r){r=s.d -r===$&&A.a() -r.d6() -r=s.d -r.bC() -r=r.cP$ -r.b=!0 -r.a.push(s.gzq()) -s.e=s.f+1}}, -RU(){var s=this,r=$.a1.ap$.x.h(0,s.r) -r=r==null?null:r.ga1() -t.Qv.a(r) -if(r instanceof A.u7){r=r.a0 -r===$&&A.a()}else r=!1 -if(r){r=s.d -r===$&&A.a() -r.d6() -r=s.d -r.bC() -r=r.cP$ -r.b=!0 -r.a.push(s.gzq()) -s.e=s.f-1}}, -am8(a){var s,r=this -if(a!==B.Z)return -r.ar(new A.aB5(r)) -s=r.d -s===$&&A.a() -s.cc() -r.d.dj(r.gzq())}, -aw(){this.b3() -this.d=A.bX(null,B.mt,null,1,this)}, -aV(a){var s,r=this -r.bm(a) -if(r.a.e!==a.e){r.f=0 -r.e=null -s=r.d -s===$&&A.a() -s.cc() -r.d.dj(r.gzq())}}, -l(){var s=this.d -s===$&&A.a() -s.l() -this.a7E()}, -K(a){var s,r,q,p=this,o=null,n=B.iS.cV(a),m=A.dp(A.aVn(A.jK(A.hY(o,o,o,new A.a3s(n,!0,o),B.IX),!0,o),p.gaf7()),1,1),l=A.dp(A.aVn(A.jK(A.hY(o,o,o,new A.a63(n,!1,o),B.IX),!0,o),p.gaeM()),1,1),k=p.a.e,j=A.a6(k).i("am<1,iT>"),i=A.aa(new A.am(k,new A.aB6(),j),j.i("aE.E")) -k=p.a -j=k.c -s=k.d -r=p.d -r===$&&A.a() -q=p.f -return k.ayB(a,j,s,new A.e9(r,!1,A.aUL(A.eP(o,new A.Hu(m,i,B.NY.cV(a),1/A.c0(a,B.dJ,t.l).w.b,l,q,p.r),B.W,!1,o,o,o,o,p.gais(),o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),B.h_,B.mt),o))}} -A.aB5.prototype={ -$0(){var s=this.a,r=s.e -r.toString -s.f=r -s.e=null}, -$S:0} -A.aB6.prototype={ -$1(a){return A.dp(a,1,1)}, -$S:449} -A.a3s.prototype={} -A.a63.prototype={} -A.a1u.prototype={ -b1(a,b){var s,r,q,p,o=b.b,n=this.c,m=n?1:-1,l=new A.h(o/4*m,0) -m=o/2 -s=new A.h(m,0).a8(0,l) -r=new A.h(n?0:o,m).a8(0,l) -q=new A.h(m,o).a8(0,l) -$.ab() -p=A.bt() -p.r=this.b.gp() -p.b=B.bK -p.c=2 -p.d=B.oL -p.e=B.Jc -a.nJ(s,r,p) -a.nJ(r,q,p)}, -eU(a){return!a.b.j(0,this.b)||a.c!==this.c}} -A.Hu.prototype={ -bf(a){var s=new A.u7(A.t(t.TC,t.x),this.w,this.e,this.f,0,null,null,new A.b8(),A.at()) -s.be() -return s}, -bj(a,b){b.sawM(this.w) -b.sarz(this.e) -b.sarA(this.f)}, -cf(){var s=t.Q -return new A.a1C(A.t(t.TC,s),A.dv(s),this,B.ae)}} -A.a1C.prototype={ -ga1(){return t.l0.a(A.b0.prototype.ga1.call(this))}, -VQ(a,b){var s -switch(b.a){case 0:s=t.l0.a(A.b0.prototype.ga1.call(this)) -s.L=s.Vs(s.L,a,B.pa) -break -case 1:s=t.l0.a(A.b0.prototype.ga1.call(this)) -s.P=s.Vs(s.P,a,B.pb) -break}}, -j0(a,b){var s,r -if(b instanceof A.tP){this.VQ(t.x.a(a),b) -return}if(b instanceof A.h2){s=t.l0.a(A.b0.prototype.ga1.call(this)) -t.x.a(a) -r=b.a -r=r==null?null:r.ga1() -t.Qv.a(r) -s.i7(a) -s.yI(a,r) -return}}, -io(a,b,c){t.l0.a(A.b0.prototype.ga1.call(this)).t3(t.x.a(a),t.Qv.a(c.a.ga1()))}, -jR(a,b){var s -if(b instanceof A.tP){this.VQ(null,b) -return}s=t.l0.a(A.b0.prototype.ga1.call(this)) -t.x.a(a) -s.z8(a) -s.m5(a)}, -bB(a){var s,r,q,p,o=this.p2 -new A.bo(o,A.n(o).i("bo<2>")).aL(0,a) -o=this.p1 -o===$&&A.a() -s=o.length -r=this.p3 -q=0 -for(;q0){q=l.P.b -q.toString -n=t.U -n.a(q) -m=l.L.b -m.toString -n.a(m) -if(l.a3!==r){q.a=new A.h(o.bc(),0) -q.e=!0 -o.b=o.bc()+l.P.gC().a}if(l.a3>0){m.a=B.f -m.e=!0}}else o.b=o.bc()-l.au -r=l.a3 -l.U=r!==k.c -l.a0=r>0 -l.fy=s.a(A.r.prototype.gab.call(l)).bx(new A.L(o.bc(),k.a))}, -b1(a,b){this.bB(new A.aFW(this,b,a))}, -eT(a){if(!(a.b instanceof A.fP))a.b=new A.fP(null,null,B.f)}, -da(a,b){var s,r,q=this.dn$ -for(s=t.U;q!=null;){r=q.b -r.toString -s.a(r) -if(!r.e){q=r.cS$ -continue}if(A.aSG(q,a,b))return!0 -q=r.cS$}if(A.aSG(this.L,a,b))return!0 -if(A.aSG(this.P,a,b))return!0 -return!1}, -aP(a){var s -this.a7T(a) -for(s=this.n,s=new A.db(s,s.r,s.e);s.v();)s.d.aP(a)}, -az(){this.a7U() -for(var s=this.n,s=new A.db(s,s.r,s.e);s.v();)s.d.az()}, -h6(){this.bB(new A.aFZ(this))}, -bB(a){var s=this.L -if(s!=null)a.$1(s) -s=this.P -if(s!=null)a.$1(s) -this.xP(a)}, -fK(a){this.bB(new A.aG_(a))}} -A.aFX.prototype={ -$1(a){var s,r -t.x.a(a) -s=this.b -r=a.aO(B.bg,t.k.a(A.r.prototype.gab.call(s)).b,a.gcp()) -s=this.a -if(r>s.a)s.a=r}, -$S:18} -A.aFY.prototype={ -$1(a){var s,r,q,p,o,n,m,l=this,k=l.a,j=++k.d -t.x.a(a) -s=a.b -s.toString -t.U.a(s) -s.e=!1 -r=l.b -if(a===r.L||a===r.P||k.c>r.a3)return -if(k.c===0)q=j===r.dJ$+1?0:r.P.gC().a -else q=l.c -j=t.k -p=j.a(A.r.prototype.gab.call(r)) -o=k.a -a.cs(new A.al(0,p.b-q,o,o),!0) -if(k.b+q+a.gC().a>j.a(A.r.prototype.gab.call(r)).b){++k.c -k.b=r.L.gC().a+r.au -p=r.L.gC() -o=r.P.gC() -j=j.a(A.r.prototype.gab.call(r)) -n=k.a -a.cs(new A.al(0,j.b-(p.a+o.a),n,n),!0)}j=k.b -s.a=new A.h(j,0) -m=j+(a.gC().a+r.au) -k.b=m -r=k.c===r.a3 -s.e=r -if(r)l.d.b=m}, -$S:18} -A.aFW.prototype={ -$1(a){var s,r,q,p,o,n=this -t.x.a(a) -s=a.b -s.toString -t.U.a(s) -if(s.e){r=s.a.a8(0,n.b) -q=n.c -q.e4(a,r) -if(s.aJ$!=null||a===n.a.L){s=q.gcw() -q=new A.h(a.gC().a,0).a8(0,r) -p=new A.h(a.gC().a,a.gC().b).a8(0,r) -$.ab() -o=A.bt() -o.r=n.a.a5.gp() -s.nJ(q,p,o)}}}, -$S:18} -A.aFV.prototype={ -$2(a,b){return this.a.cT(a,b)}, -$S:19} -A.aFZ.prototype={ -$1(a){this.a.lo(t.x.a(a))}, -$S:18} -A.aG_.prototype={ -$1(a){var s -t.x.a(a) -s=a.b -s.toString -if(t.U.a(s).e)this.a.$1(a)}, -$S:18} -A.tP.prototype={ -N(){return"_CupertinoTextSelectionToolbarItemsSlot."+this.b}} -A.Ld.prototype={ -bF(){this.cE() -this.cv() -this.eG()}, -l(){var s=this,r=s.bl$ -if(r!=null)r.O(s.geq()) -s.bl$=null -s.aQ()}} -A.Lt.prototype={ -aP(a){var s,r,q -this.eV(a) -s=this.al$ -for(r=t.U;s!=null;){s.aP(a) -q=s.b -q.toString -s=r.a(q).aJ$}}, -az(){var s,r,q -this.eW() -s=this.al$ -for(r=t.U;s!=null;){s.az() -q=s.b -q.toString -s=r.a(q).aJ$}}} -A.aaT.prototype={} -A.nH.prototype={ -ah(){return new A.Hr()}, -gR(){return this.c}} -A.Hr.prototype={ -aiI(a){this.ar(new A.aB3(this))}, -aiK(a){var s -this.ar(new A.aB4(this)) -s=this.a.d -if(s!=null)s.$0()}, -aiG(){this.ar(new A.aB2(this))}, -K(a){var s=this,r=null,q=s.acA(a),p=s.d?B.O0.cV(a):B.D,o=s.a.d,n=A.aVh(B.a_,r,q,p,B.D,r,o,B.P_,1) -if(o!=null)return A.eP(r,n,B.W,!1,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,s.gaiF(),s.gaiH(),s.gaiJ(),r,r,r) -else return n}, -acA(a){var s,r=null,q=this.a,p=q.c -if(p!=null)return p -p=q.f -if(p==null){q=q.e -q.toString -q=A.aVo(a,q)}else q=p -s=A.ai(q,r,B.bd,r,B.abG.c3(this.a.d!=null?B.iS.cV(a):B.hh),r,r) -q=this.a.e -switch(q==null?r:q.b){case B.eL:case B.eM:case B.he:case B.hf:case B.qG:case B.md:case B.me:case B.iQ:case B.mg:case null:case void 0:return s -case B.mf:q=B.iS.cV(a) -$.ab() -p=A.bt() -p.d=B.oL -p.e=B.Jc -p.c=1 -p.b=B.bK -return A.a8(A.hY(r,r,r,new A.a3x(q,p,r),B.Q),13,13)}}} -A.aB3.prototype={ -$0(){return this.a.d=!0}, -$S:0} -A.aB4.prototype={ -$0(){return this.a.d=!1}, -$S:0} -A.aB2.prototype={ -$0(){return this.a.d=!1}, -$S:0} -A.a3x.prototype={ -b1(a,b){var s,r,q,p,o,n,m=this.c -m.r=this.b.gp() -s=a.a -J.b4(s.save()) -r=b.a -q=b.b -s.translate(r/2,q/2) -r=-r/2 -q=-q/2 -p=A.co($.ab().r) -p.b9(new A.ig(r,q+3.5)) -p.b9(new A.d3(r,q+1)) -p.b9(new A.Mw(new A.h(r+1,q),B.HI,0,!1,!0)) -p.b9(new A.d3(r+3.5,q)) -r=new Float64Array(16) -o=new A.bc(r) -o.ei() -o.a1l(1.5707963267948966) -for(n=0;n<4;++n){a.jE(p,m) -s.concat(A.aTF(A.zw(r)))}a.nJ(B.a3M,B.a3y,m) -a.nJ(B.a3K,B.a3x,m) -a.nJ(B.a3L,B.a3t,m) -s.restore()}, -eU(a){return!a.b.j(0,this.b)}} -A.AW.prototype={ -gao3(){var s=B.ab1.c3(this.b) -return s}, -cV(a){var s,r=this,q=r.a,p=q.a,o=p instanceof A.cL?p.cV(a):p,n=q.b -if(n instanceof A.cL)n=n.cV(a) -q=o.j(0,p)&&n.j(0,B.hh)?q:new A.Kv(o,n) -s=r.b -if(s instanceof A.cL)s=s.cV(a) -return new A.AW(q,s,A.pu(r.c,a),A.pu(r.d,a),A.pu(r.e,a),A.pu(r.f,a),A.pu(r.r,a),A.pu(r.w,a),A.pu(r.x,a),A.pu(r.y,a),A.pu(r.z,a))}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.AW)if(b.a.j(0,r.a))s=J.b(b.b,r.b) -return s}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.Kv.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.Kv&&b.a.j(0,s.a)&&b.b.j(0,s.b)}, -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a1E.prototype={} -A.AX.prototype={ -K(a){var s=null -return new A.C5(this,A.qI(this.d,A.aVj(s,this.c.gf3(),s,s,s,s,s,s,s),s),s)}, -gR(){return this.d}} -A.C5.prototype={ -qa(a,b){return new A.AX(this.w.c,b,null)}, -cI(a){return!this.w.c.j(0,a.w.c)}} -A.vc.prototype={ -gf3(){var s=this.b -return s==null?this.x.b:s}, -gjO(){var s=this.c -return s==null?this.x.c:s}, -gls(){var s=null,r=this.d -if(r==null){r=this.x.w -r=new A.aBd(r.a,r.b,B.ak9,this.gf3(),s,s,s,s,s,s,s,s,s)}return r}, -glT(){var s=this.e -return s==null?this.x.d:s}, -gkF(){var s=this.f -return s==null?this.x.e:s}, -gor(){var s=this.r -return s==null?this.x.f:s}, -gkR(){var s=this.w -return s==null?!1:s}, -cV(a){var s,r,q=this,p=new A.aeW(a),o=q.giU(),n=p.$1(q.b),m=p.$1(q.c),l=q.d -l=l==null?null:l.cV(a) -s=p.$1(q.e) -r=p.$1(q.f) -p=p.$1(q.r) -q.gkR() -return A.b6H(o,n,m,l,s,r,p,!1,q.x.ay8(a,q.d==null))}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.vc)if(b.giU()==r.giU())if(b.gf3().j(0,r.gf3()))if(b.gjO().j(0,r.gjO()))if(b.gls().j(0,r.gls()))if(b.glT().j(0,r.glT()))if(b.gkF().j(0,r.gkF())){s=b.gor().j(0,r.gor()) -if(s){b.gkR() -r.gkR()}}return s}, -gt(a){var s=this,r=s.giU(),q=s.gf3(),p=s.gjO(),o=s.gls(),n=s.glT(),m=s.gkF(),l=s.gor() -s.gkR() -return A.N(r,q,p,o,n,m,l,!1,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.aeW.prototype={ -$1(a){return a instanceof A.cL?a.cV(this.a):a}, -$S:143} -A.ri.prototype={ -cV(a){var s=this,r=new A.aoP(a),q=s.giU(),p=r.$1(s.gf3()),o=r.$1(s.gjO()),n=s.gls() -n=n==null?null:n.cV(a) -return new A.ri(q,p,o,n,r.$1(s.glT()),r.$1(s.gkF()),r.$1(s.gor()),s.gkR())}, -aqU(a,b,c,d,e,f,g,h){var s=this,r=s.giU(),q=s.gf3(),p=s.gjO(),o=s.glT(),n=s.gkF(),m=s.gor(),l=s.gkR() -return new A.ri(r,q,p,h,o,n,m,l)}, -J0(a){var s=null -return this.aqU(s,s,s,s,s,s,s,a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.ri&&b.giU()==s.giU()&&J.b(b.gf3(),s.gf3())&&J.b(b.gjO(),s.gjO())&&J.b(b.gls(),s.gls())&&J.b(b.glT(),s.glT())&&J.b(b.gkF(),s.gkF())&&b.gkR()==s.gkR()}, -gt(a){var s=this -return A.N(s.giU(),s.gf3(),s.gjO(),s.gls(),s.glT(),s.gkF(),s.gkR(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -giU(){return this.a}, -gf3(){return this.b}, -gjO(){return this.c}, -gls(){return this.d}, -glT(){return this.e}, -gkF(){return this.f}, -gor(){return this.r}, -gkR(){return this.w}} -A.aoP.prototype={ -$1(a){return a instanceof A.cL?a.cV(this.a):a}, -$S:143} -A.a1H.prototype={ -ay8(a,b){var s,r,q=this,p=new A.aB8(a),o=p.$1(q.b),n=p.$1(q.c),m=p.$1(q.d),l=p.$1(q.e) -p=p.$1(q.f) -s=q.w -if(b){r=s.a -if(r instanceof A.cL)r=r.cV(a) -s=s.b -s=new A.a1F(r,s instanceof A.cL?s.cV(a):s)}return new A.a1H(q.a,o,n,m,l,p,!1,s)}} -A.aB8.prototype={ -$1(a){return a instanceof A.cL?a.cV(this.a):a}, -$S:72} -A.a1F.prototype={} -A.aBd.prototype={} -A.a1G.prototype={} -A.p1.prototype={ -wZ(a,b){var s=A.ku.prototype.gp.call(this) -s.toString -return J.aUD(s)}, -k(a){return this.wZ(0,B.bq)}} -A.vv.prototype={} -A.Qa.prototype={} -A.Q9.prototype={} -A.c9.prototype={ -arY(){var s,r,q,p,o,n,m,l=this.a -if(t.vp.b(l)){s=l.gwt() -r=l.k(0) -l=null -if(typeof s=="string"&&s!==r){q=r.length -p=s.length -if(q>p){o=B.c.BS(r,s) -if(o===q-p&&o>2&&B.c.a6(r,o-2,o)===": "){n=B.c.a6(r,0,o-2) -m=B.c.ik(n," Failed assertion:") -if(m>=0)n=B.c.a6(n,0,m)+"\n"+B.c.cD(n,m+1) -l=B.c.D6(s)+"\n"+n}}}if(l==null)l=r}else if(!(typeof l=="string"))l=t.Lt.b(l)||t.VI.b(l)?J.cB(l):" "+A.j(l) -l=B.c.D6(l) -return l.length===0?" ":l}, -ga3Q(){return A.aVw(new A.ahZ(this).$0(),!0)}, -dk(){return"Exception caught by "+this.c}, -k(a){A.bd5(null,B.Ol,this) -return""}} -A.ahZ.prototype={ -$0(){return B.c.ayO(this.a.arY().split("\n")[0])}, -$S:84} -A.vz.prototype={ -gwt(){return this.k(0)}, -dk(){return"FlutterError"}, -k(a){var s,r=new A.cN(this.a,t.ow) -if(!r.gan(0)){s=r.gad(0) -s=A.ku.prototype.gp.call(s) -s.toString -s=J.aUD(s)}else s="FlutterError" -return s}, -$ipG:1} -A.ai_.prototype={ -$1(a){return A.bZ(a)}, -$S:436} -A.ai0.prototype={ -$1(a){return a+1}, -$S:80} -A.ai1.prototype={ -$1(a){return a+1}, -$S:80} -A.aOL.prototype={ -$1(a){return B.c.q(a,"StackTrace.current")||B.c.q(a,"dart-sdk/lib/_internal")||B.c.q(a,"dart:sdk_internal")}, -$S:26} -A.PO.prototype={} -A.a2B.prototype={} -A.a2D.prototype={} -A.a2C.prototype={} -A.ML.prototype={ -hH(){}, -pE(){}, -avk(a){var s;++this.c -s=a.$0() -s.h9(new A.ad8(this)) -return s}, -Mc(){}, -k(a){return""}} -A.ad8.prototype={ -$0(){var s,r,q,p=this.a -if(--p.c<=0)try{p.a7m() -if(p.fy$.c!==0)p.QB()}catch(q){s=A.aj(q) -r=A.b3(q) -p=A.bZ("while handling pending events") -A.dE(new A.c9(s,r,"foundation",p,null,!1))}}, -$S:13} -A.ae.prototype={} -A.aZ.prototype={ -a9(a){var s,r,q,p,o=this -if(o.geE()===o.gdG().length){s=t.Nw -if(o.geE()===0)o.sdG(A.bO(1,null,!1,s)) -else{r=A.bO(o.gdG().length*2,null,!1,s) -for(q=0;q0){r.gdG()[s]=null -r.snj(r.gnj()+1)}else r.Tw(s) -break}}, -l(){this.sdG($.af()) -this.seE(0)}, -a7(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this -if(f.geE()===0)return -f.slN(f.glN()+1) -p=f.geE() -for(s=0;s0){l=f.geE()-f.gnj() -if(l*2<=f.gdG().length){k=A.bO(l,null,!1,t.Nw) -for(j=0,s=0;s#"+A.bF(this)+"("+A.j(this.gp())+")"}} -A.vm.prototype={ -N(){return"DiagnosticLevel."+this.b}} -A.lQ.prototype={ -N(){return"DiagnosticsTreeStyle."+this.b}} -A.aEY.prototype={} -A.ds.prototype={ -wZ(a,b){return this.kI(0)}, -k(a){return this.wZ(0,B.bq)}} -A.ku.prototype={ -gp(){this.aho() -return this.at}, -aho(){return}} -A.B4.prototype={} -A.PM.prototype={} -A.ad.prototype={ -dk(){return"#"+A.bF(this)}, -wZ(a,b){var s=this.dk() -return s}, -k(a){return this.wZ(0,B.bq)}} -A.afr.prototype={ -dk(){return"#"+A.bF(this)}} -A.iX.prototype={ -k(a){return this.a1y(B.mq).kI(0)}, -dk(){return"#"+A.bF(this)}, -ayu(a,b){return A.aQA(a,b,this)}, -a1y(a){return this.ayu(null,a)}} -A.B5.prototype={} -A.a1Z.prototype={} -A.h5.prototype={} -A.RC.prototype={} -A.hc.prototype={ -k(a){return"[#"+A.bF(this)+"]"}} -A.e2.prototype={ -j(a,b){if(b==null)return!1 -if(J.S(b)!==A.l(this))return!1 -return A.n(this).i("e2").b(b)&&J.b(b.a,this.a)}, -gt(a){return A.N(A.l(this),this.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=A.n(this),r=s.i("e2.T"),q=this.a,p=A.bM(r)===B.p1?"<'"+A.j(q)+"'>":"<"+A.j(q)+">" -if(A.l(this)===A.bM(s.i("e2")))return"["+p+"]" -return"["+A.bM(r).k(0)+" "+p+"]"}} -A.j1.prototype={} -A.Ct.prototype={} -A.bp.prototype={ -gqX(){var s,r=this,q=r.c -if(q===$){s=A.dv(r.$ti.c) -r.c!==$&&A.aK() -r.c=s -q=s}return q}, -J(a,b){var s=B.b.J(this.a,b) -if(s){this.b=!0 -this.gqX().aa(0)}return s}, -aa(a){this.b=!1 -B.b.aa(this.a) -this.gqX().aa(0)}, -q(a,b){var s=this,r=s.a -if(r.length<3)return B.b.q(r,b) -if(s.b){s.gqX().a_(0,r) -s.b=!1}return s.gqX().q(0,b)}, -gai(a){var s=this.a -return new J.cO(s,s.length,A.a6(s).i("cO<1>"))}, -gan(a){return this.a.length===0}, -gc6(a){return this.a.length!==0}, -eR(a,b){var s=this.a,r=A.a6(s) -return b?A.c(s.slice(0),r):J.o0(s.slice(0),r.c)}, -eA(a){return this.eR(0,!0)}} -A.eQ.prototype={ -G(a,b){var s=this.a,r=s.h(0,b) -s.m(0,b,(r==null?0:r)+1)}, -J(a,b){var s=this.a,r=s.h(0,b) -if(r==null)return!1 -if(r===1)s.J(0,b) -else s.m(0,b,r-1) -return!0}, -q(a,b){return this.a.aN(b)}, -gai(a){var s=this.a -return new A.eS(s,s.r,s.e)}, -gan(a){return this.a.a===0}, -gc6(a){return this.a.a!==0}, -eR(a,b){var s=this.a,r=s.r,q=s.e -return A.aRh(s.a,new A.ajl(this,new A.eS(s,r,q)),b,this.$ti.c)}, -eA(a){return this.eR(0,!0)}} -A.ajl.prototype={ -$1(a){var s=this.b -s.v() -return s.d}, -$S(){return this.a.$ti.i("1(o)")}} -A.Dx.prototype={ -axl(a,b){var s=this.a,r=s==null?$.M8():s,q=r.ln(0,a,A.h7(a),b) -if(q===s)return this -return new A.Dx(q)}, -h(a,b){var s=this.a -return s==null?null:s.mI(0,b,J.D(b))}} -A.aLg.prototype={} -A.a2N.prototype={ -ln(a,b,c,d){var s,r,q,p,o=B.j.r5(c,a)&31,n=this.a,m=n[o] -if(m==null)m=$.M8() -s=m.ln(a+5,b,c,d) -if(s===m)n=this -else{r=n.length -q=A.bO(r,null,!1,t.X) -for(p=0;p>>0,a1=c.a,a2=(a1&a0-1)>>>0,a3=a2-(a2>>>1&1431655765) -a3=(a3&858993459)+(a3>>>2&858993459) -a3=a3+(a3>>>4)&252645135 -a3+=a3>>>8 -s=a3+(a3>>>16)&63 -if((a1&a0)>>>0!==0){a=c.b -a2=2*s -r=a[a2] -q=a2+1 -p=a[q] -if(r==null){o=p.ln(a4+5,a5,a6,a7) -if(o===p)return c -a2=a.length -n=A.bO(a2,b,!1,t.X) -for(m=0;m>>1&1431655765) -a3=(a3&858993459)+(a3>>>2&858993459) -a3=a3+(a3>>>4)&252645135 -a3+=a3>>>8 -i=a3+(a3>>>16)&63 -if(i>=16){a1=c.agy(a4) -a1.a[a]=$.M8().ln(a4+5,a5,a6,a7) -return a1}else{h=2*s -g=2*i -f=A.bO(g+2,b,!1,t.X) -for(a=c.b,e=0;e>>0,f)}}}, -mI(a,b,c){var s,r,q,p,o=1<<(B.j.r5(c,a)&31)>>>0,n=this.a -if((n&o)>>>0===0)return null -n=(n&o-1)>>>0 -s=n-(n>>>1&1431655765) -s=(s&858993459)+(s>>>2&858993459) -s=s+(s>>>4)&252645135 -s+=s>>>8 -n=this.b -r=2*(s+(s>>>16)&63) -q=n[r] -p=n[r+1] -if(q==null)return p.mI(a+5,b,c) -if(b===q)return p -return null}, -agy(a){var s,r,q,p,o,n,m,l=A.bO(32,null,!1,t.X) -for(s=this.a,r=a+5,q=this.b,p=0,o=0;o<32;++o)if((B.j.r5(s,o)&1)!==0){n=q[p] -m=p+1 -if(n==null)l[o]=q[m] -else l[o]=$.M8().ln(r,n,n.gt(n),q[m]) -p+=2}return new A.a2N(l)}} -A.I_.prototype={ -ln(a,b,c,d){var s,r,q,p,o,n,m,l,k,j=this,i=j.a -if(c===i){s=j.Sc(b) -if(s!==-1){i=j.b -r=s+1 -if(i[r]==d)i=j -else{q=i.length -p=A.bO(q,null,!1,t.X) -for(o=0;o>>0,k).ln(a,b,c,d)}, -mI(a,b,c){var s=this.Sc(b) -return s<0?null:this.b[s+1]}, -Sc(a){var s,r,q=this.b,p=q.length -for(s=J.px(a),r=0;r=s.a.length)s.Ha(q) -B.a0.jY(s.a,s.b,q,a) -s.b+=r}, -u6(a,b,c){var s=this,r=c==null?s.e.length:c,q=s.b+(r-b) -if(q>=s.a.length)s.Ha(q) -B.a0.jY(s.a,s.b,q,a) -s.b=q}, -a8K(a){return this.u6(a,0,null)}, -Ha(a){var s=this.a,r=s.length,q=a==null?0:a,p=Math.max(q,r*2),o=new Uint8Array(p) -B.a0.jY(o,0,r,s) -this.a=o}, -akq(){return this.Ha(null)}, -kJ(a){var s=B.j.cn(this.b,a) -if(s!==0)this.u6($.b3B(),0,a-s)}, -nH(){var s,r=this -if(r.c)throw A.i(A.aL("done() must not be called more than once on the same "+A.l(r).k(0)+".")) -s=J.zC(B.a0.gcF(r.a),0,r.b) -r.a=new Uint8Array(0) -r.c=!0 -return s}} -A.DK.prototype={ -qg(a){return this.a.getUint8(this.b++)}, -Ds(a){var s=this.b,r=$.ei() -B.aU.ML(this.a,s,r)}, -qh(a){var s=this.a,r=J.jr(B.aU.gcF(s),s.byteOffset+this.b,a) -this.b+=a -return r}, -Dt(a){var s,r,q=this -q.kJ(8) -s=q.a -r=J.aQ_(B.aU.gcF(s),s.byteOffset+q.b,a) -q.b=q.b+8*a -return r}, -kJ(a){var s=this.b,r=B.j.cn(s,a) -if(r!==0)this.b=s+(a-r)}} -A.k5.prototype={ -gt(a){var s=this -return A.N(s.b,s.d,s.f,s.r,s.w,s.x,s.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.k5&&b.b===s.b&&b.d===s.d&&b.f===s.f&&b.r===s.r&&b.w===s.w&&b.x===s.x&&b.a===s.a}, -k(a){var s=this -return"StackFrame(#"+s.b+", "+s.c+":"+s.d+"/"+s.e+":"+s.f+":"+s.r+", className: "+s.w+", method: "+s.x+")"}} -A.avP.prototype={ -$1(a){return a.length!==0}, -$S:26} -A.cF.prototype={ -hP(a,b,c){var s,r=a.$1(this.a) -A:{if(c.i("av<0>").b(r)){s=r -break A}if(c.b(r)){s=new A.cF(r,c.i("cF<0>")) -break A}s=null}return s}, -c1(a,b){return this.hP(a,null,b)}, -h9(a){var s,r,q,p,o,n,m=this -try{s=a.$0() -if(t.L0.b(s)){p=s.c1(new A.awe(m),m.$ti.c) -return p}return m}catch(o){r=A.aj(o) -q=A.b3(o) -p=A.aNE(r,q) -n=new A.ax($.as,m.$ti.i("ax<1>")) -n.oI(p) -return n}}, -$iav:1} -A.awe.prototype={ -$1(a){return this.a.a}, -$S(){return this.a.$ti.i("1(@)")}} -A.Qv.prototype={ -N(){return"GestureDisposition."+this.b}} -A.du.prototype={} -A.Qu.prototype={} -A.yp.prototype={ -k(a){var s=this,r=s.a -r=r.length===0?"":new A.am(r,new A.aCC(s),A.a6(r).i("am<1,m>")).bJ(0,", ") -if(s.b)r+=" [open]" -if(s.c)r+=" [held]" -if(s.d)r+=" [hasPendingSweep]" -return r.charCodeAt(0)==0?r:r}} -A.aCC.prototype={ -$1(a){if(a===this.a.e)return a.k(0)+" (eager winner)" -return a.k(0)}, -$S:434} -A.aiO.prototype={ -I8(a,b,c){this.a.cl(b,new A.aiQ()).a.push(c) -return new A.Qu(this,b,c)}, -apG(a){var s=this.a.h(0,a) -if(s==null)return -s.b=!1 -this.Vh(a,s)}, -Oz(a){var s,r=this.a,q=r.h(0,a) -if(q==null)return -if(q.c){q.d=!0 -return}r.J(0,a) -r=q.a -if(r.length!==0){B.b.gad(r).jp(a) -for(s=1;sr.CW){r.dy=B.lj -r.af(B.cr)}else if(a.gm1().gvL()>A.pw(a.gdd(),r.b))r.af(B.aT) -if(s>r.CW&&r.dy===B.K3){r.dy=B.lj -if(r.at!=null)r.d0("onStart",new A.aio(r,s))}}r.E0(a)}, -jp(a){var s=this,r=s.dy -if(r===B.li)r=s.dy=B.K3 -if(s.at!=null&&r===B.lj)s.d0("onStart",new A.aim(s))}, -vJ(a){var s=this,r=s.dy,q=r===B.lj||r===B.aje -if(r===B.li){s.af(B.aT) -return}if(q&&s.ch!=null)if(s.ch!=null)s.d0("onEnd",new A.ain(s)) -s.dy=B.pf}, -j9(a){this.k0(a) -this.vJ(a)}} -A.aio.prototype={ -$0(){var s=this.a,r=s.at -r.toString -s=s.db -s===$&&A.a() -return r.$1(new A.qv(s.b,s.a,this.b))}, -$S:0} -A.aim.prototype={ -$0(){var s,r=this.a,q=r.at -q.toString -s=r.dx -s===$&&A.a() -r=r.db -r===$&&A.a() -return q.$1(new A.qv(r.b,r.a,s))}, -$S:0} -A.ain.prototype={ -$0(){var s=this.a,r=s.ch -r.toString -s=s.db -s===$&&A.a() -return r.$1(new A.qv(s.b,s.a,0))}, -$S:0} -A.a2M.prototype={} -A.vl.prototype={ -gt(a){return A.N(this.a,23,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){if(b==null)return!1 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.vl&&b.a==this.a}, -k(a){return"DeviceGestureSettings(touchSlop: "+A.j(this.a)+")"}} -A.i5.prototype={ -k(a){return"#"+A.bF(this)+"("+this.a.k(0)+")"}} -A.z9.prototype={} -A.It.prototype={ -f2(a){return this.a.avP(a)}} -A.yJ.prototype={ -f2(a){var s,r,q,p,o,n,m=new Float64Array(16),l=new A.bc(m) -l.dl(a) -s=this.a -r=s.a -s=s.b -q=m[3] -m[0]=m[0]+r*q -m[1]=m[1]+s*q -m[2]=m[2]+0*q -m[3]=q -p=m[7] -m[4]=m[4]+r*p -m[5]=m[5]+s*p -m[6]=m[6]+0*p -m[7]=p -o=m[11] -m[8]=m[8]+r*o -m[9]=m[9]+s*o -m[10]=m[10]+0*o -m[11]=o -n=m[15] -m[12]=m[12]+r*n -m[13]=m[13]+s*n -m[14]=m[14]+0*n -m[15]=n -return l}} -A.m3.prototype={ -Rt(){var s,r,q,p,o=this.c -if(o.length===0)return -s=this.b -r=B.b.gaC(s) -for(q=o.length,p=0;p":B.b.bJ(s,", "))+")"}} -A.RE.prototype={} -A.w1.prototype={} -A.CE.prototype={} -A.w0.prototype={} -A.jO.prototype={ -im(a){var s=this -switch(a.ge7()){case 1:if(s.ok==null&&s.p1==null&&s.p3==null&&s.p2==null&&s.p4==null&&s.RG==null&&s.R8==null)return!1 -break -case 2:return!1 -case 4:return!1 -default:return!1}return s.qt(a)}, -Jp(){var s,r=this -r.af(B.cr) -r.k2=!0 -s=r.CW -s.toString -r.Ob(s) -r.aab()}, -ZK(a){var s,r=this -if(!a.goG()){if(t.pY.b(a)){s=new A.kc(a.gdd(),A.bO(20,null,!1,t.av)) -r.a5=s -s.zV(a.gja(),a.gdD())}if(t.n2.b(a)){s=r.a5 -s.toString -s.zV(a.gja(),a.gdD())}}if(t.oN.b(a)){if(r.k2)r.aa9(a) -else r.af(B.aT) -r.GE()}else if(t.Ko.b(a)){r.Pu() -r.GE()}else if(t.pY.b(a)){r.k3=new A.eU(a.gdD(),a.gbV()) -r.k4=a.ge7() -r.aa8(a)}else if(t.n2.b(a))if(a.ge7()!==r.k4&&!r.k2){r.af(B.aT) -s=r.CW -s.toString -r.k0(s)}else if(r.k2)r.aaa(a)}, -aa8(a){var s,r=this,q=r.k3,p=q.b -q=q.a -s=r.e.h(0,a.gbM()) -s.toString -switch(r.k4){case 1:if(r.ok!=null)r.d0("onLongPressDown",new A.alj(r,new A.RE(p,q,s))) -break -case 2:break -case 4:break}}, -Pu(){var s,r=this -if(r.ch===B.jg)switch(r.k4){case 1:s=r.p1 -if(s!=null)r.d0("onLongPressCancel",s) -break -case 2:break -case 4:break}}, -aab(){var s,r,q=this -switch(q.k4){case 1:if(q.p3!=null){s=q.k3 -r=s.b -s=s.a -q.d0("onLongPressStart",new A.alm(q,new A.w1(r,s)))}s=q.p2 -if(s!=null)q.d0("onLongPress",s) -break -case 2:break -case 4:break}}, -aaa(a){var s=this,r=a.gbV(),q=a.gdD(),p=a.gbV().ac(0,s.k3.b),o=a.gdD().ac(0,s.k3.a) -switch(s.k4){case 1:if(s.p4!=null)s.d0("onLongPressMoveUpdate",new A.all(s,new A.CE(r,q,p,o))) -break -case 2:break -case 4:break}}, -aa9(a){var s=this,r=s.a5.xn(),q=r==null?B.dG:new A.iE(r.a),p=a.gbV(),o=a.gdD() -s.a5=null -switch(s.k4){case 1:if(s.RG!=null)s.d0("onLongPressEnd",new A.alk(s,new A.w0(p,o,q))) -p=s.R8 -if(p!=null)s.d0("onLongPressUp",p) -break -case 2:break -case 4:break}}, -GE(){var s=this -s.k2=!1 -s.a5=s.k4=s.k3=null}, -af(a){var s=this -if(a===B.aT)if(s.k2)s.GE() -else s.Pu() -s.Oa(a)}, -jp(a){}} -A.alj.prototype={ -$0(){return this.a.ok.$1(this.b)}, -$S:0} -A.alm.prototype={ -$0(){return this.a.p3.$1(this.b)}, -$S:0} -A.all.prototype={ -$0(){return this.a.p4.$1(this.b)}, -$S:0} -A.alk.prototype={ -$0(){return this.a.RG.$1(this.b)}, -$S:0} -A.a3B.prototype={} -A.a3C.prototype={} -A.a3D.prototype={} -A.a3E.prototype={} -A.nm.prototype={ -h(a,b){return this.c[b+this.a]}, -m(a,b,c){var s=this.c -s.$flags&2&&A.az(s) -s[b+this.a]=c}, -ak(a,b){var s,r,q,p,o,n,m -for(s=this.b,r=this.c,q=this.a,p=b.c,o=b.a,n=0,m=0;m") -r=A.aa(new A.am(r,new A.apX(),q),q.i("aE.E")) -s=A.o_(r,"[","]") -r=this.b -r===$&&A.a() -return"PolynomialFit("+s+", confidence: "+B.d.aq(r,3)+")"}} -A.apX.prototype={ -$1(a){return B.d.ayy(a,3)}, -$S:408} -A.Rv.prototype={ -NF(a7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5=this.a,a6=a5.length -if(a7>a6)return null -s=a7+1 -r=new Float64Array(s) -q=new A.DA(r) -p=s*a6 -o=new Float64Array(p) -for(n=this.c,m=0*a6,l=0;l=0;--b){r[b]=new A.nm(b*a6,a6,p).ak(0,c) -for(o=b*s,j=k;j>b;--j)r[b]=r[b]-m[o+j]*r[j] -r[b]=r[b]/m[o+b]}for(a=0,l=0;lr){r=p -s=q}}else{r.toString -if(p0:b.b>0,o=q?b.a:b.b,n=this.acT(a,p) -if(n===c)return o -else{n.toString -s=this.G_(a,n,p) -r=this.G_(a,c,p) -if(p){q=r+o -if(q>s)return q-s -else return 0}else{q=r+o -if(qn&&Math.abs(a.d.b)>s))return null -q=o.dy -if(q==null)q=8000 -p=A.E(r,-q,q) -r=o.k1 -r===$&&A.a() -return new A.hu(r.b,r.a,new A.iE(new A.h(0,p)),p)}, -KD(a,b){var s=this.ok -s===$&&A.a() -return Math.abs(s)>A.pw(a,this.b)}, -uu(a){return new A.h(0,a.b)}, -uw(a){return a.b}, -FZ(){return B.fN}} -A.i6.prototype={ -IQ(a,b){var s,r,q,p,o=this,n=o.dx -if(n==null)n=50 -s=o.db -if(s==null)s=A.pw(b,o.b) -r=a.a.a -if(!(Math.abs(r)>n&&Math.abs(a.d.a)>s))return null -q=o.dy -if(q==null)q=8000 -p=A.E(r,-q,q) -r=o.k1 -r===$&&A.a() -return new A.hu(r.b,r.a,new A.iE(new A.h(p,0)),p)}, -KD(a,b){var s=this.ok -s===$&&A.a() -return Math.abs(s)>A.pw(a,this.b)}, -uu(a){return new A.h(a.a,0)}, -uw(a){return a.a}, -FZ(){return B.fM}} -A.jV.prototype={ -IQ(a,b){var s,r,q,p=this,o=p.dx,n=o==null,m=n?50:o,l=p.db -if(l==null)l=A.pw(b,p.b) -s=a.a -if(!(s.gvL()>m*m&&a.d.gvL()>l*l))return null -n=n?50:o -r=p.dy -if(r==null)r=8000 -q=new A.iE(s).apz(n,r) -r=p.k1 -r===$&&A.a() -return new A.hu(r.b,r.a,q,null)}, -KD(a,b){var s=this.ok -s===$&&A.a() -return Math.abs(s)>A.aTf(a,this.b)}, -uu(a){return a}, -uw(a){return null}} -A.a27.prototype={ -N(){return"_DragDirection."+this.b}} -A.a1r.prototype={ -aiN(){this.a=!0}} -A.z4.prototype={ -k0(a){if(this.r){this.r=!1 -$.fq.aB$.a16(this.b,a)}}, -a_M(a,b){return a.gbV().ac(0,this.d).gd3()<=b}} -A.jE.prototype={ -im(a){var s,r=this -if(r.y==null)if(r.f==null&&r.r==null&&r.w==null)return!1 -s=r.qt(a) -if(!s)r.oM() -return s}, -iQ(a){var s,r,q=this,p=q.y -if(p!=null)if(!p.a_M(a,100))return -else{p=q.y -if(!p.f.a||a.ge7()!==p.e){q.oM() -return q.Vg(a)}else if(q.f!=null){p=a.gbV() -s=a.gdD() -r=q.e.h(0,a.gbM()) -r.toString -q.d0("onDoubleTapDown",new A.ag3(q,new A.oP(p,s,r)))}}q.Vg(a)}, -Vg(a){var s,r,q,p,o,n,m=this -m.UM() -s=$.fq.n$.I8(0,a.gbM(),m) -r=a.gbM() -q=a.gbV() -p=a.ge7() -o=new A.a1r() -A.ck(B.OL,o.gaiM()) -n=new A.z4(r,s,q,p,o) -m.z.m(0,a.gbM(),n) -o=a.gcC() -if(!n.r){n.r=!0 -$.fq.aB$.Wx(r,m.gyW(),o)}}, -ahK(a){var s,r=this,q=r.z,p=q.h(0,a.gbM()) -p.toString -if(t.oN.b(a)){s=r.y -if(s==null){if(r.x==null)r.x=A.ck(B.aM,r.gahL()) -s=p.b -$.fq.n$.BI(s) -p.k0(r.gyW()) -q.J(0,s) -r.PI() -r.y=p}else{s=s.c -s.a.r1(s.b,s.c,B.cr) -s=p.c -s.a.r1(s.b,s.c,B.cr) -p.k0(r.gyW()) -q.J(0,p.b) -q=r.r -if(q!=null)r.d0("onDoubleTap",q) -r.oM()}}else if(t.n2.b(a)){if(!p.a_M(a,18))r.uO(p)}else if(t.Ko.b(a))r.uO(p)}, -jp(a){}, -j9(a){var s,r=this,q=r.z.h(0,a) -if(q==null){s=r.y -s=s!=null&&s.b===a}else s=!1 -if(s)q=r.y -if(q!=null)r.uO(q)}, -uO(a){var s,r=this,q=r.z -q.J(0,a.b) -s=a.c -s.a.r1(s.b,s.c,B.aT) -a.k0(r.gyW()) -s=r.y -if(s!=null)if(a===s)r.oM() -else{r.Po() -if(q.a===0)r.oM()}}, -l(){this.oM() -this.NY()}, -oM(){var s,r=this -r.UM() -if(r.y!=null){if(r.z.a!==0)r.Po() -s=r.y -s.toString -r.y=null -r.uO(s) -$.fq.n$.axM(s.b)}r.PI()}, -PI(){var s=this.z,r=A.n(s).i("bo<2>") -s=A.aa(new A.bo(s,r),r.i("y.E")) -B.b.aL(s,this.gakf())}, -UM(){var s=this.x -if(s!=null){s.bg() -this.x=null}}, -Po(){var s=this.w -if(s!=null)this.d0("onDoubleTapCancel",s)}} -A.ag3.prototype={ -$0(){return this.a.f.$1(this.b)}, -$S:0} -A.apS.prototype={ -Wx(a,b,c){this.a.cl(a,new A.apU()).m(0,b,c)}, -a16(a,b){var s=this.a,r=s.h(0,a) -r.J(0,b) -if(r.gan(r))s.J(0,a)}, -abf(a,b,c){var s,r,q,p,o -a=a -try{a=a.bW(c) -b.$1(a)}catch(p){s=A.aj(p) -r=A.b3(p) -q=null -o=A.bZ("while routing a pointer event") -A.dE(new A.c9(s,r,"gesture library",o,q,!1))}}, -a1m(a){var s=this,r=s.a.h(0,a.gbM()),q=s.b,p=t.Ld,o=t.iD,n=A.kM(q,p,o) -if(r!=null)s.Qk(a,r,A.kM(r,p,o)) -s.Qk(a,q,n)}, -Qk(a,b,c){c.aL(0,new A.apT(this,b,a))}} -A.apU.prototype={ -$0(){return A.t(t.Ld,t.iD)}, -$S:392} -A.apT.prototype={ -$2(a,b){if(this.b.aN(a))this.a.abf(this.c,a,b)}, -$S:391} -A.apV.prototype={ -o7(a,b){if(this.a!=null)return -this.b=a -this.a=b}, -af(a){var s,r,q,p,o,n=this,m=n.a -if(m==null){a.o8(!0) -return}try{p=n.b -p.toString -m.$1(p)}catch(o){s=A.aj(o) -r=A.b3(o) -q=null -m=A.bZ("while resolving a PointerSignalEvent") -A.dE(new A.c9(s,r,"gesture library",m,q,!1))}n.b=n.a=null}} -A.PZ.prototype={ -N(){return"DragStartBehavior."+this.b}} -A.TF.prototype={ -N(){return"MultitouchDragStrategy."+this.b}} -A.dj.prototype={ -Ia(a){}, -Id(a){var s=this -s.e.m(0,a.gbM(),a.gdd()) -if(s.im(a))s.iQ(a) -else s.rU(a)}, -iQ(a){}, -rU(a){}, -im(a){var s=this.c -return(s==null||s.q(0,a.gdd()))&&this.d.$1(a.ge7())}, -KT(a){var s=this.c -return s==null||s.q(0,a.gdd())}, -l(){}, -a_p(a,b,c){var s,r,q,p,o,n=null -try{n=b.$0()}catch(p){s=A.aj(p) -r=A.b3(p) -q=null -o=A.bZ("while handling a gesture") -A.dE(new A.c9(s,r,"gesture",o,q,!1))}return n}, -d0(a,b){return this.a_p(a,b,null,t.z)}, -auq(a,b,c){return this.a_p(a,b,c,t.z)}} -A.Dp.prototype={ -iQ(a){this.xJ(a.gbM(),a.gcC())}, -rU(a){this.af(B.aT)}, -jp(a){}, -j9(a){}, -af(a){var s,r,q=this.f,p=A.aa(new A.bo(q,A.n(q).i("bo<2>")),t.SP) -q.aa(0) -for(q=p.length,s=0;s")),r=r.c;q.v();){p=q.d -if(p==null)p=r.a(p) -o=$.fq.aB$ -n=l.gpx() -o=o.a -m=o.h(0,p) -m.J(0,n) -if(m.gan(m))o.J(0,p)}s.aa(0) -l.NY()}, -xJ(a,b){var s,r=this -$.fq.aB$.Wx(a,r.gpx(),b) -r.r.G(0,a) -s=$.fq.n$.I8(0,a,r) -r.f.m(0,a,s)}, -k0(a){var s=this.r -if(s.q(0,a)){$.fq.aB$.a16(a,this.gpx()) -s.J(0,a) -if(s.a===0)this.vJ(a)}}, -E0(a){if(t.oN.b(a)||t.Ko.b(a)||t.WQ.b(a))this.k0(a.gbM())}} -A.BS.prototype={ -N(){return"GestureRecognizerState."+this.b}} -A.wx.prototype={ -gyf(){var s=this.b -s=s==null?null:s.a -return s==null?18:s}, -iQ(a){var s=this -s.xQ(a) -if(s.ch===B.dY){s.ch=B.jg -s.CW=a.gbM() -s.cx=new A.eU(a.gdD(),a.gbV()) -s.db=A.ck(s.at,new A.aq1(s,a))}}, -rU(a){if(!this.cy)this.O9(a)}, -iZ(a){var s,r,q,p,o,n=this -if(n.ch===B.jg&&a.gbM()===n.CW){s=!1 -if(!n.cy){r=n.ax -q=r===-1 -if(q)n.gyf() -p=n.R2(a) -r=p>(q?n.gyf():r) -s=r}o=!1 -if(n.cy){r=n.ay -q=r===-1 -if((q?n.gyf():r)!=null){p=n.R2(a) -if(q)r=n.gyf() -r.toString -r=p>r -o=r}}if(t.n2.b(a))r=s||o -else r=!1 -if(r){n.af(B.aT) -r=n.CW -r.toString -n.k0(r)}else n.ZK(a)}n.E0(a)}, -Jp(){}, -jp(a){if(a===this.CW){this.nm() -this.cy=!0}}, -j9(a){var s=this -if(a===s.CW&&s.ch===B.jg){s.nm() -s.ch=B.Pp}}, -vJ(a){var s=this -s.nm() -s.ch=B.dY -s.cx=null -s.cy=!1}, -l(){this.nm() -this.mY()}, -nm(){var s=this.db -if(s!=null){s.bg() -this.db=null}}, -R2(a){return a.gbV().ac(0,this.cx.b).gd3()}} -A.aq1.prototype={ -$0(){this.a.Jp() -return null}, -$S:0} -A.eU.prototype={ -a8(a,b){return new A.eU(this.a.a8(0,b.a),this.b.a8(0,b.b))}, -ac(a,b){return new A.eU(this.a.ac(0,b.a),this.b.ac(0,b.b))}, -k(a){return"OffsetPair(local: "+this.a.k(0)+", global: "+this.b.k(0)+")"}} -A.a2R.prototype={} -A.oP.prototype={} -A.mU.prototype={} -A.FQ.prototype={} -A.MK.prototype={ -ZP(a){}, -iQ(a){var s=this -if(s.ch===B.dY){if(s.k4!=null&&s.ok!=null)s.uR() -s.k4=a}if(s.k4!=null)s.a4W(a)}, -xJ(a,b){this.a4R(a,b)}, -ZK(a){var s,r=this -if(t.oN.b(a)){r.ok=a -r.Py()}else if(t.Ko.b(a)){r.af(B.aT) -if(r.k2){s=r.k4 -s.toString -r.BA(a,s,"")}r.uR()}else if(a.ge7()!==r.k4.ge7()){r.af(B.aT) -s=r.CW -s.toString -r.k0(s)}else if(t.n2.b(a))r.ZP(a)}, -af(a){var s,r=this -if(r.k3&&a===B.aT){s=r.k4 -s.toString -r.BA(null,s,"spontaneous") -r.uR()}r.Oa(a)}, -Jp(){this.Pp()}, -jp(a){var s=this -s.Ob(a) -if(a===s.CW){s.Pp() -s.k3=!0 -s.Py()}}, -j9(a){var s,r=this -r.a4X(a) -if(a===r.CW){if(r.k2){s=r.k4 -s.toString -r.BA(null,s,"forced")}r.uR()}}, -Pp(){var s,r=this -if(r.k2)return -s=r.k4 -s.toString -r.ZO(s) -r.k2=!0}, -Py(){var s,r,q=this -if(!q.k3||q.ok==null)return -s=q.k4 -s.toString -r=q.ok -r.toString -q.ZQ(s,r) -q.uR()}, -uR(){var s=this -s.k3=s.k2=!1 -s.k4=s.ok=null}} -A.hF.prototype={ -im(a){var s=this -switch(a.ge7()){case 1:if(s.n==null&&s.a0==null&&s.U==null&&s.a5==null&&s.a3==null)return!1 -break -case 2:if(s.au==null&&s.L==null&&s.P==null&&s.ao==null)return!1 -break -case 4:return!1 -default:return!1}return s.qt(a)}, -ZO(a){var s,r=this,q=a.gbV(),p=a.gdD(),o=r.e.h(0,a.gbM()) -o.toString -s=new A.oP(q,p,o) -switch(a.ge7()){case 1:if(r.n!=null)r.d0("onTapDown",new A.awo(r,s)) -break -case 2:if(r.L!=null)r.d0("onSecondaryTapDown",new A.awp(r,s)) -break -case 4:break}}, -ZQ(a,b){var s=this,r=b.gdd(),q=b.gbV(),p=b.gdD(),o=new A.mU(q,p,r) -switch(a.ge7()){case 1:if(s.U!=null)s.d0("onTapUp",new A.awr(s,o)) -r=s.a0 -if(r!=null)s.d0("onTap",r) -break -case 2:if(s.P!=null)s.d0("onSecondaryTapUp",new A.aws(s,o)) -if(s.au!=null)s.d0("onSecondaryTap",new A.awt(s)) -break -case 4:break}}, -ZP(a){var s,r=this -if(r.a3!=null&&a.ge7()===1){s=a.gbV() -a.gdD() -r.e.h(0,a.gbM()).toString -a.gm1() -r.d0("onTapMove",new A.awq(r,new A.FQ(s)))}}, -BA(a,b,c){var s,r=this,q=c===""?c:c+" " -switch(b.ge7()){case 1:s=r.a5 -if(s!=null)r.d0(q+"onTapCancel",s) -break -case 2:s=r.ao -if(s!=null)r.d0(q+"onSecondaryTapCancel",s) -break -case 4:break}}} -A.awo.prototype={ -$0(){return this.a.n.$1(this.b)}, -$S:0} -A.awp.prototype={ -$0(){return this.a.L.$1(this.b)}, -$S:0} -A.awr.prototype={ -$0(){return this.a.U.$1(this.b)}, -$S:0} -A.aws.prototype={ -$0(){return this.a.P.$1(this.b)}, -$S:0} -A.awt.prototype={ -$0(){return this.a.au.$0()}, -$S:0} -A.awq.prototype={ -$0(){return this.a.a3.$1(this.b)}, -$S:0} -A.a99.prototype={} -A.a9f.prototype={} -A.HF.prototype={ -N(){return"_DragState."+this.b}} -A.FK.prototype={} -A.FN.prototype={} -A.FM.prototype={} -A.FO.prototype={} -A.FL.prototype={} -A.Kn.prototype={ -iZ(a){var s,r,q=this -if(t.n2.b(a)){s=A.pw(a.gdd(),q.b) -r=q.Bc$ -if(a.gbV().ac(0,r.b).gd3()>s){q.yd() -q.vY$=q.vX$=null}}else if(t.oN.b(a)){q.rN$=a -if(q.m9$!=null){q.yd() -if(q.pq$==null)q.pq$=A.ck(B.aM,q.gaaG())}}else if(t.Ko.b(a))q.zv()}, -j9(a){this.zv()}, -agr(a){var s=this.vX$ -s.toString -if(a===s)return!0 -else return!1}, -ah_(a){var s=this.vY$ -if(s==null)return!1 -return a.ac(0,s).gd3()<=100}, -yd(){var s=this.pq$ -if(s!=null){s.bg() -this.pq$=null}}, -aaH(){}, -zv(){var s,r=this -r.yd() -r.vY$=r.Bc$=r.vX$=null -r.l3$=0 -r.rN$=r.m9$=null -s=r.Be$ -if(s!=null)s.$0()}} -A.A5.prototype={ -adV(){var s=this -if(s.db!=null)s.d0("onDragUpdate",new A.ad4(s)) -s.p3=s.p4=null}, -im(a){var s=this -if(s.go==null)switch(a.ge7()){case 1:if(s.CW==null&&s.cy==null&&s.db==null&&s.dx==null&&s.cx==null&&s.dy==null)return!1 -break -default:return!1}else if(a.gbM()!==s.go)return!1 -return s.qt(a)}, -iQ(a){var s,r=this -if(r.k2===B.ik){r.a6g(a) -r.go=a.gbM() -r.p2=r.p1=0 -r.k2=B.pd -s=a.gbV() -r.ok=r.k4=new A.eU(a.gdD(),s) -r.id=A.ck(B.bi,new A.ad5(r,a))}}, -rU(a){if(a.ge7()!==1)if(!this.fy)this.O9(a)}, -jp(a){var s,r=this -if(a!==r.go)return -r.zs() -r.R8.G(0,a) -s=r.m9$ -if(s!=null)r.Pw(s) -r.fy=!0 -s=r.k3 -if(s!=null&&r.ch)r.xZ(s) -s=r.k3 -if(s!=null&&!r.ch){r.k2=B.fO -r.xZ(s)}s=r.rN$ -if(s!=null)r.Px(s)}, -vJ(a){var s,r=this -switch(r.k2.a){case 0:r.UR() -r.af(B.aT) -break -case 1:if(r.fr)if(r.fy){if(r.m9$!=null){if(!r.R8.J(0,a))r.CQ(a,B.aT) -r.k2=B.fO -s=r.m9$ -s.toString -r.xZ(s) -r.Pr()}}else{r.UR() -r.af(B.aT)}else{s=r.rN$ -if(s!=null)r.Px(s)}break -case 2:r.Pr() -break}r.zs() -r.k3=null -r.k2=B.ik -r.fr=!1}, -iZ(a){var s,r,q,p,o,n,m=this -if(a.gbM()!==m.go)return -m.a7i(a) -if(t.n2.b(a)){s=A.pw(a.gdd(),m.b) -if(!m.fr){r=m.k4 -r===$&&A.a() -r=a.gbV().ac(0,r.b).gd3()>s}else r=!0 -m.fr=r -r=m.k2 -if(r===B.fO){m.ok=new A.eU(a.gdD(),a.gbV()) -m.aa6(a)}else if(r===B.pd){if(m.k3==null){if(a.gcC()==null)q=null -else{r=a.gcC() -r.toString -q=A.ra(r)}p=m.US(a.gpQ()) -r=m.p1 -r===$&&A.a() -o=A.wv(q,null,p,a.gdD()).gd3() -n=m.UT(p) -m.p1=r+o*J.ej(n==null?1:n) -r=m.p2 -r===$&&A.a() -m.p2=r+A.wv(q,null,a.gpQ(),a.gdD()).gd3()*B.j.gDT(1) -if(!m.S7(a.gdd()))r=m.fy&&Math.abs(m.p2)>A.aTf(a.gdd(),m.b) -else r=!0 -if(r){m.k3=a -if(m.ch){m.k2=B.fO -if(!m.fy)m.af(B.cr)}}}r=m.k3 -if(r!=null&&m.fy){m.k2=B.fO -m.xZ(r)}}}else if(t.oN.b(a)){r=m.k2 -if(r===B.pd)m.E0(a) -else if(r===B.fO)m.Hw(a.gbM())}else if(t.Ko.b(a)){m.k2=B.ik -m.Hw(a.gbM())}}, -j9(a){var s=this -if(a!==s.go)return -s.a7j(a) -s.zs() -s.Hw(a) -s.zc() -s.zb()}, -l(){this.zs() -this.zb() -this.a6h()}, -xZ(a){var s,r,q,p,o,n,m=this -if(!m.fy)return -if(m.at===B.W){s=m.k4 -s===$&&A.a() -r=a.gm1() -m.ok=m.k4=s.a8(0,new A.eU(a.gpQ(),r))}m.aa5(a) -q=a.gpQ() -if(!q.j(0,B.f)){m.ok=new A.eU(a.gdD(),a.gbV()) -s=m.k4 -s===$&&A.a() -p=s.a.a8(0,q) -if(a.gcC()==null)o=null -else{s=a.gcC() -s.toString -o=A.ra(s)}n=A.wv(o,null,q,p) -m.Pt(a,m.k4.a8(0,new A.eU(q,n)))}}, -Pw(a){var s,r,q,p,o=this -if(o.fx)return -s=a.gbV() -r=a.gdD() -q=o.e.h(0,a.gbM()) -q.toString -p=o.l3$ -if(o.CW!=null)o.d0("onTapDown",new A.ad2(o,new A.FK(s,r,q,p))) -o.fx=!0}, -Px(a){var s,r,q,p,o=this -if(!o.fy)return -s=a.gdd() -r=a.gbV() -q=a.gdD() -p=o.l3$ -if(o.cx!=null)o.d0("onTapUp",new A.ad3(o,new A.FN(r,q,s,p))) -o.zc() -if(!o.R8.J(0,a.gbM()))o.CQ(a.gbM(),B.aT)}, -aa5(a){var s,r,q,p=this -if(p.cy!=null){s=a.gja() -r=p.k4 -r===$&&A.a() -q=p.e.h(0,a.gbM()) -q.toString -p.d0("onDragStart",new A.ad0(p,new A.FM(r.b,r.a,s,q,p.l3$)))}p.k3=null}, -Pt(a,b){var s,r,q,p,o,n,m=this,l=b==null,k=l?null:b.b -if(k==null)k=a.gbV() -s=l?null:b.a -if(s==null)s=a.gdD() -l=a.gja() -r=a.gpQ() -q=m.e.h(0,a.gbM()) -q.toString -p=m.k4 -p===$&&A.a() -o=k.ac(0,p.b) -p=s.ac(0,p.a) -n=m.l3$ -if(m.db!=null)m.d0("onDragUpdate",new A.ad1(m,new A.FO(k,s,l,r,q,o,p,n)))}, -aa6(a){return this.Pt(a,null)}, -Pr(){var s,r=this,q=r.ok -q===$&&A.a() -s=r.p4 -if(s!=null){s.bg() -r.adV()}s=r.l3$ -if(r.dx!=null)r.d0("onDragEnd",new A.ad_(r,new A.FL(q.b,q.a,0,s))) -r.zc() -r.zb()}, -UR(){var s,r=this -if(!r.fx)return -s=r.dy -if(s!=null)r.d0("onCancel",s) -r.zb() -r.zc()}, -Hw(a){this.k0(a) -if(!this.R8.J(0,a))this.CQ(a,B.aT)}, -zc(){this.fy=this.fx=!1 -this.go=null}, -zb(){return}, -zs(){var s=this.id -if(s!=null){s.bg() -this.id=null}}} -A.ad4.prototype={ -$0(){var s=this.a,r=s.db -r.toString -s=s.p3 -s.toString -return r.$1(s)}, -$S:0} -A.ad5.prototype={ -$0(){var s=this.a,r=s.m9$ -if(r!=null){s.Pw(r) -if(s.l3$>1)s.af(B.cr)}return null}, -$S:0} -A.ad2.prototype={ -$0(){return this.a.CW.$1(this.b)}, -$S:0} -A.ad3.prototype={ -$0(){return this.a.cx.$1(this.b)}, -$S:0} -A.ad0.prototype={ -$0(){return this.a.cy.$1(this.b)}, -$S:0} -A.ad1.prototype={ -$0(){return this.a.db.$1(this.b)}, -$S:0} -A.ad_.prototype={ -$0(){return this.a.dx.$1(this.b)}, -$S:0} -A.l6.prototype={ -S7(a){var s=this.p1 -s===$&&A.a() -return Math.abs(s)>A.pw(a,this.b)}, -US(a){return new A.h(a.a,0)}, -UT(a){return a.a}} -A.l7.prototype={ -S7(a){var s=this.p1 -s===$&&A.a() -return Math.abs(s)>A.aTf(a,this.b)}, -US(a){return a}, -UT(a){return null}} -A.H1.prototype={ -iQ(a){var s,r=this -r.xQ(a) -s=r.pq$ -if(s!=null&&s.b==null)r.zv() -r.rN$=null -if(r.m9$!=null)s=!(r.pq$!=null&&r.ah_(a.gbV())&&r.agr(a.ge7())) -else s=!1 -if(s)r.l3$=1 -else ++r.l3$ -r.yd() -r.m9$=a -r.vX$=a.ge7() -r.vY$=a.gbV() -r.Bc$=new A.eU(a.gdD(),a.gbV()) -s=r.Bd$ -if(s!=null)s.$0()}, -l(){this.zv() -this.mY()}} -A.a9a.prototype={} -A.a9b.prototype={} -A.a9c.prototype={} -A.a9d.prototype={} -A.a9e.prototype={} -A.iE.prototype={ -ac(a,b){return new A.iE(this.a.ac(0,b.a))}, -a8(a,b){return new A.iE(this.a.a8(0,b.a))}, -apz(a,b){var s=this.a,r=s.gvL() -if(r>b*b)return new A.iE(s.d7(0,s.gd3()).ak(0,b)) -if(r40)return B.p7 -s=t.n -r=A.c([],s) -q=A.c([],s) -p=A.c([],s) -o=A.c([],s) -n=this.d -s=this.c -m=s[n] -if(m==null)return null -l=m.a.a -k=m -j=k -i=0 -do{h=s[n] -if(h==null)break -g=h.a.a -f=(l-g)/1000 -if(f>100||Math.abs(g-j.a.a)/1000>40)break -e=h.b -r.push(e.a) -q.push(e.b) -p.push(1) -o.push(-f) -n=(n===0?20:n)-1;++i -if(i<20){k=h -j=k -continue}else{k=h -break}}while(!0) -if(i>=3){d=A.yy(new A.axN(o,r,p)) -c=A.yy(new A.axO(o,q,p)) -if(d.eF()!=null&&c.eF()!=null){s=d.eF().a[1] -g=c.eF().a[1] -b=d.eF().b -b===$&&A.a() -a=c.eF().b -a===$&&A.a() -return new A.oX(new A.h(s*1000,g*1000),b*a,new A.b5(l-k.a.a),m.b.ac(0,k.b))}}return new A.oX(B.f,1,new A.b5(l-k.a.a),m.b.ac(0,k.b))}} -A.axN.prototype={ -$0(){return new A.Rv(this.a,this.b,this.c).NF(2)}, -$S:147} -A.axO.prototype={ -$0(){return new A.Rv(this.a,this.b,this.c).NF(2)}, -$S:147} -A.qH.prototype={ -zV(a,b){var s,r=this -r.goU().mV() -r.goU().iu() -s=(r.d+1)%20 -r.d=s -r.e[s]=new A.IT(a,b)}, -qZ(a){var s,r,q,p=this.d+a,o=B.j.cn(p,20),n=B.j.cn(p-1,20) -p=this.e -s=p[o] -r=p[n] -if(s==null||r==null)return B.f -q=s.a.a-r.a.a -return q>0?s.b.ac(0,r.b).ak(0,1000).d7(0,q/1000):B.f}, -xn(){var s,r,q,p,o,n,m=this -if(m.goU().gJK()>40)return B.p7 -s=m.qZ(-2).ak(0,0.6).a8(0,m.qZ(-1).ak(0,0.35)).a8(0,m.qZ(0).ak(0,0.05)) -r=m.e -q=m.d -p=r[q] -for(o=null,n=1;n<=20;++n){o=r[B.j.cn(q+n,20)] -if(o!=null)break}if(o==null||p==null)return B.JQ -else return new A.oX(s,1,new A.b5(p.a.a-o.a.a),p.b.ac(0,o.b))}} -A.w2.prototype={ -xn(){var s,r,q,p,o,n,m=this -if(m.goU().gJK()>40)return B.p7 -s=m.qZ(-2).ak(0,0.15).a8(0,m.qZ(-1).ak(0,0.65)).a8(0,m.qZ(0).ak(0,0.2)) -r=m.e -q=m.d -p=r[q] -for(o=null,n=1;n<=20;++n){o=r[B.j.cn(q+n,20)] -if(o!=null)break}if(o==null||p==null)return B.JQ -else return new A.oX(s,1,new A.b5(p.a.a-o.a.a),p.b.ac(0,o.b))}} -A.a0a.prototype={ -K(a){var s=this,r=null,q=s.k2 -q=q==null?r:new A.e2(q,t.A9) -return A.BX(s.z,r,s.w,r,q,new A.ayQ(s,a),r,s.fr,s.yu(a))}} -A.ayQ.prototype={ -$0(){var s=this.a,r=s.ax -if(r!=null)r.$0() -else s.yZ(this.b)}, -$S:0} -A.tJ.prototype={ -K(a){var s,r,q,p -a.aA(t.vH) -s=A.P(a) -r=this.c.$1(s.p2) -if(r!=null)return r.$1(a) -q=this.d.$1(a) -p=null -switch(A.aT().a){case 0:s=A.j2(a,B.cC,t.c4) -s.toString -p=this.e.$1(s) -break -case 1:case 3:case 5:case 2:case 4:break}return A.ce(q,null,p,null)}} -A.MC.prototype={ -K(a){return new A.tJ(new A.acP(),new A.acQ(),new A.acR(),null)}} -A.acP.prototype={ -$1(a){return a==null?null:a.a}, -$S:83} -A.acQ.prototype={ -$1(a){return B.nd}, -$S:85} -A.acR.prototype={ -$1(a){return a.gaT()}, -$S:81} -A.MB.prototype={ -yZ(a){return A.aRp(a)}, -yu(a){var s=A.j2(a,B.cC,t.c4) -s.toString -return s.gaT()}} -A.No.prototype={ -K(a){return new A.tJ(new A.aeA(),new A.aeB(),new A.aeC(),null)}} -A.aeA.prototype={ -$1(a){return a==null?null:a.b}, -$S:83} -A.aeB.prototype={ -$1(a){return B.rD}, -$S:85} -A.aeC.prototype={ -$1(a){return a.gaS()}, -$S:81} -A.Nn.prototype={ -yZ(a){return A.aRp(a)}, -yu(a){var s=A.j2(a,B.cC,t.c4) -s.toString -return s.gaS()}} -A.Q0.prototype={ -K(a){return new A.tJ(new A.agc(),new A.agd(),new A.age(),null)}} -A.agc.prototype={ -$1(a){return a==null?null:a.c}, -$S:83} -A.agd.prototype={ -$1(a){return B.rE}, -$S:85} -A.age.prototype={ -$1(a){return a.gaD()}, -$S:81} -A.Q_.prototype={ -yZ(a){var s,r,q=A.asl(a),p=q.e -if(p.gS()!=null){s=q.y -r=s.y -s=r==null?A.n(s).i("c3.T").a(r):r}else s=!1 -if(s)p.gS().bn() -q=q.d.gS() -if(q!=null)q.awH() -return null}, -yu(a){var s=A.j2(a,B.cC,t.c4) -s.toString -return s.gaD()}} -A.Q5.prototype={ -K(a){return new A.tJ(new A.ahd(),new A.ahe(),new A.ahf(),null)}} -A.ahd.prototype={ -$1(a){return a==null?null:a.d}, -$S:83} -A.ahe.prototype={ -$1(a){return B.rE}, -$S:85} -A.ahf.prototype={ -$1(a){return a.gaD()}, -$S:81} -A.Q4.prototype={ -yZ(a){var s,r,q=A.asl(a),p=q.d -if(p.gS()!=null){s=q.x -r=s.y -s=r==null?A.n(s).i("c3.T").a(r):r}else s=!1 -if(s)p.gS().bn() -q=q.e.gS() -if(q!=null)q.awH() -return null}, -yu(a){var s=A.j2(a,B.cC,t.c4) -s.toString -return s.gaD()}} -A.uA.prototype={ -gt(a){var s=this -return A.bh([s.a,s.b,s.c,s.d])}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.uA}} -A.a0c.prototype={} -A.Mj.prototype={ -K(a){var s,r=this,q=r.c,p=q.length===0 -if(p!==!1)return B.aE -s=J.Mf(A.b5w(a,q)) -switch(A.P(a).w.a){case 2:q=r.e -p=q.a -q=q.b -return A.b6E(p,q==null?p:q,s) -case 0:q=r.e -p=q.a -q=q.b -return A.bbF(p,q==null?p:q,s) -case 1:case 3:case 5:return new A.PK(r.e.a,s,null) -case 4:return new A.ND(r.e.a,s,null)}}} -A.acp.prototype={ -$1(a){return A.b6F(a)}, -$S:366} -A.acq.prototype={ -$1(a){var s=this.a -return A.b73(s,a.a,A.aQ5(s,a))}, -$S:365} -A.acr.prototype={ -$1(a){return A.b6r(a.a,A.aQ5(this.a,a))}, -$S:362} -A.lb.prototype={ -N(){return"ThemeMode."+this.b}} -A.CI.prototype={ -ah(){return new A.Io()}} -A.alw.prototype={ -$2(a,b){return new A.wa(a,b)}, -$S:345} -A.anG.prototype={ -kE(a){return A.P(a).w}, -vl(a,b,c){switch(A.bg(c.a).a){case 0:return b -case 1:switch(A.P(a).w.a){case 3:case 4:case 5:return A.aXP(b,c.b) -case 0:case 1:case 2:return b}break}}, -A8(a,b,c){A.P(a) -switch(A.P(a).w.a){case 2:case 3:case 4:case 5:return b -case 0:switch(0){case 0:return new A.FC(c.a,c.d,b,null)}case 1:break}return A.aWb(c.a,b,A.P(a).ax.y)}} -A.Io.prototype={ -aw(){this.b3() -this.d=A.b8T()}, -l(){var s=this.d -s===$&&A.a() -s.l() -this.aQ()}, -gahc(){var s=A.c([],t.a9) -B.b.a_(s,this.a.k2) -s.push(B.Mj) -s.push(B.Md) -return s}, -ac0(a,b,c,d){return new A.yE(this.Gv(a),c,d,B.rD,b,B.PZ,null,null)}, -ahG(a,b,c,d){var s=d?B.PB:B.PA -return new A.yE(this.Gv(a),b,c,s,null,B.Q0,null,null)}, -amj(a,b,c,d){return new A.yE(this.Gv(a),b,d,B.Px,null,B.Q_,c,null)}, -Gv(a){var s -this.a.toString -s=A.c_(a,B.fR) -s=s==null?null:s.e -s=(s==null?B.ar:s)===B.R -return s}, -ahk(a,b){var s,r,q,p,o,n,m,l,k,j=this,i=null -j.a.toString -s=A.c_(a,B.fR) -r=s==null?i:s.e -if(r==null)r=B.ar -q=r===B.R -s=A.c_(a,B.K6) -s=s==null?i:s.as -p=s===!0 -if(q)if(p)j.a.toString -if(q)j.a.toString -if(p)j.a.toString -o=j.a.db -s=o.ax -A.aS3(s.a===B.R?B.Jk:B.Jj) -n=o.bI -m=n.b -if(m==null)m=s.b.aI(0.4) -l=n.a -if(l==null)l=s.b -j.a.toString -s=A.afi(new A.dO(new A.aE9(j,b),i),l,i,i,m) -k=A.aQ8(new A.Ep(s,i),B.a7,o,B.a3) -return k}, -a9P(a){var s,r=this,q=null,p=r.a,o=p.db -o=o.dx -s=o -if(s==null)s=B.kl -p=p.e -o=r.gahc() -r.a.toString -return A.bci(q,r.gahj(),s,!1,r.gac_(),p,q,new A.qD(r,t.bT),q,q,q,o,r.gahF(),q,B.Xb,q,q,q,q,q,new A.aE8(),q,B.a2C,q,!1,!1,B.uY,r.gami(),B.acD,"")}, -K(a){var s,r=this.a9P(a) -this.a.toString -s=this.d -s===$&&A.a() -return A.aXO(B.LL,A.aWe(r,s))}} -A.aE9.prototype={ -$1(a){return this.a.a.CW.$2(a,this.b)}, -$S:15} -A.aE8.prototype={ -$1$2(a,b,c){return A.w9(b,a,c)}, -$2(a,b){return this.$1$2(a,b,t.z)}, -$S:335} -A.yE.prototype={ -K(a){var s=this,r=null,q=s.gau2(),p=s.asD(a),o=A.vK(r,s.aoT(a),r,r,r,r,r,p,r,r,r,r,r,r,s.a9m(p),B.DS,r) -return A.BX(r,B.KP,A.ce(s.e,r,s.d,r),q,s.f,s.c,B.ap,o,r)}, -a9m(a){switch(this.r.a){case 0:case 2:return null -case 1:return null}}, -asD(a){var s,r,q,p=this,o=A.P(a).ax -if(p.y){s=o.e -r=s==null?o.c:s}else{s=o.d -r=s==null?o.b:s}q=p.U6(a) -switch(p.r.a){case 0:return r -case 2:return q -case 1:o=p.w -o.toString -return!o?q:r}}, -aoT(a){var s,r=this.U6(a) -switch(this.r.a){case 0:return r -case 2:return B.D -case 1:s=this.w -s.toString -return!s?B.D:r}}, -U6(a){var s,r=A.P(a).ax -if(this.y){s=r.d -r=s==null?r.b:s}else{s=r.e -r=s==null?r.c:s}return r}} -A.aKR.prototype={ -ol(a){return a.a1s(this.b)}, -mO(a){return new A.L(a.b,this.b)}, -oo(a,b){return new A.h(0,a.b-b.b)}, -mT(a){return this.b!==a.b}} -A.a4Z.prototype={} -A.zX.prototype={ -acI(a,b){var s=new A.acz(this,a).$0() -return s}, -ah(){return new A.GV()}, -lf(a){return A.up().$1(a)}} -A.acz.prototype={ -$0(){switch(this.b.w.a){case 0:case 1:case 3:case 5:return!1 -case 2:case 4:return!0}}, -$S:58} -A.GV.prototype={ -by(){var s,r,q,p,o=this -o.du() -s=o.d -if(s!=null)s.O(o.gEG()) -s=o.c -r=s.l6(t.Np) -if(r!=null){q=r.x -p=q.y -if(!(p==null?A.n(q).i("c3.T").a(p):p)){q=r.y -p=q.y -q=p==null?A.n(q).i("c3.T").a(p):p}else q=!0}else q=!1 -if(q)return -s=o.d=A.aRL(s) -if(s!=null){s=s.d -s.oL(s.c,new A.lj(o.gEG()),!1)}}, -l(){var s=this,r=s.d -if(r!=null){r.O(s.gEG()) -s.d=null}s.aQ()}, -a9c(a){var s,r,q,p=this -if(a instanceof A.k_&&p.a.lf(a)){s=p.e -r=a.a -switch(r.e.a){case 0:q=p.e=Math.max(r.gj4()-r.gep(),0)>0 -break -case 2:q=p.e=Math.max(r.gep()-r.gj5(),0)>0 -break -case 1:case 3:q=s -break -default:q=s}if(q!==s)p.ar(new A.azi())}}, -TF(a,b,c,d){var s=t._,r=A.dM(b,a,s) -s=r==null?A.dM(c,a,s):r -return s==null?A.dM(d,a,t.G):s}, -K(c1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3=this,b4=null,b5=A.P(c1),b6=A.aR2(c1),b7=A.aUO(c1),b8=new A.azh(c1,b4,b4,0,3,b4,b4,b4,b4,b4,b4,16,b4,64,b4,b4,b4,b4),b9=c1.l6(t.Np),c0=A.wg(c1,b4,t.X) -c1.aA(t.N8) -s=A.aU(t.EK) -r=b3.e -if(r)s.G(0,B.p9) -r=b9==null -if(r)q=b4 -else{b9.a.toString -q=!1}if(r)r=b4 -else{b9.a.toString -r=!1}p=c0==null -if(p)o=b4 -else{c0.gZy() -o=!1}n=b3.a -n.toString -m=b7.as -if(m==null)m=56 -l=b3.TF(s,n.ay,b7.gcb(),b8.gcb()) -n=b3.a.ay -k=b7.gcb() -j=A.P(c1).ax -i=j.p4 -h=b3.TF(s,n,k,i==null?j.k2:i) -g=s.q(0,B.p9)?h:l -b3.a.toString -f=b7.gdi() -if(f==null)f=b8.gdi() -e=b3.a.y -if(s.q(0,B.p9)){b3.a.toString -s=b7.d -if(s==null)s=3 -d=s==null?e:s}else d=e -b3.a.toString -c=b7.gjG() -if(c==null)c=b8.gjG().c3(f) -b3.a.toString -b=b7.gdi() -b3.a.toString -s=b7.glS() -if(s==null){b3.a.toString -s=b4}if(s==null)s=b7.gjG() -if(s==null){s=b8.glS().c3(b) -a=s}else a=s -if(a==null)a=c -b3.a.toString -s=b7.giP() -if(s==null)b8.giP() -b3.a.toString -a0=b7.god() -if(a0==null){s=b8.god() -a0=s==null?b4:s.c3(f)}b3.a.toString -a1=b7.gjb() -if(a1==null){s=b8.gjb() -a1=s==null?b4:s.c3(f)}s=b3.a -a2=s.c -if(a2==null)if(q===!0){s=c.a -a2=new A.Q_(B.a9K,b4,b4,B.Oy,b4,b4,b4,b4,A.vK(b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,s==null?24:s,b4,b4,b4,b4,b4,b4),b4)}else{if(p)s=b4 -else s=c0.gKx()||c0.Bb$>0 -if(s===!0)a2=o===!0?B.ME:B.Kt}if(a2!=null){if(c.j(0,b8.gjG()))a3=b6 -else{a4=A.vK(b4,b4,b4,b4,b4,b4,b4,c.f,b4,b4,c.a,b4,b4,b4,b4,b4,b4) -s=b6.a -a3=new A.m5(s==null?b4:s.XY(a4.c,a4.as,a4.d))}s=A.dp(a2,b4,b4) -a2=A.R4(s,a3) -b3.a.toString -s=b7.Q -a2=new A.dX(A.lH(b4,s==null?56:s),a2,b4)}a5=b3.a.e -if(a5!=null){a5=new A.a0y(a5,b4) -a6=A.aT() -A:{s=b4 -if(B.as===a6||B.bN===a6||B.bO===a6||B.bP===a6){s=!0 -break A}if(B.U===a6||B.b5===a6)break A}a5=A.cz(b4,a5,!1,b4,b4,!1,b4,b4,!0,b4,b4,b4,b4,b4,b4,b4,b4,s,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,B.Y,b4) -a1.toString -a5=A.b9a(A.fn(a5,b4,b4,B.bd,!1,a1,b4,b4,B.al),1.34)}if(r===!0){s=c.a -a7=new A.Q4(b4,b4,b4,B.Pe,b4,b4,b4,b4,A.vK(b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,s==null?24:s,b4,b4,b4,b4,b4,b4),b4)}else a7=b4 -if(a7!=null){if(a.j(0,b8.glS()))a8=b6 -else{a9=A.vK(b4,b4,b4,b4,b4,b4,b4,a.f,b4,b4,a.a,b4,b4,b4,b4,b4,b4) -s=b6.a -a8=new A.m5(s==null?b4:s.XY(a9.c,a9.as,a9.d))}a7=A.R4(A.ajZ(a7,a),a8)}s=b3.a.acI(b5,b7) -b3.a.toString -r=b7.z -if(r==null)r=16 -a0.toString -b0=A.Nl(new A.jC(new A.aKR(m),A.ajZ(A.fn(new A.TJ(a2,a5,a7,s,r,b4),b4,b4,B.bc,!0,a0,b4,b4,B.al),c),b4),B.N,b4) -b0=A.El(!1,b0,!0) -s=A.YT(g) -b1=s===B.R?B.Jk:B.Jj -b2=new A.l5(b4,b4,b4,b4,B.D,b1.f,b1.r,b1.w) -b3.a.toString -s=b7.gcz() -if(s==null)s=b8.gcz() -b3.a.toString -r=b7.gd2() -if(r==null){r=b5.ax -q=r.aH -r=q==null?r.b:q}b3.a.toString -q=b7.r -if(q==null)q=b4 -return A.cz(b4,new A.zT(b2,A.mf(!1,B.a3,!0,b4,A.cz(b4,new A.ex(B.bp,b4,b4,b0,b4),!1,b4,b4,!0,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,B.Y,b4),B.v,g,d,b4,s,q,r,b4,B.ec),b4,t.ph),!0,b4,b4,!1,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,b4,B.Y,b4)}} -A.azi.prototype={ -$0(){}, -$S:0} -A.a0y.prototype={ -bf(a){var s=new A.a5t(B.a_,a.aA(t.I).w,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.sce(a.aA(t.I).w)}} -A.a5t.prototype={ -dg(a){var s=a.IZ(1/0),r=this.u$ -return a.bx(r.aO(B.S,s,r.gcu()))}, -e2(a,b){var s,r,q=this,p=a.IZ(1/0),o=q.u$ -if(o==null)return null -s=o.f5(p,b) -if(s==null)return null -r=o.aO(B.S,p,o.gcu()) -return s+q.gwU().ju(t.o.a(q.aO(B.S,a,q.gcu()).ac(0,r))).b}, -c7(){var s=this,r=t.k,q=r.a(A.r.prototype.gab.call(s)).IZ(1/0) -s.u$.cs(q,!0) -s.fy=r.a(A.r.prototype.gab.call(s)).bx(s.u$.gC()) -s.A_()}} -A.azh.prototype={ -gV5(){var s,r=this,q=r.cx -if(q===$){s=A.P(r.CW) -r.cx!==$&&A.aK() -r.cx=s -q=s}return q}, -gy4(){var s,r=this,q=r.cy -if(q===$){s=r.gV5() -r.cy!==$&&A.aK() -q=r.cy=s.ax}return q}, -gUW(){var s,r=this,q=r.db -if(q===$){s=r.gV5() -r.db!==$&&A.aK() -q=r.db=s.ok}return q}, -gcb(){return this.gy4().k2}, -gdi(){return this.gy4().k3}, -gcz(){return B.D}, -gd2(){return B.D}, -gjG(){var s=null -return new A.dw(24,s,s,s,s,this.gy4().k3,s,s,s)}, -glS(){var s=null,r=this.gy4(),q=r.rx -return new A.dw(24,s,s,s,s,q==null?r.k3:q,s,s,s)}, -god(){return this.gUW().z}, -gjb(){return this.gUW().r}, -giP(){return B.ap}} -A.ny.prototype={ -gt(a){var s=this -return A.N(s.gcb(),s.gdi(),s.c,s.d,s.gcz(),s.gd2(),s.r,s.gjG(),s.glS(),s.y,s.z,s.Q,s.as,s.god(),s.gjb(),s.ay,s.giP(),B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.ny)if(J.b(b.gcb(),r.gcb()))if(J.b(b.gdi(),r.gdi()))if(b.c==r.c)if(b.d==r.d)if(J.b(b.gcz(),r.gcz()))if(J.b(b.gd2(),r.gd2()))if(J.b(b.r,r.r))if(J.b(b.gjG(),r.gjG()))if(J.b(b.glS(),r.glS()))if(b.z==r.z)if(b.Q==r.Q)if(b.as==r.as)if(J.b(b.god(),r.god()))if(J.b(b.gjb(),r.gjb()))s=J.b(b.giP(),r.giP()) -return s}, -gcb(){return this.a}, -gdi(){return this.b}, -gcz(){return this.e}, -gd2(){return this.f}, -gjG(){return this.w}, -glS(){return this.x}, -god(){return this.at}, -gjb(){return this.ax}, -giP(){return this.ch}} -A.a0x.prototype={} -A.CS.prototype={ -lH(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=g.a -f.toString -s=g.b -r=s.ac(0,f) -q=Math.abs(r.a) -p=Math.abs(r.b) -o=r.gd3() -n=s.a -m=f.b -l=new A.h(n,m) -k=new A.anE(g,o) -if(q>2&&p>2){j=o*o -i=f.a -h=s.b -if(q0){b1=b8.e -if(b1!=null){q=b8.f -q=q!=null&&b1!==s&&q.gp()!==p.gp()&&b8.f.gdY()===1&&p.gdY()<1&&s===0}}if(q){q=b8.d -if(!J.b(q==null?b9:q.e,b)){q=b8.d -if(q!=null)q.l() -q=A.bX(b9,b,b9,b9,b8) -q.bC() -b1=q.cP$ -b1.b=!0 -b1.a.push(new A.aAb(b8)) -b8.d=q}p=b8.f -b8.d.sp(0) -b8.d.cc()}b8.e=s -b8.f=p -a0.toString -q=b8.a -b2=new A.bR(b0,new A.ex(a0,1,1,a4!=null?a4.$3(c8,b8.gcr().a,q.ax):q.ax,b9),b9) -if(a3!=null)b2=a3.$3(c8,b8.gcr().a,b2) -q=c0.aq6(c1.E(new A.dw(g,b9,b9,b9,b9,h,b9,b9,b9))) -b1=b8.a -b3=b1.c -b4=b1.d -b5=b1.e -b6=b1.x -b1=b1.f -b2=A.aQ8(A.akg(!1,b9,b3!=null,b2,e.m_(f),a,b6,B.D,new A.a3W(new A.aAc(c6)),b1,b5,b4,b3,new A.bS(new A.aAd(c6),t.b),a2,b8.gcr()),B.a7,q,b) -q=b8.a -b1=q.at -if(b1!=null)b2=A.bbW(b2,b1) -switch(c.a){case 0:b7=new A.L(48+c2,48+a8) -break -case 1:b7=B.Q -break -default:b7=b9}c2=q.c -s.toString -q=r==null?b9:r.c3(o) -b1=e.m_(f) -return A.cz(!0,new A.a3h(b7,new A.dX(a6,A.mf(!1,b,!1,b9,b2,a5,p,s,b9,n,b1,m,q,p==null?B.kn:B.nL),b9),b9),!0,b9,c2!=null,!1,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,b9,B.Y,b9)}} -A.aAp.prototype={ -$0(){}, -$S:0} -A.aAm.prototype={ -$1$1(a,b){var s=a.$1(this.a),r=a.$1(this.b),q=a.$1(this.c),p=s==null?r:s -return p==null?q:p}, -$1(a){return this.$1$1(a,t.z)}, -$S:330} -A.aAn.prototype={ -$1$1(a,b){return this.b.$1$1(new A.aAo(this.a,a,b),b)}, -$1(a){return this.$1$1(a,t.z)}, -$S:329} -A.aAo.prototype={ -$1(a){var s=this.b.$1(a) -return s==null?null:s.af(this.a.gcr().a)}, -$S(){return this.c.i("0?(bU?)")}} -A.aAl.prototype={ -$0(){var s,r=this,q=null,p=r.b,o=p==null -if(o)s=q -else{s=p.gdL() -s=s==null?q:s.af(r.a.gcr().a)}if(s==null){s=r.c -if(s==null)s=q -else{s=s.gdL() -s=s==null?q:s.af(r.a.gcr().a)}}if(s==null)if(o)p=q -else{p=p.gdi() -p=p==null?q:p.af(r.a.gcr().a)}else p=s -if(p==null){p=r.c -if(p==null)p=q -else{p=p.gdi() -p=p==null?q:p.af(r.a.gcr().a)}}if(p==null){p=r.d.gdL() -p=p==null?q:p.af(r.a.gcr().a)}if(p==null){p=r.d.gdi() -p=p==null?q:p.af(r.a.gcr().a)}return p}, -$S:326} -A.azY.prototype={ -$1(a){return a==null?null:a.ge9()}, -$S:149} -A.azZ.prototype={ -$1(a){return a==null?null:a.gkB()}, -$S:324} -A.aA_.prototype={ -$1(a){return a==null?null:a.gcb()}, -$S:74} -A.aAa.prototype={ -$1(a){return a==null?null:a.gdi()}, -$S:74} -A.aAe.prototype={ -$1(a){return a==null?null:a.gcz()}, -$S:74} -A.aAf.prototype={ -$1(a){return a==null?null:a.gd2()}, -$S:74} -A.aAg.prototype={ -$1(a){return a==null?null:a.gcH()}, -$S:314} -A.aAh.prototype={ -$1(a){return a==null?null:a.ghK()}, -$S:122} -A.aAi.prototype={ -$1(a){return a==null?null:a.y}, -$S:122} -A.aAj.prototype={ -$1(a){return a==null?null:a.ghJ()}, -$S:122} -A.aAk.prototype={ -$1(a){return a==null?null:a.ghG()}, -$S:149} -A.aA0.prototype={ -$1(a){return a==null?null:a.giD()}, -$S:305} -A.aA1.prototype={ -$1(a){return a==null?null:a.gdt()}, -$S:301} -A.aAc.prototype={ -$1(a){return this.a.$1$1(new A.azW(a),t.Pb)}, -$S:707} -A.azW.prototype={ -$1(a){var s -if(a==null)s=null -else{s=a.geQ() -s=s==null?null:s.af(this.a)}return s}, -$S:276} -A.aAd.prototype={ -$1(a){return this.a.$1$1(new A.azV(a),t.G)}, -$S:62} -A.azV.prototype={ -$1(a){var s -if(a==null)s=null -else{s=a.geg() -s=s==null?null:s.af(this.a)}return s}, -$S:268} -A.aA2.prototype={ -$1(a){return a==null?null:a.ghT()}, -$S:258} -A.aA3.prototype={ -$1(a){return a==null?null:a.ghO()}, -$S:257} -A.aA4.prototype={ -$1(a){return a==null?null:a.cy}, -$S:256} -A.aA5.prototype={ -$1(a){return a==null?null:a.db}, -$S:254} -A.aA6.prototype={ -$1(a){return a==null?null:a.dx}, -$S:250} -A.aA7.prototype={ -$1(a){return a==null?null:a.ghx()}, -$S:245} -A.aA8.prototype={ -$1(a){return a==null?null:a.fr}, -$S:151} -A.aA9.prototype={ -$1(a){return a==null?null:a.fx}, -$S:151} -A.aAb.prototype={ -$1(a){if(a===B.a9)this.a.ar(new A.azX())}, -$S:8} -A.azX.prototype={ -$0(){}, -$S:0} -A.a3W.prototype={ -af(a){var s=this.a.$1(a) -s.toString -return s}, -gAC(){return"ButtonStyleButton_MouseCursor"}} -A.a3h.prototype={ -bf(a){var s=new A.Jf(this.e,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.savH(this.e)}} -A.Jf.prototype={ -savH(a){if(this.D.j(0,a))return -this.D=a -this.ag()}, -bP(a){var s=this.u$ -if(s!=null)return Math.max(s.aO(B.bR,a,s.gcG()),this.D.a) -return 0}, -bO(a){var s=this.u$ -if(s!=null)return Math.max(s.aO(B.by,a,s.gcA()),this.D.b) -return 0}, -bH(a){var s=this.u$ -if(s!=null)return Math.max(s.aO(B.aK,a,s.gc2()),this.D.a) -return 0}, -bG(a){var s=this.u$ -if(s!=null)return Math.max(s.aO(B.bg,a,s.gcp()),this.D.b) -return 0}, -Pl(a,b){var s,r,q=this.u$ -if(q!=null){s=b.$2(q,a) -q=s.a -r=this.D -return a.bx(new A.L(Math.max(q,r.a),Math.max(s.b,r.b)))}return B.Q}, -dg(a){return this.Pl(a,A.hQ())}, -e2(a,b){var s,r,q=this.u$ -if(q==null)return null -s=q.f5(a,b) -if(s==null)return null -r=q.aO(B.S,a,q.gcu()) -return s+B.a_.ju(t.o.a(this.aO(B.S,a,this.gcu()).ac(0,r))).b}, -c7(){var s,r=this -r.fy=r.Pl(t.k.a(A.r.prototype.gab.call(r)),A.pz()) -s=r.u$ -if(s!=null){s=s.b -s.toString -t.r.a(s).a=B.a_.ju(t.o.a(r.gC().ac(0,r.u$.gC())))}}, -cT(a,b){var s,r -if(this.lE(a,b))return!0 -s=this.u$.gC().lW(B.f) -r=new Float64Array(16) -r[10]=1 -r[12]=s.a -r[13]=s.b -r[15]=1 -return a.Wz(new A.aGa(this,s),s,new A.bc(r))}} -A.aGa.prototype={ -$2(a,b){return this.a.u$.cT(a,this.b)}, -$S:19} -A.L7.prototype={ -bF(){this.cE() -this.cv() -this.eG()}, -l(){var s=this,r=s.bl$ -if(r!=null)r.O(s.geq()) -s.bl$=null -s.aQ()}} -A.adF.prototype={ -N(){return"ButtonTextTheme."+this.b}} -A.N2.prototype={ -gcH(){switch(0){case 0:break}var s=B.hp -return s}, -gdt(){A:{break A}return B.HN}, -j(a,b){var s=this -if(b==null)return!1 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.N2&&b.gcH().j(0,s.gcH())&&b.gdt().j(0,s.gdt())&&J.b(b.w,s.w)&&J.b(b.y,s.y)&&J.b(b.z,s.z)&&J.b(b.at,s.at)&&b.ax==s.ax}, -gt(a){var s=this -return A.N(B.L9,88,36,s.gcH(),s.gdt(),!1,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a0Y.prototype={} -A.Aj.prototype={ -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.Aj&&J.b(b.b,s.b)&&J.b(b.c,s.c)&&J.b(b.d,s.d)&&b.e==s.e&&J.b(b.f,s.f)&&J.b(b.r,s.r)}} -A.a1_.prototype={} -A.Ak.prototype={ -gt(a){var s=this -return A.N(s.b,s.c,s.d,s.f,s.a,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.Ak)if(J.b(b.b,r.b))if(b.c==r.c)if(J.b(b.d,r.d))if(b.f==r.f)s=J.b(b.a,r.a) -return s}} -A.a10.prototype={} -A.Ao.prototype={ -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.Ao&&b.b==s.b&&b.c==s.c&&b.d==s.d&&b.e==s.e&&J.b(b.w,s.w)&&J.b(b.x,s.x)}} -A.a12.prototype={} -A.Ap.prototype={ -gt(a){var s=this -return A.bh([s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy])}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.Ap&&b.a==s.a&&J.b(b.b,s.b)&&J.b(b.c,s.c)&&J.b(b.d,s.d)&&J.b(b.e,s.e)&&J.b(b.f,s.f)&&J.b(b.r,s.r)&&J.b(b.w,s.w)&&J.b(b.x,s.x)&&b.y==s.y&&J.b(b.z,s.z)&&J.b(b.Q,s.Q)&&J.b(b.as,s.as)&&J.b(b.at,s.at)&&J.b(b.ax,s.ax)&&J.b(b.ay,s.ay)&&J.b(b.ch,s.ch)&&b.CW==s.CW&&b.cx==s.cx&&b.cy==s.cy&&J.b(b.db,s.db)&&J.b(b.dx,s.dx)&&J.b(b.dy,s.dy)}} -A.a13.prototype={} -A.Na.prototype={ -gahz(){var s=this.y -if(s==null)return 40 -return 2*(s==null?0:s)}, -gahl(){var s=this.y -if(s==null)return 40 -return 2*(s==null?1/0:s)}, -K(a){var s,r,q,p,o=this,n=null,m=A.P(a),l=n,k=m.ax,j=k.e -k=j==null?k.c:j -l=k -s=m.ok.w.c3(l) -r=o.d -if(l==null){switch(A.YT(r).a){case 0:k=s.c3(m.fr) -break -case 1:k=s.c3(m.dy) -break -default:k=n}s=k}q=o.gahz() -p=o.gahl() -k=m.k2.c3(s.b) -k=A.dp(A.b9b(A.qI(A.fn(o.c,n,n,B.bc,!0,s,n,n,B.al),k,n)),n,n) -return A.uE(k,new A.al(q,p,q,p),new A.bm(r,n,n,n,n,n,n,B.bT),B.a3,n,n,n,n,n)}, -gR(){return this.c}} -A.agf.prototype={ -N(){return"DynamicSchemeVariant."+this.b}} -A.v1.prototype={ -aqS(d2,d3,d4,d5,d6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7=this,c8=null,c9=c7.b,d0=c7.c,d1=c7.d -if(d1==null)d1=c9 -s=c7.e -if(s==null)s=d0 -r=c7.f -if(r==null)r=c9 -q=c7.r -if(q==null)q=c9 -p=c7.w -if(p==null)p=d0 -o=c7.x -if(o==null)o=d0 -n=d5==null?c7.y:d5 -m=d3==null?c7.z:d3 -l=c7.Q -if(l==null)l=c7.y -k=c7.as -if(k==null)k=c7.z -j=c7.at -if(j==null)j=c7.y -i=c7.ax -if(i==null)i=c7.y -h=c7.ay -if(h==null)h=c7.z -g=c7.ch -if(g==null)g=c7.z -f=c7.CW -e=f==null?c7.y:f -d=c7.cx -c=d==null?c7.z:d -b=c7.cy -if(b==null)b=f==null?c7.y:f -a=c7.db -if(a==null)a=d==null?c7.z:d -a0=c7.dx -if(a0==null)a0=f==null?c7.y:f -a1=c7.dy -if(a1==null){if(f==null)f=c7.y}else f=a1 -a1=c7.fr -if(a1==null)a1=d==null?c7.z:d -a2=c7.fx -if(a2==null){if(d==null)d=c7.z}else d=a2 -a2=c7.fy -a3=c7.go -a4=c7.id -if(a4==null)a4=a2 -a5=c7.k1 -if(a5==null)a5=a3 -a6=d6==null?c7.k2:d6 -a7=d4==null?c7.k3:d4 -a8=c7.ok -if(a8==null)a8=c7.k2 -a9=c7.p1 -if(a9==null)a9=c7.k2 -b0=c7.p2 -if(b0==null)b0=c7.k2 -b1=c7.p3 -if(b1==null)b1=c7.k2 -b2=c7.p4 -if(b2==null)b2=c7.k2 -b3=c7.R8 -if(b3==null)b3=c7.k2 -b4=c7.RG -if(b4==null)b4=c7.k2 -b5=c7.rx -if(b5==null)b5=c7.k3 -b6=c7.ry -if(b6==null){b6=c7.n -if(b6==null)b6=c7.k3}b7=c7.to -if(b7==null){b7=c7.n -if(b7==null)b7=c7.k3}b8=c7.x1 -if(b8==null)b8=B.r -b9=c7.x2 -if(b9==null)b9=B.r -c0=c7.xr -if(c0==null)c0=c7.k3 -c1=c7.y1 -if(c1==null)c1=c7.k2 -c2=c7.y2 -if(c2==null)c2=d0 -c3=c7.aH -if(c3==null)c3=c9 -c4=c7.aB -if(c4==null)c4=c7.k2 -c5=c7.n -if(c5==null)c5=c7.k3 -c6=c7.k4 -if(c6==null)c6=c7.k2 -return A.Ns(c4,c7.a,a2,a4,c2,c0,c5,a3,a5,c1,d0,s,p,o,m,k,h,g,a7,b5,c,a,a1,d,b6,b7,c9,d1,r,q,b9,n,l,j,i,b8,a6,a9,b2,b3,b4,b1,b0,a8,c3,c6,e,b,a0,f)}, -apZ(a){var s=null -return this.aqS(a,s,s,s,s)}, -j(a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=this -if(a2==null)return!1 -if(a0===a2)return!0 -if(J.S(a2)!==A.l(a0))return!1 -s=!1 -if(a2 instanceof A.v1)if(a2.a===a0.a){r=a2.b -q=a0.b -if(r.j(0,q)){p=a2.c -o=a0.c -if(p.j(0,o)){n=a2.d -if(n==null)n=r -m=a0.d -if(n.j(0,m==null?q:m)){n=a2.e -if(n==null)n=p -m=a0.e -if(n.j(0,m==null?o:m)){n=a2.f -if(n==null)n=r -m=a0.f -if(n.j(0,m==null?q:m)){n=a2.r -if(n==null)n=r -m=a0.r -if(n.j(0,m==null?q:m)){n=a2.w -if(n==null)n=p -m=a0.w -if(n.j(0,m==null?o:m)){n=a2.x -if(n==null)n=p -m=a0.x -if(n.j(0,m==null?o:m)){n=a2.y -m=a0.y -if(n.j(0,m)){l=a2.z -k=a0.z -if(l.j(0,k)){j=a2.Q -if(j==null)j=n -i=a0.Q -if(j.j(0,i==null?m:i)){j=a2.as -if(j==null)j=l -i=a0.as -if(j.j(0,i==null?k:i)){j=a2.at -if(j==null)j=n -i=a0.at -if(j.j(0,i==null?m:i)){j=a2.ax -if(j==null)j=n -i=a0.ax -if(j.j(0,i==null?m:i)){j=a2.ay -if(j==null)j=l -i=a0.ay -if(j.j(0,i==null?k:i)){j=a2.ch -if(j==null)j=l -i=a0.ch -if(j.j(0,i==null?k:i)){j=a2.CW -i=j==null -h=i?n:j -g=a0.CW -f=g==null -if(h.j(0,f?m:g)){h=a2.cx -e=h==null -d=e?l:h -c=a0.cx -b=c==null -if(d.j(0,b?k:c)){d=a2.cy -if(d==null)d=i?n:j -a=a0.cy -if(a==null)a=f?m:g -if(d.j(0,a)){d=a2.db -if(d==null)d=e?l:h -a=a0.db -if(a==null)a=b?k:c -if(d.j(0,a)){d=a2.dx -if(d==null)d=i?n:j -a=a0.dx -if(a==null)a=f?m:g -if(d.j(0,a)){d=a2.dy -if(d==null)n=i?n:j -else n=d -j=a0.dy -if(j==null)m=f?m:g -else m=j -if(n.j(0,m)){n=a2.fr -if(n==null)n=e?l:h -m=a0.fr -if(m==null)m=b?k:c -if(n.j(0,m)){n=a2.fx -if(n==null)n=e?l:h -m=a0.fx -if(m==null)m=b?k:c -if(n.j(0,m)){n=a2.fy -m=a0.fy -if(n.j(0,m)){l=a2.go -k=a0.go -if(l.j(0,k)){j=a2.id -n=j==null?n:j -j=a0.id -if(n.j(0,j==null?m:j)){n=a2.k1 -if(n==null)n=l -m=a0.k1 -if(n.j(0,m==null?k:m)){n=a2.k2 -m=a0.k2 -if(n.j(0,m)){l=a2.k3 -k=a0.k3 -if(l.j(0,k)){j=a2.ok -if(j==null)j=n -i=a0.ok -if(j.j(0,i==null?m:i)){j=a2.p1 -if(j==null)j=n -i=a0.p1 -if(j.j(0,i==null?m:i)){j=a2.p2 -if(j==null)j=n -i=a0.p2 -if(j.j(0,i==null?m:i)){j=a2.p3 -if(j==null)j=n -i=a0.p3 -if(j.j(0,i==null?m:i)){j=a2.p4 -if(j==null)j=n -i=a0.p4 -if(j.j(0,i==null?m:i)){j=a2.R8 -if(j==null)j=n -i=a0.R8 -if(j.j(0,i==null?m:i)){j=a2.RG -if(j==null)j=n -i=a0.RG -if(j.j(0,i==null?m:i)){j=a2.rx -if(j==null)j=l -i=a0.rx -if(j.j(0,i==null?k:i)){j=a2.ry -if(j==null){j=a2.n -if(j==null)j=l}i=a0.ry -if(i==null){i=a0.n -if(i==null)i=k}if(j.j(0,i)){j=a2.to -if(j==null){j=a2.n -if(j==null)j=l}i=a0.to -if(i==null){i=a0.n -if(i==null)i=k}if(j.j(0,i)){j=a2.x1 -if(j==null)j=B.r -i=a0.x1 -if(j.j(0,i==null?B.r:i)){j=a2.x2 -if(j==null)j=B.r -i=a0.x2 -if(j.j(0,i==null?B.r:i)){j=a2.xr -if(j==null)j=l -i=a0.xr -if(j.j(0,i==null?k:i)){j=a2.y1 -if(j==null)j=n -i=a0.y1 -if(j.j(0,i==null?m:i)){j=a2.y2 -p=j==null?p:j -j=a0.y2 -if(p.j(0,j==null?o:j)){p=a2.aH -r=p==null?r:p -p=a0.aH -if(r.j(0,p==null?q:p)){r=a2.aB -if(r==null)r=n -q=a0.aB -if(r.j(0,q==null?m:q)){r=a2.n -if(r==null)r=l -q=a0.n -if(r.j(0,q==null?k:q)){s=a2.k4 -if(s==null)s=n -r=a0.k4 -s=s.j(0,r==null?m:r)}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}return s}, -gt(d1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7=this,c8=c7.b,c9=c7.c,d0=c7.d -if(d0==null)d0=c8 -s=c7.e -if(s==null)s=c9 -r=c7.y -q=c7.z -p=c7.Q -if(p==null)p=r -o=c7.as -if(o==null)o=q -n=c7.CW -m=n==null -l=m?r:n -k=c7.cx -j=k==null -i=j?q:k -h=c7.cy -if(h==null)h=m?r:n -g=c7.db -if(g==null)g=j?q:k -f=c7.fy -e=c7.go -d=c7.id -if(d==null)d=f -c=c7.k1 -if(c==null)c=e -b=c7.k2 -a=c7.k3 -a0=c7.ok -if(a0==null)a0=b -a1=c7.p1 -if(a1==null)a1=b -a2=c7.p2 -if(a2==null)a2=b -a3=c7.p3 -if(a3==null)a3=b -a4=c7.p4 -if(a4==null)a4=b -a5=c7.R8 -if(a5==null)a5=b -a6=c7.RG -if(a6==null)a6=b -a7=c7.rx -if(a7==null)a7=a -a8=c7.ry -if(a8==null){a8=c7.n -if(a8==null)a8=a}a9=c7.to -if(a9==null){a9=c7.n -if(a9==null)a9=a}b0=c7.x1 -if(b0==null)b0=B.r -b1=c7.x2 -if(b1==null)b1=B.r -b2=c7.xr -if(b2==null)b2=a -b3=c7.y1 -if(b3==null)b3=b -b4=c7.y2 -if(b4==null)b4=c9 -b5=c7.aH -if(b5==null)b5=c8 -b6=c7.f -if(b6==null)b6=c8 -b7=c7.r -if(b7==null)b7=c8 -b8=c7.w -if(b8==null)b8=c9 -b9=c7.x -if(b9==null)b9=c9 -c0=c7.at -if(c0==null)c0=r -c1=c7.ax -if(c1==null)c1=r -c2=c7.ay -if(c2==null)c2=q -c3=c7.ch -if(c3==null)c3=q -c4=c7.dx -if(c4==null)c4=m?r:n -c5=c7.dy -if(c5==null){if(m)n=r}else n=c5 -m=c7.fr -if(m==null)m=j?q:k -c5=c7.fx -if(c5==null){if(j)k=q}else k=c5 -j=c7.aB -if(j==null)j=b -c5=c7.n -if(c5==null)c5=a -c6=c7.k4 -return A.N(c7.a,c8,c9,d0,s,r,q,p,o,l,i,h,g,f,e,d,c,A.N(b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,A.N(b6,b7,b8,b9,c0,c1,c2,c3,c4,n,m,k,j,c5,c6==null?b:c6,B.a,B.a,B.a,B.a,B.a),B.a),B.a,B.a)}} -A.a18.prototype={} -A.w8.prototype={} -A.B1.prototype={ -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.B1)if(J.b(b.a,r.a))if(b.b==r.b)if(b.c==r.c)if(b.d==r.d)if(J.b(b.e,r.e))if(b.f==r.f)if(b.r==r.r)if(J.b(b.w,r.w))if(b.x==r.x)if(b.y==r.y)if(b.z==r.z)s=b.Q==r.Q -return s}} -A.a1K.prototype={} -A.B2.prototype={ -gh3(){return null}, -gt(a){var s=this -return A.bh([s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,s.k1,s.k2,s.k3,s.k4,s.ok,s.p1,s.p2,s.gh3(),s.p4,s.R8,s.RG,s.rx,s.ry])}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -s=!1 -if(b instanceof A.B2)if(J.b(b.a,r.a))if(b.b==r.b)if(J.b(b.c,r.c))if(J.b(b.d,r.d))if(J.b(b.e,r.e))if(J.b(b.f,r.f))if(J.b(b.r,r.r))if(J.b(b.w,r.w))if(J.b(b.x,r.x))if(J.b(b.y,r.y))if(J.b(b.z,r.z))if(b.Q==r.Q)if(b.as==r.as)if(b.at==r.at)if(b.ax==r.ax)if(b.ay==r.ay)if(b.ch==r.ch)if(J.b(b.CW,r.CW))if(J.b(b.cx,r.cx))if(b.cy==r.cy)if(b.db==r.db)if(b.dx==r.dx)if(b.dy==r.dy)if(J.b(b.fr,r.fr))if(b.fx==r.fx)if(J.b(b.fy,r.fy))if(J.b(b.go,r.go))if(J.b(b.id,r.id))if(J.b(b.k1,r.k1))if(J.b(b.k2,r.k2))if(J.b(b.k3,r.k3))if(J.b(b.k4,r.k4))if(J.b(b.ok,r.ok))if(b.p1==r.p1)if(J.b(b.p2,r.p2)){b.gh3() -r.gh3() -s=J.b(b.p4,r.p4)&&J.b(b.R8,r.R8)&&J.b(b.rx,r.rx)&&J.b(b.ry,r.ry)}return s}} -A.a1M.prototype={} -A.a1Y.prototype={} -A.afq.prototype={ -tE(a){return B.Q}, -A7(a,b,c,d){return B.aE}, -tD(a,b){return B.f}} -A.aaE.prototype={} -A.PK.prototype={ -K(a){var s=null,r=A.c0(a,B.bS,t.l).w.r.b+8 -return new A.bR(new A.a2(8,r,8,8),new A.jC(new A.PL(this.c.ac(0,new A.h(8,r))),A.a8(A.mf(!1,B.a3,!0,B.KH,A.bJ(this.d,B.o,B.m,B.ak),B.cm,s,1,s,s,s,s,s,B.fj),s,222),s),s)}} -A.vk.prototype={ -K(a){var s=null -return A.a8(A.awz(this.d,this.c,A.aS5(B.cD,s,s,s,s,B.ci,s,s,B.ci,A.P(a).ax.a===B.R?B.l:B.a8,s,B.a99,B.P3,s,B.kK,s,s,s,s,s)),s,1/0)}, -gR(){return this.d}} -A.nJ.prototype={ -K(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=null -A.P(a) -a.aA(t.jh) -s=A.P(a).aB -r=t.l -q=A.c0(a,B.ip,r).w -p=s.Q -if(p==null)p=B.P6 -o=q.f.a8(0,p) -n=new A.aBo(a,g,6,g,g,B.a5x,B.a_,g,g,g,g,g,g,B.v,g) -m=s.at -if(m==null)m=B.KQ -q=s.f -if(q==null){q=n.f -q.toString}p=s.b -if(p==null){p=n.b -p.toString}l=s.c -if(l==null)l=n.gcz() -k=s.d -if(k==null)k=n.gd2() -j=s.e -if(j==null){j=n.e -j.toString}i=s.as -if(i==null){i=n.as -i.toString}h=new A.ex(q,g,g,new A.dX(m,A.mf(!1,B.a3,!0,g,this.as,i,this.c,p,g,l,j,k,g,B.fj),g),g) -return A.cz(g,new A.zJ(o,new A.jP(A.c0(a,g,r).w.a1a(!0,!0,!0,!0),h,g),B.h_,B.bi,g,g),!1,g,g,!1,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,B.a6e,g,g,g,g,g,g,g,g,B.Y,g)}, -gR(){return this.as}} -A.aBo.prototype={ -gQd(){var s,r=this,q=r.ay -if(q===$){s=A.P(r.ax) -r.ay!==$&&A.aK() -q=r.ay=s.ax}return q}, -gQe(){var s,r=this,q=r.ch -if(q===$){s=A.P(r.ax) -r.ch!==$&&A.aK() -q=r.ch=s.ok}return q}, -gdL(){return this.gQd().y}, -gcb(){var s=this.gQd(),r=s.R8 -return r==null?s.k2:r}, -gcz(){return B.D}, -gd2(){return B.D}, -gjb(){return this.gQe().f}, -gkX(){return this.gQe().z}, -giP(){return B.P4}} -A.vn.prototype={ -gt(a){var s=this -return A.bh([s.gcb(),s.b,s.gcz(),s.gd2(),s.e,s.f,s.gdL(),s.gjb(),s.gkX(),s.giP(),s.z,s.Q,s.as,s.at])}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.vn&&J.b(b.gcb(),s.gcb())&&b.b==s.b&&J.b(b.gcz(),s.gcz())&&J.b(b.gd2(),s.gd2())&&J.b(b.e,s.e)&&J.b(b.f,s.f)&&J.b(b.gdL(),s.gdL())&&J.b(b.gjb(),s.gjb())&&J.b(b.gkX(),s.gkX())&&J.b(b.giP(),s.giP())&&J.b(b.z,s.z)&&J.b(b.Q,s.Q)&&b.as==s.as&&J.b(b.at,s.at)}, -gcb(){return this.a}, -gcz(){return this.c}, -gd2(){return this.d}, -gjb(){return this.r}, -gkX(){return this.w}, -giP(){return this.x}, -gdL(){return this.y}} -A.a2_.prototype={} -A.qa.prototype={ -K(a){var s,r,q,p,o,n,m,l=null -A.P(a) -s=A.aVI(a) -r=A.b_s(a) -q=this.c -p=q==null?s.b:q -if(p==null){q=r.b -q.toString -p=q}o=s.c -if(o==null){q=r.c -q.toString -o=q}n=s.d -if(n==null){q=r.d -q.toString -n=q}m=s.e -if(m==null){q=r.e -q.toString -m=q}q=s.f -if(q==null)q=r.f -return A.a8(A.dp(A.bL(l,l,B.v,l,l,new A.bm(l,l,new A.dV(B.x,B.x,A.b7d(a,this.w,o),B.x),q,l,l,l,B.G),l,o,new A.dt(n,0,m,0),l,l,l,l),l,l),p,l)}} -A.aBs.prototype={ -gdQ(){var s=A.P(this.r).ax,r=s.to -if(r==null){r=s.n -s=r==null?s.k3:r}else s=r -return s}} -A.qb.prototype={ -gt(a){var s=this -return A.N(s.gdQ(),s.b,s.c,s.d,s.e,s.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.qb&&J.b(b.gdQ(),s.gdQ())&&b.b==s.b&&b.c==s.c&&b.d==s.d&&b.e==s.e&&J.b(b.f,s.f)}, -gdQ(){return this.a}} -A.a25.prototype={} -A.Bh.prototype={ -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.Bh)if(J.b(b.a,r.a))if(J.b(b.b,r.b))if(b.c==r.c)if(J.b(b.d,r.d))if(J.b(b.e,r.e))if(J.b(b.f,r.f))if(J.b(b.r,r.r))s=b.w==r.w -return s}} -A.a2c.prototype={} -A.Bi.prototype={ -gh3(){return null}, -gt(a){var s=this -return A.N(s.a,s.gh3(),s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.Bi)if(J.b(b.a,r.a)){b.gh3() -r.gh3() -s=J.b(b.c,r.c)&&J.b(b.d,r.d)}return s}} -A.a2d.prototype={} -A.vr.prototype={ -Jf(a){var s=null -A.P(a) -return new A.a2k(a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,B.a3,!0,B.a_,s,s,s)}, -M4(a){var s -a.aA(t.Gt) -s=A.P(a) -return s.a3.a}} -A.a2k.prototype={ -giJ(){var s,r=this,q=r.go -if(q===$){s=A.P(r.fy) -r.go!==$&&A.aK() -q=r.go=s.ax}return q}, -gkB(){return new A.bB(A.P(this.fy).ok.as,t.RP)}, -gcb(){return new A.bS(new A.aBw(this),t.b)}, -gdi(){return new A.bS(new A.aBy(this),t.b)}, -geg(){return new A.bS(new A.aBA(this),t.b)}, -gcz(){var s=this.giJ().x1 -if(s==null)s=B.r -return new A.bB(s,t.De)}, -gd2(){return B.bY}, -ge9(){return new A.bS(new A.aBx(),t.N5)}, -gcH(){return new A.bB(A.biB(this.fy),t.mD)}, -ghK(){return B.JT}, -ghG(){return B.JS}, -gdL(){return new A.bS(new A.aBz(this),t.mN)}, -ghJ(){return B.fK}, -gdt(){return B.fL}, -geQ(){return B.ev}, -ghT(){return A.P(this.fy).Q}, -ghO(){return A.P(this.fy).f}, -ghx(){return A.P(this.fy).y}} -A.aBw.prototype={ -$1(a){var s,r -if(a.q(0,B.K)){s=this.a.giJ().k3 -return A.ar(31,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}s=this.a.giJ() -r=s.p3 -return r==null?s.k2:r}, -$S:7} -A.aBy.prototype={ -$1(a){var s -if(a.q(0,B.K)){s=this.a.giJ().k3 -return A.ar(97,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}return this.a.giJ().b}, -$S:7} -A.aBA.prototype={ -$1(a){if(a.q(0,B.a2))return this.a.giJ().b.aI(0.1) -if(a.q(0,B.I))return this.a.giJ().b.aI(0.08) -if(a.q(0,B.J))return this.a.giJ().b.aI(0.1) -return null}, -$S:62} -A.aBx.prototype={ -$1(a){if(a.q(0,B.K))return 0 -if(a.q(0,B.a2))return 1 -if(a.q(0,B.I))return 3 -if(a.q(0,B.J))return 1 -return 1}, -$S:224} -A.aBz.prototype={ -$1(a){var s,r=this -if(a.q(0,B.K)){s=r.a.giJ().k3 -return A.ar(97,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.a2))return r.a.giJ().b -if(a.q(0,B.I))return r.a.giJ().b -if(a.q(0,B.J))return r.a.giJ().b -return r.a.giJ().b}, -$S:7} -A.Bq.prototype={ -gt(a){return J.D(this.a)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.Bq&&J.b(b.a,this.a)}} -A.a2l.prototype={} -A.nc.prototype={} -A.By.prototype={ -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.By)if(J.b(b.a,r.a))if(J.b(b.b,r.b))if(J.b(b.c,r.c))if(J.b(b.d,r.d))if(J.b(b.e,r.e))if(J.b(b.f,r.f))if(J.b(b.r,r.r))if(J.b(b.w,r.w))if(J.b(b.x,r.x))if(J.b(b.y,r.y))s=J.b(b.z,r.z) -return s}} -A.a2s.prototype={} -A.BA.prototype={ -gt(a){return J.D(this.a)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.BA&&J.b(b.a,this.a)}} -A.a2w.prototype={} -A.BE.prototype={ -cI(a){var s=this,r=!0 -if(s.f===a.f)if(s.r===a.r)if(s.w===a.w)r=s.x!==a.x -return r}} -A.ahT.prototype={ -k(a){return"FloatingActionButtonLocation"}} -A.avQ.prototype={ -auL(){return!1}, -on(a){var s=this.auL()?4:0 -return new A.h(this.a2n(a,s),this.a2o(a,s))}} -A.ahI.prototype={ -a2o(a,b){var s=a.c,r=a.b.b,q=a.a.b,p=a.w.b,o=s-q-Math.max(16,a.f.d-(a.r.b-s)+16) -if(p>0)o=Math.min(o,s-p-q-16) -return(r>0?Math.min(o,s-r-q/2):o)+b}} -A.ahH.prototype={ -a2n(a,b){var s -switch(a.y.a){case 0:s=16+a.e.a-b -break -case 1:s=A.bbg(a,b) -break -default:s=null}return s}} -A.aBC.prototype={ -k(a){return"FloatingActionButtonLocation.endFloat"}} -A.ahS.prototype={ -k(a){return"FloatingActionButtonAnimator"}} -A.aH7.prototype={ -a2m(a,b,c){if(c<0.5)return a -else return b}} -A.GU.prototype={ -gp(){var s=this,r=s.w.x -r===$&&A.a() -return r>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.ai))return this.a.gbs().b -s=this.a.gbs() -r=s.rx -return r==null?s.k3:r}, -$S:7} -A.aD9.prototype={ -$1(a){var s,r,q=this -if(a.q(0,B.ai)){if(a.q(0,B.a2))return q.a.gbs().b.aI(0.1) -if(a.q(0,B.I))return q.a.gbs().b.aI(0.08) -if(a.q(0,B.J))return q.a.gbs().b.aI(0.1)}if(a.q(0,B.a2)){s=q.a.gbs() -r=s.rx -s=r==null?s.k3:r -return A.ar(B.d.aY(25.5),s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.I)){s=q.a.gbs() -r=s.rx -s=r==null?s.k3:r -return A.ar(20,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.J)){s=q.a.gbs() -r=s.rx -s=r==null?s.k3:r -return A.ar(B.d.aY(25.5),s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}return B.D}, -$S:7} -A.a2x.prototype={ -gbs(){var s,r=this,q=r.id -if(q===$){s=A.P(r.fy) -r.id!==$&&A.aK() -q=r.id=s.ax}return q}, -gcb(){return new A.bS(new A.aBJ(this),t.b)}, -gdi(){return new A.bS(new A.aBK(this),t.b)}, -geg(){return new A.bS(new A.aBL(this),t.b)}, -ge9(){return B.ig}, -gcz(){return B.bY}, -gd2(){return B.bY}, -gcH(){return B.lf}, -ghK(){return B.lg}, -ghJ(){return B.fK}, -ghG(){return B.le}, -giD(){return null}, -gdt(){return B.fL}, -geQ(){return B.ev}, -ghT(){return B.ie}, -ghO(){return A.P(this.fy).f}, -ghx(){return A.P(this.fy).y}} -A.aBJ.prototype={ -$1(a){var s,r -if(a.q(0,B.K)){s=this.a.gbs().k3 -return A.ar(31,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.ai))return this.a.gbs().b -s=this.a -if(s.go){s=s.gbs() -r=s.RG -return r==null?s.k2:r}return s.gbs().b}, -$S:7} -A.aBK.prototype={ -$1(a){var s -if(a.q(0,B.K)){s=this.a.gbs().k3 -return A.ar(97,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.ai))return this.a.gbs().c -s=this.a -if(s.go)return s.gbs().b -return s.gbs().c}, -$S:7} -A.aBL.prototype={ -$1(a){var s,r=this -if(a.q(0,B.ai)){if(a.q(0,B.a2))return r.a.gbs().c.aI(0.1) -if(a.q(0,B.I))return r.a.gbs().c.aI(0.08) -if(a.q(0,B.J))return r.a.gbs().c.aI(0.1)}s=r.a -if(s.go){if(a.q(0,B.a2))return s.gbs().b.aI(0.1) -if(a.q(0,B.I))return s.gbs().b.aI(0.08) -if(a.q(0,B.J))return s.gbs().b.aI(0.1)}if(a.q(0,B.a2))return s.gbs().c.aI(0.1) -if(a.q(0,B.I))return s.gbs().c.aI(0.08) -if(a.q(0,B.J))return s.gbs().c.aI(0.1) -return B.D}, -$S:7} -A.a2y.prototype={ -gbs(){var s,r=this,q=r.id -if(q===$){s=A.P(r.fy) -r.id!==$&&A.aK() -q=r.id=s.ax}return q}, -gcb(){return new A.bS(new A.aBM(this),t.b)}, -gdi(){return new A.bS(new A.aBN(this),t.b)}, -geg(){return new A.bS(new A.aBO(this),t.b)}, -ge9(){return B.ig}, -gcz(){return B.bY}, -gd2(){return B.bY}, -gcH(){return B.lf}, -ghK(){return B.lg}, -ghJ(){return B.fK}, -ghG(){return B.le}, -giD(){return null}, -gdt(){return B.fL}, -geQ(){return B.ev}, -ghT(){return B.ie}, -ghO(){return A.P(this.fy).f}, -ghx(){return A.P(this.fy).y}} -A.aBM.prototype={ -$1(a){var s,r -if(a.q(0,B.K)){s=this.a.gbs().k3 -return A.ar(31,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.ai)){s=this.a.gbs() -r=s.Q -return r==null?s.y:r}s=this.a -if(s.go){s=s.gbs() -r=s.RG -return r==null?s.k2:r}s=s.gbs() -r=s.Q -return r==null?s.y:r}, -$S:7} -A.aBN.prototype={ -$1(a){var s,r -if(a.q(0,B.K)){s=this.a.gbs().k3 -return A.ar(97,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.ai)){s=this.a.gbs() -r=s.as -return r==null?s.z:r}s=this.a -if(s.go){s=s.gbs() -r=s.rx -return r==null?s.k3:r}s=s.gbs() -r=s.as -return r==null?s.z:r}, -$S:7} -A.aBO.prototype={ -$1(a){var s,r,q=this -if(a.q(0,B.ai)){if(a.q(0,B.a2)){s=q.a.gbs() -r=s.as -return(r==null?s.z:r).aI(0.1)}if(a.q(0,B.I)){s=q.a.gbs() -r=s.as -return(r==null?s.z:r).aI(0.08)}if(a.q(0,B.J)){s=q.a.gbs() -r=s.as -return(r==null?s.z:r).aI(0.1)}}s=q.a -if(s.go){if(a.q(0,B.a2)){s=s.gbs() -r=s.rx -s=r==null?s.k3:r -return A.ar(B.d.aY(25.5),s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.I)){s=s.gbs() -r=s.rx -s=r==null?s.k3:r -return A.ar(20,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.J)){s=s.gbs() -r=s.rx -s=r==null?s.k3:r -return A.ar(B.d.aY(25.5),s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}}if(a.q(0,B.a2)){s=s.gbs() -r=s.as -return(r==null?s.z:r).aI(0.1)}if(a.q(0,B.I)){s=s.gbs() -r=s.as -return(r==null?s.z:r).aI(0.08)}if(a.q(0,B.J)){s=s.gbs() -r=s.as -return(r==null?s.z:r).aI(0.1)}return B.D}, -$S:7} -A.a4i.prototype={ -gbs(){var s,r=this,q=r.id -if(q===$){s=A.P(r.fy) -r.id!==$&&A.aK() -q=r.id=s.ax}return q}, -gcb(){return new A.bS(new A.aF0(this),t.b)}, -gdi(){return new A.bS(new A.aF1(this),t.b)}, -geg(){return new A.bS(new A.aF2(this),t.b)}, -ge9(){return B.ig}, -gcz(){return B.bY}, -gd2(){return B.bY}, -gcH(){return B.lf}, -ghK(){return B.lg}, -ghJ(){return B.fK}, -ghG(){return B.le}, -giD(){return new A.bS(new A.aF3(this),t.jY)}, -gdt(){return B.fL}, -geQ(){return B.ev}, -ghT(){return B.ie}, -ghO(){return A.P(this.fy).f}, -ghx(){return A.P(this.fy).y}} -A.aF0.prototype={ -$1(a){var s,r -if(a.q(0,B.K)){if(a.q(0,B.ai)){s=this.a.gbs().k3 -return A.ar(31,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}return B.D}if(a.q(0,B.ai)){s=this.a.gbs() -r=s.xr -return r==null?s.k3:r}return B.D}, -$S:7} -A.aF1.prototype={ -$1(a){var s,r -if(a.q(0,B.K)){s=this.a.gbs().k3 -return A.ar(97,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.ai)){s=this.a.gbs() -r=s.y1 -return r==null?s.k2:r}s=this.a.gbs() -r=s.rx -return r==null?s.k3:r}, -$S:7} -A.aF2.prototype={ -$1(a){var s,r,q=this -if(a.q(0,B.ai)){if(a.q(0,B.a2)){s=q.a.gbs() -r=s.y1 -s=r==null?s.k2:r -return A.ar(B.d.aY(25.5),s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.I)){s=q.a.gbs() -r=s.y1 -s=r==null?s.k2:r -return A.ar(20,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.J)){s=q.a.gbs() -r=s.y1 -s=r==null?s.k2:r -return A.ar(20,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}}if(a.q(0,B.a2)){s=q.a.gbs().k3 -return A.ar(B.d.aY(25.5),s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.I)){s=q.a.gbs() -r=s.rx -s=r==null?s.k3:r -return A.ar(20,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.J)){s=q.a.gbs() -r=s.rx -s=r==null?s.k3:r -return A.ar(20,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}return B.D}, -$S:7} -A.aF3.prototype={ -$1(a){var s,r -if(a.q(0,B.ai))return null -else{if(a.q(0,B.K)){s=this.a.gbs().k3 -return new A.bl(A.ar(31,s.A()>>>16&255,s.A()>>>8&255,s.A()&255),1,B.F,-1)}s=this.a.gbs() -r=s.ry -if(r==null){r=s.n -s=r==null?s.k3:r}else s=r -return new A.bl(s,1,B.F,-1)}}, -$S:237} -A.m5.prototype={ -gt(a){return J.D(this.a)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.m5&&J.b(b.a,this.a)}} -A.BY.prototype={ -qa(a,b){return A.R4(b,this.w)}, -cI(a){return!this.w.j(0,a.w)}} -A.a3b.prototype={} -A.nW.prototype={ -ada(a){var s -if(a===B.Z&&!this.CW){s=this.ch -s===$&&A.a() -s.l() -this.mX()}}, -l(){var s=this.ch -s===$&&A.a() -s.l() -this.mX()}, -SY(a,b,c){var s,r,q=this,p=a.a -J.b4(p.save()) -s=q.f -if(s!=null)a.Xr(s.fd(b,q.ax)) -switch(q.z.a){case 1:s=b.gbp() -r=q.Q -a.nI(s,r==null?35:r,c) -break -case 0:s=q.as -if(!s.j(0,B.ah))a.eL(A.aRF(b,s.c,s.d,s.a,s.b),c) -else a.h_(b,c) -break}p.restore()}, -LC(a,b){var s,r,q,p,o,n=this -$.ab() -s=A.bt() -r=n.e -q=n.ay -q===$&&A.a() -s.r=r.e_(q.b.aj(q.a.gp())).gp() -p=A.anK(b) -r=n.at -if(r!=null)o=r.$0() -else{r=n.b.gC() -o=new A.w(0,0,0+r.a,0+r.b)}if(p==null){r=a.a -J.b4(r.save()) -a.aj(b.a) -n.SY(a,o,s) -r.restore()}else n.SY(a,o.e0(p),s)}} -A.aNz.prototype={ -$0(){var s=this.a.gC() -return new A.w(0,0,0+s.a,0+s.b)}, -$S:208} -A.aDm.prototype={ -Y1(a,b,c,d,e,f,g,a0,a1,a2,a3){var s,r,q,p,o,n,m,l,k,j,i=null,h=a==null?B.ah:a -if(a0==null){if(a1!=null){s=a1.$0() -r=new A.L(s.c-s.a,s.d-s.b)}else r=a2.gC() -s=Math.max(r.A5(B.f).gd3(),new A.h(0+r.a,0).ac(0,new A.h(0,0+r.b)).gd3())/2}else s=a0 -h=new A.C8(g,h,s,A.bhQ(a2,c,a1),a3,b,e,d,a2,f) -q=d.D -p=A.bX(i,B.iU,i,i,q) -o=d.geP() -p.bC() -p.d_$.G(0,o) -p.cc() -h.cx=p -n=b.ger() -m=t.v -l=t.gD -h.CW=new A.aw(m.a(p),new A.nY(0,n),l.i("aw")) -n=A.bX(i,B.eP,i,i,q) -n.bC() -n.d_$.G(0,o) -n.cc() -h.ch=n -p=t.Y -k=$.b2w() -j=p.i("eE") -h.ay=new A.aw(m.a(n),new A.eE(k,new A.aA(s*0.3,s+5,p),j),j.i("aw")) -q=A.bX(i,B.qZ,i,i,q) -q.bC() -q.d_$.G(0,o) -q.bC() -o=q.cP$ -o.b=!0 -o.a.push(h.gagH()) -h.db=q -o=b.ger() -j=$.b2x() -l=l.i("eE") -h.cy=new A.aw(m.a(q),new A.eE(j,new A.nY(o,0),l),l.i("aw")) -d.Ib(h) -return h}} -A.C8.prototype={ -vv(){var s=this.ch -s===$&&A.a() -s.e=B.OJ -s.cc() -s=this.cx -s===$&&A.a() -s.cc() -s=this.db -s===$&&A.a() -s.z=B.aP -s.iG(1,B.a7,B.qZ)}, -bg(){var s,r=this,q=r.cx -q===$&&A.a() -q.fg() -q=r.cx.x -q===$&&A.a() -s=1-q -q=r.db -q===$&&A.a() -q.sp(s) -if(s<1){q=r.db -q.z=B.aP -q.iG(1,B.a7,B.iU)}}, -agI(a){if(a===B.a9)this.l()}, -l(){var s=this,r=s.ch -r===$&&A.a() -r.l() -r=s.cx -r===$&&A.a() -r.l() -r=s.db -r===$&&A.a() -r.l() -s.mX()}, -LC(a,b){var s,r,q,p,o,n=this,m=n.cx -m===$&&A.a() -m=m.r -if(m!=null&&m.a!=null){m=n.CW -m===$&&A.a() -s=m.b.aj(m.a.gp())}else{m=n.cy -m===$&&A.a() -s=m.b.aj(m.a.gp())}$.ab() -r=A.bt() -r.r=n.e.e_(s).gp() -m=n.at -q=m==null?null:m.$0() -p=q!=null?q.gbp():n.b.gC().lW(B.f) -o=n.ch -o===$&&A.a() -o=o.x -o===$&&A.a() -o=A.rm(n.z,p,B.bE.aj(o)) -o.toString -p=n.ay -p===$&&A.a() -p=p.b.aj(p.a.gp()) -n.a0q(n.Q,a,o,m,n.f,r,p,n.ax,b)}} -A.aNy.prototype={ -$0(){var s=this.a.gC() -return new A.w(0,0,0+s.a,0+s.b)}, -$S:208} -A.aDn.prototype={ -Y1(a,b,c,d,e,f,g,h,i,j,k){var s,r,q,p,o,n=null,m=a==null?B.ah:a,l=h==null?A.bhT(j,c,i,g):h -m=new A.C9(g,m,l,A.bhP(j,c,i),!c,k,b,e,d,j,f) -s=d.D -r=A.bX(n,B.eP,n,n,s) -q=d.geP() -r.bC() -r.d_$.G(0,q) -r.cc() -m.CW=r -p=t.Y -o=t.v -m.ch=new A.aw(o.a(r),new A.aA(0,l,p),p.i("aw")) -s=A.bX(n,B.a3,n,n,s) -s.bC() -s.d_$.G(0,q) -s.bC() -q=s.cP$ -q.b=!0 -q.a.push(m.gagJ()) -m.cy=s -q=b.ger() -m.cx=new A.aw(o.a(s),new A.nY(q,0),t.gD.i("aw")) -d.Ib(m) -return m}} -A.C9.prototype={ -vv(){var s=B.d.ih(this.as/1),r=this.CW -r===$&&A.a() -r.e=A.cI(0,s) -r.cc() -this.cy.cc()}, -bg(){var s=this.cy -if(s!=null)s.cc()}, -agK(a){if(a===B.a9)this.l()}, -l(){var s=this,r=s.CW -r===$&&A.a() -r.l() -s.cy.l() -s.cy=null -s.mX()}, -LC(a,b){var s,r,q,p,o=this -$.ab() -s=A.bt() -r=o.e -q=o.cx -q===$&&A.a() -s.r=r.e_(q.b.aj(q.a.gp())).gp() -p=o.z -if(o.ax){r=o.b.gC().lW(B.f) -q=o.CW -q===$&&A.a() -q=q.x -q===$&&A.a() -p=A.rm(p,r,q)}p.toString -r=o.ch -r===$&&A.a() -r=r.b.aj(r.a.gp()) -o.a0q(o.Q,a,p,o.at,o.f,s,r,o.ay,b)}} -A.nZ.prototype={ -vv(){}, -bg(){}, -sdQ(a){if(a.j(0,this.e))return -this.e=a -this.a.bb()}, -sJ9(a){if(J.b(a,this.f))return -this.f=a -this.a.bb()}, -a0q(a,b,c,d,e,f,g,h,i){var s,r=A.anK(i),q=b.a -J.b4(q.save()) -if(r==null)b.aj(i.a) -else q.translate(r.a,r.b) -if(d!=null){s=d.$0() -if(e!=null)b.Xr(e.fd(s,h)) -else if(!a.j(0,B.ah))q.clipRRect(A.lu(A.aRF(s,a.c,a.d,a.a,a.b)),$.us(),!0) -else q.clipRect(A.d6(s),$.pD()[1],!0)}b.nI(c,g,f) -q.restore()}} -A.vN.prototype={} -A.IQ.prototype={ -cI(a){return this.f!==a.f}} -A.C7.prototype={ -a2u(a){return null}, -K(a){var s=this,r=a.aA(t.sZ),q=r==null?null:r.f -return new A.Ic(s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.as,s.Q,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,s.k1,!1,s.k3,!1,s.ok,s.p1,q,s.ga2t(),s.p2,s.p3,null)}, -gR(){return this.c}} -A.Ic.prototype={ -ah(){return new A.Ib(A.t(t.R9,t.Pr),new A.bp(A.c([],t.IR),t.yw),null)}, -gR(){return this.c}} -A.p3.prototype={ -N(){return"_HighlightType."+this.b}} -A.Ib.prototype={ -gatT(){var s=this.r,r=A.n(s).i("bo<2>") -return!new A.b1(new A.bo(s,r),new A.aDk(),r.i("b1")).gan(0)}, -L6(a,b){var s,r=this.y,q=r.a,p=q.length -if(b){r.b=!0 -q.push(a)}else r.J(0,a) -s=q.length!==0 -if(s!==(p!==0)){r=this.a.p2 -if(r!=null)r.L6(this,s)}}, -ao6(a){var s=this,r=s.z -if(r!=null)r.bg() -s.z=null -r=s.c -r.toString -s.UI(r) -r=s.e -if(r!=null)r.vv() -s.e=null -r=s.a -if(r.d!=null){if(r.k1){r=s.c -r.toString -A.Qg(r)}r=s.a.d -if(r!=null)r.$0()}s.z=A.ck(B.bi,new A.aDg(s))}, -NB(a){var s=this.c -s.toString -this.UI(s) -this.ZN()}, -a3x(){return this.NB(null)}, -Kr(){this.ar(new A.aDj())}, -gcr(){var s=this.a.R8 -if(s==null){s=this.x -s.toString}return s}, -wc(){var s,r,q=this -if(q.a.R8==null)q.x=A.ay3() -s=q.gcr() -r=q.a -r.toString -s.cW(B.K,!(q.iL(r)||q.iN(r))) -q.gcr().a9(q.gpy())}, -aw(){this.a7M() -this.wc() -$.a1.ap$.d.a.f.G(0,this.gZF())}, -aV(a){var s,r,q,p,o=this -o.bm(a) -s=a.R8 -if(o.a.R8!=s){if(s!=null)s.O(o.gpy()) -if(o.a.R8!=null){s=o.x -if(s!=null){s.P$=$.af() -s.L$=0}o.x=null}o.wc()}s=o.a -if(s.cy!=a.cy||s.cx!==a.cx||!J.b(s.db,a.db)){s=o.r -r=s.h(0,B.fP) -if(r!=null){q=r.ch -q===$&&A.a() -q.l() -r.mX() -o.Mj(B.fP,!1,o.f)}p=s.h(0,B.K5) -if(p!=null){s=p.ch -s===$&&A.a() -s.l() -p.mX()}}if(!J.b(o.a.dx,a.dx))o.an7() -s=o.a -s.toString -q=o.iL(s)||o.iN(s) -if(q!==(o.iL(a)||o.iN(a))){q=o.gcr() -q.cW(B.K,!(o.iL(s)||o.iN(s))) -s=o.a -s.toString -if(!(o.iL(s)||o.iN(s))){o.gcr().cW(B.a2,!1) -r=o.r.h(0,B.fP) -if(r!=null){s=r.ch -s===$&&A.a() -s.l() -r.mX()}}o.Mj(B.fP,!1,o.f)}o.Mi()}, -l(){var s,r=this -$.a1.ap$.d.a.f.J(0,r.gZF()) -r.gcr().O(r.gpy()) -s=r.x -if(s!=null){s.P$=$.af() -s.L$=0}s=r.z -if(s!=null)s.bg() -r.z=null -r.aQ()}, -gjV(){if(!this.gatT()){var s=this.d -s=s!=null&&s.a!==0}else s=!0 -return s}, -a2f(a){switch(a.a){case 0:return B.a3 -case 1:case 2:this.a.toString -return B.mv}}, -Mj(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=h.r,e=f.h(0,a),d=a.a -switch(d){case 0:h.gcr().cW(B.a2,c) -break -case 1:if(b)h.gcr().cW(B.I,c) -break -case 2:break}if(a===B.et){s=h.a.p2 -if(s!=null)s.L6(h,c)}s=e==null -if(c===(!s&&e.CW))return -if(c)if(s){s=h.a.fy -if(s==null)r=g -else{q=h.gcr().a -q=s.a.$1(q) -r=q}if(r==null){switch(d){case 0:s=h.a.fx -if(s==null){s=h.c -s.toString -s=A.P(s).cx}break -case 2:s=h.a.dy -if(s==null){s=h.c -s.toString -s=A.P(s).CW}break -case 1:s=h.a.fr -if(s==null){s=h.c -s.toString -s=A.P(s).db}break -default:s=g}r=s}s=h.c.ga1() -s.toString -t.x.a(s) -q=h.c -q.toString -q=A.aWK(q,t.u9) -q.toString -p=h.a -p.toString -p=h.iL(p)||h.iN(p)?r:r.e_(0) -o=h.a -n=o.cx -m=o.cy -l=o.db -k=o.dx -o=o.p3.$1(s) -j=h.c.aA(t.I).w -i=h.a2f(a) -if(l==null)l=B.ah -s=new A.nW(n,m,l,o,j,p,k,q,s,new A.aDl(h,a)) -i=A.bX(g,i,g,g,q.D) -i.bC() -i.d_$.G(0,q.geP()) -i.bC() -k=i.cP$ -k.b=!0 -k.a.push(s.gad9()) -i.cc() -s.ch=i -k=s.e.ger() -s.ay=new A.aw(t.v.a(i),new A.nY(0,k),t.gD.i("aw")) -q.Ib(s) -f.m(0,a,s) -h.oe()}else{e.CW=!0 -f=e.ch -f===$&&A.a() -f.cc()}else{e.CW=!1 -f=e.ch -f===$&&A.a() -f.d6()}switch(d){case 0:h.a.toString -break -case 1:if(b)h.a.toString -break -case 2:break}}, -mD(a,b){return this.Mj(a,!0,b)}, -an7(){var s,r,q,p=this -for(s=p.r,s=new A.db(s,s.r,s.e);s.v();){r=s.d -if(r!=null)r.sJ9(p.a.dx)}s=p.e -if(s!=null)s.sJ9(p.a.dx) -s=p.d -if(s!=null&&s.a!==0)for(r=A.n(s),s=new A.hI(s,s.qE(),r.i("hI<1>")),r=r.c;s.v();){q=s.d -if(q==null)q=r.a(q) -q.sJ9(p.a.dx)}}, -aaW(a){var s,r,q,p,o,n,m,l,k=this,j={},i=k.c -i.toString -i=A.aWK(i,t.u9) -i.toString -s=k.c.ga1() -s.toString -t.x.a(s) -r=s.eC(a) -q=k.a.fy -if(q==null)q=null -else{p=k.gcr().a -p=q.a.$1(p) -q=p}o=q==null?k.a.go:q -if(o==null){q=k.c -q.toString -o=A.P(q).id}q=k.a -n=q.CW?q.p3.$1(s):null -q=k.a -m=q.db -l=q.dx -j.a=null -q=q.id -if(q==null){q=k.c -q.toString -q=A.P(q).y}p=k.a -return j.a=q.Y1(m,o,p.CW,i,l,new A.aDf(j,k),r,p.cy,n,s,k.c.aA(t.I).w)}, -asO(a){if(this.c==null)return -this.ar(new A.aDi(this))}, -galB(){var s,r=this,q=r.c -q.toString -q=A.c_(q,B.io) -s=q==null?null:q.CW -A:{if(B.fp===s||s==null){q=r.a -q.toString -q=(r.iL(q)||r.iN(q))&&r.Q -break A}if(B.kp===s){q=r.Q -break A}q=null}return q}, -Mi(){var s=$.a1.ap$.d.a.b -switch((s==null?A.I2():s).a){case 0:s=!1 -break -case 1:s=this.galB() -break -default:s=null}this.mD(B.K5,s)}, -asQ(a){var s=this -s.Q=a -s.gcr().cW(B.J,a) -s.Mi() -s.a.toString}, -Zz(a){if(this.y.a.length!==0)return -this.am6(a)}, -atv(a){this.Zz(a) -this.a.toString}, -atx(a){this.a.toString}, -atk(a){this.Zz(a) -this.a.toString}, -atm(a){this.a.toString}, -UJ(a,b){var s,r,q,p,o=this -if(a!=null){s=a.ga1() -s.toString -t.x.a(s) -r=s.gC() -r=new A.w(0,0,0+r.a,0+r.b).gbp() -q=A.bA(s.bd(null),r)}else q=b.a -o.gcr().cW(B.a2,!0) -p=o.aaW(q) -s=o.d;(s==null?o.d=A.dv(t.nQ):s).G(0,p) -s=o.e -if(s!=null)s.bg() -o.e=p -o.oe() -o.mD(B.et,!0)}, -am6(a){return this.UJ(null,a)}, -UI(a){return this.UJ(a,null)}, -ZN(){var s=this,r=s.e -if(r!=null)r.vv() -s.e=null -s.mD(B.et,!1) -r=s.a -if(r.d!=null){if(r.k1){r=s.c -r.toString -A.Qg(r)}r=s.a.d -if(r!=null)r.$0()}}, -att(){var s=this,r=s.e -if(r!=null)r.bg() -s.e=null -s.a.toString -s.mD(B.et,!1)}, -atg(){var s=this,r=s.e -if(r!=null)r.vv() -s.e=null -s.mD(B.et,!1) -s.a.toString}, -ati(){var s=this,r=s.e -if(r!=null)r.bg() -s.e=null -s.a.toString -s.mD(B.et,!1)}, -dA(){var s,r,q,p,o,n=this,m=n.d -if(m!=null){n.d=null -for(s=A.n(m),m=new A.hI(m,m.qE(),s.i("hI<1>")),s=s.c;m.v();){r=m.d;(r==null?s.a(r):r).l()}n.e=null}for(m=n.r,s=new A.eS(m,m.r,m.e);s.v();){r=s.d -q=m.h(0,r) -if(q!=null){p=q.ch -p===$&&A.a() -p.r.l() -p.r=null -o=p.cP$ -o.b=!1 -B.b.aa(o.a) -o=o.gqX() -if(o.a>0){o.b=o.c=o.d=o.e=null -o.a=0}p.d_$.a.aa(0) -p.xM() -q.mX()}m.m(0,r,null)}m=n.a.p2 -if(m!=null)m.L6(n,!1) -n.a7L()}, -iL(a){return a.d!=null}, -iN(a){return!1}, -at1(a){var s,r=this -r.f=!0 -s=r.a -s.toString -if(r.iL(s)||r.iN(s))r.mD(B.fP,!0)}, -at3(a){this.f=!1 -this.mD(B.fP,!1)}, -ga9Y(){var s,r=this,q=r.c -q.toString -q=A.c_(q,B.io) -s=q==null?null:q.CW -A:{if(B.fp===s||s==null){q=r.a -q.toString -q=(r.iL(q)||r.iN(q))&&q.p1 -break A}if(B.kp===s){q=!0 -break A}q=null}return q}, -K(a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0=null -a.lD(a1) -s=A.P(a1) -r=a.gcr().a.fY(B.a6x) -q=t.EK -p=A.ep(r,q) -p.G(0,B.a2) -o=A.ep(r,q) -o.G(0,B.J) -q=A.ep(r,q) -q.G(0,B.I) -n=new A.aDh(a,p,s,o,q) -for(q=a.r,p=new A.eS(q,q.r,q.e);p.v();){o=p.d -m=q.h(0,o) -if(m!=null)m.sdQ(n.$1(o))}q=a.e -if(q!=null){p=a.a.fy -if(p==null)p=a0 -else{o=a.gcr().a -o=p.a.$1(o) -p=o}if(p==null)p=a.a.go -q.sdQ(p==null?A.P(a1).id:p)}q=a.a.ch -if(q==null)q=B.ev -l=A.dM(q,a.gcr().a,t.Pb) -k=a.w -if(k===$){q=a.gao5() -p=t.e -o=t.d -j=A.aG([B.oX,new A.dg(q,new A.bp(A.c([],p),o),t.wY),B.afD,new A.dg(q,new A.bp(A.c([],p),o),t.nz)],t.u,t.od) -a.w!==$&&A.aK() -a.w=j -k=j}q=a.a.ok -p=a.ga9Y() -o=a.a -m=o.d -m=m==null?a0:a.ga3w() -i=a.iL(o)?a.gatu():a0 -h=a.iL(o)?a.gatw():a0 -g=a.iL(o)?a.gatr():a0 -f=a.iL(o)?a.gats():a0 -e=a.iN(o)?a.gatj():a0 -d=a.iN(o)?a.gatl():a0 -c=a.iN(o)?a.gatf():a0 -b=a.iN(o)?a.gath():a0 -return new A.IQ(a,A.uB(k,A.jH(!1,p,A.ie(A.b7_(A.cz(a0,A.eP(B.aG,o.c,B.W,!0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,c,b,e,d,g,f,i,h,a0,a0,a0),!1,a0,a0,!1,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,m,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,B.Y,a0),l),l,a0,a.gat0(),a.gat2(),a0),a0,a0,a0,q,!0,a0,a.gasP(),a0,a0,a0,a0)),a0)}, -$iaSE:1} -A.aDk.prototype={ -$1(a){return a!=null}, -$S:242} -A.aDg.prototype={ -$0(){this.a.mD(B.et,!1)}, -$S:0} -A.aDj.prototype={ -$0(){}, -$S:0} -A.aDl.prototype={ -$0(){var s=this.a -s.r.m(0,this.b,null) -s.oe()}, -$S:0} -A.aDf.prototype={ -$0(){var s,r=this.b,q=r.d -if(q!=null){s=this.a -q.J(0,s.a) -if(r.e==s.a)r.e=null -r.oe()}}, -$S:0} -A.aDi.prototype={ -$0(){this.a.Mi()}, -$S:0} -A.aDh.prototype={ -$1(a){var s,r,q=this,p=null -switch(a.a){case 0:s=q.a -r=s.a.fy -r=r==null?p:r.a.$1(q.b) -s=r==null?s.a.fx:r -if(s==null)s=q.c.cx -break -case 2:s=q.a -r=s.a.fy -r=r==null?p:r.a.$1(q.d) -s=r==null?s.a.dy:r -if(s==null)s=q.c.CW -break -case 1:s=q.a -r=s.a.fy -r=r==null?p:r.a.$1(q.e) -s=r==null?s.a.fr:r -if(s==null)s=q.c.db -break -default:s=p}return s}, -$S:243} -A.Rb.prototype={} -A.Lk.prototype={ -aw(){this.b3() -if(this.gjV())this.ka()}, -dA(){var s=this.dh$ -if(s!=null){s.a7() -s.d8() -this.dh$=null}this.iF()}} -A.j_.prototype={} -A.a49.prototype={ -XK(a){return B.lo}, -gpJ(){return!1}, -gkh(){return B.ap}, -bi(a){return B.lo}, -iA(a,b){var s=A.co($.ab().r) -s.b9(new A.fF(a)) -return s}, -fd(a,b){var s=A.co($.ab().r) -s.b9(new A.fF(a)) -return s}, -ir(a,b,c,d){a.h_(b,c)}, -ghv(){return!0}, -Cr(a,b,c,d,e,f){}, -iq(a,b,c){return this.Cr(a,b,0,0,null,c)}} -A.ka.prototype={ -gpJ(){return!1}, -XK(a){var s=a==null?this.a:a -return new A.ka(this.b,s)}, -gkh(){return new A.a2(0,0,0,this.a.b)}, -bi(a){return new A.ka(B.pB,this.a.bi(a))}, -iA(a,b){var s=A.co($.ab().r),r=a.a,q=a.b -s.b9(new A.fF(new A.w(r,q,r+(a.c-r),q+Math.max(0,a.d-q-this.a.b)))) -return s}, -fd(a,b){var s=A.co($.ab().r) -s.b9(new A.fh(this.b.e5(a))) -return s}, -ir(a,b,c,d){a.eL(this.b.e5(b),c)}, -ghv(){return!0}, -dW(a,b){var s,r -if(a instanceof A.ka){s=A.bb(a.a,this.a,b) -r=A.el(a.b,this.b,b) -r.toString -return new A.ka(r,s)}return this.Em(a,b)}, -dX(a,b){var s,r -if(a instanceof A.ka){s=A.bb(this.a,a.a,b) -r=A.el(this.b,a.b,b) -r.toString -return new A.ka(r,s)}return this.En(a,b)}, -Cr(a,b,c,d,e,f){var s,r,q,p,o,n=this.a,m=n.c -if(m===B.aW)return -s=this.b -r=s.c -q=!r.j(0,B.H)||!s.d.j(0,B.H) -p=b.d -if(q){q=(p-b.b)/2 -r=r.Xp(0,new A.aR(q,q)) -q=s.d.Xp(0,new A.aR(q,q)) -s=n.a -A.aQd(a,b,new A.ch(B.H,B.H,r,q),new A.bl(s,n.b,m,-1),s,B.x,B.x,B.G,f,B.x)}else{o=new A.h(0,n.b/2) -a.nJ(new A.h(b.a,p).ac(0,o),new A.h(b.c,p).ac(0,o),n.hR())}}, -iq(a,b,c){return this.Cr(a,b,0,0,null,c)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.ka&&b.a.j(0,s.a)&&b.b.j(0,s.b)}, -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.Id.prototype={ -scq(a){if(a!=this.a){this.a=a -this.a7()}}, -sdT(a){if(a!==this.b){this.b=a -this.a7()}}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.Id&&b.a==s.a&&b.b===s.b}, -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"#"+A.bF(this)}} -A.Ie.prototype={ -eo(a){var s=A.dy(this.a,this.b,a) -s.toString -return t.U1.a(s)}} -A.a3f.prototype={ -b1(a,b){var s,r,q=this,p=q.c.aj(q.b.gp()),o=new A.w(0,0,0+b.a,0+b.b),n=q.w.aj(q.x.gp()) -n.toString -s=A.aQp(n,q.r) -if(s.ger()>0){n=p.fd(o,q.f) -$.ab() -r=A.bt() -r.r=s.gp() -r.b=B.bJ -a.jE(n,r)}n=q.e -r=n.a -p.Cr(a,o,n.b,q.d.gp(),r,q.f)}, -eU(a){var s=this -return s.b!==a.b||s.x!==a.x||s.d!==a.d||s.c!==a.c||!s.e.j(0,a.e)||s.f!==a.f}, -k(a){return"#"+A.bF(this)}} -A.H4.prototype={ -ah(){return new A.a0P(null,null)}} -A.a0P.prototype={ -aw(){var s,r=this,q=null -r.b3() -r.e=A.bX(q,B.OE,q,r.a.w?1:0,r) -s=A.bX(q,B.eQ,q,q,r) -r.d=s -r.f=A.cQ(B.aL,s,new A.jG(B.aL)) -s=r.a.c -r.r=new A.Ie(s,s) -r.w=A.cQ(B.a7,r.e,q) -s=r.a.r -r.x=new A.fV(A.ar(0,s.A()>>>16&255,s.A()>>>8&255,s.A()&255),r.a.r)}, -l(){var s=this,r=s.d -r===$&&A.a() -r.l() -r=s.e -r===$&&A.a() -r.l() -r=s.f -r===$&&A.a() -r.l() -r=s.w -r===$&&A.a() -r.l() -s.a7y()}, -aV(a){var s,r,q=this -q.bm(a) -s=a.c -if(!q.a.c.j(0,s)){q.r=new A.Ie(s,q.a.c) -s=q.d -s===$&&A.a() -s.sp(0) -s.cc()}if(!q.a.r.j(0,a.r)){s=q.a.r -q.x=new A.fV(A.ar(0,s.A()>>>16&255,s.A()>>>8&255,s.A()&255),q.a.r)}s=q.a.w -if(s!==a.w){r=q.e -if(s){r===$&&A.a() -r.cc()}else{r===$&&A.a() -r.d6()}}}, -K(a){var s,r,q,p,o,n,m,l,k=this,j=k.f -j===$&&A.a() -s=k.a.d -r=k.e -r===$&&A.a() -r=A.c([j,s,r],t.Eo) -s=k.f -j=k.r -j===$&&A.a() -q=k.a -p=q.e -q=q.d -o=a.aA(t.I).w -n=k.a.f -m=k.x -m===$&&A.a() -l=k.w -l===$&&A.a() -return A.hY(null,new A.a3f(s,j,p,q,o,n,m,l,new A.u1(r)),null,null,B.Q)}} -A.I0.prototype={ -ah(){return new A.I1(null,null)}} -A.I1.prototype={ -gyE(){this.a.toString -return!1}, -gnb(){var s=this.a.x -return s!=null}, -aw(){var s,r=this -r.b3() -s=A.bX(null,B.eQ,null,null,r) -r.d=s -if(r.gnb()){r.f=r.uc() -s.sp(1)}else if(r.gyE())r.e=r.y6() -s=r.d -s.bC() -s.d_$.G(0,r.gGq())}, -l(){var s=this.d -s===$&&A.a() -s.l() -this.a7J()}, -Gr(){this.ar(new A.aCL())}, -aV(a){var s,r,q=this -q.bm(a) -s=q.a.x!=null -r=s!==(a.x!=null) -if(r)if(s){q.f=q.uc() -s=q.d -s===$&&A.a() -s.cc()}else{s=q.d -s===$&&A.a() -s.d6()}}, -y6(){var s,r,q,p,o=null,n=t.Y,m=this.d -m===$&&A.a() -s=this.a -r=s.e -r.toString -q=s.f -p=s.c -p=A.ai(r,s.r,B.bd,o,q,p,o) -return A.cz(o,new A.e9(new A.aw(m,new A.aA(1,0,n),n.i("aw")),!1,p,o),!0,o,o,!1,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,B.Y,o)}, -uc(){var s={},r=this.a,q=r.x -s.a=r.w -return new A.dO(new A.aCK(s,this,q),null)}, -K(a){var s,r,q=this,p=q.d -p===$&&A.a() -if(p.gba()===B.Z){q.f=null -if(q.gyE())return q.e=q.y6() -else{q.e=null -return B.aE}}if(p.gba()===B.a9){q.e=null -if(q.gnb())return q.f=q.uc() -else{q.f=null -return B.aE}}s=q.e -if(s==null&&q.gnb())return q.uc() -r=q.f -if(r==null&&q.gyE())return q.y6() -if(q.gnb()){r=t.Y -return A.hE(B.aQ,A.c([new A.e9(new A.aw(p,new A.aA(1,0,r),r.i("aw")),!1,s,null),q.uc()],t.p),B.N,B.bM)}if(q.gyE())return A.hE(B.aQ,A.c([q.y6(),new A.e9(p,!1,r,null)],t.p),B.N,B.bM) -return B.aE}} -A.aCL.prototype={ -$0(){}, -$S:0} -A.aCK.prototype={ -$1(a){var s,r,q,p,o,n,m=null,l=A.c_(a,B.K7) -l=l==null?m:l.ch -s=this.b -r=s.d -r===$&&A.a() -q=new A.aA(B.a3J,B.f,t.Ni).aj(r.gp()) -p=this.a.a -if(p==null){p=this.c -p.toString -s=s.a -o=s.y -n=s.c -n=A.ai(p,s.z,B.bd,m,o,n,m) -s=n}else s=p -return A.cz(m,new A.e9(r,!1,A.aW7(s,!0,q),m),!0,m,m,!1,m,m,m,m,m,m,l!==!0,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,B.Y,m)}, -$S:244} -A.BH.prototype={ -N(){return"FloatingLabelBehavior."+this.b}} -A.Qk.prototype={ -gt(a){return B.j.gt(-1)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.Qk}, -k(a){return A.b7Z(-1)}} -A.fe.prototype={ -N(){return"_DecorationSlot."+this.b}} -A.a1O.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.a1O&&b.a.j(0,s.a)&&b.c===s.c&&b.d===s.d&&b.e.j(0,s.e)&&b.f.j(0,s.f)&&b.r.j(0,s.r)&&b.x==s.x&&b.y===s.y&&b.z.j(0,s.z)&&b.Q===s.Q&&J.b(b.ax,s.ax)&&J.b(b.ay,s.ay)&&J.b(b.ch,s.ch)&&J.b(b.CW,s.CW)&&J.b(b.cx,s.cx)&&J.b(b.cy,s.cy)&&J.b(b.db,s.db)&&J.b(b.dx,s.dx)&&b.dy.oC(0,s.dy)&&J.b(b.fr,s.fr)&&b.fx.oC(0,s.fx)}, -gt(a){var s=this -return A.N(s.a,s.c,s.d,s.e,s.f,s.r,!1,s.x,s.y,s.z,s.Q,!0,!1,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,A.N(s.db,s.dx,s.dy,s.fr,s.fx,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a))}} -A.aG1.prototype={} -A.Ja.prototype={ -gnw(){var s=this.ht$,r=s.h(0,B.cj),q=A.c([],t.Ik),p=s.h(0,B.b7) -if(p!=null)q.push(p) -p=s.h(0,B.bo) -if(p!=null)q.push(p) -p=s.h(0,B.aF) -if(p!=null)q.push(p) -p=s.h(0,B.bf) -if(p!=null)q.push(p) -p=s.h(0,B.bw) -if(p!=null)q.push(p) -p=s.h(0,B.bx) -if(p!=null)q.push(p) -p=s.h(0,B.ay) -if(p!=null)q.push(p) -p=s.h(0,B.bv) -if(p!=null)q.push(p) -if(r!=null)q.push(r) -p=s.h(0,B.ck) -if(p!=null)q.push(p) -s=s.h(0,B.dI) -if(s!=null)q.push(s) -return q}, -saU(a){if(this.n.j(0,a))return -this.n=a -this.ag()}, -sce(a){if(this.U===a)return -this.U=a -this.ag()}, -sayr(a){if(this.a0===a)return -this.a0=a -this.ag()}, -sayq(a){return}, -spI(a){if(this.a5===a)return -this.a5=a -this.br()}, -sJS(a){return}, -gGw(){this.n.f.gpJ() -return!1}, -fK(a){var s,r=this.ht$ -if(r.h(0,B.b7)!=null){s=r.h(0,B.b7) -s.toString -a.$1(s)}if(r.h(0,B.bw)!=null){s=r.h(0,B.bw) -s.toString -a.$1(s)}if(r.h(0,B.aF)!=null){s=r.h(0,B.aF) -s.toString -a.$1(s)}if(r.h(0,B.ay)!=null){s=r.h(0,B.ay) -s.toString -a.$1(s)}if(r.h(0,B.bv)!=null)if(this.a5){s=r.h(0,B.bv) -s.toString -a.$1(s)}else if(r.h(0,B.ay)==null){s=r.h(0,B.bv) -s.toString -a.$1(s)}if(r.h(0,B.bo)!=null){s=r.h(0,B.bo) -s.toString -a.$1(s)}if(r.h(0,B.bf)!=null){s=r.h(0,B.bf) -s.toString -a.$1(s)}if(r.h(0,B.bx)!=null){s=r.h(0,B.bx) -s.toString -a.$1(s)}if(r.h(0,B.dI)!=null){s=r.h(0,B.dI) -s.toString -a.$1(s)}s=r.h(0,B.cj) -s.toString -a.$1(s) -if(r.h(0,B.ck)!=null){r=r.h(0,B.ck) -r.toString -a.$1(r)}}, -aaE(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h=null,g=this.ht$,f=g.h(0,B.ck) -A:{if(f instanceof A.A){f=new A.an(c.$2(f,a),b.$2(f,a)) -break A}if(f==null){f=B.a55 -break A}f=h}s=f.a -r=h -q=f.b -r=q -p=s -o=g.h(0,B.ck)!=null?16:0 -n=a.pf(new A.a2(p.a+o,0,0,0)) -f=g.h(0,B.cj) -f.toString -m=c.$2(f,n).b -if(m===0&&p.b===0)return h -g=g.h(0,B.cj) -g.toString -g=b.$2(g,n) -g=Math.max(A.hP(r),A.hP(g)) -f=this.L -l=f?4:8 -k=Math.max(A.hP(r),m) -j=f?4:8 -i=Math.max(p.b,m) -f=f?4:8 -return new A.a5m(g+l,k+j,i+f)}, -Gs(d3,d4,d5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5=this,c6=d3.b,c7=d3.d,c8=new A.al(0,c6,0,c7),c9=c5.ht$,d0=c9.h(0,B.b7),d1=d0==null?0:d5.$2(d0,c8).a,d2=c8.pf(new A.a2(d1,0,0,0)) -d0=c5.n -s=d0.a -d0=d0.Q -r=d2.pf(new A.dt(s.a+d0,0,s.c+d0,0)) -q=c5.aaE(r,d4,d5) -d0=c9.h(0,B.aF) -s=c9.h(0,B.bf) -p=d0==null -o=p?B.Q:d5.$2(d0,d2) -d0=s==null -n=d0?B.Q:d5.$2(s,d2) -s=c9.h(0,B.bw) -m=c9.h(0,B.bx) -l=s==null -k=l?B.Q:d5.$2(s,r) -j=m==null -i=j?B.Q:d5.$2(m,r) -h=k.a -if(p){g=c5.n -g=g.a.a+g.Q}else{g=o.a -g+=c5.L?4:0}f=i.a -if(d0){e=c5.n -e=e.a.c+e.Q}else{e=n.a -e+=c5.L?4:0}d=Math.max(0,c6-new A.dt(d1+h+g,0,f+e,0).gfo()) -e=c9.h(0,B.ay) -if(e!=null){c5.n.f.gpJ() -c=n.a -h=c5.n -p=p?h.a.a:o.a -d0=d0?h.a.c:c -b=Math.max(0,c6-(h.Q*2+d1+p+d0)) -h=A.Y(1,1.3333333333333333,h.d) -h.toString -d5.$2(e,c8.XM(b*h)) -h=c5.n -a=h.c -h.f.gpJ() -a0=a}else a0=0 -d0=q==null -a1=d0?null:q.b -if(a1==null)a1=0 -p=c5.n -h=p.a -p=p.z -a2=c8.pf(new A.a2(0,h.gcR()+h.gcX()+a0+a1+new A.h(p.a,p.b).ak(0,4).b,0,0)).CX(d) -p=c9.h(0,B.bo) -c9=c9.h(0,B.bv) -h=p==null -a3=h?B.Q:d5.$2(p,a2) -g=c9==null -a4=g?B.Q:d5.$2(c9,c8.CX(d)) -a5=h?0:d4.$2(p,a2) -a6=g?0:d4.$2(c9,c8.CX(d)) -c9=a4.b -a7=Math.max(c9,a3.b) -a8=Math.max(a5,a6) -a9=l?0:d4.$2(s,r) -b0=j?0:d4.$2(m,r) -b1=Math.max(0,Math.max(a9,b0)-a8) -b2=Math.max(0,Math.max(k.b-a9,i.b-b0)-(a7-a8)) -b3=Math.max(o.b,n.b) -c9=c5.n -s=c9.a -p=s.b -m=c9.z -l=m.a -m=m.b -b4=Math.max(b3,a0+p+b1+a7+b2+s.d+new A.h(l,m).ak(0,4).b) -c9.x.toString -b5=Math.max(0,c7-a1) -b6=Math.min(Math.max(b4,48),b5) -b7=48>b4?(48-b4)/2:0 -b8=Math.max(0,b4-b5) -c7=c5.a3 -c9=c5.gGw()?B.Jl:B.Jm -b9=(c9.a+1)/2 -c0=b1-b8*(1-b9) -c1=p+a0+a8+c0+b7+new A.h(l,m).ak(0,4).b/2 -c2=b6-(s.gcR()+s.gcX())-a0-new A.h(l,m).ak(0,4).b-(b1+a7+b2) -if(c5.gGw()){c3=a8+c0/2+(b6-a7)/2 -c7=c5.gGw()?B.Jl:B.Jm -c7=c7.a -c4=c3+(c7<=0?Math.max(c3-c1,0):Math.max(c1+c2-c3,0))*c7}else c4=c1+c2*b9 -c7=d0?null:q.c -return new A.aG1(a2,c4,b6,q,new A.L(c6,b6+(c7==null?0:c7)))}, -bP(a){var s,r,q,p,o,n=this,m=n.ht$,l=m.h(0,B.bo),k=Math.max(A.ji(l,a),A.ji(m.h(0,B.bv),a)) -l=A.ji(m.h(0,B.b7),a) -if(m.h(0,B.aF)!=null)s=n.L?4:0 -else{s=n.n -s=s.a.a+s.Q}r=A.ji(m.h(0,B.aF),a) -q=A.ji(m.h(0,B.bw),a) -p=A.ji(m.h(0,B.bx),a) -o=A.ji(m.h(0,B.bf),a) -if(m.h(0,B.bf)!=null)m=n.L?4:0 -else{m=n.n -m=m.a.c+m.Q}return l+s+r+q+k+p+o+m}, -bH(a){var s,r,q,p,o,n=this,m=n.ht$,l=m.h(0,B.bo),k=Math.max(A.yU(l,a),A.yU(m.h(0,B.bv),a)) -l=A.yU(m.h(0,B.b7),a) -if(m.h(0,B.aF)!=null)s=n.L?4:0 -else{s=n.n -s=s.a.a+s.Q}r=A.yU(m.h(0,B.aF),a) -q=A.yU(m.h(0,B.bw),a) -p=A.yU(m.h(0,B.bx),a) -o=A.yU(m.h(0,B.bf),a) -if(m.h(0,B.bf)!=null)m=n.L?4:0 -else{m=n.n -m=m.a.c+m.Q}return l+s+r+q+k+p+o+m}, -ah4(a,b){var s,r,q,p,o,n -for(s=b.length,r=0,q=0;q0)j+=a0.L?4:8 -i=A.yV(a1.h(0,B.bw),a3) -h=A.ji(a1.h(0,B.bw),i) -g=A.yV(a1.h(0,B.bx),a3) -f=Math.max(a3-h-A.ji(a1.h(0,B.bx),g)-r-p,0) -o=A.c([a1.h(0,B.bo)],t.iG) -if(a0.n.y)o.push(a1.h(0,B.bv)) -e=t.n -d=B.b.wS(A.c([a0.ah4(f,o),i,g],e),B.lP) -o=a0.n -a1=a1.h(0,B.ay)==null?0:a0.n.c -c=a0.n -b=c.z -a=B.b.wS(A.c([a2,o.a.b+a1+d+c.a.d+new A.h(b.a,b.b).ak(0,4).b,s,q],e),B.lP) -a0.n.x.toString -return Math.max(a,48)+j}, -bG(a){return this.aO(B.by,a,this.gcA())}, -hm(a){var s,r,q=this.ht$.h(0,B.bo) -if(q==null)return 0 -s=q.b -s.toString -s=t.r.a(s).a -r=q.mL(a) -q=r==null?q.gC().b:r -return s.b+q}, -e2(a,b){var s,r,q,p,o=this.ht$.h(0,B.bo) -if(o==null)return 0 -s=this.Gs(a,A.b1N(),A.hQ()) -switch(b.a){case 0:o=0 -break -case 1:r=s.a -q=o.f5(r,B.a6) -if(q==null)q=o.aO(B.S,r,o.gcu()).b -p=o.f5(r,B.u) -o=q-(p==null?o.aO(B.S,r,o.gcu()).b:p) -break -default:o=null}return o+s.b}, -dg(a){return a.bx(this.Gs(a,A.b1N(),A.hQ()).e)}, -c7(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=this,a3=null,a4=t.k.a(A.r.prototype.gab.call(a2)) -a2.P=null -s=a2.Gs(a4,A.bkj(),A.pz()) -r=s.e -a2.fy=a4.bx(r) -q=r.a -r=a2.ht$ -p=r.h(0,B.dI) -if(p!=null){p.cs(A.lH(s.c,q-A.iK(r.h(0,B.b7)).a),!0) -switch(a2.U.a){case 0:o=0 -break -case 1:o=A.iK(r.h(0,B.b7)).a -break -default:o=a3}n=p.b -n.toString -t.r.a(n).a=new A.h(o,0)}m=s.c -l=new A.aG7(m) -if(r.h(0,B.b7)!=null){switch(a2.U.a){case 0:o=q-r.h(0,B.b7).gC().a -break -case 1:o=0 -break -default:o=a3}n=r.h(0,B.b7) -n.toString -l.$2(n,o)}o=s.d -o=o==null?a3:o.a -k=(o==null?0:o)+m -o=r.h(0,B.ck) -n=r.h(0,B.cj) -n.toString -n=n.mM(B.u) -n.toString -j=o==null -if(j)i=a3 -else{h=o.mM(B.u) -h.toString -i=h}if(i==null)i=0 -switch(a2.U.a){case 1:g=a2.n.a.a+A.iK(r.h(0,B.b7)).a -f=q-a2.n.a.c -h=r.h(0,B.cj) -h.toString -h=h.b -h.toString -e=t.r -e.a(h).a=new A.h(g+a2.n.Q,k-n) -if(!j){n=o.b -n.toString -e.a(n).a=new A.h(f-o.gC().a-a2.n.Q,k-i)}break -case 0:g=q-a2.n.a.a-A.iK(r.h(0,B.b7)).a -f=a2.n.a.c -h=r.h(0,B.cj) -h.toString -h=h.b -h.toString -e=t.r -e.a(h) -d=r.h(0,B.cj) -d.toString -d=d.gC() -c=a2.n.Q -h.a=new A.h(g-d.a-c,k-n) -if(!j){o=o.b -o.toString -e.a(o).a=new A.h(f+c,k-i)}break -default:f=a3 -g=f}b=new A.aG6(s.b) -switch(a2.U.a){case 0:o=r.h(0,B.aF) -n=a2.n -if(o!=null){g+=n.a.a -o=r.h(0,B.aF) -o.toString -o=l.$2(o,g-r.h(0,B.aF).gC().a) -n=a2.L?4:0 -g=g-o-n}else g-=n.Q -if(r.h(0,B.ay)!=null){o=r.h(0,B.ay) -o.toString -l.$2(o,g-r.h(0,B.ay).gC().a)}if(r.h(0,B.bw)!=null){o=r.h(0,B.bw) -o.toString -g-=b.$2(o,g-r.h(0,B.bw).gC().a)}if(r.h(0,B.bo)!=null){o=r.h(0,B.bo) -o.toString -b.$2(o,g-r.h(0,B.bo).gC().a)}if(r.h(0,B.bv)!=null){o=r.h(0,B.bv) -o.toString -b.$2(o,g-r.h(0,B.bv).gC().a)}o=r.h(0,B.bf) -n=a2.n -if(o!=null){f-=n.a.c -o=r.h(0,B.bf) -o.toString -o=l.$2(o,f) -n=a2.L?4:0 -f=f+o+n}else f+=n.Q -if(r.h(0,B.bx)!=null){o=r.h(0,B.bx) -o.toString -b.$2(o,f)}break -case 1:o=r.h(0,B.aF) -n=a2.n -if(o!=null){g-=n.a.a -o=r.h(0,B.aF) -o.toString -o=l.$2(o,g) -n=a2.L?4:0 -g=g+o+n}else g+=n.Q -if(r.h(0,B.ay)!=null){o=r.h(0,B.ay) -o.toString -l.$2(o,g)}if(r.h(0,B.bw)!=null){o=r.h(0,B.bw) -o.toString -g+=b.$2(o,g)}if(r.h(0,B.bo)!=null){o=r.h(0,B.bo) -o.toString -b.$2(o,g)}if(r.h(0,B.bv)!=null){o=r.h(0,B.bv) -o.toString -b.$2(o,g)}o=r.h(0,B.bf) -n=a2.n -if(o!=null){f+=n.a.c -o=r.h(0,B.bf) -o.toString -o=l.$2(o,f-r.h(0,B.bf).gC().a) -n=a2.L?4:0 -f=f-o-n}else f-=n.Q -if(r.h(0,B.bx)!=null){o=r.h(0,B.bx) -o.toString -b.$2(o,f-r.h(0,B.bx).gC().a)}break}if(r.h(0,B.ay)!=null){o=r.h(0,B.ay).b -o.toString -a=t.r.a(o).a.a -a0=A.iK(r.h(0,B.ay)).a*0.75 -switch(a2.U.a){case 0:o=r.h(0,B.aF) -a1=o!=null?a2.L?A.iK(r.h(0,B.aF)).a-a2.n.a.c:0:0 -a2.n.r.scq(A.Y(a+A.iK(r.h(0,B.ay)).a+a1,A.iK(p).a/2+a0/2,0)) -break -case 1:o=r.h(0,B.aF) -a1=o!=null?a2.L?-A.iK(r.h(0,B.aF)).a+a2.n.a.a:0:0 -a2.n.r.scq(A.Y(a-A.iK(r.h(0,B.b7)).a+a1,A.iK(p).a/2-a0/2,0)) -break}a2.n.r.sdT(r.h(0,B.ay).gC().a*0.75)}else{a2.n.r.scq(a3) -a2.n.r.sdT(0)}}, -aja(a,b){var s=this.ht$.h(0,B.ay) -s.toString -a.e4(s,b)}, -b1(a,b){var s,r,q,p,o,n,m,l,k,j,i=this,h=new A.aG5(a,b),g=i.ht$ -h.$1(g.h(0,B.dI)) -if(g.h(0,B.ay)!=null){s=g.h(0,B.ay).b -s.toString -r=t.r -q=r.a(s).a -A.iK(g.h(0,B.ay)) -p=A.iK(g.h(0,B.ay)).a -s=i.n -o=s.d -s.f.gpJ() -s=i.n -n=s.z -n=new A.h(n.a,n.b).ak(0,4) -m=A.Y(1,0.75,o) -m.toString -l=g.h(0,B.dI).b -l.toString -l=r.a(l).a -r=A.iK(g.h(0,B.dI)) -switch(i.U.a){case 0:k=q.a+p*(1-m) -g.h(0,B.aF) -j=k -break -case 1:k=q.a -g.h(0,B.aF) -j=k -break -default:k=null -j=null}r=A.Y(j,l.a+r.a/2-p*0.75/2,0) -r.toString -r=A.Y(k,r,o) -r.toString -l=q.b -n=A.Y(0,s.a.b+n.b/2-l,o) -n.toString -s=new A.bc(new Float64Array(16)) -s.ei() -s.eh(r,l+n,0,1) -s.oq(m,m,m,1) -i.P=s -m=i.cx -m===$&&A.a() -n=i.ch -n.saR(a.wL(m,b,s,i.gaj9(),t.zV.a(n.a)))}else i.ch.saR(null) -h.$1(g.h(0,B.b7)) -h.$1(g.h(0,B.bw)) -h.$1(g.h(0,B.bx)) -h.$1(g.h(0,B.aF)) -h.$1(g.h(0,B.bf)) -if(i.n.y)h.$1(g.h(0,B.bv)) -h.$1(g.h(0,B.bo)) -s=g.h(0,B.cj) -s.toString -h.$1(s) -h.$1(g.h(0,B.ck))}, -dz(a,b){var s,r=this,q=r.ht$ -if(a===q.h(0,B.ay)&&r.P!=null){q=q.h(0,B.ay).b -q.toString -s=t.r.a(q).a -q=r.P -q.toString -b.f2(q) -b.eh(-s.a,-s.b,0,1)}r.a54(a,b)}, -mf(a){return!0}, -da(a,b){var s,r,q,p,o,n -for(s=this.gnw(),r=s.length,q=t.r,p=0;p")).aL(0,new A.N7(p,o).gavu()) -return new A.uR(p,o)}, -eJ(a){a.p2=this.gaad()}} -A.aG7.prototype={ -$2(a,b){var s=a.b -s.toString -t.r.a(s).a=new A.h(b,(this.a-a.gC().b)/2) -return a.gC().a}, -$S:32} -A.aG6.prototype={ -$2(a,b){var s,r=a.b -r.toString -t.r.a(r) -s=a.mM(B.u) -s.toString -r.a=new A.h(b,this.a-s) -return a.gC().a}, -$S:32} -A.aG5.prototype={ -$1(a){var s -if(a!=null){s=a.b -s.toString -this.a.e4(a,t.r.a(s).a.a8(0,this.b))}}, -$S:246} -A.aG4.prototype={ -$2(a,b){return this.a.cT(a,b)}, -$S:19} -A.aG2.prototype={ -$1(a){return this.a.ayo(a)}, -$S:247} -A.aG3.prototype={ -$0(){return A.c([],t.q1)}, -$S:248} -A.a1R.prototype={ -apv(a){var s,r=this -switch(a.a){case 0:s=r.d.ax -break -case 1:s=r.d.ay -break -case 2:s=r.d.ch -break -case 3:s=r.d.CW -break -case 4:s=r.d.cx -break -case 5:s=r.d.cy -break -case 6:s=r.d.db -break -case 7:s=r.d.dx -break -case 8:s=r.d.dy -break -case 9:s=r.d.fr -break -case 10:s=r.d.fx -break -default:s=null}return s}, -bf(a){var s,r=this -A.P(a) -s=new A.Ja(r.d,r.e,r.f,r.r,r.w,!1,!0,A.t(t.uC,t.x),new A.b8(),A.at()) -s.be() -return s}, -bj(a,b){var s=this -b.saU(s.d) -b.sJS(!1) -b.spI(s.w) -b.sayq(s.r) -b.sayr(s.f) -b.sce(s.e)}} -A.qL.prototype={ -ah(){return new A.If(new A.Id($.af()),null,null)}, -gR(){return this.z}} -A.If.prototype={ -aw(){var s,r=this,q=null -r.b3() -s=A.bX(q,B.eQ,q,q,r) -r.d!==$&&A.bs() -r.d=s -s.bC() -s.d_$.G(0,r.gGq()) -s=A.cQ(B.aL,s,new A.jG(B.aL)) -r.e!==$&&A.bs() -r.e=s -s=A.bX(q,B.eQ,q,q,r) -r.f!==$&&A.bs() -r.f=s}, -by(){var s,r,q=this -q.du() -q.z=null -if(q.gaU().fr!==B.rs){s=q.a -if(s.y)s=s.r -else s=!0 -r=s||q.gaU().fr===B.na}else r=!1 -s=q.d -s===$&&A.a() -s.sp(r?1:0)}, -l(){var s=this,r=s.d -r===$&&A.a() -r.l() -r=s.e -r===$&&A.a() -r.l() -r=s.f -r===$&&A.a() -r.l() -r=s.r -r.P$=$.af() -r.L$=0 -r=s.Q -if(r!=null)r.l() -s.a7N()}, -Gr(){this.ar(new A.aDz())}, -gaU(){var s,r=this,q=r.z -if(q==null){q=r.a.c -s=r.c -s.toString -s=r.z=q.Il(A.aR7(s)) -q=s}return q}, -gnb(){var s=this.gaU().db==null -if(s)this.gaU() -return!s}, -aV(a){var s,r,q,p,o,n=this -n.bm(a) -s=a.c -if(!n.a.c.j(0,s))n.z=null -r=n.a -q=r.c.fr!=s.fr -if(r.y)r=r.r -else r=!0 -if(a.y)p=a.r -else p=!0 -if(r!==p||q){if(n.gaU().fr!==B.rs){r=n.a -if(r.y)r=r.r -else r=!0 -r=r||n.gaU().fr===B.na}else r=!1 -p=n.d -if(r){p===$&&A.a() -p.cc()}else{p===$&&A.a() -p.d6()}}o=n.gaU().db -r=n.d -r===$&&A.a() -if(r.gba()===B.a9&&o!=null&&o!==s.db){s=n.f -s===$&&A.a() -s.sp(0) -s.cc()}}, -acL(a,b){var s,r=this -if(r.gaU().x2!==!0)return B.D -if(r.gaU().xr!=null){s=r.gaU().xr -s.toString -return A.dM(s,r.gfL(),t.G)}return A.dM(b.gw2(),r.gfL(),t.G)}, -acO(a){if(this.gaU().x2!=null)this.gaU().x2.toString -return B.D}, -Rf(a,b){var s=this,r=A.dM(s.gaU().p1,s.gfL(),t._) -if(r==null){r=a.a -if(r==null)r=null -else{r=r.gdi() -r=r==null?null:r.af(s.gfL())}}return r==null?A.dM(b.gwI(),s.gfL(),t.G):r}, -Rl(a,b){var s=this,r=A.dM(s.gaU().RG,s.gfL(),t._) -if(r==null){r=a.a -if(r==null)r=null -else{r=r.gdi() -r=r==null?null:r.af(s.gfL())}}return r==null?A.dM(b.gtY(),s.gfL(),t.G):r}, -gagp(){var s=this,r=s.a -if(r.y)r=r.r -else r=!0 -if(!(r||s.gaU().fr===B.na)){s.gaU() -s.gaU()}return!1}, -R4(a,b){return A.dM(b.gw7(),this.gfL(),t.em).E(A.dM(this.gaU().x,this.gfL(),t.p8))}, -gfL(){var s,r=this,q=A.aU(t.EK) -r.gaU() -if(r.a.r)q.G(0,B.J) -s=r.a.w -if(s)r.gaU() -if(s)q.G(0,B.I) -if(r.gnb())q.G(0,B.dH) -return q}, -acC(a,b){var s,r=this,q=A.dM(r.gaU().a3,r.gfL(),t.Ef) -if(q==null)q=B.agG -r.gaU() -if(q.a.j(0,B.x))return q -r.gaU().x2.toString -s=q.XK(A.dM(b.gwB(),r.gfL(),t.oI)) -return s}, -K(d1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8=this,c9=null,d0=A.P(d1) -c8.gaU() -s=d0.Q -A.P(d1) -r=new A.aDo(d1,c9,c9,c9,c9,c9,c9,c9,c9,c9,B.rt,B.pP,!1,c9,!1,c9,c9,c9,c9,c9,c9,c9,c9,!1,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,!1,c9,c9) -q=A.aR2(d1) -p=t.em -o=A.dM(r.gwj(),c8.gfL(),p) -n=t.p8 -m=A.dM(c8.gaU().e,c8.gfL(),n) -l=d0.ok -k=l.w -k.toString -j=k.E(c8.a.d).E(o).E(m).aq3(1) -k=j.Q -k.toString -o=A.dM(r.gwb(),c8.gfL(),p) -m=A.dM(c8.gaU().as,c8.gfL(),n) -l=l.y -l.toString -i=l.E(c8.a.d).E(o).E(m) -h=c8.gaU().z -c8.gaU() -c8.gaU() -if(h!=null){g=c8.gaU().Q -h.toString -l=c8.gaU() -f=i.fy -if(f==null)f=c8.gaU().ax==null?c9:B.bd -e=c8.a.e -g=A.ai(h,c8.gaU().ax,f,c9,i,e,l.at) -d=c8.a.y&&!c8.gagp() -l=d?1:0 -c8.gaU() -c=A.b5A(g,B.aL,B.OI,l)}else c=c9 -c8.gaU() -if(c8.a.r)if(c8.gnb())c8.gaU() -else c8.gaU() -else if(c8.gnb())c8.gaU() -else c8.gaU() -b=c8.acC(d0,r) -l=c8.r -f=c8.e -f===$&&A.a() -e=c8.acL(d0,r) -a=c8.acO(d0) -a0=c8.a.w -if(a0)c8.gaU() -c8.gaU() -c8.gaU() -c8.gaU() -c8.gaU() -c8.gaU() -c8.gaU() -a1=c8.a -a2=a1.z -if(a1.y)a1=a1.r -else a1=!0 -if(!a1)c8.gaU() -a1=c8.gaU() -a3=a1.fy===!0 -a4=a3?18:24 -c8.gaU() -if(c8.gaU().k1==null)a5=c9 -else{c8.gaU() -a1=s.JI(B.pC) -a6=c8.Rf(q,r) -a7=A.uM(c9,c9,c9,c9,c9,c9,c9,c9,new A.bB(c8.Rf(q,r),t.De),c9,c9,new A.bB(a4,t.XR),c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9).E(q.a) -a5=A.dp(A.ie(new A.dX(a1,A.ajZ(A.R4(A.cz(c9,c8.gaU().k1,!1,c9,c9,!1,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,B.Ie,c9,c9,c9,c9,B.Y,c9),new A.m5(a7)),new A.dw(a4,c9,c9,c9,c9,a6,c9,c9,c9)),c9),B.ci,c9,c9,c9,c9),1,1)}if(c8.gaU().p2==null)a8=c9 -else{a1=c8.gaU().rx -if(a1==null)a1=s.JI(B.pC) -a6=c8.Rl(q,r) -a7=A.uM(c9,c9,c9,c9,c9,c9,c9,c9,new A.bB(c8.Rl(q,r),t.De),c9,c9,new A.bB(a4,t.XR),c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9).E(q.a) -a8=A.dp(A.ie(new A.dX(a1,A.ajZ(A.R4(A.cz(c9,c8.gaU().p2,!1,c9,c9,!1,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,B.Id,c9,c9,c9,c9,B.Y,c9),new A.m5(a7)),new A.dw(a4,c9,c9,c9,c9,a6,c9,c9,c9)),c9),B.ci,c9,c9,c9,c9),1,1)}a1=c8.a.e -a6=c8.gaU() -a7=c8.gaU() -a9=c8.R4(d0,r) -b0=c8.gaU() -b1=c8.gaU() -b2=c8.gaU() -p=A.dM(r.gvP(),c8.gfL(),p).E(c8.gaU().dx) -b3=c8.gaU() -if(c8.gaU().to!=null)b4=c8.gaU().to -else if(c8.gaU().ry!=null&&c8.gaU().ry!==""){b5=c8.a.r -b6=c8.gaU().ry -b6.toString -n=c8.R4(d0,r).E(A.dM(c8.gaU().x1,c8.gfL(),n)) -b4=A.cz(c9,A.ai(b6,c9,B.bd,c8.gaU().au,n,c9,c9),!0,c9,c9,!1,c9,c9,c9,c9,c9,c9,b5,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,c9,B.Y,c9)}else b4=c9 -b7=d1.aA(t.I).w -switch(b7.a){case 1:n=!1 -break -case 0:n=!0 -break -default:n=c9}b8=c8.gaU().go -if(b8==null)b8=c9 -if(b8==null)b9=c9 -else{b5=n?b8.c:b8.a -b6=b8.b -n=n?b8.a:b8.c -b9=new A.dt(b5,b6,n,b8.d)}c8.gaU().id.toString -c0=0 -b.gpJ() -n=A.c_(d1,B.dK) -n=n==null?c9:n.gdO() -if(n==null)n=B.bz -b5=j.r -b5.toString -c0=n.bi(4+0.75*b5) -n=c8.gaU() -if(n.x2===!0)if(b9==null){n=a3?B.OS:B.OT -c1=n}else c1=b9 -else if(b9==null){n=a3?B.OQ:B.OR -c1=n}else c1=b9 -b.gpJ() -n=c8.gaU() -n=n.x2===!0 -c2=n?4:0 -n=c8.gaU().id -n.toString -b5=c8.gaU().fx -b5.toString -b6=f.gp() -c3=c8.gaU() -c4=c8.gaU() -c5=c8.a.y -c8.gaU() -c6=c8.a -c7=c6.f -c6=c6.r -c8.gaU() -return new A.a1R(new A.a1O(c1,n,c0,b6,b5,b,l,c3.L===!0,c4.fy,c5,s,c2,!0,!1,c9,a2,c9,c,c9,c9,a5,a8,new A.I0(a1,a6.r,a7.w,a9,b0.y,b1.cy,b2.db,p,b3.dy,c9),b4,new A.H4(b,l,f,e,a,a0,c9)),b7,k,c7,c6,!1,c9)}} -A.aDz.prototype={ -$0(){}, -$S:0} -A.vM.prototype={ -J3(a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7,e8){var s=this,r=d7==null?s.b:d7,q=e0==null?s.e:e0,p=c7==null?s.f:c7,o=d2==null?s.x:d2,n=d5==null?s.as:d5,m=d4==null?s.ax:d4,l=c2==null?s.db:c2,k=c1==null?s.dx:c1,j=c6==null?s.fr:c6,i=c5==null?s.fx:c5,h=d8==null?s.id:d8,g=d9==null?s.fy:d9,f=b1==null?s.go:b1,e=e3==null?s.ok:e3,d=e1==null?s.p1:e1,c=e7==null?s.R8:e7,b=e5==null?s.RG:e5,a=e6==null?s.rx:e6,a0=b2==null?s.to:b2,a1=b4==null?s.ry:b4,a2=b3==null?s.x1:b3,a3=c4==null?s.x2:c4,a4=c3==null?s.xr:c3,a5=a9==null?s.a3:a9,a6=e4==null?s.au:e4,a7=a8==null?s.L:a8 -return A.Rc(a7,a5,s.P,f,a0,a2,a1,s.U,b6!==!1,s.a0,s.cy,s.aH,s.dy,k,l,a4,a3,i,j,p,s.y1,s.aB,s.n,s.r,s.y,o,s.w,s.Q,s.ay,m,n,s.z,s.at,s.y2,s.a,r,h,g,s.c,q,s.d,!0,!0,!1,s.k3,s.k1,d,s.k2,e,s.k4,a6,s.p3,s.p2,b,a,c,s.p4,s.ao)}, -aq0(a){var s=null -return this.J3(s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -aqF(a,b){var s=null -return this.J3(s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,b,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -aqP(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6){var s=null -return this.J3(a,b,c,d,s,e,s,f,s,g,s,h,i,j,s,k,l,m,n,o,p,q,r,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,s,b3,b4,b5,b6)}, -Il(a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this,a=b.e -if(a==null)a=a0.a -s=b.f -if(s==null)s=a0.b -r=b.x -if(r==null)r=a0.c -q=b.as -if(q==null)q=a0.e -p=b.ax -if(p==null)p=a0.r -o=b.dx -if(o==null)o=a0.w -n=b.fr -if(n==null)n=a0.y -m=b.fx -if(m==null)m=a0.z -l=b.go -if(l==null)l=a0.as -k=b.b -if(k==null)k=a0.ax -j=b.ok -if(j==null)j=a0.ay -i=b.p1 -if(i==null)i=a0.ch -h=b.R8 -if(h==null)h=a0.cx -g=b.RG -if(g==null)g=a0.cy -f=b.rx -if(f==null)f=a0.db -e=b.x1 -if(e==null)e=a0.dx -d=b.xr -if(d==null)d=a0.fr -c=b.a3 -if(c==null)c=a0.p1 -return b.aqP(b.L===!0,c,a0.p3,l,e,a0.k4,a0.ok,a0.k1,a0.x,o,d,b.x2===!0,m,n,s,a0.go,a0.k2,a0.k3,a0.d,r,a0.f,p,q,a0.id,k,b.id===!0,b.fy===!0,a,i,a0.CW,j,g,f,h,a0.p4)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.vM)if(J.b(b.b,r.b))if(J.b(b.e,r.e))if(J.b(b.f,r.f))if(J.b(b.x,r.x))if(b.z==r.z)if(J.b(b.as,r.as))if(b.ax==r.ax)if(b.db==r.db)if(J.b(b.dx,r.dx))if(b.fr==r.fr)if(J.b(b.fx,r.fx))if(b.fy==r.fy)if(J.b(b.go,r.go))if(b.id==r.id)if(J.b(b.k1,r.k1))if(J.b(b.p1,r.p1))if(J.b(b.ok,r.ok))if(J.b(b.p2,r.p2))if(J.b(b.RG,r.RG))if(J.b(b.R8,r.R8))if(J.b(b.rx,r.rx))if(J.b(b.to,r.to))if(b.ry==r.ry)if(J.b(b.x1,r.x1))if(b.x2==r.x2)if(J.b(b.xr,r.xr))if(b.a3==r.a3)if(b.au==r.au)s=b.L==r.L -return s}, -gt(a){var s=this -return A.bh([s.a,s.b,s.c,s.d,s.f,s.e,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,!0,!0,!1,s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,s.x2,s.xr,s.y1,s.y2,s.k1,s.p1,s.k3,s.k4,s.ok,s.k2,s.p2,s.RG,s.p3,s.p4,s.R8,s.rx,s.to,s.ry,s.x1,s.aH,s.aB,s.n,s.U,s.a0,s.a3,!0,s.au,s.L,s.P,s.ao])}, -k(a){var s=this,r=A.c([],t.s),q=s.b -if(q!=null)r.push("iconColor: "+q.k(0)) -q=s.f -if(q!=null)r.push('floatingLabelStyle: "'+q.k(0)+'"') -q=s.z -if(q!=null)r.push('hintText: "'+q+'"') -q=s.ax -if(q!=null)r.push('hintMaxLines: "'+A.j(q)+'"') -q=s.db -if(q!=null)r.push('errorText: "'+q+'"') -q=s.dx -if(q!=null)r.push('errorStyle: "'+q.k(0)+'"') -q=s.fr -if(q!=null)r.push("floatingLabelBehavior: "+q.k(0)) -q=s.fx -if(q!=null)r.push("floatingLabelAlignment: "+q.k(0)) -q=s.fy -if(q===!0)r.push("isDense: "+A.j(q)) -q=s.go -if(q!=null)r.push("contentPadding: "+q.k(0)) -q=s.id -if(q===!0)r.push("isCollapsed: "+A.j(q)) -q=s.k1 -if(q!=null)r.push("prefixIcon: "+q.k(0)) -q=s.p1 -if(q!=null)r.push("prefixIconColor: "+q.k(0)) -q=s.ok -if(q!=null)r.push("prefixStyle: "+q.k(0)) -q=s.p2 -if(q!=null)r.push("suffixIcon: "+q.k(0)) -q=s.RG -if(q!=null)r.push("suffixIconColor: "+q.k(0)) -q=s.R8 -if(q!=null)r.push("suffixStyle: "+q.k(0)) -q=s.rx -if(q!=null)r.push("suffixIconConstraints: "+q.k(0)) -q=s.to -if(q!=null)r.push("counter: "+q.k(0)) -q=s.ry -if(q!=null)r.push("counterText: "+q) -q=s.x1 -if(q!=null)r.push("counterStyle: "+q.k(0)) -if(s.x2===!0)r.push("filled: true") -q=s.xr -if(q!=null)r.push("fillColor: "+q.k(0)) -q=s.a3 -if(q!=null)r.push("border: "+q.k(0)) -q=s.au -if(q!=null)r.push("semanticCounterText: "+q) -q=s.L -if(q!=null)r.push("alignLabelWithHint: "+A.j(q)) -return"InputDecoration("+B.b.bJ(r,", ")+")"}} -A.Ca.prototype={ -gt(a){var s=this -return A.N(s.gwj(),s.gBk(),s.gw7(),s.d,s.gwb(),s.r,s.gvP(),s.x,s.y,s.z,!1,s.as,!1,s.gdL(),s.ay,s.gwI(),s.CW,s.cx,s.gtY(),A.N(s.db,s.dx,!1,s.gw2(),s.gzQ(),s.gwB(),s.go,s.id,s.k1,s.k2,s.k3,s.k4,s.ok,s.p1,!1,s.p3,s.f,s.p4,B.a,B.a))}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.Ca)if(J.b(b.gwj(),r.gwj()))if(J.b(b.gBk(),r.gBk()))if(J.b(b.gw7(),r.gw7()))if(J.b(b.gwb(),r.gwb()))if(J.b(b.gvP(),r.gvP()))if(J.b(b.gdL(),r.gdL()))if(J.b(b.ay,r.ay))if(J.b(b.gwI(),r.gwI()))if(J.b(b.cx,r.cx))if(J.b(b.gtY(),r.gtY()))if(J.b(b.dx,r.dx))if(b.y===r.y)if(b.z.j(0,r.z))if(J.b(b.gw2(),r.gw2()))if(J.b(b.gzQ(),r.gzQ()))s=J.b(b.gwB(),r.gwB()) -return s}, -gwj(){return this.a}, -gBk(){return this.b}, -gw7(){return this.c}, -gwb(){return this.e}, -gvP(){return this.w}, -gdL(){return this.ax}, -gwI(){return this.ch}, -gtY(){return this.cy}, -gw2(){return this.fr}, -gwB(){return this.fx}, -gzQ(){return this.fy}} -A.aDo.prototype={ -gco(){var s,r=this,q=r.RG -if(q===$){s=A.P(r.R8) -r.RG!==$&&A.aK() -q=r.RG=s.ax}return q}, -gyH(){var s,r=this,q=r.rx -if(q===$){s=A.P(r.R8) -r.rx!==$&&A.aK() -q=r.rx=s.ok}return q}, -gwb(){return A.KT(new A.aDu(this))}, -gw2(){return A.aaq(new A.aDr(this))}, -gzQ(){return A.b0l(new A.aDp(this))}, -gwB(){return A.b0l(new A.aDw(this))}, -gdL(){var s=this.gco(),r=s.rx -return r==null?s.k3:r}, -gwI(){return A.aaq(new A.aDx(this))}, -gtY(){return A.aaq(new A.aDy(this))}, -gwj(){return A.KT(new A.aDv(this))}, -gBk(){return A.KT(new A.aDs(this))}, -gw7(){return A.KT(new A.aDt(this))}, -gvP(){return A.KT(new A.aDq(this))}} -A.aDu.prototype={ -$1(a){var s,r,q=null -if(a.q(0,B.K)){s=this.a.gco().k3 -return A.ay(q,q,A.ar(97,s.A()>>>16&255,s.A()>>>8&255,s.A()&255),q,q,q,q,q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q,q,q,q,q)}s=this.a.gco() -r=s.rx -return A.ay(q,q,r==null?s.k3:r,q,q,q,q,q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q,q,q,q,q)}, -$S:59} -A.aDr.prototype={ -$1(a){var s,r -if(a.q(0,B.K)){s=this.a.gco().k3 -return A.ar(10,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}s=this.a.gco() -r=s.RG -return r==null?s.k2:r}, -$S:7} -A.aDp.prototype={ -$1(a){var s,r,q=this -if(a.q(0,B.K)){s=q.a.gco().k3 -return new A.bl(A.ar(97,s.A()>>>16&255,s.A()>>>8&255,s.A()&255),1,B.F,-1)}if(a.q(0,B.dH)){if(a.q(0,B.J))return new A.bl(q.a.gco().fy,2,B.F,-1) -if(a.q(0,B.I)){s=q.a.gco() -r=s.k1 -return new A.bl(r==null?s.go:r,1,B.F,-1)}return new A.bl(q.a.gco().fy,1,B.F,-1)}if(a.q(0,B.J))return new A.bl(q.a.gco().b,2,B.F,-1) -if(a.q(0,B.I))return new A.bl(q.a.gco().k3,1,B.F,-1) -s=q.a.gco() -r=s.rx -return new A.bl(r==null?s.k3:r,1,B.F,-1)}, -$S:232} -A.aDw.prototype={ -$1(a){var s,r,q=this -if(a.q(0,B.K)){s=q.a.gco().k3 -return new A.bl(A.ar(31,s.A()>>>16&255,s.A()>>>8&255,s.A()&255),1,B.F,-1)}if(a.q(0,B.dH)){if(a.q(0,B.J))return new A.bl(q.a.gco().fy,2,B.F,-1) -if(a.q(0,B.I)){s=q.a.gco() -r=s.k1 -return new A.bl(r==null?s.go:r,1,B.F,-1)}return new A.bl(q.a.gco().fy,1,B.F,-1)}if(a.q(0,B.J))return new A.bl(q.a.gco().b,2,B.F,-1) -if(a.q(0,B.I))return new A.bl(q.a.gco().k3,1,B.F,-1) -s=q.a.gco() -r=s.ry -if(r==null){r=s.n -s=r==null?s.k3:r}else s=r -return new A.bl(s,1,B.F,-1)}, -$S:232} -A.aDx.prototype={ -$1(a){var s,r -if(a.q(0,B.K)){s=this.a.gco().k3 -return A.ar(97,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}s=this.a.gco() -r=s.rx -return r==null?s.k3:r}, -$S:7} -A.aDy.prototype={ -$1(a){var s,r,q=this -if(a.q(0,B.K)){s=q.a.gco().k3 -return A.ar(97,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.dH)){if(a.q(0,B.I)){s=q.a.gco() -r=s.k1 -return r==null?s.go:r}return q.a.gco().fy}s=q.a.gco() -r=s.rx -return r==null?s.k3:r}, -$S:7} -A.aDv.prototype={ -$1(a){var s,r=this.a,q=r.gyH().y -if(q==null)q=B.en -if(a.q(0,B.K)){r=r.gco().k3 -return q.c3(A.ar(97,r.A()>>>16&255,r.A()>>>8&255,r.A()&255))}if(a.q(0,B.dH)){if(a.q(0,B.J))return q.c3(r.gco().fy) -if(a.q(0,B.I)){r=r.gco() -s=r.k1 -return q.c3(s==null?r.go:s)}return q.c3(r.gco().fy)}if(a.q(0,B.J))return q.c3(r.gco().b) -if(a.q(0,B.I)){r=r.gco() -s=r.rx -return q.c3(s==null?r.k3:s)}r=r.gco() -s=r.rx -return q.c3(s==null?r.k3:s)}, -$S:59} -A.aDs.prototype={ -$1(a){var s,r=this.a,q=r.gyH().y -if(q==null)q=B.en -if(a.q(0,B.K)){r=r.gco().k3 -return q.c3(A.ar(97,r.A()>>>16&255,r.A()>>>8&255,r.A()&255))}if(a.q(0,B.dH)){if(a.q(0,B.J))return q.c3(r.gco().fy) -if(a.q(0,B.I)){r=r.gco() -s=r.k1 -return q.c3(s==null?r.go:s)}return q.c3(r.gco().fy)}if(a.q(0,B.J))return q.c3(r.gco().b) -if(a.q(0,B.I)){r=r.gco() -s=r.rx -return q.c3(s==null?r.k3:s)}r=r.gco() -s=r.rx -return q.c3(s==null?r.k3:s)}, -$S:59} -A.aDt.prototype={ -$1(a){var s,r=this.a,q=r.gyH().Q -if(q==null)q=B.en -if(a.q(0,B.K)){r=r.gco().k3 -return q.c3(A.ar(97,r.A()>>>16&255,r.A()>>>8&255,r.A()&255))}r=r.gco() -s=r.rx -return q.c3(s==null?r.k3:s)}, -$S:59} -A.aDq.prototype={ -$1(a){var s=this.a,r=s.gyH().Q -if(r==null)r=B.en -return r.c3(s.gco().fy)}, -$S:59} -A.a3g.prototype={} -A.L6.prototype={ -bF(){this.cE() -this.cv() -this.eG()}, -l(){var s=this,r=s.bl$ -if(r!=null)r.O(s.geq()) -s.bl$=null -s.aQ()}} -A.Li.prototype={ -l(){var s=this,r=s.bu$ -if(r!=null)r.O(s.gfA()) -s.bu$=null -s.aQ()}, -bF(){this.cE() -this.cv() -this.fB()}} -A.Ll.prototype={ -bF(){this.cE() -this.cv() -this.eG()}, -l(){var s=this,r=s.bl$ -if(r!=null)r.O(s.geq()) -s.bl$=null -s.aQ()}} -A.aaU.prototype={ -aP(a){var s,r,q -this.eV(a) -for(s=this.gnw(),r=s.length,q=0;q#"+A.bF(this)}} -A.tp.prototype={ -eo(a){return A.dy(this.a,this.b,a)}} -A.Ip.prototype={ -ah(){return new A.a3J(null,null)}, -gR(){return this.r}} -A.a3J.prototype={ -l7(a){var s,r,q=this -q.CW=t.ir.a(a.$3(q.CW,q.a.z,new A.aEa())) -s=t.YJ -q.cy=s.a(a.$3(q.cy,q.a.as,new A.aEb())) -r=q.a.at -q.cx=r!=null?s.a(a.$3(q.cx,r,new A.aEc())):null -q.db=t.TZ.a(a.$3(q.db,q.a.w,new A.aEd()))}, -K(a){var s,r,q,p,o,n,m,l=this,k=null,j=l.db -j.toString -j=j.aj(l.geD().gp()) -j.toString -s=l.CW -s.toString -r=s.aj(l.geD().gp()) -A.P(a) -s=l.a.Q -q=l.cx -p=A.aVS(s,q==null?k:q.aj(l.geD().gp()),r) -s=l.cy -s.toString -s=s.aj(l.geD().gp()) -s.toString -q=A.dD(a) -o=l.a -n=o.y -m=o.x -return new A.Ud(new A.oH(j,q,k),n,r,p,s,new A.K1(o.r,j,m,k),k)}} -A.aEa.prototype={ -$1(a){return new A.aA(A.cG(a),null,t.Y)}, -$S:41} -A.aEb.prototype={ -$1(a){return new A.fV(t.G.a(a),null)}, -$S:77} -A.aEc.prototype={ -$1(a){return new A.fV(t.G.a(a),null)}, -$S:77} -A.aEd.prototype={ -$1(a){return new A.tp(t.RY.a(a),null)}, -$S:255} -A.K1.prototype={ -K(a){var s=this,r=null,q=s.e,p=q?r:new A.K2(s.d,A.dD(a),r) -q=q?new A.K2(s.d,A.dD(a),r):r -return A.hY(s.c,q,r,p,B.Q)}, -gR(){return this.c}} -A.K2.prototype={ -b1(a,b){this.b.iq(a,new A.w(0,0,0+b.a,0+b.b),this.c)}, -eU(a){return!a.b.j(0,this.b)}} -A.aaI.prototype={ -bF(){this.cE() -this.cv() -this.eG()}, -l(){var s=this,r=s.bl$ -if(r!=null)r.O(s.geq()) -s.bl$=null -s.aQ()}} -A.a3K.prototype={ -pL(a){return a.gdV()==="en"}, -j3(a){return new A.cF(B.Li,t.az)}, -ou(a){return!1}, -k(a){return"DefaultMaterialLocalizations.delegate(en_US)"}} -A.PE.prototype={ -gaD(){return"Open navigation menu"}, -gaT(){return"Back"}, -gaS(){return"Close"}, -gaG(){return"Delete"}, -gaZ(){return"More"}, -gX(){return"Copy"}, -gY(){return"Cut"}, -gaE(){return"Scan text"}, -gZ(){return"Paste"}, -gV(){return"Select all"}, -gB(){return"Look Up"}, -gI(){return"Search Web"}, -gF(){return"Share"}, -gb0(){return B.B}, -gaX(){return"Refresh"}, -$ia4:1} -A.TA.prototype={} -A.CX.prototype={ -gt(a){return J.D(this.a)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.CX&&J.b(b.a,this.a)}} -A.a3Q.prototype={} -A.TB.prototype={ -gt(a){var s=this -return A.bh([s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as])}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.TB)if(b.a==r.a)if(b.b==r.b)if(b.c==r.c)if(b.d==r.d)if(b.e==r.e)if(b.f==r.f)if(b.r==r.r)if(b.w==r.w)if(J.b(b.x,r.x))if(b.y==r.y)s=J.b(b.as,r.as) -return s}} -A.a3T.prototype={} -A.wd.prototype={ -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s -if(b==null)return!1 -if(this===b)return!0 -if(J.S(b)!==A.l(this))return!1 -if(b instanceof A.wd)s=J.b(b.a,this.a) -else s=!1 -return s}} -A.a3U.prototype={} -A.Dg.prototype={ -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.Dg&&b.a==s.a&&J.b(b.b,s.b)&&b.c==s.c&&J.b(b.d,s.d)&&J.b(b.e,s.e)&&J.b(b.f,s.f)&&J.b(b.r,s.r)&&b.w==s.w&&b.x==s.x&&b.z==s.z&&J.b(b.Q,s.Q)}} -A.a43.prototype={} -A.Dh.prototype={ -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.Dh&&b.a==s.a&&J.b(b.b,s.b)&&b.c==s.c&&J.b(b.d,s.d)&&J.b(b.e,s.e)&&J.b(b.f,s.f)&&J.b(b.r,s.r)&&J.b(b.w,s.w)&&b.x==s.x&&b.y==s.y}} -A.a44.prototype={} -A.Di.prototype={ -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.Di&&J.b(b.a,s.a)&&b.b==s.b&&J.b(b.c,s.c)&&J.b(b.d,s.d)&&J.b(b.e,s.e)&&J.b(b.f,s.f)&&b.r==s.r&&J.b(b.y,s.y)&&J.b(b.z,s.z)&&b.Q==s.Q&&b.as==s.as}} -A.a45.prototype={} -A.Dr.prototype={ -gt(a){return J.D(this.a)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.Dr&&J.b(b.a,this.a)}} -A.a4h.prototype={} -A.hx.prototype={ -gpd(){return A.fb.prototype.gpd.call(this)+"("+A.j(this.c.a)+")"}, -gwp(){return!0}} -A.Tw.prototype={ -gmC(){var s=this.b.c -s.toString -s=this.Rd(s).gmC() -return s}, -gCR(){var s=this.b.c -s.toString -s=this.Rd(s).gmC() -return s}, -Rd(a){var s,r=A.P(a).w -A.P(a) -s=B.kj.h(0,r) -if(s==null)A:{if(B.U===r||B.b5===r){s=B.iw -break A}if(B.as===r||B.bN===r||B.bP===r||B.bO===r){s=B.fY -break A}s=null}return s}, -gvg(){return null}, -gIq(){return null}, -gjC(){return A.bkK()}, -vn(a){var s=this.$ti.i("f3<1>").b(a)&&a.gjC()!=null,r=a instanceof A.hx||s -return r}, -Iz(a){return a instanceof A.hx}, -X7(a,b,c){var s=null -return A.cz(s,this.pp.$1(a),!1,s,s,!0,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,B.Y,s)}, -Aa(a,b,c,d){A.P(a) -return new A.yN(B.kj,this,b,c,d,null,this.$ti.i("yN<1>"))}} -A.Iq.prototype={ -pj(){var s=this.CW -if(s!=null)s.e=this.gmC() -return this.a4I()}, -m4(a){var s=this.CW -if(s!=null)s.f=this.gCR() -return this.a6v(a)}} -A.aaA.prototype={ -K(a){var s=this,r=A.P(a).ax.k2,q=s.c -return new A.nL(q,new A.aLR(s,r),new A.aLS(s),A.b_h(a,q,s.d,s.r,s.e,!0,r),null)}, -gR(){return this.r}} -A.aLR.prototype={ -$3(a,b,c){return new A.pr(b,c,this.a.e,!1,this.b,null)}, -$S:230} -A.aLS.prototype={ -$3(a,b,c){return new A.ps(b,this.a.e,!0,c,null)}, -$S:229} -A.pr.prototype={ -ah(){return new A.aay(new A.Fu($.af()),$,$)}, -gR(){return this.d}} -A.aay.prototype={ -gMp(){return!1}, -uL(){var s,r=this,q=r.a,p=q.f -if(p)s=B.fZ -else{s=$.b3Y() -s=new A.aw(q.c,s,s.$ti.i("aw"))}r.mb$=s -p=p?$.b3Z():$.b4_() -q=q.c -r.nO$=new A.aw(q,p,p.$ti.i("aw")) -q.a9(r.gt6()) -r.a.c.hk(r.gt5())}, -aw(){var s,r,q,p,o=this -o.uL() -s=o.a -r=s.f -q=o.mb$ -q===$&&A.a() -p=o.nO$ -p===$&&A.a() -o.d=A.b0m(s.c,s.r,q,r,p) -o.b3()}, -aV(a){var s,r,q,p=this,o=p.a -if(a.f!==o.f||a.c!==o.c){o=a.c -o.O(p.gt6()) -o.dj(p.gt5()) -p.uL() -o=p.d -o===$&&A.a() -o.l() -o=p.a -s=o.f -r=p.mb$ -r===$&&A.a() -q=p.nO$ -q===$&&A.a() -p.d=A.b0m(o.c,o.r,r,s,q)}p.bm(a)}, -l(){var s,r=this -r.a.c.O(r.gt6()) -r.a.c.dj(r.gt5()) -s=r.d -s===$&&A.a() -s.l() -r.a8b()}, -K(a){var s=this.d -s===$&&A.a() -return A.aZx(!0,this.a.d,this.pt$,B.Ja,s)}} -A.ps.prototype={ -ah(){return new A.aaz(new A.Fu($.af()),$,$)}, -gR(){return this.f}} -A.aaz.prototype={ -gMp(){return!1}, -uL(){var s,r=this,q=r.a,p=q.e -if(p){s=$.b41() -s=new A.aw(q.c,s,s.$ti.i("aw"))}else s=B.fZ -r.mb$=s -p=p?$.b42():$.b43() -q=q.c -r.nO$=new A.aw(q,p,p.$ti.i("aw")) -q.a9(r.gt6()) -r.a.c.hk(r.gt5())}, -aw(){var s,r,q,p,o=this -o.uL() -s=o.a -r=s.e -q=o.mb$ -q===$&&A.a() -p=o.nO$ -p===$&&A.a() -o.d=A.b0n(s.c,q,r,p) -o.b3()}, -aV(a){var s,r,q,p=this,o=p.a -if(a.e!==o.e||a.c!==o.c){o=a.c -o.O(p.gt6()) -o.dj(p.gt5()) -p.uL() -o=p.d -o===$&&A.a() -o.l() -o=p.a -s=o.e -r=p.mb$ -r===$&&A.a() -q=p.nO$ -q===$&&A.a() -p.d=A.b0n(o.c,r,s,q)}p.bm(a)}, -l(){var s,r=this -r.a.c.O(r.gt6()) -r.a.c.dj(r.gt5()) -s=r.d -s===$&&A.a() -s.l() -r.a8c()}, -K(a){var s=this.d -s===$&&A.a() -return A.aZx(!0,this.a.f,this.pt$,B.Ja,s)}} -A.a2t.prototype={ -K(a){var s=this -return new A.nL(s.c,new A.aBG(),new A.aBH(),A.b7U(a,s.d,s.e,s.f),null)}, -gR(){return this.f}} -A.aBG.prototype={ -$3(a,b,c){var s=$.aTP(),r=$.b3J() -return new A.e9(new A.aw(b,s,s.$ti.i("aw")),!1,A.oK(c,new A.aw(b,r,r.$ti.i("aw")),null,!0),null)}, -$S:126} -A.aBH.prototype={ -$3(a,b,c){var s=b.gba(),r=$.aTQ(),q=$.b3I() -return A.jK(new A.e9(new A.aw(b,r,r.$ti.i("aw")),!1,A.oK(c,new A.aw(b,q,q.$ti.i("aw")),null,!0),null),s===B.bC,null)}, -$S:259} -A.ahJ.prototype={ -$3(a,b,c){var s=$.aTP(),r=$.b2r() -return new A.e9(new A.aw(b,s,s.$ti.i("aw")),!1,A.oK(c,new A.aw(b,r,r.$ti.i("aw")),null,!0),null)}, -$S:126} -A.ahK.prototype={ -$3(a,b,c){var s=$.aTQ(),r=$.b2q() -return new A.e9(new A.aw(b,s,s.$ti.i("aw")),!1,A.oK(c,new A.aw(b,r,r.$ti.i("aw")),null,!0),null)}, -$S:126} -A.a08.prototype={ -gjC(){return new A.ayc(this)}, -Iw(a,b,c,d,e){return new A.aaA(c,d,!0,null,e,!0,null)}} -A.ayc.prototype={ -$5(a,b,c,d,e){return A.b_h(a,b,c,e,d,!0,null)}, -$S:260} -A.aya.prototype={ -$3(a,b,c){var s=this.a&&this.b -return new A.pr(b,c,s,!0,this.c,null)}, -$S:230} -A.ayb.prototype={ -$3(a,b,c){return new A.ps(b,this.a,!1,c,null)}, -$S:229} -A.Pq.prototype={ -gmC(){return B.hk}, -gjC(){return A.bkP()}, -Iw(a,b,c,d,e,f){return A.b6C(a,b,c,d,e,f)}} -A.U5.prototype={ -a91(a){var s=t.Tr -s=A.aa(new A.am(B.Wf,new A.api(a),s),s.i("aE.E")) -return s}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.S(b)!==A.l(this))return!1 -if(b instanceof A.U5)return!0 -return!1}, -gt(a){return A.bh(this.a91(B.kj))}} -A.api.prototype={ -$1(a){return this.a.h(0,a)}, -$S:261} -A.yN.prototype={ -ah(){return new A.IP(this.$ti.i("IP<1>"))}, -gR(){return this.r}} -A.IP.prototype={ -K(a){var s,r,q=this,p=A.P(a).w,o=q.a -if(o.d.b.cy.a){s=q.d -if(s==null)q.d=p -else p=s}else q.d=null -r=o.c.h(0,p) -if(r==null){A:{if(B.U===p){o=B.iw -break A}if(B.as===p||B.bN===p||B.bP===p||B.b5===p||B.bO===p){o=B.fY -break A}o=null}r=o}o=q.a -return r.Iw(o.d,a,o.e,o.f,o.r,q.$ti.c)}} -A.zg.prototype={ -avX(){var s,r=this,q=r.nO$ -q===$&&A.a() -if(J.b(q.b.aj(q.a.gp()),1)){q=r.mb$ -q===$&&A.a() -q=q.gp()===0||r.mb$.gp()===1}else q=!1 -s=r.pt$ -if(q)s.sp_(!1) -else{r.gMp() -s.sp_(!1)}}, -avW(a){if(a.gjK())this.gMp() -this.pt$.sp_(!1)}} -A.L1.prototype={ -GW(a){this.a7()}, -Qt(a,b,c){var s,r,q,p,o,n,m=this -if(!m.r&&m.w.gba()!==B.a9){s=$.b40().aj(m.w.gp()) -s.toString -r=s}else r=0 -if(r>0){s=a.gcw() -q=b.a -p=b.b -$.ab() -o=A.bt() -n=m.z -o.r=A.ar(B.d.aY(255*r),n.A()>>>16&255,n.A()>>>8&255,n.A()&255).gp() -s.h_(new A.w(q,p,q+c.a,p+c.b),o)}}, -t9(a,b,c,d){var s,r,q=this -if(!q.w.gjK())return d.$2(a,b) -q.Qt(a,b,c) -s=q.Q -r=q.x -A.b1e(s,r.b.aj(r.a.gp()),c) -r=q.at -r.saR(a.wL(!0,b,s,new A.aLP(q,d),r.a))}, -a0t(a,b,c,d,e,f){var s -this.Qt(a,b,c) -s=this.x -A.b0z(a,d,s.b.aj(s.a.gp()),this.y.gp(),f)}, -l(){var s=this,r=s.w,q=s.gdN() -r.O(q) -r.dj(s.guK()) -s.x.a.O(q) -s.y.O(q) -s.as.saR(null) -s.at.saR(null) -s.d8()}, -eU(a){var s,r=this,q=!0 -if(a.r===r.r)if(a.w.gp()===r.w.gp()){q=a.x -s=r.x -q=!J.b(q.b.aj(q.a.gp()),s.b.aj(s.a.gp()))||a.y.gp()!==r.y.gp()}return q}} -A.aLP.prototype={ -$2(a,b){var s=this.a,r=s.as -r.saR(a.a0Q(b,B.d.aY(s.y.gp()*255),this.b,r.a))}, -$S:17} -A.L2.prototype={ -GW(a){this.a7()}, -a0t(a,b,c,d,e,f){var s=this.w -A.b0z(a,d,s.b.aj(s.a.gp()),this.x.gp(),f)}, -t9(a,b,c,d){var s,r,q=this -if(!q.y.gjK())return d.$2(a,b) -s=q.z -r=q.w -A.b1e(s,r.b.aj(r.a.gp()),c) -r=q.as -r.saR(a.wL(!0,b,s,new A.aLQ(q,d),r.a))}, -eU(a){var s,r=!0 -if(a.r===this.r)if(a.x.gp()===this.x.gp()){r=a.w -s=this.w -s=!J.b(r.b.aj(r.a.gp()),s.b.aj(s.a.gp())) -r=s}return r}, -l(){var s,r=this -r.Q.saR(null) -r.as.saR(null) -s=r.gdN() -r.w.a.O(s) -r.x.O(s) -r.y.dj(r.guK()) -r.d8()}} -A.aLQ.prototype={ -$2(a,b){var s=this.a,r=s.Q -r.saR(a.a0Q(b,B.d.aY(s.x.gp()*255),this.b,r.a))}, -$S:17} -A.a4m.prototype={} -A.LE.prototype={ -l(){var s=this.pt$ -s.P$=$.af() -s.L$=0 -this.aQ()}} -A.LF.prototype={ -l(){var s=this.pt$ -s.P$=$.af() -s.L$=0 -this.aQ()}} -A.DB.prototype={ -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.DB&&J.b(b.a,s.a)&&J.b(b.b,s.b)&&J.b(b.c,s.c)&&b.d==s.d&&J.b(b.e,s.e)&&J.b(b.f,s.f)&&J.b(b.r,s.r)&&b.w==s.w&&J.b(b.Q,s.Q)&&b.as==s.as}} -A.a4W.prototype={} -A.Um.prototype={ -gmC(){return B.ON}, -Iw(a,b,c,d,e,f){return new A.IU(new A.apZ(a,c,d,e,f),a,null)}} -A.apZ.prototype={ -$4(a,b,c,d){var s=this -if(s.a.b.cy.a)return new A.IV(s.b,b,c,d,s.d,null) -return new A.a2t(s.b,s.c,null,s.d,null)}, -$S:262} -A.ng.prototype={ -N(){return"_PredictiveBackPhase."+this.b}} -A.IU.prototype={ -ah(){return new A.a4X(B.Ka)}, -apb(a,b,c,d){return this.c.$4(a,b,c,d)}} -A.a4X.prototype={ -sCw(a){var s=this -if(s.d!==a&&s.c!=null)s.ar(new A.aFo(s,a))}, -sDX(a){var s=this -if(!J.b(s.e,a)&&s.c!=null)s.ar(new A.aFp(s,a))}, -sAx(a){var s=this -if(!J.b(s.f,a)&&s.c!=null)s.ar(new A.aFn(s,a))}, -ZM(a){var s,r,q,p=this -p.sCw(B.ajW) -s=a.a -if(s!=null)s=a.b===0&&s.j(0,B.f) -else s=!0 -r=!1 -if(!s)if(p.a.d.gjL()){s=p.a.d -s=A.f3.prototype.ga0z.call(s) -r=s}if(!r)return!1 -s=p.a.d -q=s.CW -if(q!=null)q.sp(1-a.b) -s=s.b -if(s!=null)s.Yv() -p.sAx(a) -p.sDX(a) -return!0}, -ZS(a){this.sCw(B.ajX) -this.a.d.atB(1-a.b) -this.sAx(a)}, -ZB(){var s=this -s.sCw(B.ajY) -s.a.d.TN(!0) -s.sAx(null) -s.sDX(null)}, -ZD(){var s=this -s.sCw(B.eu) -s.a.d.TN(!1) -s.sAx(null) -s.sDX(null)}, -aw(){this.b3() -$.a1.bI$.push(this)}, -l(){$.a1.is(this) -this.aQ()}, -K(a){var s=this,r=s.a,q=r.d.b.cy.a?s.d:B.Ka -return r.apb(a,q,s.e,s.f)}} -A.aFo.prototype={ -$0(){return this.a.d=this.b}, -$S:0} -A.aFp.prototype={ -$0(){return this.a.e=this.b}, -$S:0} -A.aFn.prototype={ -$0(){return this.a.f=this.b}, -$S:0} -A.IV.prototype={ -ah(){var s=null,r=t.Y -return new A.a4Y(new A.aA(0,32,r),new A.aA(1,0,r),new A.aA(1,0.9,r),A.mw(s),A.mw(s),A.mw(s),B.f,s,s)}, -gR(){return this.x}} -A.a4Y.prototype={ -yv(a){var s,r,q,p,o=null,n=this.a,m=n.r -if(m==null)s=o -else{m=m.a -m=m==null?o:m.b -s=m}if(s==null)s=0 -n=n.w -if(n==null)r=o -else{n=n.a -n=n==null?o:n.b -r=n}if(r==null)r=0 -q=a/20-8 -p=r-s -return A.E(B.hg.aj(A.E(Math.abs(p)/a,0,1))*J.ej(p)*q,-q,q)}, -Tc(a){var s,r,q,p=this,o=p.y,n=p.a -A:{if(B.eu===n.f){n=p.Q -break A}n=n.d -break A}o.sbk(n) -n=p.a -B:{if(B.eu===n.f){n=p.x -s=t.Y -r=p.z -r.toString -s=new A.aw(r,new A.aA(0,n,s),s.i("aw")) -n=s -break B}n=new A.hB(n.d,new A.bp(A.c([],t.F),t.T),0) -break B}p.w.sbk(n) -C:{if(B.eu===p.a.f){n=o -break C}n=B.dQ -break C}p.r.sbk(n) -q=a.a/20-8 -n=p.a -D:{if(B.eu===n.f){n=new A.aA(p.at,new A.h(a.b*0.1,0),t.Ni) -break D}n=n.w -switch(n==null?null:n.c){case B.Jd:n=new A.h(q,p.yv(a.b)) -break -case B.Je:n=new A.h(-q,p.yv(a.b)) -break -case null:case void 0:n=new A.h(q,p.yv(a.b)) -break -default:n=null}n=new A.aA(n,B.f,t.Ni) -break D}p.as=new A.aw(t.v.a(o),n,n.$ti.i("aw"))}, -VA(){var s=this,r=s.z -if(r!=null)r.l() -r=s.Q -if(r!=null)r.l() -s.z=A.cQ(B.rL,s.a.d,null) -s.Q=A.cQ(B.rL,new A.hB(s.a.d,new A.bp(A.c([],t.F),t.T),0),null)}, -aw(){this.b3()}, -aV(a){var s,r=this -r.bm(a) -if(r.a.d!==a.d)r.VA() -s=r.a.f -if(s!==a.f&&s===B.eu){s=r.c -s.toString -r.Tc(A.c0(s,B.fQ,t.l).w.a)}}, -by(){var s,r=this -r.du() -r.VA() -s=r.c -s.toString -r.Tc(A.c0(s,B.fQ,t.l).w.a)}, -l(){this.z.l() -this.Q.l() -this.a7S()}, -K(a){var s=this.a -return A.hU(s.d,new A.aFq(this),s.x)}} -A.aFq.prototype={ -$2(a,b){var s,r,q,p=this.a,o=p.w -p.x=o.gp() -s=p.f.aj(o.gp()) -A:{if(B.eu===p.a.f){r=p.as -r===$&&A.a() -r=r.b.aj(r.a.gp()) -break A}r=p.as -r===$&&A.a() -r=p.at=new A.h(r.b.aj(r.a.gp()).a,p.yv(A.c0(a,B.K8,t.l).w.a.b)) -break A}q=p.e.aj(p.r.gp()) -return A.b__(B.a_,A.aSg(A.wo(A.aes(A.bK(p.d.aj(o.gp())),b),q),r,!0),s,null,null,!0)}, -$S:78} -A.aaQ.prototype={} -A.Ls.prototype={ -l(){var s=this,r=s.bu$ -if(r!=null)r.O(s.gfA()) -s.bu$=null -s.aQ()}, -bF(){this.cE() -this.cv() -this.fB()}} -A.ayS.prototype={ -N(){return"_ActivityIndicatorType."+this.b}} -A.Ut.prototype={ -Rp(a,b){var s=this.f -s=s==null?null:s.gp() -if(s==null)s=this.e -if(s==null)s=A.aRE(a).a -if(s==null)s=b -return s==null?A.P(a).ax.b:s}, -ad4(a){return this.Rp(a,null)}, -Pi(a,b){var s,r,q=null,p=this.w,o=this.c,n=o!=null -if(n){o=A.E(o,0,1) -o.toString -p=""+B.d.aY(o*100)}o=n?B.a6d:B.a6c -s=n?"0":q -r=n?"100":q -return A.cz(q,a,!1,q,q,!1,q,q,q,q,q,this.r,q,q,r,q,s,q,q,q,q,q,q,q,q,q,q,q,o,q,q,q,q,q,q,q,q,B.Y,p)}} -A.ya.prototype={ -b1(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this -$.ab() -s=A.bt() -s.r=e.c.gp() -r=s.c=e.x -s.b=B.bK -q=r/2*-e.y -p=b.a -o=q*2 -n=p-o -o=b.b-o -m=e.at -l=m!=null&&m>0 -k=e.b -if(k!=null){j=A.bt() -j.r=k.gp() -j.c=r -j.d=B.oL -j.b=B.bK -if(l){k=e.d -k=k!=null&&k>0.001}else k=!1 -if(k){i=new A.L(n,o).gft()/2 -h=r/i+m/i -r=e.d -r.toString -g=r<0.001?h:h*2 -f=Math.max(0,6.283185307179586-A.E(r,0,1)*6.283185307179586-g) -r=a.a -J.b4(r.save()) -a.xp(-1,1) -r.translate(-p,0) -a.JC(new A.w(q,q,q+n,q+o),-1.5707963267948966+h,f,!1,j) -r.restore()}else a.JC(new A.w(q,q,q+n,q+o),0,6.282185307179586,!1,j)}if(e.d==null)s.d=B.a9L -else s.d=B.dE -a.JC(new A.w(q,q,q+n,q+o),e.z,e.Q,!1,s)}, -eU(a){var s=this,r=!0 -if(J.b(a.b,s.b))if(a.c.j(0,s.c))if(a.d==s.d)if(a.e===s.e)if(a.f===s.f)if(a.r===s.r)if(a.w===s.w)if(a.x===s.x)if(a.y===s.y)r=a.at!=s.at -return r}} -A.jA.prototype={ -gcb(){return this.d}, -ah(){return new A.Hb(null,null)}} -A.Hb.prototype={ -aw(){var s,r=this -r.b3() -s=A.bX(null,B.OK,null,null,r) -r.d!==$&&A.bs() -r.d=s -r.Vx()}, -aV(a){this.bm(a) -this.Vx()}, -l(){var s=this.d -s===$&&A.a() -s.l() -this.a7A()}, -gkd(){var s,r=this -r.gW() -r.c.Dr(t.C0) -r.c.Ka(t.nH) -s=r.d -s===$&&A.a() -return s}, -Vx(){var s=this,r=s.gW().c -if((r==null?null:A.E(r,0,1))==null){r=s.d -r===$&&A.a() -r=r.r -r=!(r!=null&&r.a!=null)}else r=!1 -if(r){r=s.d -r===$&&A.a() -r.LZ()}else{r=s.gW().c -if((r==null?null:A.E(r,0,1))!=null){r=s.d -r===$&&A.a() -r=r.r -r=r!=null&&r.a!=null}else r=!1 -if(r){r=s.d -r===$&&A.a() -r.fg()}}}, -y7(a,b,c,d,e){var s,r,q,p,o,n,m,l,k=this,j=null,i=A.aRE(a) -k.gW() -A.P(a) -switch(!0){case!0:s=k.gW() -s=s.c -s=A.b_q(a,(s==null?j:A.E(s,0,1))==null) -break -case!1:s=k.gW().c -s=A.b_p(a,(s==null?j:A.E(s,0,1))==null) -break -default:s=j}r=k.gW().gcb() -q=r==null?i.d:r -if(q==null)q=s.d -r=k.gW().z -p=r==null?i.x:r -if(p==null)p=s.goA() -k.gW() -o=i.y -if(o==null)o=s.goy() -k.gW() -k.gW() -n=i.Q -if(n==null)n=s.gab() -k.gW() -m=i.at -if(m==null)m=s.at -s=k.gW().Rp(a,s.gdQ()) -r=k.gW().c -r=r==null?j:A.E(r,0,1) -l=new A.dX(n,A.hY(j,j,j,A.bcY(b,d,e,o,i.z,p,c,q,j,r,s,!0),B.Q),j) -if(m!=null)l=new A.bR(m,l,j) -return k.gW().Pi(l,a)}, -EK(){return A.hU(this.gkd(),new A.aAv(this),null)}, -K(a){return new A.dO(new A.aAw(this),null)}} -A.aAv.prototype={ -$2(a,b){var s=this.a -return s.y7(a,$.aU3().aj(s.gkd().gp()),$.aU4().aj(s.gkd().gp()),$.aU1().aj(s.gkd().gp()),$.aU2().aj(s.gkd().gp()))}, -$S:48} -A.aAw.prototype={ -$1(a){var s,r=this.a -r.gW() -switch(0){case 0:s=r.gW().c -if((s==null?null:A.E(s,0,1))!=null)return r.y7(a,0,0,0,0) -return r.EK()}}, -$S:15} -A.a5q.prototype={ -b1(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=this -h.a6j(a,b) -s=h.ch -if(s>0){r=h.z+h.Q -q=Math.cos(r) -p=Math.sin(r) -o=b.a/2 -n=h.x -m=n*2*s -l=o-m -k=o+m -j=A.co($.ab().r) -j.b9(new A.ig(o+q*l,o+p*l)) -j.b9(new A.d3(o+q*k,o+p*k)) -j.b9(new A.d3(o+q*o+-p*n*2*s,o+p*o+q*n*2*s)) -j.b9(new A.pW()) -i=A.bt() -i.r=h.c.gp() -i.c=n -i.b=B.bJ -a.jE(j,i)}}} -A.DN.prototype={ -gcb(){return A.jA.prototype.gcb.call(this)}, -ah(){return new A.a5r(null,null)}} -A.a5r.prototype={ -gW(){return t.nP.a(A.T.prototype.gW.call(this))}, -K(a){var s,r=this,q=t.nP.a(A.T.prototype.gW.call(r)).c,p=q==null?null:A.E(q,0,1) -if(p!=null){r.Q=p -q=r.gkd() -s=r.y -q.sp((s===$?r.y=new A.fm(B.rN):s).aj(p)*0.000225022502250225)}return r.EK()}, -EK(){return A.hU(this.gkd(),new A.aFJ(this),null)}, -y7(a,b,a0,a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null,e=t.nP,d=e.a(A.T.prototype.gW.call(g)).c,c=d==null?f:A.E(d,0,1) -d=c==null -s=d?0:B.rN.aj(c) -if(d&&g.Q==null)r=0 -else{q=g.z -if(q===$){p=t.Y -o=t.Ns -n=A.aSj(A.c([new A.fA(new A.aA(-0.1,-0.2,p),0.33,o),new A.fA(new A.aA(-0.2,1.35,p),0.6699999999999999,o)],t.x0),t.i) -g.z!==$&&A.aK() -g.z=n -q=n}if(d){p=g.Q -p.toString}else p=c -r=3.141592653589793*q.aj(p)}m=e.a(A.T.prototype.gW.call(g)).ad4(a) -l=m.gdY() -m=m.aI(1) -A.P(a) -switch(!0){case!0:d=A.b_q(a,d) -break -case!1:d=A.b_p(a,d) -break -default:d=f}k=A.aRE(a) -p=e.a(A.T.prototype.gW.call(g)) -p=A.jA.prototype.gcb.call(p) -j=p==null?k.e:p -if(j==null)j=A.P(a).as -p=e.a(A.T.prototype.gW.call(g)).z -i=p==null?k.x:p -if(i==null)i=d.goA() -e.a(A.T.prototype.gW.call(g)) -h=k.y -if(h==null)h=d.goy() -e.a(A.T.prototype.gW.call(g)) -d=e.a(A.T.prototype.gW.call(g)) -e.a(A.T.prototype.gW.call(g)) -p=e.a(A.T.prototype.gW.call(g)) -e.a(A.T.prototype.gW.call(g)) -e=a0*3/2*3.141592653589793 -o=Math.max(b*3/2*3.141592653589793-e,0.001) -return d.Pi(new A.bR(B.df,A.Fm(A.mf(!1,B.a3,!0,f,new A.bR(B.hn,A.wo(A.YW(B.a_,r,A.hY(f,f,f,new A.a5q(s,f,m,f,b,a0,a1,a2,i,h,-1.5707963267948966+e+a2*3.141592653589793*2+a1*0.5*3.141592653589793,o,k.z,f,!0,f),B.Q),!0),l),f),B.v,j,p.fy,f,f,f,f,f,B.nK),B.a98),f),a)}} -A.aFJ.prototype={ -$2(a,b){var s,r,q,p=this.a,o=$.aU3(),n=p.gkd().x -n===$&&A.a() -n=o.b.aj(o.a.aj(n)) -o=$.aU4() -s=p.gkd().x -s===$&&A.a() -s=o.b.aj(o.a.aj(s)) -o=$.aU1() -r=p.gkd().x -r===$&&A.a() -r=o.aj(r) -o=$.aU2() -q=p.gkd().x -q===$&&A.a() -return p.y7(a,1.05*n,s,r,o.aj(q))}, -$S:48} -A.aAt.prototype={ -gdQ(){var s,r=this,q=r.CW -if(q===$){s=A.P(r.ch) -r.CW!==$&&A.aK() -q=r.CW=s.ax}return q.b}, -goA(){return 4}, -goy(){return 0}, -gab(){return B.pD}} -A.aAu.prototype={ -gdQ(){var s,r=this,q=r.CW -if(q===$){s=A.P(r.ch) -r.CW!==$&&A.aK() -q=r.CW=s.ax}return q.b}, -goA(){return 4}, -goy(){return 0}, -gab(){return B.pD}} -A.L9.prototype={ -l(){var s=this,r=s.bu$ -if(r!=null)r.O(s.gfA()) -s.bu$=null -s.aQ()}, -bF(){this.cE() -this.cv() -this.fB()}} -A.wB.prototype={ -gt(a){var s=this -return A.N(s.gdQ(),s.b,s.c,s.gIF(),s.e,s.f,s.r,s.w,s.goy(),s.goA(),s.z,s.gab(),s.gMa(),s.gIG(),s.ax,s.ay,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.wB)if(J.b(b.gdQ(),r.gdQ()))if(J.b(b.b,r.b))if(b.c==r.c)if(J.b(b.gIF(),r.gIF()))if(J.b(b.e,r.e))if(J.b(b.f,r.f))if(J.b(b.r,r.r))if(b.w==r.w)if(b.goy()==r.goy())if(b.goA()==r.goA())if(J.b(b.gab(),r.gab()))if(b.gMa()==r.gMa())s=J.b(b.gIG(),r.gIG()) -return s}, -gdQ(){return this.a}, -gIF(){return this.d}, -goA(){return this.x}, -goy(){return this.y}, -gab(){return this.Q}, -gMa(){return this.as}, -gIG(){return this.at}} -A.a50.prototype={} -A.DH.prototype={ -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.DH&&b.b==s.b&&b.c==s.c&&b.d==s.d&&b.r==s.r&&J.b(b.w,s.w)&&b.x==s.x}} -A.a59.prototype={} -A.oq.prototype={ -N(){return"RefreshIndicatorStatus."+this.b}} -A.aqB.prototype={ -N(){return"RefreshIndicatorTriggerMode."+this.b}} -A.aDc.prototype={ -N(){return"_IndicatorType."+this.b}} -A.rJ.prototype={ -ah(){return new A.DM(null,null)}, -awg(){return this.f.$0()}, -lf(a){return A.up().$1(a)}, -gR(){return this.c}} -A.DM.prototype={ -gQy(){var s,r=this,q=r.at -if(q===$){q=r.a.w -if(q==null){s=r.c -s.toString -q=A.P(s).ax.b}q=r.at=q}return q}, -aw(){var s,r,q,p=this,o=null -p.b3() -s=p.d=A.bX(o,o,o,o,p) -r=$.b37() -q=t.v -p.f=new A.aw(q.a(s),r,r.$ti.i("aw")) -r=$.b39() -p.w=new A.aw(q.a(s),r,r.$ti.i("aw")) -r=A.bX(o,o,o,o,p) -p.e=r -s=$.b38() -p.r=new A.aw(q.a(r),s,s.$ti.i("aw"))}, -by(){this.Uq() -this.du()}, -aV(a){this.bm(a) -if(!J.b(a.w,this.a.w))this.Uq()}, -l(){var s=this.d -s===$&&A.a() -s.l() -s=this.e -s===$&&A.a() -s.l() -this.a6F()}, -Uq(){var s,r,q,p,o=this,n=o.a.w -if(n==null){n=o.c -n.toString -n=A.P(n).ax.b}o.at=n -s=o.gQy() -if(s.ger()===0)o.x=new A.zF(s,t.ZU) -else{n=o.d -n===$&&A.a() -r=s.e_(0) -q=s.e_(s.ger()) -p=t.IC.i("eE") -o.x=new A.aw(t.v.a(n),new A.eE(new A.fm(B.Q3),new A.fV(r,q),p),p.i("aw"))}}, -akd(a){var s,r,q,p,o=this -if(!o.a.lf(a))return!1 -s=a instanceof A.rZ&&a.d!=null -if(!s)if(a instanceof A.k_)if(a.d!=null)o.a.toString -if(s){s=a.a -r=s.e -if(!(r===B.b_&&Math.max(s.gj4()-s.gep(),0)===0))s=r===B.aV&&Math.max(s.gep()-s.gj5(),0)===0 -else s=!0 -s=s&&o.y==null&&o.ake(r)}else s=!1 -if(s){o.ar(new A.aqw(o)) -return!1}s=a.a -q=s.e -A:{r=null -if(B.aV===q||B.b_===q){r=!0 -break A}if(B.bh===q||B.cl===q)break A}if(r!=o.Q){s=o.y -if(s===B.eh||s===B.ei)o.lL(B.kJ)}else if(a instanceof A.k_){r=o.y -if(r===B.eh||r===B.ei){if(q===B.aV){r=o.as -r.toString -p=a.e -p.toString -o.as=r-p}else if(q===B.b_){r=o.as -r.toString -p=a.e -p.toString -o.as=r+p}s=s.d -s.toString -o.Ps(s)}if(o.y===B.ei&&a.d==null)o.Tt()}else if(a instanceof A.jU){r=o.y -if(r===B.eh||r===B.ei){if(q===B.aV){r=o.as -r.toString -o.as=r-a.e}else if(q===B.b_){r=o.as -r.toString -o.as=r+a.e}s=s.d -s.toString -o.Ps(s)}}else if(a instanceof A.j7)switch(o.y){case B.ei:s=o.d -s===$&&A.a() -s=s.x -s===$&&A.a() -if(s<1)o.lL(B.kJ) -else o.Tt() -break -case B.eh:o.lL(B.kJ) -break -case B.kJ:case B.o3:case B.kI:case B.o2:case null:case void 0:break}return!1}, -ael(a){if(a.hs$!==0||!a.a)return!1 -if(this.y===B.eh){a.c=!1 -return!0}return!1}, -ake(a){var s,r=this -switch(a.a){case 2:case 0:r.Q=!0 -break -case 3:case 1:r.Q=null -return!1}r.as=0 -s=r.e -s===$&&A.a() -s.sp(0) -s=r.d -s===$&&A.a() -s.sp(0) -return!0}, -Ps(a){var s,r=this,q=r.as -q.toString -s=q/(a*0.25) -if(r.y===B.ei)s=Math.max(s,0.6666666666666666) -q=r.d -q===$&&A.a() -q.sp(A.E(s,0,1)) -if(r.y===B.eh){q=r.x -q===$&&A.a() -q=q.gp().ger()===r.gQy().ger()}else q=!1 -if(q){r.y=B.ei -r.a.toString}}, -lL(a){return this.abe(a)}, -abe(a){var s=0,r=A.I(t.H),q=this,p -var $async$lL=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:s=2 -return A.p(A.di(null,t.H),$async$lL) -case 2:q.ar(new A.aqu(q,a)) -case 3:switch(q.y.a){case 4:s=5 -break -case 5:s=6 -break -case 1:s=7 -break -case 0:s=8 -break -case 3:s=9 -break -case 2:s=10 -break -default:s=4 -break}break -case 5:p=q.e -p===$&&A.a() -p.z=B.aP -s=11 -return A.p(p.iG(1,B.a7,B.a3),$async$lL) -case 11:s=4 -break -case 6:p=q.d -p===$&&A.a() -p.z=B.aP -s=12 -return A.p(p.iG(0,B.a7,B.a3),$async$lL) -case 12:s=4 -break -case 7:case 8:case 9:case 10:s=4 -break -case 4:if(q.c!=null&&q.y===a){q.Q=q.as=null -q.ar(new A.aqv(q))}return A.G(null,r)}}) -return A.H($async$lL,r)}, -Tt(){var s,r=this,q=$.as -r.y=B.o2 -r.a.toString -s=r.d -s===$&&A.a() -s.z=B.aP -s.iG(0.6666666666666666,B.a7,B.c2).c1(new A.aqz(r,new A.bC(new A.ax(q,t.c),t.R)),t.H)}, -K(a){var s,r,q,p=this,o=null,n=p.a.c,m=p.y,l=m===B.kI||m===B.o3 -n=A.c([new A.dT(p.gakc(),new A.dT(p.gaek(),n,o,t.eq),o,t.WA)],t.p) -if(p.y!=null){m=p.Q -m.toString -p.a.toString -m=!m?0:o -s=p.f -s===$&&A.a() -r=p.r -r===$&&A.a() -q=p.d -q===$&&A.a() -n.push(A.mu(m,A.aZn(B.L,1,new A.bR(new A.a2(0,40,0,0),new A.ex(B.bp,o,o,A.asn(A.hU(q,new A.aqA(p,l),o),r),o),o),s),o,o,0,0,0,o))}return A.hE(B.aQ,n,B.N,B.bM)}} -A.aqw.prototype={ -$0(){var s=this.a -s.y=B.eh -s.a.toString}, -$S:0} -A.aqu.prototype={ -$0(){var s=this.a -s.y=this.b -s.a.toString}, -$S:0} -A.aqv.prototype={ -$0(){this.a.y=null}, -$S:0} -A.aqz.prototype={ -$1(a){var s=this.a -if(s.c!=null&&s.y===B.o2){s.ar(new A.aqx(s)) -s.a.awg().h9(new A.aqy(s,this.b))}}, -$S:40} -A.aqx.prototype={ -$0(){this.a.y=B.kI}, -$S:0} -A.aqy.prototype={ -$0(){var s=this.a -if(s.c!=null&&s.y===B.kI){this.b.fW() -s.lL(B.o3)}}, -$S:13} -A.aqA.prototype={ -$2(a,b){var s,r,q,p,o,n=null,m=this.a -m.a.toString -s=A.j2(a,B.cC,t.c4) -s.toString -s=s.gaX() -m.a.toString -if(this.b)r=n -else{r=m.w -r===$&&A.a() -r=r.b.aj(r.a.gp())}q=m.x -q===$&&A.a() -m=m.a -p=new A.DN(2,2.5,n,n,r,m.x,n,q,s,n,n) -o=A.b6q(m.w,n) -switch(0){case 0:return p}}, -$S:48} -A.J3.prototype={ -bF(){this.cE() -this.cv() -this.eG()}, -l(){var s=this,r=s.bl$ -if(r!=null)r.O(s.geq()) -s.bl$=null -s.aQ()}} -A.hM.prototype={ -N(){return"_ScaffoldSlot."+this.b}} -A.Ep.prototype={ -ah(){var s=null -return new A.Eq(A.kN(t.Np),A.o6(s,t.nY),A.o6(s,t.BL),s,s)}, -gR(){return this.c}} -A.Eq.prototype={ -by(){var s=this.c -s.toString -this.y=A.c0(s,B.ph,t.l).w.z -this.du()}, -HW(){var s,r,q,p,o,n -for(s=this.d,r=A.cl(s,s.r,A.n(s).c),q=t.Np,p=r.$ti.c;r.v();){o=r.d -if(o==null)o=p.a(o) -n=o.c.l6(q) -if(n==null||!s.q(0,n)){o.W1() -o.VJ()}}}, -agW(a){var s=a.c.l6(t.Np) -return s==null||!this.d.q(0,s)}, -qo(a){var s,r,q,p,o=this,n=o.w -if(n==null){n=A.bX("SnackBar",B.qW,null,null,o) -n.bC() -r=n.cP$ -r.b=!0 -r.a.push(o.gafD()) -o.w=n}r=o.r -if(r.b===r.c)n.cc() -s=A.bQ() -n=o.w -n.toString -r=new A.hc() -q=a.a -r=q==null?r:q -s.b=new A.Eo(A.avG(a.Q,a.as,n,a.d,a.z,a.db,a.ax,a.c,a.cy,a.ay,a.e,a.y,r,a.f,a.cx,a.r,a.ch,a.x,a.at,a.w),new A.bC(new A.ax($.as,t.dH),t.D5),new A.ase(o),t.BL) -try{o.ar(new A.asf(o,s)) -o.HW()}catch(p){throw p}return s.bc()}, -afE(a){var s=this -switch(a.a){case 0:s.ar(new A.asa(s)) -s.HW() -if(!s.r.gan(0))s.w.cc() -break -case 3:s.ar(new A.asb()) -s.HW() -break -case 1:case 2:break}}, -a13(a){var s,r=this,q=r.r -if(q.b===q.c)return -s=q.gad(0).b -if((s.a.a&30)===0)s.dR(a) -q=r.x -if(q!=null)q.bg() -r.x=null -r.w.sp(0)}, -a_0(a){var s,r,q=this,p=q.r -if(p.b===p.c||q.w.gba()===B.Z)return -s=p.gad(0).b -p=q.y -p===$&&A.a() -r=q.w -if(p){r.sp(0) -s.dR(a)}else r.d6().c1(new A.asd(s,a),t.H) -p=q.x -if(p!=null)p.bg() -q.x=null}, -atP(){return this.a_0(B.a9u)}, -K(a){var s,r,q,p=this -p.y=A.c0(a,B.ph,t.l).w.z -s=p.r -if(!s.gan(0)){r=A.wg(a,null,t.X) -if(r==null||r.gjL())if(p.w.gba()===B.a9&&p.x==null){q=s.gad(0).a -p.x=A.ck(q.ay,new A.asc(p,q))}}return new A.Jy(p,p.a.c,null)}, -l(){var s=this,r=s.w -if(r!=null)r.l() -r=s.x -if(r!=null)r.bg() -s.x=null -s.a70()}} -A.ase.prototype={ -$0(){this.a.atP()}, -$S:0} -A.asf.prototype={ -$0(){this.a.r.he(this.b.bc())}, -$S:0} -A.asa.prototype={ -$0(){this.a.r.ti()}, -$S:0} -A.asb.prototype={ -$0(){}, -$S:0} -A.asd.prototype={ -$1(a){var s=this.a -if((s.a.a&30)===0)s.dR(this.b)}, -$S:40} -A.asc.prototype={ -$0(){if(this.b.ch)return -this.a.a_0(B.a9v)}, -$S:0} -A.Jy.prototype={ -cI(a){return this.f!==a.f}} -A.asg.prototype={} -A.Vm.prototype={ -aqB(a,b){var s=a==null?this.a:a -return new A.Vm(s,b==null?this.b:b)}} -A.a68.prototype={ -W5(a,b,c){var s=this -s.b=c==null?s.b:c -s.c=s.c.aqB(a,b) -s.a7()}, -W4(a){return this.W5(null,null,a)}, -anC(a,b){return this.W5(a,b,null)}} -A.H3.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(!s.a41(0,b))return!1 -return b instanceof A.H3&&b.r===s.r&&b.e===s.e&&b.f===s.f}, -gt(a){var s=this -return A.N(A.al.prototype.gt.call(s,0),s.r,s.e,s.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a0O.prototype={ -K(a){return this.c}} -A.aH5.prototype={ -a0v(a7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=this,a3=A.adb(a7),a4=a7.a,a5=a3.CX(a4),a6=a7.b -if(a2.b.h(0,B.ls)!=null){s=a2.f1(B.ls,a5).b -a2.hM(B.ls,B.f) -r=s}else{r=0 -s=0}if(a2.b.h(0,B.lx)!=null){q=0+a2.f1(B.lx,a5).b -p=Math.max(0,a6-q) -a2.hM(B.lx,new A.h(0,p))}else{q=0 -p=null}if(a2.b.h(0,B.pq)!=null){q+=a2.f1(B.pq,new A.al(0,a5.b,0,Math.max(0,a6-q-r))).b -a2.hM(B.pq,new A.h(0,Math.max(0,a6-q)))}if(a2.b.h(0,B.lw)!=null){o=a2.f1(B.lw,a5) -a2.hM(B.lw,new A.h(0,s)) -if(!a2.ay)r+=o.b}else o=B.Q -n=a2.f -m=Math.max(0,a6-Math.max(n.d,q)) -if(a2.b.h(0,B.lr)!=null){l=Math.max(0,m-r) -a2.f1(B.lr,new A.H3(0,s,o.b,0,a5.b,0,l)) -a2.hM(B.lr,new A.h(0,r))}if(a2.b.h(0,B.lu)!=null){a2.f1(B.lu,new A.al(0,a5.b,0,m)) -a2.hM(B.lu,B.f)}k=a2.b.h(0,B.fS)!=null&&!a2.at?a2.f1(B.fS,a5):B.Q -if(a2.b.h(0,B.lv)!=null){j=a2.f1(B.lv,new A.al(0,a5.b,0,Math.max(0,m-r))) -a2.hM(B.lv,new A.h((a4-j.a)/2,m-j.b))}else j=B.Q -i=A.bQ() -if(a2.b.h(0,B.ly)!=null){h=a2.f1(B.ly,a3) -g=new A.asg(h,j,m,s,n,a2.r,a7,k,a2.w) -f=a2.z.on(g) -e=a2.as.a2m(a2.y.on(g),f,a2.Q) -a2.hM(B.ly,e) -d=e.a -c=e.b -i.b=new A.w(d,c,d+h.a,c+h.b)}if(a2.b.h(0,B.fS)!=null){d=a2.ax -b=d!=null&&d") -m=t.F -l=t.T -k=t.i -j=A.b_l(new A.hB(new A.aw(r,new A.fm(new A.jG(B.rM)),n),new A.bp(A.c([],m),l),0),new A.aw(r,new A.fm(B.rM),n),r,0.5,k) -r=f.a.d -i=$.b3P() -o.a(r) -h=$.b3Q() -g=A.b_l(new A.aw(r,i,i.$ti.i("aw")),new A.hB(new A.aw(r,h,A.n(h).i("aw")),new A.bp(A.c([],m),l),0),r,0.5,k) -f.a.toString -r=f.e -r.toString -f.w=A.aUM(j,r,k) -r=f.r -r.toString -f.y=A.aUM(j,r,k) -f.x=A.aSf(new A.aw(d,new A.aA(1,1,s),s.i("aw")),g,e) -f.Q=A.aSf(new A.aw(q,p,p.$ti.i("aw")),g,e) -d=f.y -f.z=new A.aw(o.a(d),new A.fm(B.Q8),n) -n=f.gaix() -d.bC() -d.d_$.G(0,n) -d=f.w -d.bC() -d.d_$.G(0,n)}, -af6(a){this.ar(new A.aBP(this,a))}, -K(a){var s,r,q=this,p=A.c([],t.p),o=q.d -o===$&&A.a() -if(o.gba()!==B.Z){o=q.w -s=q.as -o===$&&A.a() -r=q.x -r===$&&A.a() -p.push(A.asn(A.aXL(s,r),o))}o=q.a -s=q.y -o=o.c -s===$&&A.a() -r=q.Q -r===$&&A.a() -p.push(A.asn(A.aXL(o,r),s)) -return A.hE(B.ey,p,B.N,B.bM)}, -aiy(){var s,r=this.w -r===$&&A.a() -r=r.gp() -s=this.y -s===$&&A.a() -s=Math.max(r,s.gp()) -this.a.f.W4(s)}} -A.aBP.prototype={ -$0(){this.a.a.toString}, -$S:0} -A.wU.prototype={ -ah(){var s=null,r=t.jk,q=t.A,p=$.af() -return new A.Er(new A.by(s,r),new A.by(s,r),new A.by(s,q),new A.mE(!1,p),new A.mE(!1,p),A.c([],t.Z4),new A.by(s,q),s,A.t(t.yb,t.M),s,!0,s,s,s)}, -ap2(a,b){return A.bkR().$2(a,b)}} -A.ask.prototype={ -$2(a,b){var s=null -return A.aRm(!0,s,A.ar(B.d.aY(255*Math.max(0.1,0.6-0.3*(1-this.a.gp())*0.3*10)),B.r.A()>>>16&255,B.r.A()>>>8&255,B.r.A()&255),!1,s,s,s)}, -$S:266} -A.Er.prototype={ -gey(){this.a.toString -return null}, -h7(a,b){var s=this -s.kw(s.x,"drawer_open") -s.kw(s.y,"end_drawer_open")}, -gUK(){var s=this.r -return s===$?this.r=new A.by(null,t.A):s}, -W1(){var s=this,r=s.z.r,q=!r.gan(0)?r.gad(0):null -if(s.Q!=q)s.ar(new A.asi(s,q))}, -VJ(){var s=this,r=s.z.e,q=!r.gan(0)?r.gad(0):null -if(s.as!=q)s.ar(new A.ash(s,q))}, -ahn(){this.a.toString}, -Ks(){var s,r -this.a6f() -s=this.c -s.toString -r=A.Up(s) -if(r!=null&&r.f.length!==0&&A.bde(this.gUK()))r.kQ(0,B.NT,B.eP)}, -goO(){this.a.toString -return!0}, -aw(){var s=this,r=null -s.b3() -s.c.toString -s.dy=new A.a68(B.a5B,$.af()) -s.a.toString -s.db=B.lT -s.cx=B.Ml -s.cy=B.lT -s.CW=A.bX(r,new A.b5(4e5),r,1,s) -s.dx=A.bX(r,B.a3,r,r,s) -s.fr=A.bX(r,r,r,r,s) -s.a.toString -$.a1.bI$.push(s)}, -aV(a){var s,r,q,p=this -p.a74(a) -p.a.toString -A:{s=!0 -r=!1 -if(r){q=!0===s -r=q}else r=!1 -if(r){$.a1.bI$.push(p) -break A}}}, -by(){var s,r=this,q=r.c.aA(t.Pu),p=q==null?null:q.f,o=r.z,n=o==null -if(!n)s=p==null||o!==p -else s=!1 -if(s)if(!n)o.d.J(0,r) -r.z=p -if(p!=null){p.d.G(0,r) -if(p.agW(r)){if(!p.r.gan(0))r.W1() -if(!p.e.gan(0))r.VJ()}}r.ahn() -r.a73()}, -dA(){$.a1.is(this) -this.iF()}, -bF(){this.a71() -this.a.toString -$.a1.bI$.push(this)}, -l(){var s=this,r=s.dy -r===$&&A.a() -r.P$=$.af() -r.L$=0 -r=s.CW -r===$&&A.a() -r.l() -r=s.dx -r===$&&A.a() -r.l() -r=s.z -if(r!=null)r.d.J(0,s) -s.x.l() -s.y.l() -r=s.fr -r===$&&A.a() -r.l() -s.a75()}, -Ew(a,b,c,d,e,f,g,h,i){var s,r=this.c -r.toString -s=A.c0(r,null,t.l).w.a15(f,g,h,i) -if(e)s=s.axW(!0) -if(d&&s.f.d!==0)s=s.J_(s.r.Am(s.w.d)) -if(b!=null)a.push(A.al_(A.CU(b,s),c))}, -a8P(a,b,c,d,e,f,g,h){return this.Ew(a,b,c,!1,d,e,f,g,h)}, -u7(a,b,c,d,e,f,g){return this.Ew(a,b,c,!1,!1,d,e,f,g)}, -Ev(a,b,c,d,e,f,g,h){return this.Ew(a,b,c,d,!1,e,f,g,h)}, -Pf(a,b){this.a.toString}, -Pe(a,b){this.a.toString}, -K(a){var s,r,q,p,o,n,m,l=this,k=null,j={},i=A.P(a),h=a.aA(t.I).w,g=A.c([],t.s9),f=l.a,e=f.r,d=f.f -f=f.db -l.goO() -l.a8P(g,new A.a0O(new A.o3(e,l.f),!1,!1,k),B.lr,!0,f!=null,!1,!1,d!=null) -if(l.fx){f=l.a -f.toString -e=l.fr -e===$&&A.a() -l.u7(g,f.ap2(a,e),B.lu,!0,!0,!0,!0)}if(l.a.f!=null){f=A.c0(a,B.bS,t.l).w -f=l.w=A.b5G(a,l.a.f.fy)+f.r.b -e=l.a.f -e.toString -l.u7(g,new A.dX(new A.al(0,1/0,0,f),new A.BE(1,f,f,f,k,k,e,k),k),B.ls,!0,!1,!1,!1)}j.a=!1 -j.b=null -if(l.ax!=null||l.at.length!==0){f=A.aa(l.at,t.l7) -e=l.ax -e=e==null?k:e.a -if(e!=null)f.push(e) -s=A.hE(B.c_,f,B.N,B.bM) -l.goO() -l.u7(g,s,B.lv,!0,!1,!1,!0)}if(l.Q!=null){r=A.aZw(a) -j.a=!1 -j.b=r.w -f=l.Q -f=f==null?k:f.a -e=l.a.db -l.goO() -l.Ev(g,f,B.fS,!1,e!=null,!1,!1,!0)}j.c=!1 -if(l.as!=null){a.aA(t.R3) -f=A.P(a) -e=l.as -if(e!=null)e.a.ge9() -q=f.R8.f -j.c=(q==null?0:q)!==0 -f=l.as -f=f==null?k:f.a -e=l.a.f -l.goO() -l.Ev(g,f,B.lw,!1,!0,!1,!1,e!=null)}f=l.a -f=f.db -if(f!=null){l.goO() -l.Ev(g,f,B.lx,!1,!1,!1,!1,!0)}f=l.CW -f===$&&A.a() -e=l.cx -e===$&&A.a() -d=l.dy -d===$&&A.a() -p=l.dx -p===$&&A.a() -l.a.toString -l.u7(g,new A.HQ(k,f,e,d,p,k),B.ly,!0,!0,!0,!0) -o=i.w -A:{f=k -if(B.U===o||B.b5===o){l.a.toString -f=new A.a3_(l.gUK(),k) -break A}if(B.as===o||B.bN===o||B.bO===o||B.bP===o)break A}l.u7(g,f,B.lt,!0,!1,!1,!0) -f=l.y -e=f.y -if(e==null?A.n(f).i("c3.T").a(e):e){l.Pe(g,h) -l.Pf(g,h)}else{l.Pf(g,h) -l.Pe(g,h)}f=t.l -e=A.c0(a,B.bS,f).w -l.goO() -d=A.c0(a,B.ip,f).w -n=e.r.Am(d.f.d) -e=A.c0(a,B.ajs,f).w -l.goO() -f=A.c0(a,B.ip,f).w -f=f.f.d!==0?0:k -m=e.w.Am(f) -f=l.a.cy -if(f==null)f=i.fx -return new A.a69(!1,new A.Ey(A.mf(!1,B.a3,!0,k,A.hU(l.CW,new A.asj(j,l,n,m,h,g),k),B.v,f,0,k,k,k,k,k,B.ec),k),k)}} -A.asi.prototype={ -$0(){this.a.Q=this.b}, -$S:0} -A.ash.prototype={ -$0(){this.a.as=this.b}, -$S:0} -A.asj.prototype={ -$2(a,b){var s,r,q,p,o,n,m,l=this,k=A.aG([B.oY,new A.a23(a,new A.bp(A.c([],t.e),t.d))],t.u,t.od),j=l.b -j.a.toString -s=j.db -s.toString -r=j.CW -r===$&&A.a() -r=r.x -r===$&&A.a() -q=j.cx -q===$&&A.a() -p=j.dy -p===$&&A.a() -j=j.cy -j.toString -o=l.a -n=o.a -m=o.c -return A.uB(k,new A.B_(new A.aH5(!1,!1,l.c,l.d,l.e,p,j,s,r,q,n,o.b,m),l.f,null))}, -$S:267} -A.a23.prototype={ -lc(a){var s=A.asl(this.e),r=s.x,q=r.y -if(!(q==null?A.n(r).i("c3.T").a(q):q)){r=s.y -q=r.y -r=q==null?A.n(r).i("c3.T").a(q):q}else r=!0 -if(r)s.a.toString -return r}, -ee(a){var s=A.asl(this.e) -if(this.lc(a))s.a.toString}} -A.Eo.prototype={} -A.a69.prototype={ -cI(a){return this.f!==a.f}} -A.a3_.prototype={ -K(a){return new A.TC(B.cs,B.a9g,this.c)}} -A.aCT.prototype={ -$1(a){return a.a.j(0,this.a)}, -$S:227} -A.aH6.prototype={ -$2(a,b){if(!a.a)a.O(b)}, -$S:44} -A.Jz.prototype={ -bF(){this.cE() -this.cv() -this.eG()}, -l(){var s=this,r=s.bl$ -if(r!=null)r.O(s.geq()) -s.bl$=null -s.aQ()}} -A.JA.prototype={ -bF(){this.cE() -this.cv() -this.eG()}, -l(){var s=this,r=s.bl$ -if(r!=null)r.O(s.geq()) -s.bl$=null -s.aQ()}} -A.JB.prototype={ -aV(a){this.bm(a) -this.nF()}, -by(){var s,r,q,p,o=this -o.du() -s=o.bD$ -r=o.gmz() -q=o.c -q.toString -q=A.mF(q) -o.f_$=q -p=o.lR(q,r) -if(r){o.h7(s,o.dU$) -o.dU$=!1}if(p)if(s!=null)s.l()}, -l(){var s,r=this -r.eZ$.aL(0,new A.aH6()) -s=r.bD$ -if(s!=null)s.l() -r.bD$=null -r.a72()}} -A.a6a.prototype={} -A.Lg.prototype={ -bF(){this.cE() -this.cv() -this.eG()}, -l(){var s=this,r=s.bl$ -if(r!=null)r.O(s.geq()) -s.bl$=null -s.aQ()}} -A.VG.prototype={ -K(a){var s=this,r=null -if(A.P(a).w===B.U)return A.aVm(s.c,s.d,r,B.HJ,B.dx,r,3,8,!1) -return new A.yF(s.c,s.d,r,r,r,r,B.aM,B.eS,A.up(),r,r,0,r,r)}, -gR(){return this.c}} -A.yF.prototype={ -ah(){var s=null -return new A.a3M(new A.by(s,t.A),new A.by(s,t.LZ),s,s)}} -A.a3M.prototype={ -gqn(){var s=this.a.e -if(s==null){s=this.id -s===$&&A.a() -s=s.a -s=s==null?null:s.af(this.guW())}return s===!0}, -gpm(){this.a.toString -var s=this.id -s===$&&A.a() -s=s.d -if(s==null){s=this.k1 -s===$&&A.a() -s=!s}return s}, -gzx(){return new A.bS(new A.aEj(this),t.Dm)}, -guW(){var s=A.aU(t.EK) -if(this.fx)s.G(0,B.JU) -if(this.fy)s.G(0,B.I) -return s}, -gamx(){var s,r,q,p,o=this,n=o.go -n===$&&A.a() -s=n.k3 -r=A.bQ() -q=A.bQ() -p=A.bQ() -switch(n.a.a){case 1:r.b=A.ar(153,s.A()>>>16&255,s.A()>>>8&255,s.A()&255) -q.b=A.ar(B.d.aY(127.5),s.A()>>>16&255,s.A()>>>8&255,s.A()&255) -n=o.k1 -n===$&&A.a() -if(n){n=o.c -n.toString -n=A.P(n).cx -n=A.ar(255,n.A()>>>16&255,n.A()>>>8&255,n.A()&255)}else n=A.ar(B.d.aY(25.5),s.A()>>>16&255,s.A()>>>8&255,s.A()&255) -p.b=n -break -case 0:r.b=A.ar(191,s.A()>>>16&255,s.A()>>>8&255,s.A()&255) -q.b=A.ar(166,s.A()>>>16&255,s.A()>>>8&255,s.A()&255) -n=o.k1 -n===$&&A.a() -if(n){n=o.c -n.toString -n=A.P(n).cx -n=A.ar(255,n.A()>>>16&255,n.A()>>>8&255,n.A()&255)}else n=A.ar(B.d.aY(76.5),s.A()>>>16&255,s.A()>>>8&255,s.A()&255) -p.b=n -break}return new A.bS(new A.aEg(o,r,q,p),t.mN)}, -gamJ(){var s=this.go -s===$&&A.a() -return new A.bS(new A.aEi(this,s.a,s.k3),t.mN)}, -gamI(){var s=this.go -s===$&&A.a() -return new A.bS(new A.aEh(this,s.a,s.k3),t.mN)}, -gamu(){return new A.bS(new A.aEf(this),t.N5)}, -aw(){var s,r=this -r.Oh() -s=r.fr=A.bX(null,B.a3,null,null,r) -s.bC() -s.d_$.G(0,new A.aEp(r))}, -by(){var s,r=this,q=r.c -q.toString -s=A.P(q) -r.go=s.ax -q=r.c -q.aA(t.NF) -q=A.P(q) -r.id=q.x -switch(s.w.a){case 0:r.k1=!0 -break -case 2:case 3:case 1:case 4:case 5:r.k1=!1 -break}r.a4Z()}, -x5(){var s,r=this,q=r.CW -q===$&&A.a() -q.sdQ(r.gamx().a.$1(r.guW())) -q.slt(r.gamJ().a.$1(r.guW())) -q.sa1H(r.gamI().a.$1(r.guW())) -q.sce(r.c.aA(t.I).w) -q.sM5(r.gamu().a.$1(r.guW())) -s=r.a.r -if(s==null){s=r.id -s===$&&A.a() -s=s.e}if(s==null){s=r.k1 -s===$&&A.a() -s=s?null:B.eg}q.swM(s) -s=r.id -s===$&&A.a() -s=s.x -if(s==null){s=r.k1 -s===$&&A.a() -s=s?0:2}q.sJ8(s) -s=r.id.y -q.sL5(s==null?0:s) -s=r.id.z -q.sLf(s==null?48:s) -s=r.c -s.toString -q.scH(A.c0(s,B.bS,t.l).w.r) -q.sDE(r.a.db) -q.sa_6(!r.gpm())}, -BC(a){this.Og(a) -this.ar(new A.aEo(this))}, -BB(a,b){this.Of(a,b) -this.ar(new A.aEn(this))}, -Kj(a){var s,r=this -r.a5_(a) -if(r.a_C(a.gbV(),a.gdd(),!0)){r.ar(new A.aEl(r)) -s=r.fr -s===$&&A.a() -s.cc()}else if(r.fy){r.ar(new A.aEm(r)) -s=r.fr -s===$&&A.a() -s.d6()}}, -Kk(a){var s,r=this -r.a50(a) -r.ar(new A.aEk(r)) -s=r.fr -s===$&&A.a() -s.d6()}, -l(){var s=this.fr -s===$&&A.a() -s.l() -this.Oe()}} -A.aEj.prototype={ -$1(a){var s=this.a,r=s.a.Q -s=s.id -s===$&&A.a() -s=s.c -s=s==null?null:s.af(a) -return s===!0}, -$S:270} -A.aEg.prototype={ -$1(a){var s,r,q,p=this,o=null -if(a.q(0,B.JU)){s=p.a.id -s===$&&A.a() -s=s.f -s=s==null?o:s.af(a) -return s==null?p.b.bc():s}s=p.a -if(s.gzx().a.$1(a)){s=s.id -s===$&&A.a() -s=s.f -s=s==null?o:s.af(a) -return s==null?p.c.bc():s}r=s.id -r===$&&A.a() -r=r.f -r=r==null?o:r.af(a) -if(r==null)r=p.d.bc() -q=s.id.f -q=q==null?o:q.af(a) -if(q==null)q=p.c.bc() -s=s.fr -s===$&&A.a() -s=s.x -s===$&&A.a() -s=A.k(r,q,s) -s.toString -return s}, -$S:7} -A.aEi.prototype={ -$1(a){var s=this,r=s.a -if(r.gqn()&&r.gzx().a.$1(a)){r=r.id -r===$&&A.a() -r=r.r -r=r==null?null:r.af(a) -if(r==null)switch(s.b.a){case 1:r=s.c -r=A.ar(8,r.A()>>>16&255,r.A()>>>8&255,r.A()&255) -break -case 0:r=s.c -r=A.ar(13,r.A()>>>16&255,r.A()>>>8&255,r.A()&255) -break -default:r=null}return r}return B.D}, -$S:7} -A.aEh.prototype={ -$1(a){var s=this,r=s.a -if(r.gqn()&&r.gzx().a.$1(a)){r=r.id -r===$&&A.a() -r=r.w -r=r==null?null:r.af(a) -if(r==null)switch(s.b.a){case 1:r=s.c -r=A.ar(B.d.aY(25.5),r.A()>>>16&255,r.A()>>>8&255,r.A()&255) -break -case 0:r=s.c -r=A.ar(64,r.A()>>>16&255,r.A()>>>8&255,r.A()&255) -break -default:r=null}return r}return B.D}, -$S:7} -A.aEf.prototype={ -$1(a){var s,r -if(a.q(0,B.I)&&this.a.gzx().a.$1(a)){s=this.a -r=s.a.w -if(r==null){s=s.id -s===$&&A.a() -s=s.b -s=s==null?null:s.af(a)}else s=r -return s==null?12:s}s=this.a -r=s.a.w -if(r==null){r=s.id -r===$&&A.a() -r=r.b -r=r==null?null:r.af(a)}if(r==null){s=s.k1 -s===$&&A.a() -r=8/(s?2:1) -s=r}else s=r -return s}, -$S:224} -A.aEp.prototype={ -$0(){this.a.x5()}, -$S:0} -A.aEo.prototype={ -$0(){this.a.fx=!0}, -$S:0} -A.aEn.prototype={ -$0(){this.a.fx=!1}, -$S:0} -A.aEl.prototype={ -$0(){this.a.fy=!0}, -$S:0} -A.aEm.prototype={ -$0(){this.a.fy=!1}, -$S:0} -A.aEk.prototype={ -$0(){this.a.fy=!1}, -$S:0} -A.wX.prototype={ -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.wX&&b.a==s.a&&J.b(b.b,s.b)&&b.c==s.c&&b.d==s.d&&J.b(b.e,s.e)&&J.b(b.f,s.f)&&b.r==s.r&&b.w==s.w&&b.x==s.x&&b.y==s.y&&b.z==s.z}} -A.a6f.prototype={} -A.EB.prototype={ -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.EB)if(b.a==r.a)if(b.b==r.b)if(b.c==r.c)if(b.d==r.d)if(b.e==r.e)if(J.b(b.f,r.f))if(b.r==r.r)if(b.w==r.w)if(b.x==r.x)if(b.y==r.y)s=J.b(b.z,r.z) -return s}} -A.a6g.prototype={} -A.EC.prototype={ -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.EC)if(J.b(b.a,r.a))if(b.b==r.b)if(J.b(b.c,r.c))if(J.b(b.d,r.d))if(J.b(b.e,r.e))if(b.f==r.f)if(J.b(b.r,r.r))if(J.b(b.w,r.w))if(J.b(b.x,r.x))if(J.b(b.y,r.y))if(J.b(b.z,r.z))s=J.b(b.as,r.as) -return s}} -A.a6h.prototype={} -A.ED.prototype={ -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s -if(b==null)return!1 -if(this===b)return!0 -if(J.S(b)!==A.l(this))return!1 -if(b instanceof A.ED)s=J.b(b.a,this.a) -else s=!1 -return s}} -A.a6i.prototype={} -A.Fp.prototype={ -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.r,s.f,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.CW,s.cx,s.cy,A.N(s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,s.k1,s.k2,s.k3,s.k4,s.ok,s.p1,s.p2,s.p3,B.a,B.a,B.a,B.a))}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.Fp)if(b.a==r.a)if(J.b(b.b,r.b))if(J.b(b.c,r.c))if(J.b(b.d,r.d))if(J.b(b.e,r.e))if(J.b(b.r,r.r))if(J.b(b.f,r.f))if(J.b(b.w,r.w))if(J.b(b.x,r.x))if(J.b(b.y,r.y))if(J.b(b.z,r.z))if(J.b(b.Q,r.Q))if(J.b(b.as,r.as))if(J.b(b.at,r.at))if(J.b(b.ax,r.ax))if(J.b(b.ay,r.ay))if(J.b(b.ch,r.ch))if(J.b(b.id,r.id))if(b.k1==r.k1)if(J.b(b.ok,r.ok))if(b.p1==r.p1)s=b.p2==r.p2 -return s}} -A.a8J.prototype={} -A.l3.prototype={ -N(){return"SnackBarClosedReason."+this.b}} -A.mQ.prototype={ -ah(){return new A.K6(new A.hc())}} -A.K6.prototype={ -aw(){var s,r=this -r.b3() -s=r.a.CW -s.bC() -s=s.cP$ -s.b=!0 -s.a.push(r.gGS()) -r.Ui()}, -aV(a){var s,r,q=this -q.bm(a) -s=a.CW -if(q.a.CW!=s){r=q.gGS() -s.dj(r) -s=q.a.CW -s.bC() -s=s.cP$ -s.b=!0 -s.a.push(r) -q.Qm() -q.Ui()}}, -Ui(){var s=this,r=s.a.CW -r.toString -s.e=A.cQ(B.aL,r,null) -r=s.a.CW -r.toString -s.f=A.cQ(B.Qf,r,null) -r=s.a.CW -r.toString -s.r=A.cQ(B.Q5,r,null) -r=s.a.CW -r.toString -s.w=A.cQ(B.Q6,r,B.JF) -r=s.a.CW -r.toString -s.x=A.cQ(B.NS,r,B.JF)}, -Qm(){var s=this,r=s.e -if(r!=null)r.l() -r=s.f -if(r!=null)r.l() -r=s.r -if(r!=null)r.l() -r=s.w -if(r!=null)r.l() -r=s.x -if(r!=null)r.l() -s.x=s.w=s.r=s.f=s.e=null}, -l(){var s=this -s.a.CW.dj(s.gGS()) -s.Qm() -s.aQ()}, -ai5(a){if(a===B.a9){this.a.toString -this.d=!0}}, -K(a7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0=null,a1=t.l,a2=A.c0(a7,B.ph,a1).w,a3=A.P(a7),a4=A.aZw(a7),a5=new A.aJH(a7,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0),a6=a4.d -if(a6==null)a6=a5.gkX() -s=a.a -s.toString -r=a5.gvi() -q=a4.w -a5.gtQ() -p=r===B.a9r -o=p?16:24 -n=s.r -n=new A.dt(o,0,o,0) -m=A.xH(a0,a0,1,a0,A.ef(a0,a0,a0,a0,a0,a0,a0,a0,a0,A.P(a7).ok.as,""),B.aN,B.i,a0,B.h0,B.al) -m.pM() -s=m.b -l=s.c -s.a.c.gbY() -a.a.toString -m.l() -a.a.toString -k=a4.x -s=k==null -if(s)k=a5.gwe() -j=A.c0(a7,B.pg,a1).w.a.a-(k.a+k.c) -a.a.toString -i=a4.Q -if(i==null)i=a5.gv5() -h=(l+0+0)/j>i -a1=t.p -l=A.c([],a1) -g=a.a -g=A.c([A.cJ(new A.bR(B.OW,A.fn(g.c,a0,a0,B.bc,!0,a6,a0,a0,B.al),a0),1,a0)],a1) -if(!h)B.b.a_(g,l) -if(h)g.push(A.a8(a0,a0,j*0.4)) -a1=A.c([A.bw(g,B.o,B.m,B.n,a0)],a1) -if(h)a1.push(new A.bR(B.OU,A.bw(l,B.o,B.kh,B.n,a0),a0)) -f=new A.bR(n,new A.a07(a1,a0),a0) -if(!p)f=A.El(!0,f,!1) -a.a.toString -e=a4.e -if(e==null)e=a5.ge9() -d=a4.a -if(d==null)d=a5.gcb() -a1=a.a -a1.toString -c=a4.f -if(c==null)c=p?a5.gdt():a0 -f=A.mf(!1,B.a3,!0,a0,new A.tD(a3,f,a0),a1.db,d,e,a0,a0,c,a0,a0,B.ec) -if(p)f=A.El(!1,q!=null?new A.bR(new A.a2(0,k.b,0,k.d),A.a8(f,a0,q),a0):new A.bR(k,f,a0),!1) -l=a1.y -s=!s?B.b3:B.aG -f=A.cz(a0,new A.Ba(f,new A.aJD(a7),B.qU,a0,s,a.y),!0,a0,a0,!1,a0,a0,a0,a0,a0,a0,!0,a0,a0,a0,a0,a0,a0,a0,a0,a0,new A.aJE(a7),a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,B.Y,a0) -if(a2.z)b=f -else{a2=t.j3 -if(p){s=a.r -s.toString -l=a.x -l.toString -b=new A.e9(s,!1,new A.dL(l,new A.aJF(),f,a0,a2),a0)}else{s=a.e -s.toString -b=new A.dL(s,new A.aJG(),f,a0,a2)}}return new A.qF("",A.Nl(b,a.a.db,a0),!0,a0)}} -A.aJE.prototype={ -$0(){this.a.aA(t.Pu).f.a13(B.a9s)}, -$S:0} -A.aJD.prototype={ -$1(a){this.a.aA(t.Pu).f.a13(B.a9t)}, -$S:271} -A.aJF.prototype={ -$3(a,b,c){return new A.ex(B.d1,null,b,c,null)}, -$S:226} -A.aJG.prototype={ -$3(a,b,c){return new A.ex(B.aQ,null,b,c,null)}, -$S:226} -A.aJH.prototype={ -glO(){var s,r=this,q=r.CW -if(q===$){q=r.ch -if(q===$){s=A.P(r.ay) -r.ch!==$&&A.aK() -r.ch=s -q=s}r.CW!==$&&A.aK() -q=r.CW=q.ax}return q}, -gcb(){var s=this.glO(),r=s.xr -return r==null?s.k3:r}, -gzP(){return A.aaq(new A.aJI(this))}, -gAM(){var s=this.glO(),r=s.y2 -return r==null?s.c:r}, -gkX(){var s,r,q=A.P(this.ay).ok.z -q.toString -s=this.glO() -r=s.y1 -return q.c3(r==null?s.k2:r)}, -ge9(){return 6}, -gdt(){return B.a5y}, -gvi(){return B.a9q}, -gwe(){return B.OZ}, -gtQ(){return!1}, -gAg(){var s=this.glO(),r=s.y1 -return r==null?s.k2:r}, -gv5(){return 0.25}} -A.aJI.prototype={ -$1(a){var s,r,q=this -if(a.q(0,B.K)){s=q.a.glO() -r=s.y2 -return r==null?s.c:r}if(a.q(0,B.a2)){s=q.a.glO() -r=s.y2 -return r==null?s.c:r}if(a.q(0,B.I)){s=q.a.glO() -r=s.y2 -return r==null?s.c:r}if(a.q(0,B.J)){s=q.a.glO() -r=s.y2 -return r==null?s.c:r}s=q.a.glO() -r=s.y2 -return r==null?s.c:r}, -$S:7} -A.Yg.prototype={ -N(){return"SnackBarBehavior."+this.b}} -A.xm.prototype={ -gt(a){var s=this -return A.N(s.gcb(),s.gzP(),s.gAM(),s.gkX(),s.ge9(),s.gdt(),s.gvi(),s.w,s.gwe(),s.gtQ(),s.gAg(),s.gv5(),s.as,s.at,s.ax,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.xm)if(J.b(b.gcb(),r.gcb()))if(J.b(b.gzP(),r.gzP()))if(J.b(b.gAM(),r.gAM()))if(J.b(b.gkX(),r.gkX()))if(b.ge9()==r.ge9())if(J.b(b.gdt(),r.gdt()))if(b.gvi()==r.gvi())if(b.w==r.w)if(J.b(b.gwe(),r.gwe()))if(b.gtQ()==r.gtQ())if(J.b(b.gAg(),r.gAg()))if(b.gv5()==r.gv5())if(J.b(b.as,r.as))s=J.b(b.at,r.at) -return s}, -gcb(){return this.a}, -gzP(){return this.b}, -gAM(){return this.c}, -gkX(){return this.d}, -ge9(){return this.e}, -gdt(){return this.f}, -gvi(){return this.r}, -gwe(){return this.x}, -gtQ(){return null}, -gAg(){return this.z}, -gv5(){return this.Q}} -A.a8P.prototype={} -A.aK3.prototype={ -N(){return"_SwitchType."+this.b}} -A.Yy.prototype={ -ad2(a){var s,r=A.P(a),q=A.aZC(a),p=A.aSM(a),o=new A.ue(A.P(a).ax),n=q.y -if(n==null)n=p.gcH() -switch(r.f.a){case 0:s=new A.L(o.gOB()+n.gfo(),o.ga8f()+(n.gcR()+n.gcX())) -break -case 1:s=new A.L(o.gOB()+n.gfo(),o.ga8g()+(n.gcR()+n.gcX())) -break -default:s=null}return s}, -K(a){var s,r,q=this,p=null -switch(0){case 0:s=q.e -break}r=q.ad2(a) -return new A.Ir(q.c,q.d,s,q.r,p,p,p,p,p,p,p,p,p,p,p,B.W,p,p,p,p,p,p,p,!1,r,!1,B.ak7,p)}} -A.Ir.prototype={ -ah(){var s=null -return new A.Is(new A.Kl(A.xH(s,s,s,s,s,B.aN,s,s,B.h0,B.al),$.af()),$,$,$,$,$,$,$,$,B.bi,$,s,!1,!1,s,s)}} -A.Is.prototype={ -aV(a){var s,r=this -r.bm(a) -if(a.c!==r.a.c){s=r.ma$ -s===$&&A.a() -if(s.gp()===0||r.ma$.gp()===1)switch(r.a.k2.a){case 1:s=r.c -s.toString -switch(A.P(s).w.a){case 0:case 1:case 3:case 5:r.a1P() -break -case 2:case 4:s=r.ma$ -s.c=s.b=B.a7 -break}break -case 0:r.a1P() -break}r.Ii()}}, -l(){this.d.l() -this.a7Q()}, -a1P(){var s=this.c -s.toString -A.P(s) -s=this.ma$ -s===$&&A.a() -s.b=B.qJ -s.c=new A.jG(B.qJ)}, -gv4(){return new A.bS(new A.aEs(this),t.b)}, -gWh(){return new A.bS(new A.aEt(this),t.b)}, -gVf(){var s,r,q,p=this -switch(p.a.k2.a){case 1:s=p.c -s.toString -switch(A.P(s).w.a){case 0:case 1:case 3:case 5:s=p.c -s.toString -A.P(s) -s=p.c -s.toString -r=new A.ue(A.P(s).ax) -q=r.gtv()/2 -return r.gtx()-q-q -case 2:case 4:s=p.c -s.toString -A.P(s) -return 20}break -case 0:s=p.c -s.toString -A.P(s) -s=p.c -s.toString -r=new A.ue(A.P(s).ax) -q=r.gtv()/2 -return r.gtx()-q-q}}, -amd(a){var s -this.a.toString -s=this.pr$ -s===$&&A.a() -s.cc()}, -amf(a){var s,r,q,p,o=this -o.a.toString -s=o.ma$ -s===$&&A.a() -s.b=B.a7 -s=s.c=null -r=a.e -r.toString -q=r/o.gVf() -r=o.rO$ -r===$&&A.a() -p=r.x -p===$&&A.a() -switch(o.c.aA(t.I).w.a){case 0:s=-q -break -case 1:s=q -break}r.sp(p+s)}, -amb(a){var s,r,q=this,p=q.ma$ -p===$&&A.a() -p=p.gp() -s=q.a -r=s.c -if(p>=0.5!==r){s.d.$1(!r) -q.ar(new A.aEr(q))}else q.Ii() -p=q.pr$ -p===$&&A.a() -p.d6()}, -adv(a){var s=this.a.d -a.toString -s.$1(a)}, -K(c8){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5=this,c6=null,c7={} -if(c5.e){c5.e=!1 -c5.Ii()}s=A.P(c8) -r=c7.a=A.aZC(c8) -q=s.ax -p=q.b -c7.b=null -o=c6 -n=c6 -switch(c5.a.k2.a){case 0:o=new A.ue(A.P(c8).ax) -m=A.aSM(c8) -c7.b=m -l=m -n=r -break -case 1:k=s.a29(t.wL) -l=c7.a=(k==null?B.Mn:k).aof(s,r) -switch(s.w.a){case 0:case 1:case 3:case 5:o=new A.ue(A.P(c8).ax) -m=A.aSM(c8) -c7.b=m -n=m -break -case 2:case 4:c5.f=!0 -c5.a.toString -o=new A.aJS(A.P(c8).ax) -m=new A.a8Y(c8,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6) -c7.b=m -n=c5.pr$ -n===$&&A.a() -n.e=B.a3 -n=m -break}j=l -l=n -n=j -break -default:l=n -n=r}i=c5.rO$ -i===$&&A.a() -i.e=A.cI(0,o.ga1E()) -h=c5.gox() -h.G(0,B.ai) -g=c5.gox() -g.J(0,B.ai) -c5.a.toString -f=c5.gv4().a.$1(h) -if(f==null){i=n.a -f=i==null?c6:i.af(h)}i=f==null -if(i){e=l.gmA().af(h) -e.toString -d=e}else d=f -c5.a.toString -c=c5.gv4().a.$1(g) -if(c==null){e=n.a -c=e==null?c6:e.af(g)}e=c==null -if(e){b=l.gmA().af(g) -b.toString -a=b}else a=c -c5.a.toString -b=c5.gWh().a.$1(h) -if(b==null){b=n.b -b=b==null?c6:b.af(h)}if(b==null){b=c5.gv4().a.$1(h) -b=b==null?c6:b.e_(128) -a0=b}else a0=b -if(a0==null){b=l.glt().a.$1(h) -b.toString -a0=b}c5.a.toString -b=n.c -a1=b==null?c6:b.af(h) -a2=a1 -if(a2==null)a2=l.gq6().af(h) -c5.a.toString -a1=n.d -a3=a1==null?c6:a1.af(h) -a4=a3 -if(a4==null){a3=l.gtw() -a4=a3==null?c6:a3.af(h)}c5.a.toString -a3=c5.gWh().a.$1(g) -if(a3==null){a3=n.b -a3=a3==null?c6:a3.af(g) -a5=a3}else a5=a3 -if(a5==null){a3=l.glt().a.$1(g) -a3.toString -a5=a3}c5.a.toString -b=b==null?c6:b.af(g) -a6=b -if(a6==null)a6=l.gq6().af(g) -c5.a.toString -b=a1==null?c6:a1.af(g) -a7=b -if(a7==null){b=l.gtw() -a7=b==null?c6:b.af(g)}c5.a.toString -a8=o.gdL().af(h) -a9=o.gdL().af(g) -b0=c5.gox() -b0.G(0,B.J) -c5.a.toString -b=n.r -a1=b==null?c6:b.af(b0) -if(a1==null)b1=c6 -else b1=a1 -if(b1==null){a1=l.geg().a.$1(b0) -a1.toString -b1=a1}b2=c5.gox() -b2.G(0,B.I) -c5.a.toString -a1=b==null?c6:b.af(b2) -b3=a1 -if(b3==null){a1=l.geg().a.$1(b2) -a1.toString -b3=a1}h.G(0,B.a2) -c5.a.toString -a1=c5.gv4().a.$1(h) -if(a1==null){a1=n.a -a1=a1==null?c6:a1.af(h) -b4=a1}else b4=a1 -if(b4==null){a1=l.gmA().af(h) -a1.toString -b4=a1}c5.a.toString -a1=b==null?c6:b.af(h) -if(a1==null){i=i?c6:f.e_(31) -b5=i}else b5=a1 -if(b5==null){i=l.geg().a.$1(h) -i.toString -b5=i}g.G(0,B.a2) -c5.a.toString -i=c5.gv4().a.$1(g) -if(i==null){n=n.a -n=n==null?c6:n.af(g) -b6=n}else b6=i -if(b6==null){n=l.gmA().af(g) -n.toString -b6=n}c5.a.toString -n=b==null?c6:b.af(g) -if(n==null){n=e?c6:c.e_(31) -b7=n}else b7=n -if(b7==null){n=l.geg().a.$1(g) -n.toString -b7=n}b8=o.gzR() -c5.a.toString -b9=o.gBJ() -c5.a.toString -c0=c7.a.w -if(c0==null)c0=c7.b.gmU() -n=c5.a -l=n.c -i=n.cx -e=n.fx -b=n.fy -n=n.id -a1=c5.d -a3=c5.ma$ -a3===$&&A.a() -a1.sbV(a3) -a3=c5.K2$ -a3===$&&A.a() -a1.saxt(a3) -a3=c5.K5$ -a3===$&&A.a() -a1.saxv(a3) -a3=c5.K3$ -a3===$&&A.a() -a1.saxw(a3) -a1.saub(b7) -a1.saxu(b5) -a1.sau0(b3) -a1.sasx(b1) -a1.smU(c0) -a1.sarC(c5.Bf$) -a1.spI(c5.gox().q(0,B.J)) -a1.sauD(c5.gox().q(0,B.I)) -a1.sao7(d) -a1.sau7(a) -a1.saoa(b4) -a1.saua(b6) -a1.saob(c5.a.x) -a1.savV(c5.a.y) -a1.sauc(c5.a.z) -a1.sawc(c5.a.Q) -a1.saoc(a0) -a1.saod(a2) -a1.saoe(a4) -a1.saud(a5) -a1.saue(a6) -a1.sauf(a7) -a1.srs(A.aTh(c8)) -c5.a.toString -a1.sauH(!0) -a1.sayF(c5.gVf()) -a1.sce(c8.aA(t.I).w) -a1.sa8e(q.k2) -a1.sBJ(b9) -a1.szR(b8) -a1.sCA(o.gCA()) -a1.sCU(o.gCU()) -a1.stv(o.gtv()) -a1.stx(o.gtx()) -a1.sao9(a8) -a1.sau9(a9) -a1.sao8(c6) -a1.sau8(c6) -a1.sjG(A.BZ(c8)) -a1.sCV(o.gCV()) -a1.sD3(o.gD3()) -a1.sax4(c5.rO$) -a1.sauA(c5.f) -q=A.hY(c6,c6,c6,a1,n) -c1=c5.K7$ -if(c1===$){c2=A.aG([B.oX,new A.dg(c5.gVd(),new A.bp(A.c([],t.e),t.d),t.wY)],t.u,t.od) -c5.K7$!==$&&A.aK() -c5.K7$=c2 -c1=c2}c5.a.toString -n=new A.aEu(c7,c5).$1(c5.gox()) -if(n==null)n=B.ci -c5.a.toString -a1=c5.gamG() -a1=a1 -a3=c5.gVd() -a3=a3 -c3=c5.gS0() -c3=c3 -c4=c5.gS0() -c4=c4 -return A.cz(c6,A.eP(c6,A.wo(A.aW2(c1,!1,A.eP(c6,A.cz(c6,q,!1,c6,!0,!1,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,B.Y,c6),B.W,!1,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,a3,c4,a1,c3,c6,c6,c6),!0,e,n,b,c5.gae8(),c5.gaei()),1),i,!0,c6,c6,c6,c6,c5.gama(),c5.gamc(),c5.game(),c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6),!1,c6,c6,!1,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,c6,l,c6,c6,B.Y,c6)}} -A.aEs.prototype={ -$1(a){if(a.q(0,B.K))return this.a.a.r -if(a.q(0,B.ai))return this.a.a.e -return this.a.a.r}, -$S:62} -A.aEt.prototype={ -$1(a){if(a.q(0,B.ai))return this.a.a.f -return this.a.a.w}, -$S:62} -A.aEr.prototype={ -$0(){this.a.e=!0}, -$S:0} -A.aEu.prototype={ -$1(a){var s=A.dM(this.b.a.cy,a,t.WV) -if(s==null)s=null -if(s==null){s=this.a.b.geQ().a.$1(a) -s.toString}return s}, -$S:68} -A.Kl.prototype={ -sax4(a){var s,r=this -if(a===r.dx)return -r.dx=a -s=r.dy -if(s!=null)s.l() -s=r.dx -s.toString -r.dy=A.cQ(B.hg,s,B.eN) -r.a7()}, -sao8(a){return}, -sau8(a){return}, -sjG(a){if(a.j(0,this.fy))return -this.fy=a -this.a7()}, -sao9(a){if(a.j(0,this.go))return -this.go=a -this.a7()}, -sau9(a){if(a.j(0,this.id))return -this.id=a -this.a7()}, -saoa(a){if(a.j(0,this.k1))return -this.k1=a -this.a7()}, -saua(a){if(a.j(0,this.k2))return -this.k2=a -this.a7()}, -szR(a){if(a===this.k3)return -this.k3=a -this.a7()}, -sBJ(a){if(a===this.k4)return -this.k4=a -this.a7()}, -sCA(a){if(a===this.ok)return -this.ok=a -this.a7()}, -sCU(a){if(a==this.p1)return -this.p1=a -this.a7()}, -sD3(a){if(a.j(0,this.p2))return -this.p2=a -this.a7()}, -stv(a){if(a===this.p3)return -this.p3=a -this.a7()}, -stx(a){if(a===this.p4)return -this.p4=a -this.a7()}, -saob(a){return}, -savV(a){return}, -sauc(a){return}, -sawc(a){return}, -saoc(a){if(a.j(0,this.to))return -this.to=a -this.a7()}, -saod(a){if(J.b(a,this.x1))return -this.x1=a -this.a7()}, -saue(a){if(J.b(a,this.x2))return -this.x2=a -this.a7()}, -saoe(a){if(a==this.xr)return -this.xr=a -this.a7()}, -sauf(a){if(a==this.y1)return -this.y1=a -this.a7()}, -saud(a){if(a.j(0,this.y2))return -this.y2=a -this.a7()}, -srs(a){if(a.j(0,this.aH))return -this.aH=a -this.a7()}, -sce(a){if(this.aB===a)return -this.aB=a -this.a7()}, -sa8e(a){if(a.j(0,this.n))return -this.n=a -this.a7()}, -sauH(a){if(a===this.U)return -this.U=a -this.a7()}, -sayF(a){if(a===this.a0)return -this.a0=a -this.a7()}, -sauA(a){if(a===this.a3)return -this.a3=a -this.a7()}, -sCV(a){var s=this.a5 -if(a==null?s==null:a===s)return -this.a5=a -this.a7()}, -adH(){if(!this.b8)this.a7()}, -b1(b6,b7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4=this,b5=b4.a.gp() -switch(b4.aB.a){case 0:s=1-b5 -break -case 1:s=b5 -break -default:s=null}r=b4.b.a.gba()===B.c7&&!b4.bL -if(r)b4.bL=!0 -else b4.bL=!1 -if(!r){r=b4.a3 -r.toString -b4.bv=r?b4.b.gp()*7:0 -r=b4.b -if(r.gba()===B.a9){q=b4.k4 -q.toString -p=b4.ok -p.toString -b4.bz=A.Y(q,p,r.gp()) -r=b4.k3 -r.toString -p=b4.ok -p.toString -b4.bE=A.Y(r,p,b4.b.gp())}if(b5===0){r=b4.k4 -r.toString -q=b4.ok -q.toString -b4.bz=A.Y(r,q,b4.b.gp()) -q=b4.k3 -q.toString -b4.bE=q}if(b5===1){r=b4.k3 -r.toString -q=b4.ok -q.toString -b4.bE=A.Y(r,q,b4.b.gp()) -q=b4.k4 -q.toString -b4.bz=q}}r=b4.a3 -r.toString -q=b4.bz -if(r){q.toString -p=q*2 -o=b4.bv -o===$&&A.a() -n=new A.L(p+o,p)}else{if(q==null){p=b4.k4 -p.toString}else p=q -p*=2 -n=new A.L(p,p)}p=b4.bE -if(r){p.toString -p*=2 -o=b4.bv -o===$&&A.a() -m=new A.L(p+o,p)}else{if(p==null){p=b4.k3 -p.toString}p*=2 -m=new A.L(p,p)}p=new A.aK2(b4,n,m) -if(r)if(b4.b.gba()===B.a9){q.toString -r=q*2 -q=b4.bv -q===$&&A.a() -l=new A.L(r+q,r)}else{r=b4.a -r=r.gba()===B.Z||r.a.gba()===B.bC -q=b4.a -l=r?A.xi(n,m,q.gp()):A.xi(n,m,q.gp())}else if(b4.b.gba()===B.a9){r=b4.ok -r.toString -r*=2 -l=new A.L(r,r)}else{r=b4.a -if(r.gba()===B.Z||r.a.gba()===B.bC){r=p.$1(!0) -l=r.b.aj(r.a.gp())}else{r=p.$1(!1) -l=r.b.aj(r.a.gp())}}r=b4.p1 -k=r==null?0:1-Math.abs(b5-r)*2 -r=l.a-k -q=l.b-k -j=b4.dy.gp() -p=b4.y2 -p.toString -o=b4.to -o.toString -o=A.k(p,o,j) -o.toString -p=b4.x2 -i=p==null||b4.x1==null?null:A.k(p,b4.x1,j) -h=A.Y(b4.y1,b4.xr,j) -if(b4.b.gba()!==B.Z){p=b4.k2 -p.toString -g=b4.k1 -g.toString -g=A.k(p,g,j) -g.toString -f=g}else{p=b4.dx.Q -p===$&&A.a() -if(p===B.bC){p=b4.k2 -p.toString -g=b4.e -g.toString -g=A.k(p,g,j) -g.toString -f=g}else{g=b4.f -if(p===B.c7){g.toString -p=b4.k1 -p.toString -p=A.k(g,p,j) -p.toString -f=p}else{g.toString -p=b4.e -p.toString -p=A.k(g,p,j) -p.toString -f=p}}}p=b4.n -p.toString -e=A.aQp(f,p) -p=b5<0.5 -d=p?b4.fx:b4.fr -c=p?b4.rx:b4.R8 -b=p?b4.ry:b4.RG -$.ab() -a=A.bt() -a.r=o.gp() -p=b4.p4 -p.toString -o=b4.p3 -o.toString -a0=(b7.a-p)/2 -g=b7.b -a1=(g-o)/2 -a2=o/2 -a3=q/2 -a4=b4.a0 -a4.toString -a5=b4.bv -a5===$&&A.a() -a6=a0+a2+a5/2-r/2+s*(a4-a5) -a7=A.kT(new A.w(a0,a1,a0+p,a1+o),new A.aR(a2,a2)) -b6.eL(a7,a) -if(i!=null){s=a0+1 -p=a1+1 -o=b4.p4 -o.toString -a4=b4.p3 -a4.toString -a8=A.kT(new A.w(s,p,s+(o-2),p+(a4-2)),new A.aR(a2,a2)) -a9=A.bt() -a9.b=B.bK -a9.c=h==null?2:h -a9.r=i.gp() -b6.eL(a8,a9)}s=b4.a3 -s.toString -if(s){s=b4.as -s.toString -if(s){b0=a7.d5(1.75) -b1=A.bt() -b1.b=B.bK -b1.r=b4.y.gp() -b1.c=3.5 -b6.eL(b0,b1)}b6.a.clipRRect(A.lu(a7),$.us(),!0)}if(b4.b.gba()!==B.Z||b4.c.gba()!==B.Z||b4.d.gba()!==B.Z){b2=A.bt() -s=b4.r -s.toString -p=b4.w -p.toString -p=A.k(s,p,b4.a.gp()) -s=b4.x -s.toString -s=A.k(p,s,b4.d.gp()) -p=b4.y -p.toString -b2.r=A.k(s,p,b4.c.gp()).gp() -p=b4.z -p.toString -s=b4.as -s.toString -if(!s){s=b4.at -s.toString}else s=!0 -if(s)b3=p -else b3=new A.aA(0,p,t.Y).aj(b4.b.gp()) -if(b3>0)b6.nI(new A.h(a6+a3,g/2).a8(0,B.f),b3,b2)}b4.ajd(new A.h(a6,a1-(a3-a2)),b6,j,e,c,b,d,new A.L(r,q),k)}, -ajd(a,b,c,d,e,f,g,h,i){var s,r,q=this -try{q.b8=!0 -if(q.av!=null){r=d.j(0,q.L) -r=!r}else r=!0 -if(r){q.L=d -q.P=e -q.ao=f -r=q.av -if(r!=null)r.l() -r=q.a3 -r.toString -q.av=A.bdI(new A.iw(d,null,null,r?null:q.a5,B.dD),q.gadG())}r=q.av -r.toString -s=r -r=q.a3 -r.toString -if(r)q.aj7(b,a,h) -s.li(b,a,q.aH.XN(h))}finally{q.b8=!1}}, -aj7(a,b,c){var s,r,q,p,o,n=b.a,m=b.b,l=c.b,k=l/2,j=A.aXw(n,m,n+c.a,m+l,new A.aR(k,k)) -n=this.a5 -if(n!=null)for(m=n.length,l=a.a,s=0;s0?p*0.57735+0.5:0 -q.z=new A.w7(r.e,p) -o=q.eS() -l.drawRRect(A.lu(k),o) -o.delete()}n=j.d5(0.5) -$.ab() -m=A.bt() -m.r=B.Nq.gp() -a.eL(n,m)}, -l(){var s,r=this -r.au.l() -s=r.av -if(s!=null)s.l() -r.ao=r.P=r.L=r.av=null -s=r.dy -if(s!=null)s.l() -r.a65()}} -A.aK2.prototype={ -$1(a){var s,r=this.b,q=this.a,p=this.c,o=t.q6,n=t.qU,m=t.kS,l=t.Bx,k=q.p2,j=n.i("eE") -if(a){k.toString -s=A.c([new A.fA(new A.eE(new A.fm(B.qL),new A.aA(r,k,n),j),11,m),new A.fA(new A.eE(new A.fm(B.qI),new A.aA(k,p,n),j),72,m),new A.fA(new A.v8(p,p,l),17,m)],o)}else{k.toString -s=A.c([new A.fA(new A.v8(r,r,l),17,m),new A.fA(new A.eE(new A.fm(new A.jG(B.qI)),new A.aA(r,k,n),j),72,m),new A.fA(new A.eE(new A.fm(new A.jG(B.qL)),new A.aA(k,p,n),j),11,m)],o)}r=A.aSj(s,t.FW) -q=q.dx -q.toString -return new A.aw(q,r,r.$ti.i("aw"))}, -$S:274} -A.a9_.prototype={ -aof(a,b){switch(a.w.a){case 0:case 1:case 3:case 5:return b -case 2:case 4:return B.Jf}}} -A.a8X.prototype={} -A.a8Y.prototype={ -geQ(){return new A.bS(new A.aJV(),t.B_)}, -gmA(){return B.ah_}, -glt(){return new A.bS(new A.aJX(this),t.mN)}, -gq6(){return B.bY}, -geg(){return new A.bS(new A.aJW(this),t.b)}, -gmU(){return 0}} -A.aJV.prototype={ -$1(a){if(a.q(0,B.K))return B.ci -return B.el}, -$S:275} -A.aJX.prototype={ -$1(a){var s -if(a.q(0,B.ai)){s=B.qN.cV(this.a.z) -return s}s=B.O3.cV(this.a.z) -return s}, -$S:7} -A.aJW.prototype={ -$1(a){var s -if(a.q(0,B.J)){s=B.qN.cV(this.a.z) -s=A.aWc(s.aI(0.8)) -return new A.vG(s.a,s.b,0.835,0.69).a1x()}return B.D}, -$S:7} -A.aJS.prototype={ -gdL(){return new A.bS(new A.aJT(this),t.mN)}, -gzR(){return 14}, -gBJ(){return 14}, -gCA(){return 14}, -gCV(){return B.ZA}, -gtv(){return 31}, -gtx(){return 51}, -gD3(){return B.a96}, -ga1E(){return 140}, -gCU(){return null}} -A.aJT.prototype={ -$1(a){var s,r -if(a.q(0,B.K)){s=this.a.b.k3 -return A.ar(97,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}s=this.a.b -r=s.e -return r==null?s.c:r}, -$S:7} -A.a8Z.prototype={ -gdH(){var s,r=this,q=r.Q -if(q===$){s=A.P(r.z) -r.Q!==$&&A.aK() -q=r.Q=s.ax}return q}, -gmA(){return new A.bS(new A.aK_(this),t.mN)}, -glt(){return new A.bS(new A.aK0(this),t.mN)}, -gq6(){return new A.bS(new A.aK1(this),t.b)}, -geg(){return new A.bS(new A.aJZ(this),t.b)}, -geQ(){return new A.bS(new A.aJY(),t.tR)}, -gtw(){return B.agX}, -gmU(){return 20}, -gcH(){return B.hr}} -A.aK_.prototype={ -$1(a){var s,r,q=this -if(a.q(0,B.K)){if(a.q(0,B.ai)){s=q.a.gdH().k2 -return A.ar(255,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}s=q.a.gdH().k3 -return A.ar(97,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.ai)){if(a.q(0,B.a2)){s=q.a.gdH() -r=s.d -return r==null?s.b:r}if(a.q(0,B.I)){s=q.a.gdH() -r=s.d -return r==null?s.b:r}if(a.q(0,B.J)){s=q.a.gdH() -r=s.d -return r==null?s.b:r}return q.a.gdH().c}if(a.q(0,B.a2)){s=q.a.gdH() -r=s.rx -return r==null?s.k3:r}if(a.q(0,B.I)){s=q.a.gdH() -r=s.rx -return r==null?s.k3:r}if(a.q(0,B.J)){s=q.a.gdH() -r=s.rx -return r==null?s.k3:r}s=q.a.gdH() -r=s.ry -if(r==null){r=s.n -s=r==null?s.k3:r}else s=r -return s}, -$S:7} -A.aK0.prototype={ -$1(a){var s,r,q=this -if(a.q(0,B.K)){if(a.q(0,B.ai)){s=q.a.gdH().k3 -return A.ar(31,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}s=q.a.gdH() -r=s.RG -s=r==null?s.k2:r -return A.ar(31,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.ai)){if(a.q(0,B.a2))return q.a.gdH().b -if(a.q(0,B.I))return q.a.gdH().b -if(a.q(0,B.J))return q.a.gdH().b -return q.a.gdH().b}if(a.q(0,B.a2)){s=q.a.gdH() -r=s.RG -return r==null?s.k2:r}if(a.q(0,B.I)){s=q.a.gdH() -r=s.RG -return r==null?s.k2:r}if(a.q(0,B.J)){s=q.a.gdH() -r=s.RG -return r==null?s.k2:r}s=q.a.gdH() -r=s.RG -return r==null?s.k2:r}, -$S:7} -A.aK1.prototype={ -$1(a){var s,r -if(a.q(0,B.ai))return B.D -if(a.q(0,B.K)){s=this.a.gdH().k3 -return A.ar(31,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}s=this.a.gdH() -r=s.ry -if(r==null){r=s.n -s=r==null?s.k3:r}else s=r -return s}, -$S:7} -A.aJZ.prototype={ -$1(a){var s,r=this -if(a.q(0,B.ai)){if(a.q(0,B.a2))return r.a.gdH().b.aI(0.1) -if(a.q(0,B.I))return r.a.gdH().b.aI(0.08) -if(a.q(0,B.J))return r.a.gdH().b.aI(0.1) -return null}if(a.q(0,B.a2)){s=r.a.gdH().k3 -return A.ar(B.d.aY(25.5),s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.I)){s=r.a.gdH().k3 -return A.ar(20,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.J)){s=r.a.gdH().k3 -return A.ar(B.d.aY(25.5),s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}return null}, -$S:62} -A.aJY.prototype={ -$1(a){return A.bcf(a)}, -$S:68} -A.ue.prototype={ -gzR(){return 12}, -gdL(){return new A.bS(new A.aJU(this),t.mN)}, -gBJ(){return 8}, -gCA(){return 14}, -ga8f(){return 48}, -ga8g(){return 40}, -gOB(){return 52}, -gCV(){return B.X9}, -gtv(){return 32}, -gtx(){return 52}, -gD3(){return B.a97}, -ga1E(){return 300}, -gCU(){return null}} -A.aJU.prototype={ -$1(a){var s,r,q=this -if(a.q(0,B.K)){if(a.q(0,B.ai)){s=q.a.b.k3 -return A.ar(97,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}s=q.a.b -r=s.RG -s=r==null?s.k2:r -return A.ar(97,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.ai)){if(a.q(0,B.a2)){s=q.a.b -r=s.e -return r==null?s.c:r}if(a.q(0,B.I)){s=q.a.b -r=s.e -return r==null?s.c:r}if(a.q(0,B.J)){s=q.a.b -r=s.e -return r==null?s.c:r}s=q.a.b -r=s.e -return r==null?s.c:r}if(a.q(0,B.a2)){s=q.a.b -r=s.RG -return r==null?s.k2:r}if(a.q(0,B.I)){s=q.a.b -r=s.RG -return r==null?s.k2:r}if(a.q(0,B.J)){s=q.a.b -r=s.RG -return r==null?s.k2:r}s=q.a.b -r=s.RG -return r==null?s.k2:r}, -$S:7} -A.Ln.prototype={ -bF(){this.cE() -this.cv() -this.eG()}, -l(){var s=this,r=s.bl$ -if(r!=null)r.O(s.geq()) -s.bl$=null -s.aQ()}} -A.Lo.prototype={ -aw(){var s,r=this,q=null -r.b3() -s=A.bX(q,B.a3,q,!r.a.c?0:1,r) -r.rO$=s -r.ma$=A.cQ(B.eN,s,B.hg) -s=A.bX(q,r.asf$,q,q,r) -r.pr$=s -r.K2$=A.cQ(B.aL,s,q) -s=A.bX(q,B.mv,q,r.w_$||r.vZ$?1:0,r) -r.K4$=s -r.K3$=A.cQ(B.aL,s,q) -s=A.bX(q,B.mv,q,r.w_$||r.vZ$?1:0,r) -r.K6$=s -r.K5$=A.cQ(B.aL,s,q)}, -l(){var s=this,r=s.rO$ -r===$&&A.a() -r.l() -r=s.ma$ -r===$&&A.a() -r.l() -r=s.pr$ -r===$&&A.a() -r.l() -r=s.K2$ -r===$&&A.a() -r.l() -r=s.K4$ -r===$&&A.a() -r.l() -r=s.K3$ -r===$&&A.a() -r.l() -r=s.K6$ -r===$&&A.a() -r.l() -r=s.K5$ -r===$&&A.a() -r.l() -s.a7P()}} -A.abc.prototype={} -A.abd.prototype={} -A.k6.prototype={ -gt(a){var s=this -return A.N(s.gmA(),s.glt(),s.gq6(),s.gtw(),s.gL8(),s.geQ(),s.geg(),s.gmU(),s.x,s.gcH(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.k6)if(J.b(b.gmA(),r.gmA()))if(b.glt()==r.glt())if(J.b(b.gq6(),r.gq6()))if(J.b(b.gtw(),r.gtw()))if(b.gL8()==r.gL8())if(b.geQ()==r.geQ())if(b.geg()==r.geg())if(b.gmU()==r.gmU())s=J.b(b.gcH(),r.gcH()) -return s}, -gmA(){return this.a}, -glt(){return this.b}, -gq6(){return this.c}, -gtw(){return this.d}, -gL8(){return this.e}, -geQ(){return this.f}, -geg(){return this.r}, -gmU(){return this.w}, -gcH(){return this.y}} -A.a90.prototype={} -A.FJ.prototype={ -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.FJ)if(J.b(b.a,r.a))if(J.b(b.b,r.b))if(J.b(b.d,r.d))if(J.b(b.f,r.f))if(J.b(b.r,r.r))if(J.b(b.w,r.w))if(J.b(b.x,r.x))if(J.b(b.y,r.y))if(b.z==r.z)s=J.b(b.ch,r.ch) -return s}} -A.a97.prototype={} -A.YG.prototype={ -Jf(a){var s=null -A.P(a) -return new A.a9g(a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,B.a3,!0,B.a_,s,s,s)}, -M4(a){var s=a.aA(t.if),r=s==null?null:s.w -return(r==null?A.P(a).eN:r).a}} -A.a9g.prototype={ -gkL(){var s,r=this,q=r.go -if(q===$){s=A.P(r.fy) -r.go!==$&&A.aK() -q=r.go=s.ax}return q}, -gkB(){return new A.bB(A.P(this.fy).ok.as,t.RP)}, -gcb(){return B.bY}, -gdi(){return new A.bS(new A.aKa(this),t.b)}, -geg(){return new A.bS(new A.aKc(this),t.b)}, -gcz(){return B.bY}, -gd2(){return B.bY}, -ge9(){return B.ig}, -gcH(){return new A.bB(A.biA(this.fy),t.mD)}, -ghK(){return B.JT}, -ghG(){return B.JS}, -gdL(){return new A.bS(new A.aKb(this),t.mN)}, -ghJ(){return B.fK}, -gdt(){return B.fL}, -geQ(){return B.ev}, -ghT(){return A.P(this.fy).Q}, -ghO(){return A.P(this.fy).f}, -ghx(){return A.P(this.fy).y}} -A.aKa.prototype={ -$1(a){var s -if(a.q(0,B.K)){s=this.a.gkL().k3 -return A.ar(97,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}return this.a.gkL().b}, -$S:7} -A.aKc.prototype={ -$1(a){if(a.q(0,B.a2))return this.a.gkL().b.aI(0.1) -if(a.q(0,B.I))return this.a.gkL().b.aI(0.08) -if(a.q(0,B.J))return this.a.gkL().b.aI(0.1) -return null}, -$S:62} -A.aKb.prototype={ -$1(a){var s,r=this -if(a.q(0,B.K)){s=r.a.gkL().k3 -return A.ar(97,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}if(a.q(0,B.a2))return r.a.gkL().b -if(a.q(0,B.I))return r.a.gkL().b -if(a.q(0,B.J))return r.a.gkL().b -return r.a.gkL().b}, -$S:7} -A.FT.prototype={ -gt(a){return J.D(this.a)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.FT&&J.b(b.a,this.a)}} -A.a9h.prototype={} -A.a9j.prototype={ -gLz(){this.x.a.toString -return!1}, -wz(){this.x.a.toString}} -A.FX.prototype={ -ah(){var s=null -return new A.Kp(new A.by(s,t.NE),s,A.t(t.yb,t.M),s,!0,s)}} -A.Kp.prototype={ -glQ(){var s=this.a.e -return s}, -ge6(){var s=this.a.f,r=this.e -if(r==null){s=A.lZ(!0,null,!0,!0,null,null,!1) -this.e=s}else s=r -return s}, -gabN(){this.a.toString -var s=this.c -s.toString -A.P(s) -return B.a2M}, -gKd(){var s=this.x -s===$&&A.a() -return s}, -gfN(){var s=this.a.aB -if(s)this.gkb() -return s}, -gkb(){var s=this.a.p4 -if(s==null)s=!0 -return s}, -gagq(){this.a.toString -return!1}, -goK(){var s=this.a.r -if(s.db==null)s=this.gagq() -else s=!0 -return s}, -gum(){var s=this.a.x2,r=this.R0().dx -s=r==null?null:r.b -if(s==null){s=this.c -s.toString -s=A.P(s).ax.fy}return s}, -R0(){var s,r,q,p,o=this,n=o.c -n.toString -A.j2(n,B.cC,t.c4).toString -n=o.c -n.toString -A.P(n) -n=o.c -n.toString -s=A.aR7(n) -n=o.a.r -n=n.Il(s) -o.gkb() -r=o.a -q=r.r.ax -if(q==null)q=s.r -p=n.aqF(!0,q==null?r.fr:q) -n=p.to==null -if(!n||p.ry!=null)return p -r=o.glQ().a.a;(r.length===0?B.cT:new A.f8(r)).gH(0) -if(n)if(p.ry==null)o.a.toString -o.a.toString -return p}, -aw(){var s,r=this -r.b3() -r.w=new A.a9j(r,r) -r.a.toString -s=r.ge6() -r.a.toString -r.gkb() -s.skU(!0) -r.ge6().a9(r.gUY()) -r.agC()}, -gUX(){var s,r=this.c -r.toString -r=A.c_(r,B.io) -s=r==null?null:r.CW -r=!0 -switch((s==null?B.fp:s).a){case 0:this.a.toString -this.gkb() -break -case 1:break -default:r=null}return r}, -by(){this.a87() -this.ge6().skU(this.gUX())}, -aV(a){var s,r=this -r.a88(a) -r.a.toString -r.ge6().skU(r.gUX()) -if(r.ge6().gc5())r.a.toString -r.a.toString -s=r.ghh() -r.gkb() -s.cW(B.K,!1) -r.ghh().cW(B.I,r.f) -r.ghh().cW(B.J,r.ge6().gc5()) -r.ghh().cW(B.dH,r.goK())}, -h7(a,b){var s=this.d -if(s!=null)this.kw(s,"controller")}, -gey(){return this.a.bE}, -l(){var s,r=this -r.ge6().O(r.gUY()) -s=r.e -if(s!=null)s.l() -s=r.d -if(s!=null){s.Qp() -s.Op()}r.ghh().O(r.gS_()) -s=r.z -if(s!=null){s.P$=$.af() -s.L$=0}r.a89()}, -TD(){var s=this.y.gS() -if(s!=null)s.CP()}, -alC(a){var s=this,r=s.w -r===$&&A.a() -if(!r.b||!r.c)return!1 -if(a===B.av)return!1 -s.a.toString -s.gkb() -if(a===B.bu||a===B.fA)return!0 -if(s.glQ().a.a.length!==0)return!0 -return!1}, -aml(){this.ar(new A.aKf()) -this.ghh().cW(B.J,this.ge6().gc5())}, -amn(a,b){var s,r=this,q=r.alC(b) -if(q!==r.r)r.ar(new A.aKh(r,q)) -s=r.c -s.toString -switch(A.P(s).w.a){case 2:case 4:case 3:case 5:case 1:case 0:if(b===B.bu){s=r.y.gS() -if(s!=null)s.iV(a.gdT())}break}s=r.c -s.toString -switch(A.P(s).w.a){case 2:case 1:case 0:break -case 4:case 3:case 5:if(b===B.aw){s=r.y.gS() -if(s!=null)s.fG()}break}}, -afr(){var s=this.glQ().a.b -if(s.a===s.b)this.y.gS().a1F()}, -RN(a){var s=this -if(a!==s.f){s.ar(new A.aKg(s,a)) -s.ghh().cW(B.I,s.f)}}, -afM(){this.ar(new A.aKi())}, -ghh(){this.a.toString -var s=this.z -s.toString -return s}, -agC(){var s,r=this -r.a.toString -r.z=A.ay3() -s=r.ghh() -r.gkb() -s.cW(B.K,!1) -r.ghh().cW(B.I,r.f) -r.ghh().cW(B.J,r.ge6().gc5()) -r.ghh().cW(B.dH,r.goK()) -r.ghh().a9(r.gS_())}, -glr(){var s,r,q,p,o=this,n=o.a.bL -if(n==null)s=null -else s=J.o0(n.slice(0),A.a6(n).c) -if(s!=null){n=o.y.gS() -n.toString -n=A.h7(n) -r=o.glQ().a -q=o.a.r -p=new A.uI(!0,"EditableText-"+n,s,r,q.z)}else p=B.pw -n=o.y.gS().glr() -return A.aZM(n.z,n.ay,n.e,p,!1,!0,n.y,!0,n.ch,n.Q,n.b,n.at,n.d,n.c,n.r,n.w,n.as,n.a)}, -K(d4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9=this,d0=null,d1={},d2=A.P(d4),d3=d4.aA(t.Uf) -if(d3==null)d3=B.eO -s=A.dM(c9.a.z,c9.ghh().a,t.p8) -r=A.P(d4).ok.y -r.toString -q=c9.c -q.toString -A.P(q) -q=c9.c -q.toString -q=A.bio(q) -p=t.em -o=A.dM(q,c9.ghh().a,p) -n=A.dM(r,c9.ghh().a,p).E(o).E(s) -c9.a.toString -r=d2.ax -m=c9.glQ() -l=c9.ge6() -q=A.c([],t.VS) -p=c9.a -p.toString -switch(A.aT().a){case 2:case 4:k=A.b6D(p.c0) -break -case 0:case 1:case 3:case 5:k=A.bbA(p.c0) -break -default:k=d0}p=c9.a -j=p.U -i=p.to -h=p.ry -d1.a=d1.b=null -g=!1 -f=!1 -e=d0 -d=d0 -switch(d2.w.a){case 2:c=A.vd(d4) -c9.x=!0 -j=$.b4Z() -if(c9.goK())b=c9.gum() -else{c9.a.toString -p=d3.w -b=p==null?c.gf3():p}a=d3.x -if(a==null)a=c.gf3().aI(0.4) -e=new A.h(-2/A.c0(d4,B.dJ,t.l).w.b,0) -d=a -g=!0 -i=!0 -h=B.fx -break -case 4:c=A.vd(d4) -i=c9.x=!1 -j=$.b4Y() -if(c9.goK())b=c9.gum() -else{c9.a.toString -p=d3.w -b=p==null?c.gf3():p}a=d3.x -if(a==null)a=c.gf3().aI(0.4) -e=new A.h(-2/A.c0(d4,B.dJ,t.l).w.b,0) -d1.b=new A.aKl(c9) -d1.a=new A.aKm(c9) -g=!0 -h=B.fx -break -case 0:case 1:c9.x=!1 -j=$.b55() -if(c9.goK())b=c9.gum() -else{c9.a.toString -p=d3.w -b=p==null?r.b:p}a=d3.x -if(a==null)a=r.b.aI(0.4) -i=f -break -case 3:c9.x=!1 -j=$.aUq() -if(c9.goK())b=c9.gum() -else{c9.a.toString -p=d3.w -b=p==null?r.b:p}a=d3.x -if(a==null)a=r.b.aI(0.4) -d1.b=new A.aKn(c9) -d1.a=new A.aKo(c9) -i=f -break -case 5:c9.x=!1 -j=$.aUq() -if(c9.goK())b=c9.gum() -else{c9.a.toString -p=d3.w -b=p==null?r.b:p}a=d3.x -if(a==null)a=r.b.aI(0.4) -d1.b=new A.aKp(c9) -d1.a=new A.aKq(c9) -i=f -break -default:a=d0 -b=a -g=b}p=c9.bD$ -a0=c9.a -a0.toString -c9.gkb() -a1=c9.r -a2=l.gc5()?a:d0 -a3=c9.a -a4=a3.aB -a5=a4?j:d0 -a6=a3.k4 -a7=a3.ok -a8=a3.p1 -a9=a3.p2 -b0=a3.d -b1=a3.au -b2=a3.L -b3=a3.RG -b4=a3.rx -b5=a3.xr -b6=a3.y1 -b7=a3.aH -b8=a3.n -b9=a3.a0 -c0=a3.b8 -c1=a3.av -c2=a3.bL -c3=a3.bz -c4=a3.c_ -c5=a3.bo -c6=$.b3j() -r=A.xX(p,A.aVN(a0.cy,d,c9,c2,!1,B.hh,c3,c4,c5,m,b,b4,e,i,h,b3,b9,!0,a4,!0,!1,l,b0,a3.u,q,c9.y,r.a,a0.w,c6,a0.fr,a0.fx,B.b2,a0.cx,a0.CW,a9,a6,a7,c9.gamm(),c9.gafq(),a8,b1,b2,g,!1,!0,"editable",!0,d0,c0,b7,c1,b8,a2,a5,b5,b6,a0.k1,a1,a0.db,a0.dx,k,a0.Q,n,!0,a0.as,a0.y,a0.ax,a0.x,a0.id,a0.bq)) -c9.a.toString -c7=A.hU(new A.u1(A.c([l,m],t.Eo)),new A.aKr(c9,l,m),new A.j6(r,d0)) -c9.a.toString -c8=A.dM(B.Kg,c9.ghh().a,t.Pb) -d1.c=null -if(c9.gabN()!==B.a2L)c9.a.toString -c9.a.toString -c9.gkb() -r=c9.w -r===$&&A.a() -return A.ie(A.YK(A.jK(A.hU(m,new A.aKs(d1,c9),r.X6(B.cs,c7)),!1,d0),d0,B.ep,d0,d0),c8,d0,new A.aKt(c9),new A.aKu(c9),d0)}, -gae(){return this.y}} -A.aKf.prototype={ -$0(){}, -$S:0} -A.aKh.prototype={ -$0(){this.a.r=this.b}, -$S:0} -A.aKg.prototype={ -$0(){this.a.f=this.b}, -$S:0} -A.aKi.prototype={ -$0(){}, -$S:0} -A.aKl.prototype={ -$0(){var s,r=this.a -if(!r.ge6().gc5()){s=r.ge6() -s=s.b&&B.b.en(s.gdw(),A.f0())}else s=!1 -if(s)r.ge6().it()}, -$S:0} -A.aKm.prototype={ -$0(){this.a.ge6().jc()}, -$S:0} -A.aKn.prototype={ -$0(){var s,r=this.a -if(!r.ge6().gc5()){s=r.ge6() -s=s.b&&B.b.en(s.gdw(),A.f0())}else s=!1 -if(s)r.ge6().it()}, -$S:0} -A.aKo.prototype={ -$0(){this.a.ge6().jc()}, -$S:0} -A.aKp.prototype={ -$0(){var s,r=this.a -if(!r.ge6().gc5()){s=r.ge6() -s=s.b&&B.b.en(s.gdw(),A.f0())}else s=!1 -if(s)r.ge6().it()}, -$S:0} -A.aKq.prototype={ -$0(){this.a.ge6().jc()}, -$S:0} -A.aKr.prototype={ -$2(a,b){var s,r,q,p=this.a,o=p.R0(),n=p.a,m=n.z,l=n.as -n=n.at -s=p.f -r=this.b.gc5() -q=this.c.a.a -p.a.toString -return new A.qL(o,m,l,n,r,s,!1,q.length===0,b,null)}, -$S:277} -A.aKt.prototype={ -$1(a){return this.a.RN(!0)}, -$S:43} -A.aKu.prototype={ -$1(a){return this.a.RN(!1)}, -$S:34} -A.aKs.prototype={ -$2(a,b){var s,r,q,p,o=null,n=this.b -n.gkb() -s=this.a -r=s.c -q=n.glQ().a.a -q=(q.length===0?B.cT:new A.f8(q)).gH(0) -n.a.toString -p=s.b -s=s.a -n.gkb() -return A.cz(o,b,!1,q,!0,!1,o,o,o,o,o,o,o,o,o,r,o,o,o,o,p,s,o,new A.aKj(n),o,o,new A.aKk(n),o,o,o,o,o,o,o,o,o,o,B.Y,o)}, -$S:278} -A.aKk.prototype={ -$0(){var s=this.a -if(!s.glQ().a.b.gca())s.glQ().stO(A.mW(B.k,s.glQ().a.a.length)) -s.TD()}, -$S:0} -A.aKj.prototype={ -$0(){var s=this.a,r=s.ge6() -if(r.b&&B.b.en(r.gdw(),A.f0())&&!s.ge6().gc5())s.ge6().it() -else{s.a.toString -s.TD()}}, -$S:0} -A.aO2.prototype={ -$1(a){var s,r=null -if(a.q(0,B.K)){s=A.P(this.a).ok.y.b -return A.ay(r,r,s==null?r:s.aI(0.38),r,r,r,r,r,r,r,r,r,r,r,r,r,r,!0,r,r,r,r,r,r,r,r)}return A.ay(r,r,A.P(this.a).ok.y.b,r,r,r,r,r,r,r,r,r,r,r,r,r,r,!0,r,r,r,r,r,r,r,r)}, -$S:59} -A.aLW.prototype={ -$2(a,b){if(!a.a)a.O(b)}, -$S:44} -A.LC.prototype={ -aV(a){this.bm(a) -this.nF()}, -by(){var s,r,q,p,o=this -o.du() -s=o.bD$ -r=o.gmz() -q=o.c -q.toString -q=A.mF(q) -o.f_$=q -p=o.lR(q,r) -if(r){o.h7(s,o.dU$) -o.dU$=!1}if(p)if(s!=null)s.l()}, -l(){var s,r=this -r.eZ$.aL(0,new A.aLW()) -s=r.bD$ -if(s!=null)s.l() -r.bD$=null -r.aQ()}} -A.FY.prototype={ -ah(){var s=null -return new A.z5(new A.mE(!1,$.af()),A.lZ(!0,s,!0,!0,s,s,!1),s,A.t(t.yb,t.M),s,!0,s)}} -A.awE.prototype={ -$1(a){var s,r,q,p,o,n,m,l,k,j,i=this -t.S0.a(a) -s=a.c -s.toString -r=i.a.Il(A.aR7(s)) -s=a.e -s===$&&A.a() -q=s.y -s=q==null?A.n(s).i("c3.T").a(q):q -if(s!=null)r=r.aq0(s) -s=a.bD$ -q=a.gqL() -p=i.CW -o=i.db -n=i.dy -n=o?B.oH:B.oI -m=i.fr -m=o?B.oJ:B.oK -l=i.aH -l=!o||!p -k=A.aVO() -j=A.aVP() -return A.xX(s,A.aS6(i.dx,i.a0,i.ax,i.U,i.cB,i.aK,i.bU,i.L,q,i.x1,i.x2,i.ry,i.bL,i.to,i.rx,r,i.bv,i.a5,l,i.fx,!0,i.k1,i.f,i.d,i.bq,i.RG,i.p4,i.y2,i.r,i.ao,i.k2,i.fy,i.go,i.id,i.au,o,i.cy,i.b8,new A.awF(a,i.c),i.p2,i.p3,i.k3,i.k4,i.ok,i.p1,p,i.e,i.c_,i.a3,i.xr,i.y1,i.aB,i.n,k,j,i.cx,n,m,i.P,i.ay,i.y,i.x,i.bo,i.z,i.Q,i.at,i.as,i.w,i.ch,i.av))}, -$S:279} -A.awF.prototype={ -$1(a){this.a.nE(a)}, -$S:28} -A.z5.prototype={ -gqL(){var s=t.mr.a(A.T.prototype.gW.call(this)) -return s.at}, -h7(a,b){var s,r=this -r.a4l(a,b) -s=r.ay -if(s!=null)r.kw(s,"controller") -r.d=r.gqL().a.a}, -aw(){var s,r=this -r.NX() -s=t.mr -s.a(A.T.prototype.gW.call(r)) -s.a(A.T.prototype.gW.call(r)).at.a9(r.gG9())}, -aV(a){var s,r,q,p=this -p.NV(a) -s=t.mr -r=a.at -if(s.a(A.T.prototype.gW.call(p)).at!==r){q=p.gG9() -r.O(q) -s.a(A.T.prototype.gW.call(p)).at.a9(q) -s.a(A.T.prototype.gW.call(p)) -s.a(A.T.prototype.gW.call(p)) -p.d=s.a(A.T.prototype.gW.call(p)).at.a.a}}, -l(){var s,r=this -t.mr.a(A.T.prototype.gW.call(r)).at.O(r.gG9()) -s=r.ay -if(s!=null){s.Qp() -s.Op()}r.NW()}, -nE(a){var s -this.NU(a) -if(this.gqL().a.a!==a){s=this.gqL() -s.n_(new A.cA(a,B.fF,B.be))}}, -adD(){var s=this -if(s.gqL().a.a!==s.goX())s.nE(s.gqL().a.a)}} -A.Tx.prototype={} -A.anH.prototype={ -tE(a){return B.a95}, -A7(a,b,c,d){var s,r,q,p=null,o=A.P(a) -a.aA(t.bZ) -s=A.P(a) -r=s.bI.c -if(r==null)r=o.ax.b -q=A.a8(A.hY(A.eP(B.cs,p,B.W,!1,p,p,p,p,p,p,p,p,p,p,p,p,p,p,d,p,p,p,p,p,p),p,p,new A.a9l(r,p),B.Q),22,22) -switch(b.a){case 0:s=A.YW(B.a_,1.5707963267948966,q,!0) -break -case 1:s=q -break -case 2:s=A.YW(B.a_,0.7853981633974483,q,!0) -break -default:s=p}return s}, -tD(a,b){var s -switch(a.a){case 2:s=B.a3r -break -case 0:s=B.a3w -break -case 1:s=B.f -break -default:s=null}return s}} -A.a9l.prototype={ -b1(a,b){var s,r,q,p,o=$.ab(),n=A.bt() -n.r=this.b.gp() -s=b.a/2 -r=A.oo(new A.h(s,s),s) -q=0+s -p=A.co(o.r) -p.b9(new A.lD(r)) -p.b9(new A.fF(new A.w(0,0,q,q))) -a.jE(p,n)}, -eU(a){return!this.b.j(0,a.b)}} -A.a3O.prototype={} -A.xI.prototype={ -gt(a){return A.N(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.xI&&J.b(b.a,s.a)&&J.b(b.b,s.b)&&J.b(b.c,s.c)}} -A.a9m.prototype={} -A.YQ.prototype={ -K(a){var s=this.c.ac(0,B.a3p),r=this.d.a8(0,B.a3m),q=A.c0(a,B.bS,t.l).w.r.b+8,p=44<=s.b-8-q,o=new A.h(8,q) -return new A.bR(new A.a2(8,q,8,8),new A.jC(new A.YR(s.ac(0,o),r.ac(0,o),p),new A.Ku(this.e,p,A.bl2(),null),null),null)}} -A.Ku.prototype={ -ah(){return new A.a9r(new A.hc(),null,null)}, -ayA(a,b){return this.e.$2(a,b)}} -A.a9r.prototype={ -aV(a){var s=this -s.bm(a) -if(!A.cV(s.a.c,a.c)){s.e=new A.hc() -s.d=!1}}, -K(a){var s,r,q,p,o,n,m,l=this,k=null,j=A.j2(a,B.cC,t.c4) -j.toString -s=a.aA(t.I).w -r=l.e -q=l.d -p=l.a -o=p.d -n=t.A9 -n=q?new A.e2(B.Jb,n):new A.e2(B.a9J,n) -m=A.ce(q?B.nd:B.PJ,k,k,k) -j=q?j.gaT():j.gaZ() -n=A.c([new A.a9q(m,new A.aKL(l),j,n)],t.p) -B.b.a_(n,l.a.c) -return new A.a9s(q,s,A.aUL(p.ayA(a,new A.a9o(o,q,s,n,k)),B.a7,B.OD),r)}} -A.aKL.prototype={ -$0(){var s=this.a -s.ar(new A.aKK(s))}, -$S:0} -A.aKK.prototype={ -$0(){var s=this.a -s.d=!s.d}, -$S:0} -A.a9s.prototype={ -bf(a){var s=new A.a9t(this.e,this.f,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.sLA(this.e) -b.sce(this.f)}} -A.a9t.prototype={ -sLA(a){if(a===this.a4)return -this.a4=a -this.ag()}, -sce(a){if(a===this.am)return -this.am=a -this.ag()}, -c7(){var s,r,q=this,p=q.u$ -p.toString -s=t.k -r=s.a(A.r.prototype.gab.call(q)) -p.cs(new A.al(0,r.b,0,r.d),!0) -if(!q.a4&&q.D==null)q.D=q.u$.gC().a -p=s.a(A.r.prototype.gab.call(q)) -s=q.D -if(s!=null){s=q.u$.gC() -r=q.D -r.toString -s=s.a>r}else{r=s -s=!0}if(s)s=q.u$.gC().a -else{r.toString -s=r}q.fy=p.bx(new A.L(s,q.u$.gC().b)) -s=q.u$.b -s.toString -t.U.a(s) -s.a=new A.h(q.am===B.aj?0:q.gC().a-q.u$.gC().a,0)}, -b1(a,b){var s=this.u$,r=s.b -r.toString -a.e4(s,t.U.a(r).a.a8(0,b))}, -da(a,b){var s=this.u$.b -s.toString -return a.kP(new A.aKM(this),t.U.a(s).a,b)}, -eT(a){if(!(a.b instanceof A.fP))a.b=new A.fP(null,null,B.f)}, -dz(a,b){var s=a.b -s.toString -s=t.U.a(s).a -b.eh(s.a,s.b,0,1) -this.a5e(a,b)}} -A.aKM.prototype={ -$2(a,b){return this.a.u$.cT(a,b)}, -$S:19} -A.a9o.prototype={ -bf(a){var s=new A.a5Q(this.e,this.f,this.r,0,null,null,new A.b8(),A.at()) -s.be() -return s}, -bj(a,b){b.sauw(this.e) -b.sce(this.r) -b.sLA(this.f)}, -cf(){return new A.a9p(A.dv(t.Q),this,B.ae)}} -A.a9p.prototype={} -A.a5Q.prototype={ -sauw(a){if(a===this.U)return -this.U=a -this.ag()}, -sLA(a){if(a===this.a0)return -this.a0=a -this.ag()}, -sce(a){if(a===this.a3)return -this.a3=a -this.ag()}, -ah2(){var s,r=this,q={},p=t.k,o=r.a0?p.a(A.r.prototype.gab.call(r)):A.adb(new A.L(p.a(A.r.prototype.gab.call(r)).b,44)) -q.a=-1 -q.b=0 -r.bB(new A.aGu(q,r,o)) -p=r.al$ -p.toString -s=r.n -if(s!==-1&&s===r.dJ$-2&&q.b-p.gC().a<=o.b)r.n=-1}, -zk(a,b){var s,r=this -if(a===r.al$)return r.n!==-1 -s=r.n -if(s===-1)return!0 -return b>s===r.a0}, -ajN(){var s,r,q,p,o,n,m,l,k,j=this,i="RenderBox was not laid out: ",h={},g=j.al$ -g.toString -s=j.a3 -r=A.c([],t.Ik) -h.a=h.b=0 -h.c=-1 -j.bB(new A.aGv(h,j,g,r)) -q=j.n>=0 -if(s===B.aj){if(q){s=g.b -s.toString -t.U.a(s).a=B.f -g.gC()}p=h.b -for(g=r.length,s=t.U,o=0;oq&&s.n===-1)s.n=o.a-1}, -$S:18} -A.aGv.prototype={ -$1(a){var s,r,q=this -t.x.a(a) -s=a.b -s.toString -t.U.a(s) -r=q.a -if(!q.b.zk(a,++r.c))s.e=!1 -else{s.e=!0 -r.b=r.b+a.gC().a -r.a=Math.max(r.a,a.gC().b) -if(a!==q.c)q.d.push(a)}}, -$S:18} -A.aGw.prototype={ -$1(a){var s,r,q -t.x.a(a) -s=a.b -s.toString -t.U.a(s) -r=this.a -q=++r.c -if(a===this.c)return -if(!this.b.zk(a,q)){s.e=!1 -return}s.e=!0 -q=r.b -s.a=new A.h(0,q) -r.b=q+a.gC().b -r.a=Math.max(r.a,a.gC().a)}, -$S:18} -A.aGx.prototype={ -$1(a){var s,r,q -t.x.a(a) -s=a.b -s.toString -t.U.a(s) -r=++this.a.a -if(a===this.c)return -q=this.b -if(!q.zk(a,r)){s.e=!1 -return}a.cs(A.lH(null,q.gC().a),!0)}, -$S:18} -A.aGz.prototype={ -$1(a){var s -t.x.a(a) -s=a.b -s.toString -t.U.a(s) -if(!s.e)return -this.a.e4(a,s.a.a8(0,this.b))}, -$S:18} -A.aGy.prototype={ -$2(a,b){return this.a.a.cT(a,b)}, -$S:19} -A.aGA.prototype={ -$1(a){var s -t.x.a(a) -s=a.b -s.toString -if(t.U.a(s).e)this.a.$1(a)}, -$S:18} -A.a9n.prototype={ -K(a){var s=null -return A.mf(!1,B.a3,!0,B.KD,this.c,B.cm,A.bdM(A.P(a).ax),1,s,s,s,s,s,B.fj)}, -gR(){return this.c}} -A.a9q.prototype={ -K(a){var s=null -return A.mf(!1,B.a3,!0,s,A.BX(s,s,this.c,s,s,this.d,s,s,this.e),B.v,B.D,0,s,s,s,s,s,B.fj)}} -A.ab1.prototype={ -aP(a){var s,r,q -this.eV(a) -s=this.al$ -for(r=t.U;s!=null;){s.aP(a) -q=s.b -q.toString -s=r.a(q).aJ$}}, -az(){var s,r,q -this.eW() -s=this.al$ -for(r=t.U;s!=null;){s.az() -q=s.b -q.toString -s=r.a(q).aJ$}}} -A.abe.prototype={ -bF(){this.cE() -this.cv() -this.eG()}, -l(){var s=this,r=s.bl$ -if(r!=null)r.O(s.geq()) -s.bl$=null -s.aQ()}} -A.z7.prototype={ -N(){return"_TextSelectionToolbarItemPosition."+this.b}} -A.YS.prototype={ -K(a){var s=this,r=null -return A.awz(s.c,s.d,A.aS5(s.f,r,B.D,r,r,r,r,r,r,A.bbJ(A.P(a).ax),r,B.a9a,s.e,r,B.kK,r,r,r,B.adt,r))}, -gR(){return this.c}} -A.er.prototype={ -E(b3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1=this,b2=null -if(b3==null)return b1 -s=b1.a -r=s==null?b2:s.E(b3.a) -if(r==null)r=b3.a -q=b1.b -p=q==null?b2:q.E(b3.b) -if(p==null)p=b3.b -o=b1.c -n=o==null?b2:o.E(b3.c) -if(n==null)n=b3.c -m=b1.d -l=m==null?b2:m.E(b3.d) -if(l==null)l=b3.d -k=b1.e -j=k==null?b2:k.E(b3.e) -if(j==null)j=b3.e -i=b1.f -h=i==null?b2:i.E(b3.f) -if(h==null)h=b3.f -g=b1.r -f=g==null?b2:g.E(b3.r) -if(f==null)f=b3.r -e=b1.w -d=e==null?b2:e.E(b3.w) -if(d==null)d=b3.w -c=b1.x -b=c==null?b2:c.E(b3.x) -if(b==null)b=b3.x -a=b1.y -a0=a==null?b2:a.E(b3.y) -if(a0==null)a0=b3.y -a1=b1.z -a2=a1==null?b2:a1.E(b3.z) -if(a2==null)a2=b3.z -a3=b1.Q -a4=a3==null?b2:a3.E(b3.Q) -if(a4==null)a4=b3.Q -a5=b1.as -a6=a5==null?b2:a5.E(b3.as) -if(a6==null)a6=b3.as -a7=b1.at -a8=a7==null?b2:a7.E(b3.at) -if(a8==null)a8=b3.at -a9=b1.ax -b0=a9==null?b2:a9.E(b3.ax) -if(b0==null)b0=b3.ax -s=r==null?s:r -r=p==null?q:p -q=n==null?o:n -p=l==null?m:l -o=j==null?k:j -n=h==null?i:h -m=f==null?g:f -l=d==null?e:d -k=b==null?c:b -j=a0==null?a:a0 -i=a2==null?a1:a2 -h=a4==null?a3:a4 -g=a6==null?a5:a6 -f=a8==null?a7:a8 -return A.aSa(j,i,h,s,r,q,p,o,n,g,f,b0==null?a9:b0,m,l,k)}, -WJ(a,b,a0,a1,a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=null,c=e.a -c=c==null?d:c.hC(a0,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) -s=e.b -s=s==null?d:s.hC(a0,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) -r=e.c -r=r==null?d:r.hC(a0,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) -q=e.d -q=q==null?d:q.hC(a0,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) -p=e.e -p=p==null?d:p.hC(a0,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) -o=e.f -o=o==null?d:o.hC(a,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) -n=e.r -n=n==null?d:n.hC(a,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) -m=e.w -m=m==null?d:m.hC(a,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) -l=e.x -l=l==null?d:l.hC(a,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) -k=e.y -k=k==null?d:k.hC(a,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) -j=e.z -j=j==null?d:j.hC(a,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) -i=e.Q -i=i==null?d:i.hC(a0,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) -h=e.as -h=h==null?d:h.hC(a,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) -g=e.at -g=g==null?d:g.hC(a,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1) -f=e.ax -return A.aSa(k,j,i,c,s,r,q,p,o,h,g,f==null?d:f.hC(a,d,b,d,a1,a2,0,1,0,1,0,1,a3,0,1),n,m,l)}, -WI(a,b,c){return this.WJ(a,b,c,null,null,null)}, -WH(a){var s=null -return this.WJ(s,s,s,a,s,s)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.er&&J.b(s.a,b.a)&&J.b(s.b,b.b)&&J.b(s.c,b.c)&&J.b(s.d,b.d)&&J.b(s.e,b.e)&&J.b(s.f,b.f)&&J.b(s.r,b.r)&&J.b(s.w,b.w)&&J.b(s.x,b.x)&&J.b(s.y,b.y)&&J.b(s.z,b.z)&&J.b(s.Q,b.Q)&&J.b(s.as,b.as)&&J.b(s.at,b.at)&&J.b(s.ax,b.ax)}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,B.a,B.a,B.a,B.a,B.a)}} -A.a9v.prototype={} -A.tD.prototype={ -K(a){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=a.aA(t.ri),f=g==null?h:g.w.c -if(f==null){f=i.c -s=B.cK.a -r=B.cK.b -q=B.cK.c -p=B.cK.d -o=B.cK.e -n=B.cK.f -m=B.cK.r -l=B.cK.w -k=m==null?f.bI.c:m -l=new A.RK(f,new A.ri(s,r,q,p,o,n,m,l),B.pc,s,r,q,p,o,n,k,l) -f=l}f=f.cV(a) -j=a.aA(t.Uf) -if(j==null)j=B.eO -s=i.c -r=s.bI -q=r.b -if(q==null)q=j.x -r=r.a -if(r==null)r=j.w -return new A.Ia(i,new A.AX(f,A.qI(A.afi(i.d,r,h,h,q),s.k2,h),h),h)}, -gR(){return this.d}} -A.Ia.prototype={ -qa(a,b){return new A.tD(this.w.c,b,null)}, -cI(a){return!this.w.c.j(0,a.w.c)}} -A.tE.prototype={ -eo(a){var s,r=this.a -r.toString -s=this.b -s.toString -return A.bbR(r,s,a)}} -A.zN.prototype={ -ah(){return new A.a0q(null,null)}, -gR(){return this.w}} -A.a0q.prototype={ -l7(a){var s=a.$3(this.CW,this.a.r,new A.azf()) -s.toString -this.CW=t.ZM.a(s)}, -K(a){var s=this.CW -s.toString -return new A.tD(s.aj(this.geD().gp()),this.a.w,null)}} -A.azf.prototype={ -$1(a){return new A.tE(t.we.a(a),null)}, -$S:280} -A.lC.prototype={} -A.r4.prototype={ -N(){return"MaterialTapTargetSize."+this.b}} -A.je.prototype={ -a29(a){return a.i("lC<0>?").a(this.d.h(0,A.bM(a)))}, -J1(a,b,c,d,e,f,g,a0,a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h=this -f!=null -s=f==null?h.e:f -r=(a==null?h.ax:a).apZ(null) -q=e==null?h.k2:e -p=a0==null?h.k4:a0 -o=a2==null?h.ok:a2 -n=new A.axh(h,null).$0() -m=b==null?h.a3:b -l=c==null?h.au:c -k=d==null?h.L:d -j=g==null?h.bU:g -i=a1==null?h.eN:a1 -return A.aSb(h.p2,h.d,n,h.a,h.p4,h.R8,h.RG,h.rx,h.ry,h.bw,h.to,h.as,h.at,h.x1,h.x2,h.xr,h.y1,r,h.b,h.y2,h.aH,h.bQ,h.aB,h.ay,h.ch,h.n,h.U,h.a0,m,h.a5,h.c,l,k,h.CW,h.cx,h.cy,h.db,h.P,q,h.bR,s,h.ao,h.f,h.av,h.b8,h.bL,h.bz,h.bE,h.bv,j,h.r,h.w,h.aK,h.dx,h.dy,h.fr,h.k3,p,h.c_,h.bo,h.fx,h.x,h.cB,h.bq,h.fy,h.u,h.go,h.c0,h.dC,h.id,h.y,h.d4,h.ap,i,h.bI,o,h.D,h.a4,h.am,h.p1,h.k1,!0,h.Q)}, -aqL(a,b){var s=null -return this.J1(s,s,s,s,s,s,s,a,s,b)}, -aq6(a){var s=null -return this.J1(s,s,s,s,a,s,s,s,s,s)}, -J0(a){var s=null -return this.J1(s,s,s,s,s,s,s,s,s,a)}, -j(a,b){var s=this -if(b==null)return!1 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.je&&A.uo(b.d,s.d)&&b.a===s.a&&A.uo(b.c,s.c)&&b.e.j(0,s.e)&&b.f===s.f&&b.r.j(0,s.r)&&b.w===s.w&&b.x.j(0,s.x)&&b.y===s.y&&b.Q.j(0,s.Q)&&b.as.j(0,s.as)&&b.at.j(0,s.at)&&b.ax.j(0,s.ax)&&b.ay.j(0,s.ay)&&b.ch.j(0,s.ch)&&b.CW.j(0,s.CW)&&b.cx.j(0,s.cx)&&b.cy.j(0,s.cy)&&b.db.j(0,s.db)&&b.dx.j(0,s.dx)&&b.dy.j(0,s.dy)&&b.fr.j(0,s.fr)&&b.fx.j(0,s.fx)&&b.fy.j(0,s.fy)&&b.go.j(0,s.go)&&b.id.j(0,s.id)&&b.k1.j(0,s.k1)&&b.k2.j(0,s.k2)&&b.k3.j(0,s.k3)&&b.k4.j(0,s.k4)&&b.ok.j(0,s.ok)&&b.p1.j(0,s.p1)&&J.b(b.p2,s.p2)&&b.p3.j(0,s.p3)&&b.p4.j(0,s.p4)&&b.R8.j(0,s.R8)&&b.RG.j(0,s.RG)&&b.rx.j(0,s.rx)&&b.ry.j(0,s.ry)&&b.to.j(0,s.to)&&b.x1.j(0,s.x1)&&b.x2.j(0,s.x2)&&b.xr.j(0,s.xr)&&b.y1.j(0,s.y1)&&b.y2.j(0,s.y2)&&b.aH.j(0,s.aH)&&b.aB.j(0,s.aB)&&b.n.j(0,s.n)&&b.U.j(0,s.U)&&b.a0.j(0,s.a0)&&b.a3.j(0,s.a3)&&b.a5.j(0,s.a5)&&b.au.j(0,s.au)&&b.L.j(0,s.L)&&b.P.j(0,s.P)&&b.ao.j(0,s.ao)&&b.av.j(0,s.av)&&b.b8.j(0,s.b8)&&b.bL.j(0,s.bL)&&b.bz.j(0,s.bz)&&b.bE.j(0,s.bE)&&b.bv.j(0,s.bv)&&b.bU.j(0,s.bU)&&b.aK.j(0,s.aK)&&b.c_.j(0,s.c_)&&b.bo.j(0,s.bo)&&b.cB.j(0,s.cB)&&b.bq.j(0,s.bq)&&b.u.j(0,s.u)&&b.c0.j(0,s.c0)&&b.dC.j(0,s.dC)&&b.d4.j(0,s.d4)&&b.ap.j(0,s.ap)&&b.eN.j(0,s.eN)&&b.bI.j(0,s.bI)&&b.D.j(0,s.D)&&b.a4.j(0,s.a4)&&b.am.j(0,s.am)&&b.bw.j(0,s.bw)&&b.bQ.j(0,s.bQ)&&b.bR.j(0,s.bR)}, -gt(a){var s=this,r=s.d,q=A.n(r),p=A.aa(new A.bD(r,q.i("bD<1>")),t.X) -B.b.a_(p,new A.bo(r,q.i("bo<2>"))) -p.push(s.a) -p.push(s.b) -r=s.c -B.b.a_(p,r.gcd()) -B.b.a_(p,r.gh8()) -p.push(s.e) -p.push(s.f) -p.push(s.r) -p.push(s.w) -p.push(s.x) -p.push(s.y) -p.push(!0) -p.push(s.Q) -p.push(s.as) -p.push(s.at) -p.push(s.ax) -p.push(s.ay) -p.push(s.ch) -p.push(s.CW) -p.push(s.cx) -p.push(s.cy) -p.push(s.db) -p.push(s.dx) -p.push(s.dy) -p.push(s.fr) -p.push(s.fx) -p.push(s.fy) -p.push(s.go) -p.push(s.id) -p.push(s.k1) -p.push(s.k2) -p.push(s.k3) -p.push(s.k4) -p.push(s.ok) -p.push(s.p1) -p.push(s.p2) -p.push(s.p3) -p.push(s.p4) -p.push(s.R8) -p.push(s.RG) -p.push(s.rx) -p.push(s.ry) -p.push(s.to) -p.push(s.x1) -p.push(s.x2) -p.push(s.xr) -p.push(s.y1) -p.push(s.y2) -p.push(s.aH) -p.push(s.aB) -p.push(s.n) -p.push(s.U) -p.push(s.a0) -p.push(s.a3) -p.push(s.a5) -p.push(s.au) -p.push(s.L) -p.push(s.P) -p.push(s.ao) -p.push(s.av) -p.push(s.b8) -p.push(s.bL) -p.push(s.bz) -p.push(s.bE) -p.push(s.bv) -p.push(s.bU) -p.push(s.aK) -p.push(s.c_) -p.push(s.bo) -p.push(s.cB) -p.push(s.bq) -p.push(s.u) -p.push(s.c0) -p.push(s.dC) -p.push(s.d4) -p.push(s.ap) -p.push(s.eN) -p.push(s.bI) -p.push(s.D) -p.push(s.a4) -p.push(s.am) -p.push(s.bw) -p.push(s.bQ) -p.push(s.bR) -return A.bh(p)}} -A.axh.prototype={ -$0(){return this.a.p3}, -$S:281} -A.axi.prototype={ -$0(){var s=this.a,r=this.b -return s.aqL(r.E(s.k4),r.E(s.ok))}, -$S:282} -A.axf.prototype={ -$2(a,b){return new A.aV(a,b.azR(this.a.c.h(0,a),this.b),t.sw)}, -$S:283} -A.axg.prototype={ -$1(a){return!this.a.c.aN(a.a)}, -$S:284} -A.RK.prototype={ -giU(){var s=this.cx.a -return s==null?this.CW.ax.a:s}, -gf3(){var s=this.cx.b -return s==null?this.CW.ax.b:s}, -gjO(){var s=this.cx.c -return s==null?this.CW.ax.c:s}, -gkF(){var s=this.cx.f -return s==null?this.CW.fx:s}, -cV(a){return A.b8W(this.CW,this.cx.J0(this.gls()).cV(a))}} -A.aQt.prototype={} -A.yv.prototype={ -gt(a){return(A.pA(this.a)^A.pA(this.b))>>>0}, -j(a,b){if(b==null)return!1 -return b instanceof A.yv&&b.a===this.a&&b.b===this.b}} -A.a2v.prototype={ -cl(a,b){var s,r=this.a,q=r.h(0,a) -if(q!=null)return q -if(r.a===this.b)r.J(0,new A.bD(r,A.n(r).i("bD<1>")).gad(0)) -s=b.$0() -r.m(0,a,s) -return s}} -A.n4.prototype={ -JI(a){var s=this.a,r=this.b,q=A.E(a.a+new A.h(s,r).ak(0,4).a,0,a.b) -return a.aqJ(A.E(a.c+new A.h(s,r).ak(0,4).b,0,a.d),q)}, -j(a,b){if(b==null)return!1 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.n4&&b.a===this.a&&b.b===this.b}, -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -dk(){return this.a4f()+"(h: "+A.kl(this.a)+", v: "+A.kl(this.b)+")"}} -A.a9x.prototype={} -A.aal.prototype={} -A.Gc.prototype={ -gvD(){var s,r=this.e -if(r!=null)s=r instanceof A.KR -else s=!0 -if(s)return r -return A.aaq(new A.axm(this))}, -gh3(){return null}, -gt(a){var s=this -return A.bh([s.a,s.b,s.c,s.d,s.gvD(),s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.gh3(),s.db,s.dx,s.dy,s.fr])}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.Gc)if(J.b(b.a,r.a))if(J.b(b.b,r.b))if(J.b(b.c,r.c))if(J.b(b.d,r.d))if(J.b(b.gvD(),r.gvD()))if(J.b(b.f,r.f))if(J.b(b.r,r.r))if(J.b(b.w,r.w))if(J.b(b.x,r.x))if(J.b(b.y,r.y))if(J.b(b.z,r.z))if(J.b(b.Q,r.Q))if(b.as==r.as)if(J.b(b.at,r.at))if(J.b(b.ax,r.ax))if(J.b(b.ay,r.ay))if(J.b(b.ch,r.ch))if(J.b(b.CW,r.CW))if(J.b(b.cx,r.cx)){b.gh3() -r.gh3() -s=J.b(b.db,r.db)&&J.b(b.dx,r.dx)&&b.dy==r.dy&&b.fr==r.fr}return s}} -A.axm.prototype={ -$1(a){var s -if(a.q(0,B.ai)){s=this.a.e -return s==null?t.G.a(s):s}return B.D}, -$S:7} -A.a9A.prototype={} -A.Ge.prototype={ -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.y,s.x,s.z,s.Q,s.as,s.ax,s.at,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.Ge&&J.b(b.a,s.a)&&J.b(b.b,s.b)&&J.b(b.c,s.c)&&J.b(b.d,s.d)&&J.b(b.e,s.e)&&J.b(b.f,s.f)&&J.b(b.r,s.r)&&J.b(b.w,s.w)&&J.b(b.y,s.y)&&J.b(b.x,s.x)&&J.b(b.z,s.z)&&J.b(b.Q,s.Q)&&J.b(b.as,s.as)&&J.b(b.ax,s.ax)&&b.at==s.at}} -A.a9C.prototype={} -A.Gi.prototype={ -ah(){return new A.Gj(new A.by(null,t.cF),null,null)}, -gR(){return this.Q}} -A.Gj.prototype={ -by(){var s,r=this -r.du() -r.c.aA(t.tH) -r.e=!0 -s=r.c -s.aA(t.U4) -s=A.P(s) -r.f=s.am}, -acG(){var s,r=this.c -r.toString -s=A.P(r).w -A:{if(B.b5===s||B.bO===s||B.bP===s){r=24 -break A}if(B.as===s||B.bN===s||B.U===s){r=32 -break A}r=null}return r}, -acD(){var s,r=this.c -r.toString -s=A.P(r).w -A:{if(B.b5===s||B.bO===s||B.bP===s){r=B.eU -break A}if(B.as===s||B.bN===s||B.U===s){r=B.P0 -break A}r=null}return r}, -acF(a){var s,r -this.a.toString -s=this.f -s===$&&A.a() -r=s.e -if(r==null)r=24 -s=A.b20(a.c,10,!0,a.f,a.a,r) -return s}, -K(a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=this,a3=null,a4=A.P(a5) -A:{s=a4.ax.a -r=B.R===s -q=a3 -p=a3 -if(r){o=a4.ok -q=a4.w -p=o}else o=a3 -if(r){n=q -m=p.z -m.toString -m=new A.an(m.XR(B.r,A.aZZ(n)),new A.bm(A.ar(B.d.aY(229.5),B.l.A()>>>16&255,B.l.A()>>>8&255,B.l.A()&255),a3,a3,B.cE,a3,a3,a3,B.G)) -break A}p=a3 -m=!1 -if(B.ar===s){o=a4.ok -l=o -k=l instanceof A.er -if(k){p=o -q=a4.w -m=q -m=m instanceof A.fO}}else k=!1 -if(m){n=k?q:a4.w -m=p.z -m.toString -m=new A.an(m.XR(B.l,A.aZZ(n)),new A.bm(A.ar(B.d.aY(229.5),B.eI.A()>>>16&255,B.eI.A()>>>8&255,B.eI.A()&255),a3,a3,B.cE,a3,a3,a3,B.G)) -break A}m=a3}j=m.a -i=a3 -h=m.b -i=h -g=j -a2.a.toString -m=a2.f -m===$&&A.a() -m=m.a -f=new A.al(0,1/0,m==null?a2.acG():m,1/0) -a2.a.toString -m=a2.f -l=m.b -if(l==null)l=f -e=m.x -if(e==null)e=g -d=m.w -if(d==null)d=i -m=m.c -if(m==null)m=a2.acD() -c=a2.a -c.toString -b=a2.f.d -if(b==null)b=B.ap -a=c.c -a0=A.ef(a3,a3,a3,a3,a3,a3,a3,a3,a3,a3,a) -a1=A.ie(c.Q,B.b2,a3,a3,a3,a3) -a2.e===$&&A.a() -if(a==null)c=a3 -else c=a -if(c==null)c="" -a1=new A.DJ(c,new A.axs(a2,new A.a9D(l,e,B.aN,d,m,b,a0,a3)),B.z,B.OF,B.bi,!0,B.afs,!0,a3,a2.gacE(),a1,a2.d) -return a1}} -A.axs.prototype={ -$2(a,b){var s=this.a.a.c -return A.jK(new A.e9(b,!1,this.b,null),s!=null,null)}, -$S:286} -A.a9D.prototype={ -K(a){var s=this,r=null,q=s.d,p=s.e -return new A.dX(s.c,A.fn(A.bL(r,A.dp(new A.bW(r,s.x,q,p,r,r,r,r,r),1,1),B.v,r,r,s.f,r,r,s.w,s.r,r,r,r),r,r,B.bc,!0,q,p,r,B.al),r)}} -A.a9E.prototype={ -l(){var s=this,r=s.bu$ -if(r!=null)r.O(s.gfA()) -s.bu$=null -s.aQ()}, -bF(){this.cE() -this.cv() -this.fB()}} -A.Gk.prototype={ -gt(a){var s=this,r=null -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,r,r,r,r,r,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.Gk)if(b.a==r.a)if(J.b(b.b,r.b))if(J.b(b.c,r.c))if(J.b(b.d,r.d))if(b.e==r.e)if(J.b(b.w,r.w))s=J.b(b.x,r.x) -return s}} -A.a9F.prototype={} -A.Et.prototype={ -N(){return"ScriptCategory."+this.b}} -A.xR.prototype={ -a27(a){var s -switch(a.a){case 0:s=this.c -break -case 1:s=this.d -break -case 2:s=this.e -break -default:s=null}return s}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.xR&&b.a.j(0,s.a)&&b.b.j(0,s.b)&&b.c.j(0,s.c)&&b.d.j(0,s.d)&&b.e.j(0,s.e)}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.aa6.prototype={} -A.hk.prototype={ -k(a){var s=this -if(s.gi4()===0)return A.aQ7(s.gi5(),s.gi6()) -if(s.gi5()===0)return A.aQ6(s.gi4(),s.gi6()) -return A.aQ7(s.gi5(),s.gi6())+" + "+A.aQ6(s.gi4(),0)}, -j(a,b){if(b==null)return!1 -return b instanceof A.hk&&b.gi5()===this.gi5()&&b.gi4()===this.gi4()&&b.gi6()===this.gi6()}, -gt(a){return A.N(this.gi5(),this.gi4(),this.gi6(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.dn.prototype={ -gi5(){return this.a}, -gi4(){return 0}, -gi6(){return this.b}, -ac(a,b){return new A.dn(this.a-b.a,this.b-b.b)}, -a8(a,b){return new A.dn(this.a+b.a,this.b+b.b)}, -ak(a,b){return new A.dn(this.a*b,this.b*b)}, -ju(a){var s=a.a/2,r=a.b/2 -return new A.h(s+this.a*s,r+this.b*r)}, -A0(a){var s=a.a/2,r=a.b/2 -return new A.h(s+this.a*s,r+this.b*r)}, -a1X(a){var s=a.a,r=(a.c-s)/2,q=a.b,p=(a.d-q)/2 -return new A.h(s+r+this.a*r,q+p+this.b*p)}, -af(a){return this}, -k(a){return A.aQ7(this.a,this.b)}} -A.eK.prototype={ -gi5(){return 0}, -gi4(){return this.a}, -gi6(){return this.b}, -ac(a,b){return new A.eK(this.a-b.a,this.b-b.b)}, -a8(a,b){return new A.eK(this.a+b.a,this.b+b.b)}, -ak(a,b){return new A.eK(this.a*b,this.b*b)}, -af(a){var s,r=this -switch(a.a){case 0:s=new A.dn(-r.a,r.b) -break -case 1:s=new A.dn(r.a,r.b) -break -default:s=null}return s}, -k(a){return A.aQ6(this.a,this.b)}} -A.Ix.prototype={ -ak(a,b){return new A.Ix(this.a*b,this.b*b,this.c*b)}, -af(a){var s,r=this -switch(a.a){case 0:s=new A.dn(r.a-r.b,r.c) -break -case 1:s=new A.dn(r.a+r.b,r.c) -break -default:s=null}return s}, -gi5(){return this.a}, -gi4(){return this.b}, -gi6(){return this.c}} -A.YF.prototype={ -k(a){return"TextAlignVertical(y: "+this.a+")"}} -A.DU.prototype={ -N(){return"RenderComparison."+this.b}} -A.MA.prototype={ -N(){return"Axis."+this.b}} -A.Z9.prototype={ -N(){return"VerticalDirection."+this.b}} -A.uJ.prototype={ -N(){return"AxisDirection."+this.b}} -A.apl.prototype={} -A.a94.prototype={ -a7(){var s,r,q -for(s=this.a,s=A.cl(s,s.r,A.n(s).c),r=s.$ti.c;s.v();){q=s.d;(q==null?r.a(q):q).$0()}}, -a9(a){this.a.G(0,a)}, -O(a){this.a.J(0,a)}} -A.A8.prototype={ -E2(a){var s=this -return new A.Iy(s.ghi().ac(0,a.ghi()),s.gjn().ac(0,a.gjn()),s.gji().ac(0,a.gji()),s.gk6().ac(0,a.gk6()),s.ghj().ac(0,a.ghj()),s.gjm().ac(0,a.gjm()),s.gk7().ac(0,a.gk7()),s.gjh().ac(0,a.gjh()))}, -G(a,b){var s=this -return new A.Iy(s.ghi().a8(0,b.ghi()),s.gjn().a8(0,b.gjn()),s.gji().a8(0,b.gji()),s.gk6().a8(0,b.gk6()),s.ghj().a8(0,b.ghj()),s.gjm().a8(0,b.gjm()),s.gk7().a8(0,b.gk7()),s.gjh().a8(0,b.gjh()))}, -k(a){var s,r,q,p,o=this,n="BorderRadius.only(",m="BorderRadiusDirectional.only(" -if(o.ghi().j(0,o.gjn())&&o.gjn().j(0,o.gji())&&o.gji().j(0,o.gk6()))if(!o.ghi().j(0,B.H))s=o.ghi().a===o.ghi().b?"BorderRadius.circular("+B.d.aq(o.ghi().a,1)+")":"BorderRadius.all("+o.ghi().k(0)+")" -else s=null -else{r=!o.ghi().j(0,B.H) -q=r?n+("topLeft: "+o.ghi().k(0)):n -if(!o.gjn().j(0,B.H)){if(r)q+=", " -q+="topRight: "+o.gjn().k(0) -r=!0}if(!o.gji().j(0,B.H)){if(r)q+=", " -q+="bottomLeft: "+o.gji().k(0) -r=!0}if(!o.gk6().j(0,B.H)){if(r)q+=", " -q+="bottomRight: "+o.gk6().k(0)}q+=")" -s=q.charCodeAt(0)==0?q:q}if(o.ghj().j(0,o.gjm())&&o.gjm().j(0,o.gjh())&&o.gjh().j(0,o.gk7()))if(!o.ghj().j(0,B.H))p=o.ghj().a===o.ghj().b?"BorderRadiusDirectional.circular("+B.d.aq(o.ghj().a,1)+")":"BorderRadiusDirectional.all("+o.ghj().k(0)+")" -else p=null -else{r=!o.ghj().j(0,B.H) -q=r?m+("topStart: "+o.ghj().k(0)):m -if(!o.gjm().j(0,B.H)){if(r)q+=", " -q+="topEnd: "+o.gjm().k(0) -r=!0}if(!o.gk7().j(0,B.H)){if(r)q+=", " -q+="bottomStart: "+o.gk7().k(0) -r=!0}if(!o.gjh().j(0,B.H)){if(r)q+=", " -q+="bottomEnd: "+o.gjh().k(0)}q+=")" -p=q.charCodeAt(0)==0?q:q}q=s==null -if(!q&&p!=null)return s+" + "+p -q=q?p:s -return q==null?"BorderRadius.zero":q}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.A8&&b.ghi().j(0,s.ghi())&&b.gjn().j(0,s.gjn())&&b.gji().j(0,s.gji())&&b.gk6().j(0,s.gk6())&&b.ghj().j(0,s.ghj())&&b.gjm().j(0,s.gjm())&&b.gk7().j(0,s.gk7())&&b.gjh().j(0,s.gjh())}, -gt(a){var s=this -return A.N(s.ghi(),s.gjn(),s.gji(),s.gk6(),s.ghj(),s.gjm(),s.gk7(),s.gjh(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.ch.prototype={ -ghi(){return this.a}, -gjn(){return this.b}, -gji(){return this.c}, -gk6(){return this.d}, -ghj(){return B.H}, -gjm(){return B.H}, -gk7(){return B.H}, -gjh(){return B.H}, -e5(a){var s=this,r=s.a.hl(0,B.H),q=s.b.hl(0,B.H) -return A.aRF(a,s.c.hl(0,B.H),s.d.hl(0,B.H),r,q)}, -tt(a){var s,r,q,p,o=this,n=o.a.hl(0,B.H),m=o.b.hl(0,B.H),l=o.c.hl(0,B.H),k=o.d.hl(0,B.H),j=n.a -n=n.b -s=m.a -m=m.b -r=l.a -l=l.b -q=k.a -k=k.b -p=j===s&&n===m&&j===r&&n===l&&j===q&&n===k -return new A.rG(p,a.a,a.b,a.c,a.d,j,n,s,m,q,k,r,l)}, -E2(a){if(a instanceof A.ch)return this.ac(0,a) -return this.a40(a)}, -G(a,b){if(b instanceof A.ch)return this.a8(0,b) -return this.a4_(0,b)}, -ac(a,b){var s=this -return new A.ch(s.a.ac(0,b.a),s.b.ac(0,b.b),s.c.ac(0,b.c),s.d.ac(0,b.d))}, -a8(a,b){var s=this -return new A.ch(s.a.a8(0,b.a),s.b.a8(0,b.b),s.c.a8(0,b.c),s.d.a8(0,b.d))}, -ak(a,b){var s=this -return new A.ch(s.a.ak(0,b),s.b.ak(0,b),s.c.ak(0,b),s.d.ak(0,b))}, -d7(a,b){var s=this -return new A.ch(s.a.d7(0,b),s.b.d7(0,b),s.c.d7(0,b),s.d.d7(0,b))}, -af(a){return this}} -A.Iy.prototype={ -ak(a,b){var s=this -return new A.Iy(s.a.ak(0,b),s.b.ak(0,b),s.c.ak(0,b),s.d.ak(0,b),s.e.ak(0,b),s.f.ak(0,b),s.r.ak(0,b),s.w.ak(0,b))}, -af(a){var s=this -switch(a.a){case 0:return new A.ch(s.a.a8(0,s.f),s.b.a8(0,s.e),s.c.a8(0,s.w),s.d.a8(0,s.r)) -case 1:return new A.ch(s.a.a8(0,s.e),s.b.a8(0,s.f),s.c.a8(0,s.r),s.d.a8(0,s.w))}}, -ghi(){return this.a}, -gjn(){return this.b}, -gji(){return this.c}, -gk6(){return this.d}, -ghj(){return this.e}, -gjm(){return this.f}, -gk7(){return this.r}, -gjh(){return this.w}} -A.MP.prototype={ -N(){return"BorderStyle."+this.b}} -A.bl.prototype={ -bi(a){var s=Math.max(0,this.b*a),r=a<=0?B.aW:this.c -return new A.bl(this.a,s,r,-1)}, -hR(){switch(this.c.a){case 1:$.ab() -var s=A.bt() -s.r=this.a.gp() -s.c=this.b -s.b=B.bK -return s -case 0:$.ab() -s=A.bt() -s.r=B.D.gp() -s.c=0 -s.b=B.bK -return s}}, -gek(){return this.b*(1-(1+this.d)/2)}, -goz(){return this.b*(1+this.d)/2}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.bl&&b.a.j(0,s.a)&&b.b===s.b&&b.c===s.c&&b.d===s.d}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -dk(){return"BorderSide"}} -A.cj.prototype={ -jq(a,b,c){return null}, -G(a,b){return this.jq(0,b,!1)}, -a8(a,b){var s=this.G(0,b) -if(s==null)s=b.jq(0,this,!0) -return s==null?new A.jg(A.c([b,this],t.N_)):s}, -dW(a,b){if(a==null)return this.bi(b) -return null}, -dX(a,b){if(a==null)return this.bi(1-b) -return null}, -ir(a,b,c,d){}, -ghv(){return!1}, -k(a){return"ShapeBorder()"}} -A.dG.prototype={ -gkh(){var s=Math.max(this.a.gek(),0) -return new A.a2(s,s,s,s)}, -dW(a,b){if(a==null)return this.bi(b) -return null}, -dX(a,b){if(a==null)return this.bi(1-b) -return null}} -A.jg.prototype={ -gkh(){return B.b.rR(this.a,B.ap,new A.aAC())}, -jq(a,b,c){var s,r,q,p=b instanceof A.jg -if(!p){s=this.a -r=c?B.b.gaC(s):B.b.gad(s) -q=r.jq(0,b,c) -if(q==null)q=b.jq(0,r,!c) -if(q!=null){p=A.aa(s,t.RY) -p[c?p.length-1:0]=q -return new A.jg(p)}}s=A.c([],t.N_) -if(c)B.b.a_(s,this.a) -if(p)B.b.a_(s,b.a) -else s.push(b) -if(!c)B.b.a_(s,this.a) -return new A.jg(s)}, -G(a,b){return this.jq(0,b,!1)}, -bi(a){var s=this.a,r=A.a6(s).i("am<1,cj>") -s=A.aa(new A.am(s,new A.aAE(a),r),r.i("aE.E")) -return new A.jg(s)}, -dW(a,b){return A.b_r(a,this,b)}, -dX(a,b){return A.b_r(this,a,b)}, -iA(a,b){var s,r -for(s=this.a,r=0;r") -return new A.am(new A.cu(s,r),new A.aAF(),r.i("am")).bJ(0," + ")}} -A.aAC.prototype={ -$2(a,b){return a.G(0,b.gkh())}, -$S:287} -A.aAE.prototype={ -$1(a){return a.bi(this.a)}, -$S:288} -A.aAD.prototype={ -$1(a){return a.ghv()}, -$S:289} -A.aAF.prototype={ -$1(a){return a.k(0)}, -$S:290} -A.a0Q.prototype={} -A.MU.prototype={ -N(){return"BoxShape."+this.b}} -A.MQ.prototype={ -jq(a,b,c){return null}, -G(a,b){return this.jq(0,b,!1)}, -iA(a,b){var s=A.co($.ab().r) -s.b9(new A.fF(this.gkh().af(b).Jg(a))) -return s}, -fd(a,b){var s=A.co($.ab().r) -s.b9(new A.fF(a)) -return s}, -ir(a,b,c,d){a.h_(b,c)}, -ghv(){return!0}} -A.dV.prototype={ -gkh(){var s=this -return new A.a2(s.d.gek(),s.a.gek(),s.b.gek(),s.c.gek())}, -ga_K(){var s,r,q=this,p=q.a,o=p.a,n=q.d,m=!1 -if(n.a.j(0,o)&&q.c.a.j(0,o)&&q.b.a.j(0,o)){s=p.b -if(n.b===s&&q.c.b===s&&q.b.b===s)if(q.guX()){r=p.d -p=n.d===r&&q.c.d===r&&q.b.d===r}else p=m -else p=m}else p=m -return p}, -guX(){var s=this,r=s.a.c -return s.d.c===r&&s.c.c===r&&s.b.c===r}, -jq(a,b,c){var s=this -if(b instanceof A.dV&&A.lG(s.a,b.a)&&A.lG(s.b,b.b)&&A.lG(s.c,b.c)&&A.lG(s.d,b.d))return new A.dV(A.jx(s.a,b.a),A.jx(s.b,b.b),A.jx(s.c,b.c),A.jx(s.d,b.d)) -return null}, -G(a,b){return this.jq(0,b,!1)}, -bi(a){var s=this -return new A.dV(s.a.bi(a),s.b.bi(a),s.c.bi(a),s.d.bi(a))}, -dW(a,b){if(a instanceof A.dV)return A.aQc(a,this,b) -return this.Em(a,b)}, -dX(a,b){if(a instanceof A.dV)return A.aQc(this,a,b) -return this.En(a,b)}, -wC(a,b,c,d,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this -if(e.ga_K()){s=e.a -switch(s.c.a){case 0:return -case 1:switch(d.a){case 1:A.aUY(a,b,s) -break -case 0:if(c!=null&&!c.j(0,B.ah)){A.aUZ(a,b,s,c) -return}A.aV_(a,b,s) -break}return}}if(e.guX()&&e.a.c===B.aW)return -s=A.aU(t.G) -r=e.a -q=r.c -p=q===B.aW -if(!p)s.G(0,r.a) -o=e.b -n=o.c -m=n===B.aW -if(!m)s.G(0,o.a) -l=e.c -k=l.c -j=k===B.aW -if(!j)s.G(0,l.a) -i=e.d -h=i.c -g=h===B.aW -if(!g)s.G(0,i.a) -f=!0 -if(!(q===B.F&&r.b===0))if(!(n===B.F&&o.b===0)){if(!(k===B.F&&l.b===0))q=h===B.F&&i.b===0 -else q=f -f=q}q=!1 -if(s.a===1)if(!f)if(d!==B.bT)q=c!=null&&!c.j(0,B.ah) -else q=!0 -if(q){if(p)r=B.x -q=m?B.x:o -p=j?B.x:l -o=g?B.x:i -A.aQd(a,b,c,p,s.gad(0),o,q,d,a0,r) -return}A.b1V(a,b,l,i,o,r)}, -iq(a,b,c){return this.wC(a,b,null,B.G,c)}, -awO(a,b,c,d){return this.wC(a,b,c,B.G,d)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.dV&&b.a.j(0,s.a)&&b.b.j(0,s.b)&&b.c.j(0,s.c)&&b.d.j(0,s.d)}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s,r,q=this -if(q.ga_K())return"Border.all("+q.a.k(0)+")" -s=A.c([],t.s) -r=q.a -if(!r.j(0,B.x))s.push("top: "+r.k(0)) -r=q.b -if(!r.j(0,B.x))s.push("right: "+r.k(0)) -r=q.c -if(!r.j(0,B.x))s.push("bottom: "+r.k(0)) -r=q.d -if(!r.j(0,B.x))s.push("left: "+r.k(0)) -return"Border("+B.b.bJ(s,", ")+")"}, -gM9(){return this.a}} -A.fi.prototype={ -gkh(){var s=this -return new A.dt(s.b.gek(),s.a.gek(),s.c.gek(),s.d.gek())}, -guX(){var s=this,r=s.a.c -return s.b.c===r&&s.d.c===r&&s.c.c===r}, -jq(a,b,c){var s,r,q,p=this,o=null -if(b instanceof A.fi){s=p.a -r=b.a -if(A.lG(s,r)&&A.lG(p.b,b.b)&&A.lG(p.c,b.c)&&A.lG(p.d,b.d))return new A.fi(A.jx(s,r),A.jx(p.b,b.b),A.jx(p.c,b.c),A.jx(p.d,b.d)) -return o}if(b instanceof A.dV){s=b.a -r=p.a -if(!A.lG(s,r)||!A.lG(b.c,p.d))return o -q=p.b -if(!q.j(0,B.x)||!p.c.j(0,B.x)){if(!b.d.j(0,B.x)||!b.b.j(0,B.x))return o -return new A.fi(A.jx(s,r),q,p.c,A.jx(b.c,p.d))}return new A.dV(A.jx(s,r),b.b,A.jx(b.c,p.d),b.d)}return o}, -G(a,b){return this.jq(0,b,!1)}, -bi(a){var s=this -return new A.fi(s.a.bi(a),s.b.bi(a),s.c.bi(a),s.d.bi(a))}, -dW(a,b){if(a instanceof A.fi)return A.aQb(a,this,b) -return this.Em(a,b)}, -dX(a,b){if(a instanceof A.fi)return A.aQb(this,a,b) -return this.En(a,b)}, -wC(a2,a3,a4,a5,a6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=d.a,b=c.a,a=d.b,a0=a.a,a1=!1 -if(a0.j(0,b)&&d.d.a.j(0,b)&&d.c.a.j(0,b)){s=c.b -if(a.b===s&&d.d.b===s&&d.c.b===s)if(d.guX()){r=c.d -a1=a.d===r&&d.d.d===r&&d.c.d===r}}if(a1)switch(c.c.a){case 0:return -case 1:switch(a5.a){case 1:A.aUY(a2,a3,c) -break -case 0:if(a4!=null&&!a4.j(0,B.ah)){A.aUZ(a2,a3,c,a4) -return}A.aV_(a2,a3,c) -break}return}if(d.guX()&&c.c===B.aW)return -switch(a6.a){case 0:a1=new A.an(d.c,a) -break -case 1:a1=new A.an(a,d.c) -break -default:a1=null}q=a1.a -p=null -o=a1.b -p=o -n=q -a1=A.aU(t.G) -m=c.c -l=m===B.aW -if(!l)a1.G(0,b) -k=d.c -j=k.c -if(j!==B.aW)a1.G(0,k.a) -i=d.d -h=i.c -g=h===B.aW -if(!g)a1.G(0,i.a) -f=a.c -if(f!==B.aW)a1.G(0,a0) -e=!0 -if(!(m===B.F&&c.b===0))if(!(j===B.F&&k.b===0)){if(!(h===B.F&&i.b===0))a=f===B.F&&a.b===0 -else a=e -e=a}a=!1 -if(a1.a===1)if(!e)if(a5!==B.bT)a=a4!=null&&!a4.j(0,B.ah) -else a=!0 -if(a){if(l)c=B.x -a=p.c===B.aW?B.x:p -a0=g?B.x:i -m=n.c===B.aW?B.x:n -A.aQd(a2,a3,a4,a0,a1.gad(0),m,a,a5,a6,c) -return}A.b1V(a2,a3,i,n,p,c)}, -iq(a,b,c){return this.wC(a,b,null,B.G,c)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.fi&&b.a.j(0,s.a)&&b.b.j(0,s.b)&&b.c.j(0,s.c)&&b.d.j(0,s.d)}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=this,r=A.c([],t.s),q=s.a -if(!q.j(0,B.x))r.push("top: "+q.k(0)) -q=s.b -if(!q.j(0,B.x))r.push("start: "+q.k(0)) -q=s.c -if(!q.j(0,B.x))r.push("end: "+q.k(0)) -q=s.d -if(!q.j(0,B.x))r.push("bottom: "+q.k(0)) -return"BorderDirectional("+B.b.bJ(r,", ")+")"}, -gM9(){return this.a}} -A.bm.prototype={ -gcH(){var s=this.c -s=s==null?null:s.gkh() -return s==null?B.ap:s}, -Dp(a,b){var s,r,q -switch(this.w.a){case 1:s=A.oo(a.gbp(),a.gft()/2) -r=A.co($.ab().r) -r.b9(new A.lD(s)) -return r -case 0:r=this.d -if(r!=null){q=A.co($.ab().r) -q.b9(new A.fh(r.af(b).e5(a))) -return q}r=A.co($.ab().r) -r.b9(new A.fF(a)) -return r}}, -bi(a){var s=this,r=null,q=A.k(r,s.a,a),p=A.afd(r,s.b,a),o=A.ada(r,s.c,a),n=A.fj(r,s.d,a),m=A.aQe(r,s.e,a),l=s.f -l=l==null?r:l.bi(a) -return new A.bm(q,p,o,n,m,l,r,s.w)}, -gBO(){return this.e!=null}, -dW(a,b){var s -A:{if(a==null){s=this.bi(b) -break A}if(a instanceof A.bm){s=A.aV0(a,this,b) -break A}s=this.NN(a,b) -break A}return s}, -dX(a,b){var s -A:{if(a==null){s=this.bi(1-b) -break A}if(a instanceof A.bm){s=A.aV0(this,a,b) -break A}s=this.NO(a,b) -break A}return s}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.bm)if(J.b(b.a,r.a))if(J.b(b.b,r.b))if(J.b(b.c,r.c))if(J.b(b.d,r.d))if(A.cV(b.e,r.e))if(J.b(b.f,r.f))s=b.w===r.w -return s}, -gt(a){var s=this,r=s.e -r=r==null?null:A.bh(r) -return A.N(s.a,s.b,s.c,s.d,r,s.f,s.r,s.w,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -KJ(a,b,c){var s -switch(this.w.a){case 0:s=this.d -if(s!=null)return s.af(c).e5(new A.w(0,0,0+a.a,0+a.b)).q(0,b) -return!0 -case 1:return b.ac(0,a.lW(B.f)).gd3()<=Math.min(a.a,a.b)/2}}, -J5(a){return new A.azN(this,a)}} -A.azN.prototype={ -SU(a,b,c,d){var s=this.b -switch(s.w.a){case 1:a.nI(b.gbp(),b.gft()/2,c) -break -case 0:s=s.d -if(s==null||s.j(0,B.ah))a.h_(b,c) -else a.eL(s.af(d).e5(b),c) -break}}, -ajc(a,b,c){var s,r,q,p,o,n,m=this.b.e -if(m==null)return -for(s=m.length,r=0;r0?o*0.57735+0.5:0 -p.z=new A.w7(q.e,o) -o=b.e0(q.b) -n=q.d -this.SU(a,new A.w(o.a-n,o.b-n,o.c+n,o.d+n),p,c)}}, -n5(a){if(a.a.ger()===255&&a.c===B.F)return a.gek() -return 0}, -a9_(a,b){var s,r,q,p,o=this,n=o.b.c -if(n==null)return a -if(n instanceof A.dV){s=new A.a2(o.n5(n.d),o.n5(n.a),o.n5(n.b),o.n5(n.c)).d7(0,2) -return new A.w(a.a+s.a,a.b+s.b,a.c-s.c,a.d-s.d)}else if(n instanceof A.fi&&b!=null){r=b===B.aj -q=r?n.c:n.b -p=r?n.b:n.c -s=new A.a2(o.n5(q),o.n5(n.a),o.n5(p),o.n5(n.d)).d7(0,2) -return new A.w(a.a+s.a,a.b+s.b,a.c-s.c,a.d-s.d)}return a}, -aj5(a,b,c){var s,r,q=this,p=q.b,o=p.b -if(o==null)return -if(q.e==null)q.e=o.Au(q.a) -s=null -switch(p.w.a){case 1:r=A.oo(b.gbp(),b.gft()/2) -s=A.co($.ab().r) -s.b9(new A.lD(r)) -break -case 0:p=p.d -if(p!=null){s=A.co($.ab().r) -s.b9(new A.fh(p.af(c.d).e5(b)))}break}q.e.t9(a,b,s,c)}, -l(){var s=this.e -if(s!=null)s.l() -this.NJ()}, -li(a,b,c){var s,r,q,p=this,o=c.e,n=b.a,m=b.b,l=new A.w(n,m,n+o.a,m+o.b),k=c.d -p.ajc(a,l,k) -o=p.b -n=o.a -m=n==null -if(!m||o.f!=null){s=p.a9_(l,k) -if(p.c!=null)r=o.f!=null&&!J.b(p.d,l) -else r=!0 -if(r){$.ab() -q=A.bt() -if(!m)q.r=n.gp() -n=o.f -if(n!=null){q.sDN(n.Y4(l,k)) -p.d=l}p.c=q}n=p.c -n.toString -p.SU(a,s,n,k)}p.aj5(a,l,c) -n=o.c -if(n!=null){m=o.d -m=m==null?null:m.af(k) -n.wC(a,l,m,o.w,k)}}, -k(a){return"BoxPainter for "+this.b.k(0)}} -A.cm.prototype={ -hR(){$.ab() -var s=A.bt() -s.r=this.a.gp() -s.z=new A.w7(this.e,A.baY(this.c)) -return s}, -bi(a){var s=this -return new A.cm(s.d*a,s.e,s.a,s.b.ak(0,a),s.c*a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.cm&&b.a.j(0,s.a)&&b.b.j(0,s.b)&&b.c===s.c&&b.d===s.d&&b.e===s.e}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=this -return"BoxShadow("+s.a.k(0)+", "+s.b.k(0)+", "+A.kl(s.c)+", "+A.kl(s.d)+", "+s.e.k(0)+")"}} -A.e5.prototype={ -bi(a){return new A.e5(this.b,this.a.bi(a))}, -dW(a,b){var s,r -if(a instanceof A.e5){s=A.bb(a.a,this.a,b) -r=A.Y(a.b,this.b,b) -r.toString -return new A.e5(A.E(r,0,1),s)}return this.oD(a,b)}, -dX(a,b){var s,r -if(a instanceof A.e5){s=A.bb(this.a,a.a,b) -r=A.Y(this.b,a.b,b) -r.toString -return new A.e5(A.E(r,0,1),s)}return this.oE(a,b)}, -iA(a,b){var s=A.co($.ab().r) -s.b9(new A.lD(this.y3(a).d5(-this.a.gek()))) -return s}, -fd(a,b){var s=A.co($.ab().r) -s.b9(new A.lD(this.y3(a))) -return s}, -ir(a,b,c,d){if(this.b===0)a.nI(b.gbp(),b.gft()/2,c) -else a.YH(this.y3(b),c)}, -ghv(){return!0}, -m_(a){var s=a==null?this.a:a -return new A.e5(this.b,s)}, -iq(a,b,c){var s,r=this.a -switch(r.c.a){case 0:break -case 1:s=r.b*r.d -if(this.b===0)a.nI(b.gbp(),(b.gft()+s)/2,r.hR()) -else a.YH(this.y3(b).d5(s/2),r.hR()) -break}}, -y3(a){var s,r,q,p,o,n,m,l=this.b -if(l===0||a.c-a.a===a.d-a.b)return A.oo(a.gbp(),a.gft()/2) -s=a.c -r=a.a -q=s-r -p=a.d -o=a.b -n=p-o -l=1-l -if(q").b(b)&&A.uo(b.f,s.f)}, -gt(a){return A.N(A.l(this),this.A(),this.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"ColorSwatch(primary value: "+this.a45(0)+")"}} -A.iW.prototype={ -dk(){return"Decoration"}, -gcH(){return B.ap}, -gBO(){return!1}, -dW(a,b){return null}, -dX(a,b){return null}, -KJ(a,b,c){return!0}, -Dp(a,b){throw A.i(A.c2("This Decoration subclass does not expect to be used for clipping."))}} -A.MS.prototype={ -l(){}} -A.a1Q.prototype={} -A.a0N.prototype={ -Au(a){var s,r=this.a -r=r==null?null:r.Au(a) -s=this.b -s=s==null?null:s.Au(a) -return new A.azK(r,s,this.c)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.a0N&&J.b(b.a,s.a)&&J.b(b.b,s.b)&&b.c===s.c}, -gt(a){return A.N(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"_BlendedDecorationImage("+A.j(this.a)+", "+A.j(this.b)+", "+A.j(this.c)+")"}} -A.azK.prototype={ -LB(a,b,c,d,e,f){var s,r,q=this -$.ab() -a.hW(null,A.bt()) -s=q.a -r=s==null -if(!r)s.LB(a,b,c,d,e*(1-q.c),f) -s=q.b -if(s!=null){r=!r?B.Ky:f -s.LB(a,b,c,d,e*q.c,r)}a.a.restore()}, -t9(a,b,c,d){return this.LB(a,b,c,d,1,B.c8)}, -l(){var s=this.a -if(s!=null)s.l() -s=this.b -if(s!=null)s.l()}, -k(a){return"_BlendedDecorationImagePainter("+A.j(this.a)+", "+A.j(this.b)+", "+A.j(this.c)+")"}} -A.dh.prototype={ -gfo(){var s=this -return s.gfQ()+s.gfR()+s.gi_()+s.gi0()}, -aoy(a){var s -switch(a.a){case 0:s=this.gfo() -break -case 1:s=this.gcR()+this.gcX() -break -default:s=null}return s}, -G(a,b){var s=this -return new A.p9(s.gfQ()+b.gfQ(),s.gfR()+b.gfR(),s.gi_()+b.gi_(),s.gi0()+b.gi0(),s.gcR()+b.gcR(),s.gcX()+b.gcX())}, -eX(a,b,c){var s=this -return new A.p9(A.E(s.gfQ(),b.a,c.a),A.E(s.gfR(),b.c,c.b),A.E(s.gi_(),0,c.c),A.E(s.gi0(),0,c.d),A.E(s.gcR(),b.b,c.e),A.E(s.gcX(),b.d,c.f))}, -k(a){var s=this -if(s.gi_()===0&&s.gi0()===0){if(s.gfQ()===0&&s.gfR()===0&&s.gcR()===0&&s.gcX()===0)return"EdgeInsets.zero" -if(s.gfQ()===s.gfR()&&s.gfR()===s.gcR()&&s.gcR()===s.gcX())return"EdgeInsets.all("+B.d.aq(s.gfQ(),1)+")" -return"EdgeInsets("+B.d.aq(s.gfQ(),1)+", "+B.d.aq(s.gcR(),1)+", "+B.d.aq(s.gfR(),1)+", "+B.d.aq(s.gcX(),1)+")"}if(s.gfQ()===0&&s.gfR()===0)return"EdgeInsetsDirectional("+B.d.aq(s.gi_(),1)+", "+B.d.aq(s.gcR(),1)+", "+B.d.aq(s.gi0(),1)+", "+B.d.aq(s.gcX(),1)+")" -return"EdgeInsets("+B.d.aq(s.gfQ(),1)+", "+B.d.aq(s.gcR(),1)+", "+B.d.aq(s.gfR(),1)+", "+B.d.aq(s.gcX(),1)+") + EdgeInsetsDirectional("+B.d.aq(s.gi_(),1)+", 0.0, "+B.d.aq(s.gi0(),1)+", 0.0)"}, -j(a,b){var s=this -if(b==null)return!1 -return b instanceof A.dh&&b.gfQ()===s.gfQ()&&b.gfR()===s.gfR()&&b.gi_()===s.gi_()&&b.gi0()===s.gi0()&&b.gcR()===s.gcR()&&b.gcX()===s.gcX()}, -gt(a){var s=this -return A.N(s.gfQ(),s.gfR(),s.gi_(),s.gi0(),s.gcR(),s.gcX(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a2.prototype={ -gfQ(){return this.a}, -gcR(){return this.b}, -gfR(){return this.c}, -gcX(){return this.d}, -gi_(){return 0}, -gi0(){return 0}, -KM(a){var s=this -return new A.w(a.a-s.a,a.b-s.b,a.c+s.c,a.d+s.d)}, -Jg(a){var s=this -return new A.w(a.a+s.a,a.b+s.b,a.c-s.c,a.d-s.d)}, -G(a,b){if(b instanceof A.a2)return this.a8(0,b) -return this.NR(0,b)}, -eX(a,b,c){var s=this -return new A.a2(A.E(s.a,b.a,c.a),A.E(s.b,b.b,c.e),A.E(s.c,b.c,c.b),A.E(s.d,b.d,c.f))}, -ac(a,b){var s=this -return new A.a2(s.a-b.a,s.b-b.b,s.c-b.c,s.d-b.d)}, -a8(a,b){var s=this -return new A.a2(s.a+b.a,s.b+b.b,s.c+b.c,s.d+b.d)}, -ak(a,b){var s=this -return new A.a2(s.a*b,s.b*b,s.c*b,s.d*b)}, -d7(a,b){var s=this -return new A.a2(s.a/b,s.b/b,s.c/b,s.d/b)}, -af(a){return this}, -ny(a,b,c,d){var s=this,r=b==null?s.a:b,q=d==null?s.b:d,p=c==null?s.c:c -return new A.a2(r,q,p,a==null?s.d:a)}, -Am(a){return this.ny(a,null,null,null)}, -aqx(a){return this.ny(null,null,null,a)}, -aqA(a,b){return this.ny(a,null,null,b)}, -aqH(a,b){return this.ny(null,a,b,null)}} -A.dt.prototype={ -gi_(){return this.a}, -gcR(){return this.b}, -gi0(){return this.c}, -gcX(){return this.d}, -gfQ(){return 0}, -gfR(){return 0}, -G(a,b){if(b instanceof A.dt)return this.a8(0,b) -return this.NR(0,b)}, -ac(a,b){var s=this -return new A.dt(s.a-b.a,s.b-b.b,s.c-b.c,s.d-b.d)}, -a8(a,b){var s=this -return new A.dt(s.a+b.a,s.b+b.b,s.c+b.c,s.d+b.d)}, -ak(a,b){var s=this -return new A.dt(s.a*b,s.b*b,s.c*b,s.d*b)}, -af(a){var s,r=this -switch(a.a){case 0:s=new A.a2(r.c,r.b,r.a,r.d) -break -case 1:s=new A.a2(r.a,r.b,r.c,r.d) -break -default:s=null}return s}} -A.p9.prototype={ -ak(a,b){var s=this -return new A.p9(s.a*b,s.b*b,s.c*b,s.d*b,s.e*b,s.f*b)}, -af(a){var s,r=this -switch(a.a){case 0:s=new A.a2(r.d+r.a,r.e,r.c+r.b,r.f) -break -case 1:s=new A.a2(r.c+r.a,r.e,r.d+r.b,r.f) -break -default:s=null}return s}, -gfQ(){return this.a}, -gfR(){return this.b}, -gi_(){return this.c}, -gi0(){return this.d}, -gcR(){return this.e}, -gcX(){return this.f}} -A.aAB.prototype={} -A.aO8.prototype={ -$1(a){return a<=this.a}, -$S:291} -A.aNF.prototype={ -$1(a){var s=this,r=A.k(A.b14(s.a,s.b,a),A.b14(s.c,s.d,a),s.e) -r.toString -return r}, -$S:292} -A.ajb.prototype={ -Gn(){var s,r,q,p=this.b -if(p!=null)return p -p=this.a.length -s=1/(p-1) -r=J.aR9(p,t.i) -for(q=0;q") -r=A.aa(new A.am(r,new A.al3(a),q),q.i("aE.E")) -return new A.ia(s.d,s.e,s.f,r,s.b,s.c)}, -dW(a,b){var s=A.aWE(a,this,b) -return s}, -dX(a,b){var s=A.aWE(this,a,b) -return s}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.ia&&b.d.j(0,s.d)&&b.e.j(0,s.e)&&b.f===s.f&&A.cV(b.a,s.a)&&A.cV(b.b,s.b)}, -gt(a){var s=this,r=A.bh(s.a),q=s.b -q=q==null?null:A.bh(q) -return A.N(s.d,s.e,s.f,s.c,r,q,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=this,r=A.c(["begin: "+s.d.k(0),"end: "+s.e.k(0),"colors: "+A.j(s.a)],t.s),q=s.b -if(q!=null)r.push("stops: "+A.j(q)) -r.push("tileMode: "+s.f.k(0)) -return"LinearGradient("+B.b.bJ(r,", ")+")"}} -A.al3.prototype={ -$1(a){var s=A.k(null,a,this.a) -s.toString -return s}, -$S:72} -A.ak0.prototype={ -aa(a){var s,r -for(s=this.b,r=new A.db(s,s.r,s.e);r.v();)r.d.l() -s.aa(0) -for(s=this.a,r=new A.db(s,s.r,s.e);r.v();)r.d.azX() -s.aa(0)}, -aN(a){this.a.h(0,a) -this.b.h(0,a) -return!1}} -A.C0.prototype={ -XN(a){var s=this -return new A.C0(s.a,s.b,s.c,s.d,a,s.f)}, -j(a,b){var s=this -if(b==null)return!1 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.C0&&b.a==s.a&&b.b==s.b&&J.b(b.c,s.c)&&b.d==s.d&&J.b(b.e,s.e)&&b.f==s.f}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.e,s.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s,r=this,q="ImageConfiguration(",p=r.a,o=p!=null -p=o?q+("bundle: "+p.k(0)):q -s=r.b -if(s!=null){if(o)p+=", " -s=p+("devicePixelRatio: "+B.d.aq(s,1)) -p=s -o=!0}s=r.c -if(s!=null){if(o)p+=", " -s=p+("locale: "+s.k(0)) -p=s -o=!0}s=r.d -if(s!=null){if(o)p+=", " -s=p+("textDirection: "+s.k(0)) -p=s -o=!0}s=r.e -if(s!=null){if(o)p+=", " -s=p+("size: "+s.k(0)) -p=s -o=!0}s=r.f -if(s!=null){if(o)p+=", " -s=p+("platform: "+s.b) -p=s}p+=")" -return p.charCodeAt(0)==0?p:p}} -A.Mh.prototype={} -A.ma.prototype={ -j(a,b){var s=this -if(b==null)return!1 -return b instanceof A.ma&&b.a===s.a&&b.b==s.b&&b.e===s.e&&A.cV(b.r,s.r)}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=this -return"InlineSpanSemanticsInformation{text: "+s.a+", semanticsLabel: "+A.j(s.b)+", semanticsIdentifier: "+A.j(s.c)+", recognizer: "+A.j(s.d)+"}"}} -A.ez.prototype={ -MQ(a){var s={} -s.a=null -this.bB(new A.aki(s,a,new A.Mh())) -return s.a}, -ob(a){var s,r=new A.cf("") -this.IP(r,!0,a) -s=r.a -return s.charCodeAt(0)==0?s:s}, -ayw(){return this.ob(!0)}, -pb(a,b){var s={} -if(b<0)return null -s.a=null -this.bB(new A.akh(s,b,new A.Mh())) -return s.a}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.ez&&J.b(b.a,this.a)}, -gt(a){return J.D(this.a)}} -A.aki.prototype={ -$1(a){var s=a.MR(this.b,this.c) -this.a.a=s -return s==null}, -$S:94} -A.akh.prototype={ -$1(a){var s=a.Xt(this.b,this.c) -this.a.a=s -return s==null}, -$S:94} -A.Ug.prototype={ -IP(a,b,c){var s=A.eV(65532) -a.a+=s}, -Ah(a){a.push(B.PW)}} -A.a56.prototype={} -A.dI.prototype={ -bi(a){var s=this.a.bi(a) -return new A.dI(this.b.ak(0,a),s)}, -dW(a,b){var s,r,q=this -if(a instanceof A.dI){s=A.bb(a.a,q.a,b) -r=A.fj(a.b,q.b,b) -r.toString -return new A.dI(r,s)}if(a instanceof A.e5){s=A.bb(a.a,q.a,b) -return new A.yX(q.b,1-b,a.b,s)}return q.oD(a,b)}, -dX(a,b){var s,r,q=this -if(a instanceof A.dI){s=A.bb(q.a,a.a,b) -r=A.fj(q.b,a.b,b) -r.toString -return new A.dI(r,s)}if(a instanceof A.e5){s=A.bb(q.a,a.a,b) -return new A.yX(q.b,b,a.b,s)}return q.oE(a,b)}, -m_(a){var s=a==null?this.a:a -return new A.dI(this.b,s)}, -iA(a,b){var s=this.b.af(b).e5(a).d5(-this.a.gek()),r=A.co($.ab().r) -r.b9(new A.fh(s)) -return r}, -a2h(a){return this.iA(a,null)}, -fd(a,b){var s=A.co($.ab().r) -s.b9(new A.fh(this.b.af(b).e5(a))) -return s}, -ir(a,b,c,d){var s=this.b -if(s.j(0,B.ah))a.h_(b,c) -else a.eL(s.af(d).e5(b),c)}, -ghv(){return!0}, -iq(a,b,c){var s,r,q,p,o=this.a -switch(o.c.a){case 0:break -case 1:s=this.b -if(o.b===0)a.eL(s.af(c).e5(b),o.hR()) -else{$.ab() -r=A.bt() -r.r=o.a.gp() -q=s.af(c).e5(b) -p=q.d5(-o.gek()) -a.JD(q.d5(o.goz()),p,r)}break}}, -j(a,b){if(b==null)return!1 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.dI&&b.a.j(0,this.a)&&b.b.j(0,this.b)}, -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"RoundedRectangleBorder("+this.a.k(0)+", "+this.b.k(0)+")"}, -gp6(){return this.b}} -A.yX.prototype={ -AQ(a,b,c,d,e){var s=c.e5(b) -a.eL(e!=null?s.d5(e):s,d)}, -YL(a,b,c,d){return this.AQ(a,b,c,d,null)}, -A9(a,b,c){var s,r=b.e5(a) -if(c!=null)r=r.d5(c) -s=A.co($.ab().r) -s.b9(new A.fh(r)) -return s}, -X8(a,b){return this.A9(a,b,null)}, -kY(a,b,c,d){var s=this,r=d==null?s.a:d,q=a==null?s.b:a,p=b==null?s.c:b -return new A.yX(q,p,c==null?s.d:c,r)}, -m_(a){return this.kY(null,null,null,a)}} -A.kV.prototype={ -bi(a){var s=this.a.bi(a) -return A.wQ(this.b.ak(0,a),s)}, -dW(a,b){var s,r=this -if(a instanceof A.kV){s=A.bb(a.a,r.a,b) -return A.wQ(A.fj(a.b,r.b,b),s)}if(a instanceof A.e5){s=A.bb(a.a,r.a,b) -return new A.yY(r.b,1-b,a.b,s)}return r.oD(a,b)}, -dX(a,b){var s,r=this -if(a instanceof A.kV){s=A.bb(r.a,a.a,b) -return A.wQ(A.fj(r.b,a.b,b),s)}if(a instanceof A.e5){s=A.bb(r.a,a.a,b) -return new A.yY(r.b,b,a.b,s)}return r.oE(a,b)}, -m_(a){var s=a==null?this.a:a -return A.wQ(this.b,s)}, -iA(a,b){var s,r=this.b,q=this.a -if(r.j(0,B.ah)){r=A.co($.ab().r) -r.b9(new A.fF(a.d5(-q.gek()))) -return r}else{s=r.af(b).tt(a).d5(-q.gek()) -r=A.co($.ab().r) -r.b9(new A.uD(s)) -return r}}, -fd(a,b){var s,r=this.b -if(r.j(0,B.ah)){r=A.co($.ab().r) -r.b9(new A.fF(a)) -return r}else{s=A.co($.ab().r) -s.b9(new A.uD(r.af(b).tt(a))) -return s}}, -ir(a,b,c,d){var s=this.b -if(s.j(0,B.ah))a.h_(b,c) -else a.JF(s.af(d).tt(b),c)}, -ghv(){return!0}, -iq(a,b,c){var s,r,q=this.a -switch(q.c.a){case 0:break -case 1:s=(q.goz()-q.gek())/2 -r=this.b -if(r.j(0,B.ah))a.h_(b.d5(s),q.hR()) -else a.JF(r.af(c).tt(b).d5(s),q.hR()) -break}}, -j(a,b){if(b==null)return!1 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.kV&&b.a.j(0,this.a)&&b.b.j(0,this.b)}, -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"RoundedSuperellipseBorder("+this.a.k(0)+", "+this.b.k(0)+")"}, -gp6(){return this.b}} -A.yY.prototype={ -AQ(a,b,c,d,e){var s=c.tt(b) -a.JF(e!=null?s.d5(e):s,d)}, -YL(a,b,c,d){return this.AQ(a,b,c,d,null)}, -A9(a,b,c){var s,r=b.tt(a) -if(c!=null)r=r.d5(c) -s=A.co($.ab().r) -s.b9(new A.uD(r)) -return s}, -X8(a,b){return this.A9(a,b,null)}, -kY(a,b,c,d){var s=this,r=d==null?s.a:d,q=a==null?s.b:a,p=b==null?s.c:b -return new A.yY(q,p,c==null?s.d:c,r)}, -m_(a){return this.kY(null,null,null,a)}} -A.ff.prototype={ -bi(a){var s=this,r=s.a.bi(a) -return s.kY(s.b.ak(0,a),a,s.d,r)}, -dW(a,b){var s,r=this,q=A.n(r) -if(q.i("ff.T").b(a)){q=A.bb(a.a,r.a,b) -return r.kY(A.fj(a.gp6(),r.b,b),r.c*b,r.d,q)}if(a instanceof A.e5){q=A.bb(a.a,r.a,b) -s=r.c -return r.kY(r.b,s+(1-s)*(1-b),a.b,q)}if(q.i("ff").b(a)){q=A.bb(a.a,r.a,b) -return r.kY(A.fj(a.b,r.b,b),A.Y(a.c,r.c,b),r.d,q)}return r.oD(a,b)}, -dX(a,b){var s,r=this,q=A.n(r) -if(q.i("ff.T").b(a)){q=A.bb(r.a,a.a,b) -return r.kY(A.fj(r.b,a.gp6(),b),r.c*(1-b),r.d,q)}if(a instanceof A.e5){q=A.bb(r.a,a.a,b) -s=r.c -return r.kY(r.b,s+(1-s)*b,a.b,q)}if(q.i("ff").b(a)){q=A.bb(r.a,a.a,b) -return r.kY(A.fj(r.b,a.b,b),A.Y(r.c,a.c,b),r.d,q)}return r.oE(a,b)}, -uS(a){var s,r,q,p,o,n,m,l,k=this.c -if(k===0||a.c-a.a===a.d-a.b)return a -s=a.c -r=a.a -q=s-r -p=a.d -o=a.b -n=p-o -m=1-this.d -if(q").b(b)&&b.a.j(0,s.a)&&b.b.j(0,s.b)&&b.c===s.c}, -gt(a){return A.N(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=this,r=s.d -if(r!==0)return A.bM(A.n(s).i("ff.T")).k(0)+"("+s.a.k(0)+", "+s.b.k(0)+", "+B.d.aq(s.c*100,1)+u.T+B.d.aq(r*100,1)+"% oval)" -return A.bM(A.n(s).i("ff.T")).k(0)+"("+s.a.k(0)+", "+s.b.k(0)+", "+B.d.aq(s.c*100,1)+"% of the way to being a CircleBorder)"}} -A.a64.prototype={} -A.a65.prototype={} -A.iw.prototype={ -Dp(a,b){return this.e.fd(a,b)}, -gcH(){return this.e.gkh()}, -gBO(){return this.d!=null}, -dW(a,b){var s -A:{if(a instanceof A.bm){s=A.avd(A.aZk(a),this,b) -break A}if(t.pg.b(a)){s=A.avd(a,this,b) -break A}s=this.NN(a,b) -break A}return s}, -dX(a,b){var s -A:{if(a instanceof A.bm){s=A.avd(this,A.aZk(a),b) -break A}if(t.pg.b(a)){s=A.avd(this,a,b) -break A}s=this.NO(a,b) -break A}return s}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.iw&&J.b(b.a,s.a)&&J.b(b.b,s.b)&&J.b(b.c,s.c)&&A.cV(b.d,s.d)&&b.e.j(0,s.e)}, -gt(a){var s=this,r=s.d -r=r==null?null:A.bh(r) -return A.N(s.a,s.b,s.c,s.e,r,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -KJ(a,b,c){var s=this.e.fd(new A.w(0,0,0+a.a,0+a.b),c).gi9().a -s===$&&A.a() -return s.a.contains(b.a,b.b)}, -J5(a){return new A.a8x(this,a)}} -A.a8x.prototype={ -ajU(a,b){var s,r,q,p=this -if(a.j(0,p.c)&&b==p.d)return -if(p.r==null){s=p.b -s=s.a!=null||s.b!=null}else s=!1 -if(s){$.ab() -s=A.bt() -p.r=s -r=p.b.a -if(r!=null)s.r=r.gp()}s=p.b -r=s.b -if(r!=null){q=p.r -q.toString -q.sDN(r.Y4(a,b))}r=s.d -if(r!=null){if(p.w==null){p.w=r.length -q=A.aa(new A.am(r,new A.aJz(),A.a6(r).i("am<1,oe>")),t.Q2) -p.z=q}if(s.e.ghv()){r=A.aa(new A.am(r,new A.aJA(a),A.a6(r).i("am<1,w>")),t.YT) -p.x=r}else{r=A.aa(new A.am(r,new A.aJB(p,a,b),A.a6(r).i("am<1,rs>")),t.ke) -p.y=r}}r=s.e -if(!r.ghv())q=p.r!=null||p.w!=null -else q=!1 -if(q)p.e=r.fd(a,b) -if(s.c!=null)p.f=r.iA(a,b) -p.c=a -p.d=b}, -alw(a,b,c){var s,r,q,p,o=this -if(o.w!=null){s=o.b.e -if(s.ghv()){r=0 -for(;;){q=o.w -q.toString -if(!(r>>0)+r+-56613888 -break A}if(56320===s){r=r.pb(0,a-1) -r.toString -r=(r<<10>>>0)+q+-56613888 -break A}r=q -break A}return r}, -alY(a,b){var s,r=this.aao(b?a-1:a),q=b?a:a-1,p=this.a.pb(0,q) -if(!(r==null||p==null||A.aSq(r)||A.aSq(p))){q=$.b3A() -s=A.eV(r) -q=!q.b.test(s)}else q=!0 -return q}, -ga06(){var s=this,r=s.c -return r===$?s.c=new A.aac(s.galX(),s):r}} -A.aac.prototype={ -fc(a){var s -if(a<0)return null -s=this.b.fc(a) -return s==null||this.a.$2(s,!1)?s:this.fc(s-1)}, -fe(a){var s=this.b.fe(Math.max(a,0)) -return s==null||this.a.$2(s,!0)?s:this.fe(s)}} -A.aKv.prototype={ -mM(a){var s -switch(a.a){case 0:s=this.c.gWD() -break -case 1:s=this.c.ga_5() -break -default:s=null}return s}, -aaA(){var s,r,q,p,o,n,m,l,k,j=this,i=j.b.gku(),h=j.c.gLk() -h=j.c.Du(h-1) -h.toString -s=i[i.length-1] -r=s.charCodeAt(0) -A:{if(9===r){q=!0 -break A}if(160===r||8199===r||8239===r){q=!1 -break A}q=$.b3R() -q=q.b.test(s) -break A}p=h.gjw() -o=A.yy(new A.aKw(j,i)) -n=null -if(q&&o.eF()!=null){m=o.eF().a -h=j.a -switch(h.a){case 1:q=m.c -break -case 0:q=m.a -break -default:q=n}l=m.d-m.b -n=q}else{q=j.a -switch(q.a){case 1:k=h.gBU()+h.gmF() -break -case 0:k=h.gBU() -break -default:k=n}l=h.gbY() -h=q -n=k}return new A.Ih(new A.h(n,p),h,l)}, -Fd(a,b,c){var s -switch(c.a){case 1:s=A.E(this.c.ga_W(),a,b) -break -case 0:s=A.E(this.c.gpT(),a,b) -break -default:s=null}return s}} -A.aKw.prototype={ -$0(){return this.a.c.qd(this.b.length-1)}, -$S:298} -A.a9k.prototype={ -gj7(){var s,r=this.d -if(r===0)return B.f -s=this.a -if(!isFinite(s.c.gmF()))return B.a3F -return new A.h(r*(this.c-s.c.gmF()),0)}, -aks(a,b,c){var s,r,q=this,p=q.c -if(b===p&&a===p){q.c=q.a.Fd(a,b,c) -return!0}if(!isFinite(q.gj7().a)&&!isFinite(q.a.c.gmF())&&isFinite(a))return!1 -p=q.a -s=p.c.gpT() -if(b!==q.b)r=p.c.gmF()-s>-1e-10&&b-s>-1e-10 -else r=!0 -if(r){q.c=p.Fd(a,b,c) -return!0}return!1}} -A.Ih.prototype={} -A.xG.prototype={ -ag(){var s=this.b -if(s!=null)s.a.c.l() -this.b=null}, -sde(a){var s,r,q,p=this -if(J.b(p.e,a))return -s=p.e -s=s==null?null:s.a -r=a==null -if(!J.b(s,r?null:a.a)){s=p.ch -if(s!=null)s.l() -p.ch=null}if(r)q=B.bL -else{s=p.e -s=s==null?null:s.bt(0,a) -q=s==null?B.bL:s}p.e=a -p.f=null -s=q.a -if(s>=3)p.ag() -else if(s>=2)p.c=!0}, -gku(){var s=this.f -if(s==null){s=this.e -s=s==null?null:s.ob(!1) -this.f=s}return s==null?"":s}, -so9(a){if(this.r===a)return -this.r=a -this.ag()}, -sce(a){var s,r=this -if(r.w==a)return -r.w=a -r.ag() -s=r.ch -if(s!=null)s.l() -r.ch=null}, -sdO(a){var s,r=this -if(a.j(0,r.x))return -r.x=a -r.ag() -s=r.ch -if(s!=null)s.l() -r.ch=null}, -sJL(a){if(this.y==a)return -this.y=a -this.ag()}, -sjN(a){if(J.b(this.z,a))return -this.z=a -this.ag()}, -snX(a){if(this.Q==a)return -this.Q=a -this.ag()}, -sk5(a){if(J.b(this.as,a))return -this.as=a -this.ag()}, -soa(a){if(this.at===a)return -this.at=a}, -stq(a){return}, -ga_d(){var s,r,q,p=this.b -if(p==null)return null -s=p.gj7() -if(!isFinite(s.a)||!isFinite(s.b))return A.c([],t.Lx) -r=p.e -if(r==null)r=p.e=p.a.c.xd() -if(s.j(0,B.f))return r -q=A.a6(r).i("am<1,eC>") -q=A.aa(new A.am(r,new A.ax6(s),q),q.i("aE.E")) -q.$flags=1 -return q}, -iC(a){if(a==null||a.length===0||A.cV(a,this.ay))return -this.ay=a -this.ag()}, -Q6(a){var s,r,q,p,o=this,n=o.e,m=n==null?null:n.a -if(m==null)m=B.en -n=a==null?o.r:a -s=o.w -r=o.x -q=o.Q -p=o.ax -return m.a2r(o.y,o.z,q,o.as,n,s,p,r)}, -aaR(){return this.Q6(null)}, -df(){var s,r,q=this,p=q.ch -if(p==null){p=q.Q6(B.dF) -$.ab() -s=A.dU().gnv()===B.d7?A.aSn(p):A.aQl(p) -p=q.e -if(p==null)r=null -else{p=p.a -r=p==null?null:p.xl(q.x)}if(r!=null)s.tc(r) -s.rf(" ") -p=s.aM() -p.hu(B.a46) -q.ch=p}return p}, -Q5(a){var s,r=this,q=r.aaR() -$.ab() -s=A.dU().gnv()===B.d7?A.aSn(q):A.aQl(q) -q=r.x -a.A6(s,r.ay,q) -r.c=!1 -return s.aM()}, -j2(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=h.b,f=g==null -if(!f&&g.aks(b,a,h.at))return -s=h.e -if(s==null)throw A.i(A.aL("TextPainter.text must be set to a non-null value before using the TextPainter.")) -r=h.w -if(r==null)throw A.i(A.aL("TextPainter.textDirection must be set to a non-null value before using the TextPainter.")) -q=A.aZQ(h.r,r) -if(!(!isFinite(a)&&q!==0))p=a -else p=f?null:g.a.c.gpT() -o=p==null -n=o?a:p -m=f?null:g.a.c -if(m==null)m=h.Q5(s) -m.hu(new A.og(n)) -l=new A.aKv(r,h,m) -k=l.Fd(b,a,h.at) -if(o&&isFinite(b)){j=m.gpT() -m.hu(new A.og(j)) -i=new A.a9k(l,j,k,q)}else i=new A.a9k(l,n,k,q) -h.b=i}, -pM(){return this.j2(1/0,0)}, -b1(a,b){var s,r,q,p=this,o=p.b -if(o==null)throw A.i(A.aL("TextPainter.paint called when text geometry was not yet calculated.\nPlease call layout() before paint() to position the text before painting it.")) -if(!isFinite(o.gj7().a)||!isFinite(o.gj7().b))return -if(p.c){s=o.a -r=s.c -q=p.e -q.toString -q=p.Q5(q) -q.hu(new A.og(o.b)) -s.c=q -r.l()}a.YJ(o.a.c,b.a8(0,o.gj7()))}, -MN(a){var s=this.e.pb(0,a) -if(s==null)return null -return(s&64512)===55296?a+2:a+1}, -MO(a){var s=a-1,r=this.e.pb(0,s) -if(r==null)return null -return(r&64512)===56320?a-2:s}, -ly(a,b){var s,r,q,p,o,n,m,l,k=this,j=k.b -j.toString -s=k.yb(a) -if(s==null){r=k.r -q=k.w -q.toString -p=A.aZQ(r,q) -return new A.h(p===0?0:p*j.c,0)}A:{o=s.b -n=B.i===o -if(n)m=s.a -else m=null -if(n){l=m -r=l -break A}n=B.aj===o -if(n){m=s.a -r=m -r=r instanceof A.h}else r=!1 -if(r){l=n?m:s.a -r=new A.h(l.a-(b.c-b.a),l.b) -break A}r=null}return new A.h(A.E(r.a+j.gj7().a,0,j.c),r.b+j.gj7().b)}, -gam9(){var s,r,q=this.as -A:{if(q==null||B.a9M.j(0,q)){s=!0 -break A}r=q.d -s=r===0 -break A}return s}, -MJ(a,b){var s,r,q -if(this.gam9()){s=this.yb(a) -r=s==null?null:s.c -if(r!=null)return r}q=B.b.gcM(this.df().Dn(0,1,B.pG)) -return q.d-q.b}, -yb(a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=null,a=c.b,a0=a.a -if(a0.c.gLk()<1)return b -A:{s=a1.a -if(0===s){r=B.a4Z -break A}q=b -r=!1 -q=a1.b -r=B.k===q -if(r){r=new A.an(s,!0) -break A}p=b -r=!1 -p=B.at===q -o=p -if(o){r=s-1 -r=0<=r&&r") -r=A.aa(new A.am(s,new A.ax5(p),r),r.i("aE.E")) -r.$flags=1 -r=r}return r}, -mJ(a){return this.oj(a,B.fW,B.d4)}, -ME(a){var s=this.b,r=s.a.c.MF(a.ac(0,s.gj7())) -if(r==null||s.gj7().j(0,B.f))return r -return new A.nT(r.a.e0(s.gj7()),r.b,r.c)}, -ds(a){var s=this.b -return s.a.c.ds(a.ac(0,s.gj7()))}, -rq(){var s,r,q=this.b,p=q.gj7() -if(!isFinite(p.a)||!isFinite(p.b))return B.Xk -s=q.f -if(s==null){s=q.a.c.rq() -q.f=s}if(p.j(0,B.f))r=s -else{r=A.a6(s).i("am<1,o5>") -r=A.aa(new A.am(s,new A.ax4(p),r),r.i("aE.E")) -r.$flags=1 -r=r}return r}, -l(){var s=this,r=s.ch -if(r!=null)r.l() -s.ch=null -r=s.b -if(r!=null)r.a.c.l() -s.e=s.b=null}} -A.ax6.prototype={ -$1(a){return A.aZR(a,this.a)}, -$S:93} -A.ax5.prototype={ -$1(a){return A.aZR(a,this.a)}, -$S:93} -A.ax4.prototype={ -$1(a){var s=this.a,r=a.gZU(),q=a.gWV(),p=a.gJj(),o=a.ga1L(),n=a.gbY(),m=a.gmF(),l=a.gBU(),k=a.gjw(),j=a.gBV() -$.ab() -return new A.vu(r,q,p,o,n,m,l+s.a,k+s.b,j)}, -$S:300} -A.aLl.prototype={ -gkA(){return A.a0(A.fc(null))}, -bi(a){return A.a0(A.fc(null))}} -A.ax7.prototype={ -Ad(a,b,c){if(c===0&&b===1/0)return this -return c===b?new A.iJ(c):new A.Hf(this,c,b)}} -A.iJ.prototype={ -bi(a){return a*this.a}, -Ad(a,b,c){var s=this.a,r=A.E(s,c,b) -return r===s?this:new A.iJ(r)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -return b instanceof A.iJ&&b.a===this.a}, -gt(a){return B.d.gt(this.a)}, -k(a){var s=this.a -return s===1?"no scaling":"linear ("+A.j(s)+"x)"}, -gkA(){return this.a}} -A.Hf.prototype={ -gkA(){return A.E(this.a.gkA(),this.b,this.c)}, -bi(a){return A.E(this.a.bi(a),this.b*a,this.c*a)}, -Ad(a,b,c){return c===b?new A.iJ(c):new A.Hf(this.a,Math.max(c,this.b),Math.min(b,this.c))}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -return b instanceof A.Hf&&s.b===b.b&&s.c===b.c&&s.a.j(0,b.a)}, -gt(a){return A.N(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return this.a.k(0)+" clamped ["+A.j(this.b)+", "+A.j(this.c)+"]"}} -A.f9.prototype={ -gY6(){return this.e}, -gMr(){return!0}, -jF(a,b){}, -A6(a,b,c){var s,r,q,p,o,n=this.a,m=n!=null -if(m)a.tc(n.xl(c)) -n=this.b -if(n!=null)try{a.rf(n)}catch(q){n=A.aj(q) -if(n instanceof A.iS){s=n -r=A.b3(q) -A.dE(new A.c9(s,r,"painting library",A.bZ("while building a TextSpan"),null,!0)) -a.rf("\ufffd")}else throw q}p=this.c -if(p!=null)for(n=p.length,o=0;o0?q:B.cP -if(p===B.bL)return p}else p=B.cP -s=n.c -if(s!=null)for(r=b.c,o=0;op.a)p=q -if(p===B.bL)return p}return p}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -if(!s.O_(0,b))return!1 -return b instanceof A.f9&&b.b==s.b&&s.e.j(0,b.e)&&A.cV(b.c,s.c)}, -gt(a){var s=this,r=A.ez.prototype.gt.call(s,0),q=s.c -q=q==null?null:A.bh(q) -return A.N(r,s.b,s.d,s.w,s.x,s.f,s.r,s.e,q,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -dk(){return"TextSpan"}, -$iaC:1, -$ikO:1, -gC8(){return this.f}, -gC9(){return this.r}} -A.q.prototype={ -gii(){var s=this.e -if(!(this.f==null))if(s==null)s=null -else{s=J.ju(s,new A.axc(this),t.N) -s=A.aa(s,s.$ti.i("aE.E"))}return s}, -goJ(){var s,r=this.f -if(r!=null){s=this.d -return s==null?null:B.c.cD(s,("packages/"+r+"/").length)}return this.d}, -ib(a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=this,a5=a4.ay -if(a5==null&&c1==null)s=a8==null?a4.b:a8 -else s=null -r=a4.ch -if(r==null&&a6==null)q=a7==null?a4.c:a7 -else q=null -p=b7==null?a4.r:b7 -o=c0==null?a4.w:c0 -n=b8==null?a4.x:b8 -m=c5==null?a4.y:c5 -l=d1==null?a4.z:d1 -k=d0==null?a4.Q:d0 -j=c2==null?a4.as:c2 -i=c4==null?a4.at:c4 -h=c6==null?a4.ax:c6 -a5=c1==null?a5:c1 -r=a6==null?r:a6 -g=c9==null?a4.dy:c9 -f=b6==null?a4.fr:b6 -e=b9==null?a4.fx:b9 -d=b0==null?a4.CW:b0 -c=b1==null?a4.cx:b1 -b=b2==null?a4.cy:b2 -a=b3==null?a4.db:b3 -a0=b4==null?a4.goJ():b4 -a1=b5==null?a4.e:b5 -a2=c8==null?a4.f:c8 -a3=c7==null?a4.fy:c7 -return A.ay(r,q,s,null,d,c,b,a,a0,a1,f,p,n,e,o,a5,j,a4.a,i,m,h,a3,a2,g,k,l)}, -aqN(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3,a4,a5){return this.ib(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,null,r,s,a0,a1,a2,a3,a4,a5)}, -XQ(a,b){var s=null -return this.ib(s,s,a,s,s,s,s,s,b,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -XX(a,b,c){var s=null -return this.ib(s,s,a,s,s,s,s,s,s,s,s,b,s,s,s,s,c,s,s,s,s,s,s,s,s,s)}, -vx(a,b){var s=null -return this.ib(s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,b,s,s,s,s,s,s,s,s,s)}, -jA(a){var s=null -return this.ib(s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -hn(a,b){var s=null -return this.ib(s,s,a,s,s,s,s,s,s,s,s,s,s,s,b,s,s,s,s,s,s,s,s,s,s,s)}, -c3(a){var s=null -return this.ib(s,s,a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -lZ(a){var s=null -return this.ib(s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s,s,s)}, -An(a,b,c){var s=null -return this.ib(s,s,a,s,s,s,s,s,s,s,s,s,s,s,b,s,c,s,s,s,s,s,s,s,s,s)}, -aqQ(a,b,c,d){var s=null -return this.ib(s,s,a,s,b,c,d,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -XR(a,b){var s=null -return this.ib(s,s,a,s,s,s,s,s,s,s,s,b,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -aq3(a){var s=null -return this.ib(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s,s)}, -aqy(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var s=null -return this.ib(a,b,c,s,d,e,f,g,s,s,h,i,j,s,k,l,m,s,s,n,o,s,s,p,q,r)}, -aqG(a,b){var s=null -return this.ib(s,s,s,s,s,s,s,s,a,b,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -hC(a,b,c,d,e,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=h.ay -if(f==null)s=a==null?h.b:a -else s=g -r=h.ch -if(r==null)q=h.c -else q=g -p=e==null?h.goJ():e -o=h.r -o=o==null?g:o*a2+a1 -n=h.w -n=n==null?g:B.ZY[B.j.eX(n.gpD(),0,8)] -m=h.y -m=m==null?g:m*a6+a5 -l=h.z -l=l==null?g:l*a9+a8 -k=h.as -k=k==null||k===0?k:k*a4+a3 -j=c==null?h.cx:c -i=h.db -i=i==null?g:i+0 -return A.ay(r,q,s,g,h.CW,j,h.cy,i,p,h.e,h.fr,o,h.x,h.fx,n,f,k,h.a,h.at,m,h.ax,h.fy,h.f,h.dy,h.Q,l)}, -E(a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3 -if(a4==null)return this -if(!a4.a)return a4 -s=a4.b -r=a4.c -q=a4.r -p=a4.w -o=a4.x -n=a4.y -m=a4.z -l=a4.Q -k=a4.as -j=a4.at -i=a4.ax -h=a4.ay -g=a4.ch -f=a4.dy -e=a4.fr -d=a4.fx -c=a4.CW -b=a4.cx -a=a4.cy -a0=a4.db -a1=a4.goJ() -a2=a4.e -a3=a4.f -return this.aqN(g,r,s,null,c,b,a,a0,a1,a2,e,q,o,d,p,h,k,j,n,i,a4.fy,a3,f,l,m)}, -xl(a){var s,r,q,p,o,n=this,m=n.r -A:{s=null -if(m==null)break A -r=a.j(0,B.bz) -if(r){s=m -break A}r=a.bi(m) -s=r -break A}r=n.gii() -q=n.ch -p=n.c -B:{if(q instanceof A.jB){o=q -break B}if(t.G.b(p)){$.ab() -o=A.bt() -o.r=p.gp() -break B}o=null -break B}return A.aZU(o,n.b,n.CW,n.cx,n.cy,n.db,n.d,r,n.fr,s,n.x,n.fx,n.w,n.ay,n.as,n.at,n.y,n.ax,n.dy,n.Q,n.z)}, -a2r(a,b,c,d,a0,a1,a2,a3){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=i.at,f=g==null?h:new A.FZ(g),e=i.r -e=a3.bi(e==null?14:e) -if(d==null)s=h -else{s=d.a -r=d.gii() -q=d.d -A:{p=h -if(q==null)break A -o=a3.bi(q) -p=o -break A}o=d.e -n=d.x -m=d.f -l=d.r -k=d.w -j=d.y -$.ab() -if(A.dU().gnv()===B.d7)s=new A.GB(s,r,p,o===0?h:o,n,l,k,j,m) -else{s=A.aM5(s) -if($.iA==null)$.iA=B.dP -s=new A.Av(s,r,p,o===0?h:o,n,l,k,j,m)}}return A.aXf(a,i.d,e,i.x,i.w,i.as,b,c,s,a0,a1,f)}, -bt(a,b){var s=this -if(s===b)return B.cP -if(s.a!==b.a||s.d!=b.d||s.r!=b.r||!J.b(s.w,b.w)||s.x!=b.x||s.y!=b.y||s.z!=b.z||s.Q!=b.Q||s.as!=b.as||s.at!=b.at||!J.b(s.ax,b.ax)||s.ay!=b.ay||s.ch!=b.ch||!A.cV(s.dy,b.dy)||!A.cV(s.fr,b.fr)||!A.cV(s.fx,b.fx)||!A.cV(s.gii(),b.gii())||s.fy!=b.fy)return B.bL -if(!J.b(s.b,b.b)||!J.b(s.c,b.c)||!J.b(s.CW,b.CW)||!J.b(s.cx,b.cx)||s.cy!=b.cy||s.db!=b.db)return B.a5u -return B.cP}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.q&&b.a===s.a&&J.b(b.b,s.b)&&J.b(b.c,s.c)&&b.r==s.r&&J.b(b.w,s.w)&&b.x==s.x&&b.y==s.y&&b.z==s.z&&b.Q==s.Q&&b.as==s.as&&b.at==s.at&&J.b(b.ax,s.ax)&&b.ay==s.ay&&b.ch==s.ch&&A.cV(b.dy,s.dy)&&A.cV(b.fr,s.fr)&&A.cV(b.fx,s.fx)&&J.b(b.CW,s.CW)&&J.b(b.cx,s.cx)&&b.cy==s.cy&&b.db==s.db&&b.d==s.d&&A.cV(b.gii(),s.gii())&&b.f==s.f&&b.fy==s.fy}, -gt(a){var s,r,q=this,p=null,o=q.gii(),n=o==null?p:A.bh(o),m=A.N(q.cy,q.db,q.d,n,q.f,q.fy,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a),l=q.dy,k=q.fr,j=q.fx -n=l==null?p:A.bh(l) -s=k==null?p:A.bh(k) -r=j==null?p:A.bh(j) -return A.N(q.a,q.b,q.c,q.r,q.w,q.x,q.y,q.z,q.Q,q.as,q.at,q.ax,q.ay,q.ch,n,s,r,q.CW,q.cx,m)}, -dk(){return"TextStyle"}} -A.axc.prototype={ -$1(a){var s=this.a.f -return"packages/"+(s==null?A.c7(s):s)+"/"+a}, -$S:49} -A.a9u.prototype={} -A.Qs.prototype={ -a8k(a,b,c,d,e){this.r=A.b0R(new A.aiF(this),this.gJH(),0,10,0)}, -fb(a){var s,r,q=this -if(a>q.r)return q.gBj() -s=q.e -r=q.c -return q.d+s*Math.pow(q.b,a)/r-s/r-q.f/2*a*a}, -h0(a){var s=this -if(a>s.r)return 0 -return s.e*Math.pow(s.b,a)-s.f*a}, -gBj(){var s=this -if(s.f===0)return s.d-s.e/s.c -return s.fb(s.r)}, -a1t(a){var s,r=this,q=r.d -if(a===q)return 0 -s=r.e -if(s!==0)if(s>0)q=ar.gBj() -else q=a>q||a=r.b&&r.c>=r.d -else q=!0 -if(q){o.fg() -o=p.c9 -p.fy=p.JU=o.a=o.b=new A.L(A.E(0,r.a,r.b),A.E(0,r.c,r.d)) -p.fE=B.HK -o=p.u$ -if(o!=null)o.hu(r) -return}s.cs(r,!0) -switch(p.fE.a){case 0:o=p.c9 -o.a=o.b=p.u$.gC() -p.fE=B.o4 -break -case 1:s=p.c9 -if(!J.b(s.b,p.u$.gC())){s.a=p.gC() -s.b=p.u$.gC() -p.eb=0 -o.kl(0) -p.fE=B.a5s}else{q=o.x -q===$&&A.a() -if(q===o.b)s.a=s.b=p.u$.gC() -else{s=o.r -if(!(s!=null&&s.a!=null))o.cc()}}break -case 2:s=p.c9 -if(!J.b(s.b,p.u$.gC())){s.a=s.b=p.u$.gC() -p.eb=0 -o.kl(0) -p.fE=B.a5t}else{p.fE=B.o4 -s=o.r -if(!(s!=null&&s.a!=null))o.cc()}break -case 3:s=p.c9 -if(!J.b(s.b,p.u$.gC())){s.a=s.b=p.u$.gC() -p.eb=0 -o.kl(0)}else{o.fg() -p.fE=B.o4}break}o=p.c9 -s=p.ci -s===$&&A.a() -s=o.aj(s.gp()) -s.toString -p.fy=p.JU=r.bx(s) -p.A_() -if(p.gC().a=a.b&&a.c>=a.d -else s=!0 -if(s)return new A.L(A.E(0,a.a,a.b),A.E(0,a.c,a.d)) -r=p.aO(B.S,a,p.gcu()) -switch(q.fE.a){case 0:return a.bx(r) -case 1:if(!J.b(q.c9.b,r)){p=q.JU -p===$&&A.a() -return a.bx(p)}else{p=q.bX -p===$&&A.a() -s=p.x -s===$&&A.a() -if(s===p.b)return a.bx(r)}break -case 3:case 2:if(!J.b(q.c9.b,r))return a.bx(r) -break}p=q.ci -p===$&&A.a() -p=q.c9.aj(p.gp()) -p.toString -return a.bx(p)}, -a97(a){}, -b1(a,b){var s,r,q,p=this -if(p.u$!=null){s=p.ea -s===$&&A.a() -s=s&&p.fk!==B.v}else s=!1 -r=p.YW -if(s){s=p.gC() -q=p.cx -q===$&&A.a() -r.saR(a.ll(q,b,new A.w(0,0,0+s.a,0+s.b),A.rO.prototype.gf9.call(p),p.fk,r.a))}else{r.saR(null) -p.a5m(a,b)}}, -e2(a,b){var s,r,q,p=this,o=p.u$ -if(o==null)return null -s=o.f5(a,b) -if(s==null)return null -r=o.aO(B.S,a,o.gcu()) -q=p.aO(B.S,a,p.gcu()) -return s+p.gwU().ju(t.o.a(q.ac(0,r))).b}, -l(){var s,r=this -r.YW.saR(null) -s=r.bX -s===$&&A.a() -s.l() -s=r.ci -s===$&&A.a() -s.l() -r.fu()}} -A.aqD.prototype={ -$0(){var s=this.a,r=s.bX -r===$&&A.a() -r=r.x -r===$&&A.a() -if(r!==s.eb)s.ag()}, -$S:0} -A.Ee.prototype={ -gCx(){var s=this,r=s.ay$ -return r===$?s.ay$=A.b9G(new A.arN(s),new A.arO(s),new A.arP(s)):r}, -Kl(){var s,r,q,p,o,n,m,l,k,j -for(s=this.cx$,s=new A.db(s,s.r,s.e),r=!1;s.v();){q=s.d -r=r||q.u$!=null -p=q.fx -o=$.dm() -n=o.d -if(n==null)n=o.gcN() -m=p.at -if(m==null){m=p.ch.IO() -p.at=m}m=A.b_d(p.Q,new A.L(m.a/n,m.b/n)) -p=m.a*n -l=m.b*n -k=m.c*n -m=m.d*n -j=o.d -if(j==null)j=o.gcN() -q.srs(new A.Gx(new A.al(p/j,l/j,k/j,m/j),new A.al(p,l,k,m),j))}if(r)this.N3()}, -Kt(){}, -Ko(){}, -aui(){var s,r=this.ax$ -if(r!=null){r.P$=$.af() -r.L$=0}r=t.S -s=$.af() -this.ax$=new A.TD(new A.arM(this),new A.ao4(B.ci,A.t(r,t.ZA)),A.t(r,t.xg),s)}, -agm(a){B.a2R.nc("first-frame",null,!1,t.H)}, -aeQ(a){this.JE() -this.akQ()}, -akQ(){$.c6.k4$.push(new A.arL(this))}, -WC(){--this.db$ -if(!this.dx$)this.N6()}, -JE(){var s=this,r=s.CW$ -r===$&&A.a() -r.Zm() -s.CW$.Zk() -s.CW$.Zn() -if(s.dx$||s.db$===0){for(r=s.cx$,r=new A.db(r,r.r,r.e);r.v();)r.d.apM() -s.CW$.Zo() -s.dx$=!0}}} -A.arN.prototype={ -$0(){var s=this.a.gCx().e -if(s!=null)s.xs()}, -$S:0} -A.arP.prototype={ -$1(a){var s=this.a.gCx().e -if(s!=null)s.fx.gxx().ayX(a)}, -$S:223} -A.arO.prototype={ -$0(){var s=this.a.gCx().e -if(s!=null)s.pa()}, -$S:0} -A.arM.prototype={ -$2(a,b){var s=A.QL() -this.a.rV(s,a,b) -return s}, -$S:302} -A.arL.prototype={ -$1(a){this.a.ax$.ayS()}, -$S:4} -A.H2.prototype={ -l(){this.a.goQ().O(this.gdN()) -this.d8()}} -A.a1S.prototype={} -A.a6_.prototype={ -LL(){if(this.U)return -this.a5o() -this.U=!0}, -xs(){this.pa() -this.a5c()}, -l(){this.sR(null)}} -A.al.prototype={ -vA(a,b,c,d){var s=this,r=d==null?s.a:d,q=b==null?s.b:b,p=c==null?s.c:c -return new A.al(r,q,p,a==null?s.d:a)}, -aqI(a,b){return this.vA(null,a,null,b)}, -XT(a,b){return this.vA(a,null,b,null)}, -aqJ(a,b){return this.vA(null,null,a,b)}, -XM(a){return this.vA(null,a,null,null)}, -IZ(a){return this.vA(a,null,null,null)}, -pf(a){var s=this,r=a.gfo(),q=a.gcR()+a.gcX(),p=Math.max(0,s.a-r),o=Math.max(0,s.c-q) -return new A.al(p,Math.max(p,s.b-r),o,Math.max(o,s.d-q))}, -rG(a){var s=this,r=a.a,q=a.b,p=a.c,o=a.d -return new A.al(A.E(s.a,r,q),A.E(s.b,r,q),A.E(s.c,p,o),A.E(s.d,p,o))}, -wX(a,b){var s,r,q=this,p=b==null,o=q.a,n=p?o:A.E(b,o,q.b),m=q.b -p=p?m:A.E(b,o,m) -o=a==null -m=q.c -s=o?m:A.E(a,m,q.d) -r=q.d -return new A.al(n,p,s,o?r:A.E(a,m,r))}, -CX(a){return this.wX(null,a)}, -a1s(a){return this.wX(a,null)}, -gZh(){var s=this -return new A.al(s.c,s.d,s.a,s.b)}, -bx(a){var s=this -return new A.L(A.E(a.a,s.a,s.b),A.E(a.b,s.c,s.d))}, -gaoY(){var s=this -return new A.L(A.E(1/0,s.a,s.b),A.E(1/0,s.c,s.d))}, -ga_I(){var s=this -return s.a>=s.b&&s.c>=s.d}, -ak(a,b){var s=this -return new A.al(s.a*b,s.b*b,s.c*b,s.d*b)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.al&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s,r=this,q=r.a,p=!1 -if(q>=0)if(q<=r.b){p=r.c -p=p>=0&&p<=r.d}s=p?"":"; NOT NORMALIZED" -if(q===1/0&&r.c===1/0)return"BoxConstraints(biggest"+s+")" -if(q===0&&r.b===1/0&&r.c===0&&r.d===1/0)return"BoxConstraints(unconstrained"+s+")" -p=new A.adc() -return"BoxConstraints("+p.$3(q,r.b,"w")+", "+p.$3(r.c,r.d,"h")+s+")"}} -A.adc.prototype={ -$3(a,b,c){if(a===b)return c+"="+B.d.aq(a,1) -return B.d.aq(a,1)+"<="+c+"<="+B.d.aq(b,1)}, -$S:228} -A.nB.prototype={ -v9(a,b,c){if(c!=null){c=A.ra(A.aRx(c)) -if(c==null)return!1}return this.Wz(a,b,c)}, -kP(a,b,c){var s,r=b==null,q=r?c:c.ac(0,b) -r=!r -if(r)this.c.push(new A.yJ(new A.h(-b.a,-b.b))) -s=a.$2(this,q) -if(r)this.Cz() -return s}, -Wz(a,b,c){var s,r=c==null,q=r?b:A.bA(c,b) -r=!r -if(r)this.c.push(new A.It(c)) -s=a.$2(this,q) -if(r)this.Cz() -return s}, -Wy(a,b,c){var s,r=this -if(b!=null)r.c.push(new A.yJ(new A.h(-b.a,-b.b))) -else{c.toString -c=A.ra(A.aRx(c)) -c.toString -r.c.push(new A.It(c))}s=a.$1(r) -r.Cz() -return s}, -aow(a,b){return this.Wy(a,null,b)}, -aov(a,b){return this.Wy(a,b,null)}} -A.lI.prototype={ -k(a){return"#"+A.bF(this.a)+"@"+this.c.k(0)}} -A.eM.prototype={ -k(a){return"offset="+this.a.k(0)}} -A.AI.prototype={} -A.aBu.prototype={ -h4(a,b,c){var s=a.b -if(s==null)s=a.b=A.t(t.k,t.FW) -return s.cl(b,new A.aBv(c,b))}} -A.aBv.prototype={ -$0(){return this.a.$1(this.b)}, -$S:303} -A.azI.prototype={ -h4(a,b,c){var s -switch(b.b){case B.u:s=a.c -if(s==null){s=A.t(t.k,t.PM) -a.c=s}break -case B.a6:s=a.d -if(s==null){s=A.t(t.k,t.PM) -a.d=s}break -default:s=null}return s.cl(b.a,new A.azJ(c,b))}} -A.azJ.prototype={ -$0(){return this.a.$1(this.b)}, -$S:181} -A.tZ.prototype={ -N(){return"_IntrinsicDimension."+this.b}, -h4(a,b,c){var s=a.a -if(s==null)s=a.a=A.t(t.Yr,t.i) -return s.cl(new A.an(this,b),new A.aDB(c,b))}} -A.aDB.prototype={ -$0(){return this.a.$1(this.b)}, -$S:51} -A.b8.prototype={} -A.A.prototype={ -eT(a){if(!(a.b instanceof A.eM))a.b=new A.eM(B.f)}, -aaC(a,b,c){var s=a.h4(this.dy,b,c) -return s}, -aO(a,b,c){return this.aaC(a,b,c,t.K,t.z)}, -bP(a){return 0}, -bH(a){return 0}, -bO(a){return 0}, -bG(a){return 0}, -aaz(a){return this.dg(a)}, -dg(a){return B.Q}, -f5(a,b){return this.aO(B.iy,new A.an(a,b),this.gF6())}, -aaw(a){return this.e2(a.a,a.b)}, -e2(a,b){return null}, -gC(){var s=this.fy -return s==null?A.a0(A.aL("RenderBox was not laid out: "+A.l(this).k(0)+"#"+A.bF(this))):s}, -gjd(){var s=this.gC() -return new A.w(0,0,0+s.a,0+s.b)}, -qc(a,b){var s=null -try{s=this.mL(a)}finally{}if(s==null&&!b)return this.gC().b -return s}, -mM(a){return this.qc(a,!1)}, -mL(a){return this.aO(B.iy,new A.an(t.k.a(A.r.prototype.gab.call(this)),a),new A.aqF(this))}, -hm(a){return null}, -gab(){return t.k.a(A.r.prototype.gab.call(this))}, -ag(){var s=this,r=null,q=s.dy,p=q.b,o=p==null,n=o?r:p.a!==0,m=!0 -if(n!==!0){n=q.a -n=n==null?r:n.a!==0 -if(n!==!0){n=q.c -n=n==null?r:n.a!==0 -if(n!==!0){n=q.d -n=n==null?r:n.a!==0 -n=n===!0}else n=m -m=n}}if(m){if(!o)p.aa(0) -p=q.a -if(p!=null)p.aa(0) -p=q.c -if(p!=null)p.aa(0) -q=q.d -if(q!=null)q.aa(0)}if(m&&s.gbk()!=null){s.BZ() -return}s.a5a()}, -q_(){this.fy=this.dg(t.k.a(A.r.prototype.gab.call(this)))}, -c7(){}, -cT(a,b){var s=this -if(s.fy.q(0,b))if(s.da(a,b)||s.mf(b)){a.G(0,new A.lI(b,s)) -return!0}return!1}, -mf(a){return!1}, -da(a,b){return!1}, -dz(a,b){var s,r=a.b -r.toString -s=t.r.a(r).a -b.eh(s.a,s.b,0,1)}, -eC(a){var s,r,q,p,o,n=this.bd(null) -if(n.ia(n)===0)return B.f -s=new A.fd(new Float64Array(3)) -s.lB(0,0,1) -r=new A.fd(new Float64Array(3)) -r.lB(0,0,0) -q=n.Cv(r) -r=new A.fd(new Float64Array(3)) -r.lB(0,0,1) -p=n.Cv(r).ac(0,q) -r=new A.fd(new Float64Array(3)) -r.lB(a.a,a.b,0) -o=n.Cv(r) -r=o.ac(0,p.lz(s.YE(o)/s.YE(p))).a -return new A.h(r[0],r[1])}, -glj(){var s=this.gC() -return new A.w(0,0,0+s.a,0+s.b)}, -jF(a,b){this.a59(a,b)}} -A.aqF.prototype={ -$1(a){return this.a.hm(a.b)}, -$S:222} -A.dH.prototype={ -Yf(a){var s,r,q,p=this.al$ -for(s=A.n(this).i("dH.1");p!=null;){r=p.b -r.toString -s.a(r) -q=p.mL(a) -if(q!=null)return q+r.a.b -p=r.aJ$}return null}, -AD(a){var s,r,q,p,o,n=this.al$ -for(s=A.n(this).i("dH.1"),r=null;n!=null;){q=n.b -q.toString -s.a(q) -p=n.mL(a) -o=q.a -r=A.A6(r,p==null?null:p+o.b) -n=q.aJ$}return r}, -vE(a,b){var s,r,q={},p=q.a=this.dn$ -for(s=A.n(this).i("dH.1");p!=null;p=r){p=p.b -p.toString -s.a(p) -if(a.kP(new A.aqE(q),p.a,b))return!0 -r=p.cS$ -q.a=r}return!1}, -pe(a,b){var s,r,q,p,o,n=this.al$ -for(s=A.n(this).i("dH.1"),r=b.a,q=b.b;n!=null;){p=n.b -p.toString -s.a(p) -o=p.a -a.e4(n,new A.h(o.a+r,o.b+q)) -n=p.aJ$}}} -A.aqE.prototype={ -$2(a,b){return this.a.a.cT(a,b)}, -$S:19} -A.Hj.prototype={ -az(){this.u0()}} -A.ih.prototype={ -k(a){return this.xN(0)+"; id="+A.j(this.e)}, -gpC(){return this.e}, -spC(a){return this.e=a}} -A.aoc.prototype={ -f1(a,b){var s=this.b.h(0,a) -s.cs(b,!0) -return s.gC()}, -hM(a,b){var s=this.b.h(0,a).b -s.toString -t.Wz.a(s).a=b}, -a9W(a,b){var s,r,q,p,o,n=this,m=n.b -try{n.b=A.t(t.K,t.x) -s=b -for(q=t.Wz;s!=null;){p=s.b -p.toString -r=q.a(p) -p=n.b -p.toString -o=r.gpC() -o.toString -p.m(0,o,s) -s=r.aJ$}n.a0v(a)}finally{n.b=m}}, -k(a){return"MultiChildLayoutDelegate"}} -A.DW.prototype={ -eT(a){if(!t.Wz.b(a.b))a.b=new A.ih(null,null,B.f)}, -sJh(a){var s=this.n -if(s===a)return -if(A.l(a)!==A.l(s)||a.mT(s))this.ag() -this.n=a}, -aP(a){this.a6I(a)}, -az(){this.a6J()}, -bP(a){var s=A.pN(a,1/0),r=s.bx(new A.L(A.E(1/0,s.a,s.b),A.E(1/0,s.c,s.d))).a -if(isFinite(r))return r -return 0}, -bH(a){var s=A.pN(a,1/0),r=s.bx(new A.L(A.E(1/0,s.a,s.b),A.E(1/0,s.c,s.d))).a -if(isFinite(r))return r -return 0}, -bO(a){var s=A.pN(1/0,a),r=s.bx(new A.L(A.E(1/0,s.a,s.b),A.E(1/0,s.c,s.d))).b -if(isFinite(r))return r -return 0}, -bG(a){var s=A.pN(1/0,a),r=s.bx(new A.L(A.E(1/0,s.a,s.b),A.E(1/0,s.c,s.d))).b -if(isFinite(r))return r -return 0}, -dg(a){return a.bx(new A.L(A.E(1/0,a.a,a.b),A.E(1/0,a.c,a.d)))}, -c7(){var s=this,r=t.k.a(A.r.prototype.gab.call(s)) -s.fy=r.bx(new A.L(A.E(1/0,r.a,r.b),A.E(1/0,r.c,r.d))) -s.n.a9W(s.gC(),s.al$)}, -b1(a,b){this.pe(a,b)}, -da(a,b){return this.vE(a,b)}} -A.J9.prototype={ -aP(a){var s,r,q -this.eV(a) -s=this.al$ -for(r=t.Wz;s!=null;){s.aP(a) -q=s.b -q.toString -s=r.a(q).aJ$}}, -az(){var s,r,q -this.eW() -s=this.al$ -for(r=t.Wz;s!=null;){s.az() -q=s.b -q.toString -s=r.a(q).aJ$}}} -A.a5z.prototype={} -A.Pv.prototype={ -a9(a){var s=this.a -return s==null?null:s.a9(a)}, -O(a){var s=this.a -return s==null?null:s.O(a)}, -gxy(){return null}, -DP(a){return this.eU(a)}, -pA(a){return null}, -k(a){var s=A.bF(this),r=this.a -r=r==null?null:r.k(0) -if(r==null)r="" -return"#"+s+"("+r+")"}} -A.DX.prototype={ -spX(a){var s=this.D -if(s==a)return -this.D=a -this.Qh(a,s)}, -sZt(a){var s=this.a4 -if(s==a)return -this.a4=a -this.Qh(a,s)}, -Qh(a,b){var s=this,r=a==null -if(r)s.bb() -else if(b==null||A.l(a)!==A.l(b)||a.eU(b))s.bb() -if(s.y!=null){if(b!=null)b.O(s.geP()) -if(!r)a.a9(s.geP())}if(r){if(s.y!=null)s.br()}else if(b==null||A.l(a)!==A.l(b)||a.DP(b))s.br()}, -sax8(a){if(this.am.j(0,a))return -this.am=a -this.ag()}, -bP(a){var s -if(this.u$==null){s=this.am.a -return isFinite(s)?s:0}return this.Ek(a)}, -bH(a){var s -if(this.u$==null){s=this.am.a -return isFinite(s)?s:0}return this.Ei(a)}, -bO(a){var s -if(this.u$==null){s=this.am.b -return isFinite(s)?s:0}return this.Ej(a)}, -bG(a){var s -if(this.u$==null){s=this.am.b -return isFinite(s)?s:0}return this.Eh(a)}, -aP(a){var s,r=this -r.qw(a) -s=r.D -if(s!=null)s.a9(r.geP()) -s=r.a4 -if(s!=null)s.a9(r.geP())}, -az(){var s=this,r=s.D -if(r!=null)r.O(s.geP()) -r=s.a4 -if(r!=null)r.O(s.geP()) -s.n0()}, -da(a,b){var s=this.a4 -if(s!=null){s=s.pA(b) -s=s===!0}else s=!1 -if(s)return!0 -return this.xT(a,b)}, -mf(a){var s=this.D -if(s!=null){s=s.pA(a) -s=s!==!1}else s=!1 -return s}, -c7(){this.qv() -this.br()}, -rr(a){return a.bx(this.am)}, -T1(a,b,c){var s -A.bQ() -s=a.a -J.b4(s.save()) -if(!b.j(0,B.f))s.translate(b.a,b.b) -c.b1(a,this.gC()) -s.restore()}, -b1(a,b){var s,r,q=this -if(q.D!=null){s=a.gcw() -r=q.D -r.toString -q.T1(s,b,r) -q.Un(a)}q.iE(a,b) -if(q.a4!=null){s=a.gcw() -r=q.a4 -r.toString -q.T1(s,b,r) -q.Un(a)}}, -Un(a){}, -eJ(a){var s,r=this -r.jg(a) -s=r.D -r.bR=s==null?null:s.gxy() -s=r.a4 -r.ec=s==null?null:s.gxy() -a.a=!1}, -rk(a,b,c){var s,r,q,p,o=this -o.h2=A.aXF(o.h2,B.wM) -o.fF=A.aXF(o.fF,B.wM) -s=o.h2 -r=s!=null&&!s.gan(s) -s=o.fF -q=s!=null&&!s.gan(s) -s=A.c([],t.QF) -if(r){p=o.h2 -p.toString -B.b.a_(s,p)}B.b.a_(s,c) -if(q){p=o.fF -p.toString -B.b.a_(s,p)}o.Ok(a,b,s)}, -pa(){this.Ee() -this.fF=this.h2=null}} -A.Py.prototype={} -A.tA.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.tA&&b.a.j(0,s.a)&&b.b==s.b}, -k(a){var s,r=this -switch(r.b){case B.i:s=r.a.k(0)+"-ltr" -break -case B.aj:s=r.a.k(0)+"-rtl" -break -case null:case void 0:s=r.a.k(0) -break -default:s=null}return s}, -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.axP.prototype={ -gca(){var s=this -if(!s.f)return!1 -if(s.e.aK.rq()!==s.d)s.f=!1 -return s.f}, -Ro(a){var s,r,q=this,p=q.r,o=p.h(0,a) -if(o!=null)return o -s=new A.h(q.a.a,q.d[a].gjw()) -r=new A.aV(s,q.e.aK.ds(s),t.tO) -p.m(0,a,r) -return r}, -gT(){return this.c}, -v(){var s,r=this,q=r.b+1 -if(q>=r.d.length)return!1 -s=r.Ro(q);++r.b -r.a=s.a -r.c=s.b -return!0}, -a07(){var s,r=this,q=r.b -if(q<=0)return!1 -s=r.Ro(q-1);--r.b -r.a=s.a -r.c=s.b -return!0}, -avN(a){var s,r=this,q=r.a -if(a>=0){for(s=q.b+a;r.a.bs;)if(!r.a07())break -return!q.j(0,r.a)}} -A.rN.prototype={ -l(){var s,r,q=this,p=null -q.dI.saR(p) -s=q.n -if(s!=null)s.ch.saR(p) -q.n=null -s=q.U -if(s!=null)s.ch.saR(p) -q.U=null -q.bX.saR(p) -s=q.P -if(s!=null){s.P$=$.af() -s.L$=0}s=q.ao -if(s!=null){s.P$=$.af() -s.L$=0}s=q.bv -r=s.P$=$.af() -s.L$=0 -s=q.bU -s.P$=r -s.L$=0 -s=q.L -s.P$=r -s.L$=0 -s=q.au -s.P$=r -s.L$=0 -s=q.giH() -s.P$=r -s.L$=0 -q.aK.l() -s=q.cB -if(s!=null)s.l() -if(q.bq){s=q.u -s.P$=r -s.L$=0 -q.bq=!1}q.fu()}, -VG(a){var s,r=this,q=r.ga9R(),p=r.n -if(p==null){s=A.b_Q(q) -r.i7(s) -r.n=s}else p.spX(q) -r.a0=a}, -VM(a){var s,r=this,q=r.ga9S(),p=r.U -if(p==null){s=A.b_Q(q) -r.i7(s) -r.U=s}else p.spX(q) -r.a3=a}, -giH(){var s=this.a5 -if(s===$){$.ab() -s=this.a5=new A.H8(A.bt(),B.f,$.af())}return s}, -ga9R(){var s=this,r=s.P -if(r==null){r=A.c([],t.xT) -if(s.bQ)r.push(s.giH()) -r=s.P=new A.yc(r,$.af())}return r}, -ga9S(){var s=this,r=s.ao -if(r==null){r=A.c([s.L,s.au],t.xT) -if(!s.bQ)r.push(s.giH()) -r=s.ao=new A.yc(r,$.af())}return r}, -stq(a){return}, -soa(a){var s=this.aK -if(s.at===a)return -s.soa(a) -this.ag()}, -snD(a){if(this.b8===a)return -this.b8=a -this.ag()}, -savU(a){if(this.bL===a)return -this.bL=a -this.ag()}, -savT(a){var s=this -if(s.bz===a)return -s.bz=a -s.c_=null -s.br()}, -tG(a){var s=this.aK,r=s.b.a.c.tH(a) -if(this.bz)return A.cp(B.k,0,s.gku().length,!1) -return A.cp(B.k,r.a,r.b,!1)}, -anq(a){var s,r,q,p,o,n,m=this -if(!m.D.gca()){m.bv.sp(!1) -m.bU.sp(!1) -return}s=m.gC() -r=new A.w(0,0,0+s.a,0+s.b) -s=m.aK -q=m.D -p=m.md -p===$&&A.a() -o=s.ly(new A.ap(q.a,q.e),p) -m.bv.sp(r.d5(0.5).q(0,o.a8(0,a))) -p=m.D -n=s.ly(new A.ap(p.b,p.e),m.md) -m.bU.sp(r.d5(0.5).q(0,n.a8(0,a)))}, -nl(a,b){var s,r -if(a.gca()){s=this.bE.a.c.a.a.length -a=a.rv(Math.min(a.c,s),Math.min(a.d,s))}r=this.bE -r.hw(r.a.c.a.iW(a),b)}, -bb(){this.a5b() -var s=this.n -if(s!=null)s.bb() -s=this.U -if(s!=null)s.bb()}, -xW(){this.Oi() -this.aK.ag()}, -sde(a){var s=this,r=s.aK -if(J.b(r.e,a))return -s.rQ=null -r.sde(a) -s.bo=s.c_=null -s.ag() -s.br()}, -gnp(){var s,r=null,q=this.cB -if(q==null)q=this.cB=A.xH(r,r,r,r,r,B.aN,r,r,B.h0,B.al) -s=this.aK -q.sde(s.e) -q.so9(s.r) -q.sce(s.w) -q.sdO(s.x) -q.snX(s.Q) -q.sJL(s.y) -q.sjN(s.z) -q.sk5(s.as) -q.soa(s.at) -q.stq(s.ax) -return q}, -so9(a){var s=this.aK -if(s.r===a)return -s.so9(a) -this.ag()}, -sce(a){var s=this.aK -if(s.w===a)return -s.sce(a) -this.ag() -this.br()}, -sjN(a){var s=this.aK -if(J.b(s.z,a))return -s.sjN(a) -this.ag()}, -sk5(a){var s=this.aK -if(J.b(s.as,a))return -s.sk5(a) -this.ag()}, -sa3t(a){var s=this,r=s.u -if(r===a)return -if(s.y!=null)r.O(s.gzm()) -if(s.bq){r=s.u -r.P$=$.af() -r.L$=0 -s.bq=!1}s.u=a -if(s.y!=null){s.giH().sDO(s.u.a) -s.u.a9(s.gzm())}}, -alM(){this.giH().sDO(this.u.a)}, -sc5(a){if(this.c0===a)return -this.c0=a -this.br()}, -sasC(a){if(this.dC)return -this.dC=!0 -this.ag()}, -sLP(a){if(this.d4===a)return -this.d4=a -this.br()}, -snX(a){var s,r=this -if(r.ap===a)return -r.ap=a -s=a===1?1:null -r.aK.snX(s) -r.ag()}, -savG(a){return}, -sJS(a){return}, -sdO(a){var s=this.aK -if(s.x.j(0,a))return -s.sdO(a) -this.ag()}, -stO(a){var s=this -if(s.D.j(0,a))return -s.D=a -s.au.sBH(a) -s.bb() -s.br()}, -scU(a){var s=this,r=s.a4 -if(r===a)return -if(s.y!=null)r.O(s.geP()) -s.a4=a -if(s.y!=null)a.a9(s.geP()) -s.ag()}, -sar7(a){if(this.am===a)return -this.am=a -this.ag()}, -sar6(a){if(this.bw==a)return -this.bw=a -this.ag()}, -sawQ(a){var s=this -if(s.bQ===a)return -s.bQ=a -s.ao=s.P=null -s.VG(s.a0) -s.VM(s.a3)}, -sa3I(a){if(this.bR===a)return -this.bR=a -this.bb()}, -sarN(a){if(this.ec===a)return -this.ec=a -this.bb()}, -sarH(a){var s=this -if(s.kk===a)return -s.kk=a -s.ag() -s.br()}, -gfN(){var s=this.kk -return s}, -mJ(a){var s,r,q=this -q.k8() -s=q.au -s=q.aK.oj(a,s.y,s.z) -r=A.a6(s).i("am<1,eC>") -s=A.aa(new A.am(s,new A.ar0(q),r),r.i("aE.E")) -return s}, -eJ(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this -d.jg(a) -s=d.aK -r=s.e -r.toString -q=A.c([],t.O_) -r.Ah(q) -d.ew=q -if(B.b.i8(q,new A.ar_())&&A.aT()!==B.b5){a.e=a.a=!0 -return}r=d.c_ -if(r==null)if(d.bz){r=new A.d8(B.c.ak(d.bL,s.gku().length),B.aY) -d.c_=r}else{p=new A.cf("") -o=A.c([],t.oU) -for(r=d.ew,n=r.length,m=0,l=0,k="";lh){d=c0[h].fx -d=d!=null&&d.q(0,new A.mo(i,b7))}else d=!1 -if(!d)break -b=c0[h] -d=s.b -d.toString -m.a(d) -b5.push(b);++h}b7=s.b -b7.toString -s=n.a(b7).aJ$;++i}else{a=b6.mJ(new A.hb(j,e,B.k,!1,c,d)) -if(a.length===0)continue -d=B.b.gad(a) -a0=new A.w(d.a,d.b,d.c,d.d) -a1=B.b.gad(a).e -for(d=A.a6(a),c=d.i("iz<1>"),a2=new A.iz(a,1,b4,c),a2.xX(a,1,b4,d.c),a2=new A.bf(a2,a2.gH(0),c.i("bf")),c=c.i("aE.E");a2.v();){d=a2.d -if(d==null)d=c.a(d) -a0=a0.hr(new A.w(d.a,d.b,d.c,d.d)) -a1=d.e}d=a0.a -c=Math.max(0,d) -a2=a0.b -a3=Math.max(0,a2) -d=Math.min(a0.c-d,o.a(A.r.prototype.gab.call(b3)).b) -a2=Math.min(a0.d-a2,o.a(A.r.prototype.gab.call(b3)).d) -a4=Math.floor(c)-4 -a5=Math.floor(a3)-4 -d=Math.ceil(c+d)+4 -a2=Math.ceil(a3+a2)+4 -a6=new A.w(a4,a5,d,a2) -a7=A.hD() -a8=k+1 -a7.p3=new A.rp(k,b4) -a7.r=!0 -a7.L=l -a3=f.b -b7=a3==null?b7:a3 -a7.aB=new A.d8(b7,f.r) -A:{break A}b7=b8.w -if(b7!=null){a9=b7.f0(a6) -if(a9.a>=a9.c||a9.b>=a9.d)b7=!(a4>=d||a5>=a2) -else b7=!1 -a7.u=a7.u.IY(b7)}b0=A.bQ() -b7=b3.mc -d=b7==null?b4:b7.a!==0 -if(d===!0){b7.toString -b1=new A.bD(b7,A.n(b7).i("bD<1>")).gai(0) -if(!b1.v())A.a0(A.cD()) -b7=b7.J(0,b1.gT()) -b7.toString -if(b0.b!==b0)A.a0(A.akT(b0.a)) -b0.b=b7}else{b2=new A.hc() -b7=A.EN(b2,b3.aaV(b2)) -if(b0.b!==b0)A.a0(A.akT(b0.a)) -b0.b=b7}b7.a1S(a7) -if(!b7.f.j(0,a6)){b7.f=a6 -b7.iO()}b7=b0.b -if(b7===b0)A.a0(A.qT(b0.a)) -d=b7.a -d.toString -r.m(0,d,b7) -b7=b0.b -if(b7===b0)A.a0(A.qT(b0.a)) -b5.push(b7) -k=a8 -l=a1}}b3.mc=r -b8.mE(b5,b9)}, -aaV(a){return new A.aqX(this,a)}, -afA(a){this.nl(a,B.av)}, -aeH(a){var s=this,r=s.aK.MN(s.D.d) -if(r==null)return -s.nl(A.cp(B.k,!a?r:s.D.c,r,!1),B.av)}, -aeD(a){var s=this,r=s.aK.MO(s.D.d) -if(r==null)return -s.nl(A.cp(B.k,!a?r:s.D.c,r,!1),B.av)}, -aeJ(a){var s,r=this,q=r.D.gdT(),p=r.R9(r.aK.b.a.c.fM(q).b) -if(p==null)return -s=a?r.D.c:p.a -r.nl(A.cp(B.k,s,p.a,!1),B.av)}, -aeF(a){var s,r=this,q=r.D.gdT(),p=r.Rg(r.aK.b.a.c.fM(q).a-1) -if(p==null)return -s=a?r.D.c:p.a -r.nl(A.cp(B.k,s,p.a,!1),B.av)}, -R9(a){var s,r,q -for(s=this.aK;;){r=s.b.a.c.fM(new A.ap(a,B.k)) -q=r.a -if(!(q>=0&&r.b>=0)||q===r.b)return null -if(!this.SS(r))return r -a=r.b}}, -Rg(a){var s,r,q -for(s=this.aK;a>=0;){r=s.b.a.c.fM(new A.ap(a,B.k)) -q=r.a -if(!(q>=0&&r.b>=0)||q===r.b)return null -if(!this.SS(r))return r -a=q-1}return null}, -SS(a){var s,r,q,p -for(s=a.a,r=a.b,q=this.aK;s=m.gku().length)return A.oT(new A.ap(m.gku().length,B.at)) -if(o.bz)return A.cp(B.k,0,m.gku().length,!1) -s=m.b.a.c.fM(a) -switch(a.b.a){case 0:r=n-1 -break -case 1:r=n -break -default:r=null}if(r>0&&A.aZP(m.gku().charCodeAt(r))){m=s.a -q=o.Rg(m) -switch(A.aT().a){case 2:if(q==null){p=o.R9(m) -if(p==null)return A.mW(B.k,n) -return A.cp(B.k,n,p.b,!1)}return A.cp(B.k,q.a,n,!1) -case 0:if(o.d4){if(q==null)return A.cp(B.k,n,n+1,!1) -return A.cp(B.k,q.a,n,!1)}break -case 1:case 4:case 3:case 5:break}}return A.cp(B.k,s.a,s.b,!1)}, -qz(a,b){var s=Math.max(0,a-(1+this.am)),r=Math.min(b,s),q=this.dC?s:r -return new A.an(q,this.ap!==1?s:1/0)}, -OP(){return this.qz(1/0,0)}, -a8Y(a){return this.qz(a,0)}, -k8(){var s,r=this,q=t.k,p=q.a(A.r.prototype.gab.call(r)),o=r.qz(q.a(A.r.prototype.gab.call(r)).b,p.a),n=o.a,m=null,l=o.b -m=l -s=n -r.aK.j2(m,s)}, -aav(){var s,r,q=this -switch(A.aT().a){case 2:case 4:s=q.am -r=q.bw -if(r==null)r=q.aK.df().gbY() -q.md=new A.w(0,0,0+s,0+(r+2)) -break -case 0:case 1:case 3:case 5:s=q.am -r=q.bw -if(r==null)r=q.aK.df().gbY() -q.md=new A.w(0,2,0+s,2+(r-4)) -break}}, -dg(a){var s,r,q,p,o=this,n=a.a,m=a.b,l=o.qz(m,n),k=l.a,j=null,i=l.b -j=i -s=k -r=o.gnp() -r.iC(o.jM(m,A.hQ(),A.jq())) -r.j2(j,s) -if(o.dC)q=m -else{r=o.gnp().b -p=r.c -r.a.c.gbY() -q=A.E(p+(1+o.am),n,m)}return new A.L(q,A.E(o.Td(m),a.c,a.d))}, -e2(a,b){var s,r,q=this,p=a.b,o=q.qz(p,a.a),n=o.a,m=null,l=o.b -m=l -s=n -r=q.gnp() -r.iC(q.jM(p,A.hQ(),A.jq())) -r.j2(m,s) -return q.gnp().b.a.mM(b)}, -c7(){var s,r,q,p,o,n,m,l,k,j,i=this,h=t.k.a(A.r.prototype.gab.call(i)),g=h.b,f=i.jM(g,A.pz(),A.aTv()) -i.asi=f -s=h.a -r=i.qz(g,s) -q=r.a -p=null -o=r.b -p=o -n=q -m=i.aK -m.iC(f) -m.j2(p,n) -f=m.ga_d() -f.toString -i.a0C(f) -i.aav() -g=i.dC?g:A.E(m.b.c+(1+i.am),s,g) -l=i.ap -A:{if(1===l){f=m.b.a.c.gbY() -break A}f=m.b.a.c.gbY() -s=m.df().gbY() -f=A.E(f,s*l,m.df().gbY()*l) -break A}i.fy=new A.L(g,A.E(f,h.c,h.d)) -m=m.b -k=new A.L(m.c+(1+i.am),m.a.c.gbY()) -j=A.pM(k) -m=i.n -if(m!=null)m.hu(j) -f=i.U -if(f!=null)f.hu(j) -i.ev=i.acS(k) -i.a4.ve(i.ganM()) -i.a4.ri(0,i.ev)}, -Xc(a,b){var s,r,q,p,o=this,n=o.aK,m=Math.min(o.gC().b,n.b.a.c.gbY())-n.df().gbY()+5,l=Math.min(o.gC().a,n.b.c)+4,k=new A.w(-4,-4,l,m) -if(b!=null)o.pp=b -if(!o.pp)return A.aXG(a,k) -n=o.vS -s=n!=null?a.ac(0,n):B.f -if(o.vT&&s.a>0){o.eO=new A.h(a.a- -4,o.eO.b) -o.vT=!1}else if(o.rI&&s.a<0){o.eO=new A.h(a.a-l,o.eO.b) -o.rI=!1}if(o.rJ&&s.b>0){o.eO=new A.h(o.eO.a,a.b- -4) -o.rJ=!1}else if(o.AZ&&s.b<0){o.eO=new A.h(o.eO.a,a.b-m) -o.AZ=!1}n=o.eO -r=a.a-n.a -q=a.b-n.b -p=A.aXG(new A.h(r,q),k) -if(r<-4&&s.a<0)o.vT=!0 -else if(r>l&&s.a>0)o.rI=!0 -if(q<-4&&s.b<0)o.rJ=!0 -else if(q>m&&s.b>0)o.AZ=!0 -o.vS=a -return p}, -apg(a){return this.Xc(a,null)}, -Nl(a,b,c,d){var s,r,q=this,p=a===B.jb -if(p){q.eO=B.f -q.vS=null -q.pp=!0 -q.rI=q.rJ=q.AZ=!1}p=!p -q.fF=p -q.cg=d -if(p){q.pu=c -if(d!=null){p=A.Bm(B.r6,B.ap,d) -p.toString -s=p}else s=B.r6 -p=q.giH() -r=q.md -r===$&&A.a() -p.sZi(s.KM(r).e0(b))}else q.giH().sZi(null) -q.giH().w=q.cg==null}, -DK(a,b,c){return this.Nl(a,b,c,null)}, -ah5(a,b){var s,r,q,p,o,n=this.aK.ly(a,B.ag) -for(s=b.length,r=n.b,q=0;p=b.length,qr)return new A.aV(o.gBV(),new A.h(n.a,o.gjw()),t.DC)}s=Math.max(0,p-1) -r=p!==0?B.b.gaC(b).gjw()+B.b.gaC(b).gJj():0 -return new A.aV(s,new A.h(n.a,r),t.DC)}, -Qw(a,b){var s,r,q=this,p=b.a8(0,q.gfw()),o=q.fF -if(!o)q.anq(p) -s=q.n -r=q.U -if(r!=null)a.e4(r,b) -q.aK.b1(a.gcw(),p) -q.a0r(a,p) -if(s!=null)a.e4(s,b)}, -dz(a,b){if(a===this.n||a===this.U)return -this.Ye(a,b)}, -b1(a,b){var s,r,q,p,o,n,m=this -m.k8() -s=(m.ev>0||!m.gfw().j(0,B.f))&&m.dq!==B.v -r=m.bX -if(s){s=m.cx -s===$&&A.a() -q=m.gC() -r.saR(a.ll(s,b,new A.w(0,0,0+q.a,0+q.b),m.gabH(),m.dq,r.a))}else{r.saR(null) -m.Qw(a,b)}p=m.D -s=p.gca() -if(s){s=m.xh(p) -o=s[0].a -o=new A.h(A.E(o.a,0,m.gC().a),A.E(o.b,0,m.gC().b)) -r=m.dI -r.saR(A.al2(m.bR,o.a8(0,b))) -r=r.a -r.toString -a.mw(r,A.r.prototype.gf9.call(m),B.f) -if(s.length===2){n=s[1].a -s=A.E(n.a,0,m.gC().a) -r=A.E(n.b,0,m.gC().b) -a.mw(A.al2(m.ec,new A.h(s,r).a8(0,b)),A.r.prototype.gf9.call(m),B.f)}else{s=m.D -if(s.a===s.b)a.mw(A.al2(m.ec,o.a8(0,b)),A.r.prototype.gf9.call(m),B.f)}}}, -m3(a){var s,r=this -switch(r.dq.a){case 0:return null -case 1:case 2:case 3:if(r.ev>0||!r.gfw().j(0,B.f)){s=r.gC() -s=new A.w(0,0,0+s.a,0+s.b)}else s=null -return s}}} -A.ar0.prototype={ -$1(a){var s=this.a -return new A.eC(a.a+s.gfw().a,a.b+s.gfw().b,a.c+s.gfw().a,a.d+s.gfw().b,a.e)}, -$S:93} -A.ar_.prototype={ -$1(a){return!1}, -$S:307} -A.aqX.prototype={ -$0(){var s=this.a -s.ow(s,s.mc.h(0,this.b).f)}, -$S:0} -A.ar1.prototype={ -$2(a,b){var s=a==null?null:a.hr(new A.w(b.a,b.b,b.c,b.d)) -return s==null?new A.w(b.a,b.b,b.c,b.d):s}, -$S:308} -A.aqZ.prototype={ -$2(a,b){return new A.L(a.aO(B.bR,1/0,a.gcG()),0)}, -$S:37} -A.aqY.prototype={ -$2(a,b){return new A.L(a.aO(B.aK,1/0,a.gc2()),0)}, -$S:37} -A.a5A.prototype={ -gbk(){return t.CA.a(A.r.prototype.gbk.call(this))}, -gfp(){return!0}, -gkH(){return!0}, -spX(a){var s,r=this,q=r.n -if(a===q)return -r.n=a -s=a.eU(q) -if(s)r.bb() -if(r.y!=null){s=r.geP() -q.O(s) -a.a9(s)}}, -b1(a,b){var s=t.CA.a(A.r.prototype.gbk.call(this)),r=this.n -if(s!=null){s.k8() -r.li(a.gcw(),this.gC(),s)}}, -aP(a){this.eV(a) -this.n.a9(this.geP())}, -az(){this.n.O(this.geP()) -this.eW()}, -dg(a){return new A.L(A.E(1/0,a.a,a.b),A.E(1/0,a.c,a.d))}} -A.or.prototype={} -A.Kq.prototype={ -sBG(a){if(J.b(a,this.w))return -this.w=a -this.a7()}, -sBH(a){if(J.b(a,this.x))return -this.x=a -this.a7()}, -sNd(a){if(this.y===a)return -this.y=a -this.a7()}, -sNe(a){if(this.z===a)return -this.z=a -this.a7()}, -li(a,b,c){var s,r,q,p,o,n,m,l,k,j=this,i=j.x,h=j.w -if(i==null||h==null||i.a===i.b)return -s=j.r -s.r=h.gp() -r=c.aK -q=r.oj(A.cp(B.k,i.a,i.b,!1),j.y,j.z) -p=A.vY(q,A.a6(q).c) -for(q=A.cl(p,p.r,A.n(p).c),o=a.a,n=q.$ti.c;q.v();){m=q.d -if(m==null)m=n.a(m) -m=new A.w(m.a,m.b,m.c,m.d).e0(c.gfw()) -l=r.b -l=m.f0(new A.w(0,0,0+l.c,0+l.a.c.gbY())) -k=s.eS() -o.drawRect(A.d6(l),k) -k.delete()}}, -eU(a){var s=this -if(a===s)return!1 -return!(a instanceof A.Kq)||!J.b(a.w,s.w)||!J.b(a.x,s.x)||a.y!==s.y||a.z!==s.z}} -A.H8.prototype={ -sDO(a){if(this.r===a)return -this.r=a -this.a7()}, -sIB(a){var s,r=this.z -r=r==null?null:r.A() -s=a.A() -if(r===s)return -this.z=a -this.a7()}, -sY8(a){if(J.b(this.Q,a))return -this.Q=a -this.a7()}, -sY7(a){if(this.as.j(0,a))return -this.as=a -this.a7()}, -sX_(a){var s,r=this,q=r.at -q=q==null?null:q.gp() -s=a.gp() -if(q===s)return -r.at=a -if(r.w)r.a7()}, -sZi(a){if(J.b(this.ax,a))return -this.ax=a -this.a7()}, -awR(a,b,c,d){var s,r,q=this,p=b.jX(d) -if(q.r){s=q.ax -if(s!=null)if(s.gbp().ac(0,p.gbp()).gvL()<225)return -r=q.Q -s=q.x -s.r=c.gp() -if(r==null)a.h_(p,s) -else a.eL(A.kT(p,r),s)}}, -li(a,b,c){var s,r,q,p,o,n,m,l=this,k=c.D -if(k.a!==k.b||!k.gca())return -s=l.ax -r=s==null -if(r)q=l.z -else q=l.w?l.at:null -if(r)p=k.gdT() -else{o=c.pu -o===$&&A.a() -p=o}if(q!=null)l.awR(a,c,q,p) -o=l.z -n=o==null?null:A.ar(191,o.A()>>>16&255,o.A()>>>8&255,o.A()&255) -if(r||n==null||!l.r)return -r=A.kT(s,B.HI) -m=l.y -if(m===$){$.ab() -m=l.y=A.bt()}m.r=n.gp() -a.eL(r,m)}, -eU(a){var s=this -if(s===a)return!1 -return!(a instanceof A.H8)||a.r!==s.r||a.w!==s.w||!J.b(a.z,s.z)||!J.b(a.Q,s.Q)||!a.as.j(0,s.as)||!J.b(a.at,s.at)||!J.b(a.ax,s.ax)}} -A.yc.prototype={ -a9(a){var s,r,q -for(s=this.r,r=s.length,q=0;q")) -s=this.r -p=A.a6(s) -o=new J.cO(s,s.length,p.i("cO<1>")) -s=p.c -r=r.c -for(;;){if(!(q.v()&&o.v()))break -p=o.d -if(p==null)p=s.a(p) -n=q.d -if(p.eU(n==null?r.a(n):n))return!0}return!1}} -A.Jb.prototype={ -aP(a){this.eV(a) -$.U7.vU$.a.G(0,this.gzg())}, -az(){$.U7.vU$.a.J(0,this.gzg()) -this.eW()}} -A.Jc.prototype={ -aP(a){var s,r,q -this.a6K(a) -s=this.al$ -for(r=t.ot;s!=null;){s.aP(a) -q=s.b -q.toString -s=r.a(q).aJ$}}, -az(){var s,r,q -this.a6L() -s=this.al$ -for(r=t.ot;s!=null;){s.az() -q=s.b -q.toString -s=r.a(q).aJ$}}} -A.a5B.prototype={} -A.DZ.prototype={ -a8q(a){var s,r,q,p,o=this -try{r=o.n -if(r!==""){q=$.b3b() -$.ab() -s=A.dU().gnv()===B.d7?A.aSn(q):A.aQl(q) -s.tc($.b3c()) -s.rf(r) -r=s.aM() -o.U!==$&&A.bs() -o.U=r}else{o.U!==$&&A.bs() -o.U=null}}catch(p){}}, -bH(a){return 1e5}, -bG(a){return 1e5}, -gkH(){return!0}, -mf(a){return!0}, -dg(a){return a.bx(B.a93)}, -b1(a,b){var s,r,q,p,o,n,m,l,k,j=this -try{p=a.gcw() -o=j.gC() -n=b.a -m=b.b -$.ab() -l=A.bt() -l.r=$.b3a().gp() -p.h_(new A.w(n,m,n+o.a,m+o.b),l) -p=j.U -p===$&&A.a() -if(p!=null){s=j.gC().a -r=0 -q=0 -if(s>328){s-=128 -r+=64}p.hu(new A.og(s)) -o=j.gC() -if(o.b>96+p.gbY()+12)q+=96 -o=a.gcw() -o.YJ(p,b.a8(0,new A.h(r,q)))}}catch(k){}}} -A.aDL.prototype={} -A.Qj.prototype={ -N(){return"FlexFit."+this.b}} -A.dP.prototype={ -k(a){return this.xN(0)+"; flex="+A.j(this.e)+"; fit="+A.j(this.f)}} -A.RH.prototype={ -N(){return"MainAxisSize."+this.b}} -A.o8.prototype={ -N(){return"MainAxisAlignment."+this.b}, -uq(a,b,c,d){var s,r,q,p=this -A:{if(B.m===p){s=c?new A.an(a,d):new A.an(0,d) -break A}if(B.kh===p){s=B.m.uq(a,b,!c,d) -break A}r=B.b4===p -if(r&&b<2){s=B.m.uq(a,b,c,d) -break A}q=B.nJ===p -if(q&&b===0){s=B.m.uq(a,b,c,d) -break A}if(B.cN===p){s=new A.an(a/2,d) -break A}if(r){s=new A.an(0,a/(b-1)+d) -break A}if(q){s=a/b -s=new A.an(s/2,s+d) -break A}if(B.a0Z===p){s=a/(b+1) -s=new A.an(s,s+d) -break A}s=null}return s}} -A.q3.prototype={ -N(){return"CrossAxisAlignment."+this.b}, -ut(a,b){var s,r=this -A:{if(B.cI===r||B.cJ===r){s=0 -break A}if(B.T===r){s=b?a:0 -break A}if(B.o===r){s=a/2 -break A}if(B.co===r){s=B.T.ut(a,!b) -break A}s=null}return s}} -A.E_.prototype={ -sDV(a){if(this.av===a)return -this.av=a -this.ag()}, -eT(a){if(!(a.b instanceof A.dP))a.b=new A.dP(null,null,B.f)}, -yn(a,b,c){var s,r,q,p,o,n,m,l=this,k=l.n -if(k===c){s=l.av*(l.dJ$-1) -r=l.al$ -k=A.n(l).i("ao.1") -q=t.J -p=0 -o=0 -while(r!=null){n=r.b -n.toString -m=q.a(n).e -if(m==null)m=0 -p+=m -if(m>0)o=Math.max(o,a.$2(r,b)/m) -else s+=a.$2(r,b) -n=r.b -n.toString -r=k.a(n).aJ$}return o*p+s}else{switch(k.a){case 0:k=!0 -break -case 1:k=!1 -break -default:k=null}q=k?new A.al(0,b,0,1/0):new A.al(0,1/0,0,b) -return l.yc(q,A.jq(),new A.ar4(k,a)).a.b}}, -bP(a){return this.yn(new A.ar8(),a,B.am)}, -bH(a){return this.yn(new A.ar6(),a,B.am)}, -bO(a){return this.yn(new A.ar7(),a,B.L)}, -bG(a){return this.yn(new A.ar5(),a,B.L)}, -hm(a){var s -switch(this.n.a){case 0:s=this.AD(a) -break -case 1:s=this.Yf(a) -break -default:s=null}return s}, -gyK(){var s,r=this.a3 -A:{s=!1 -if(B.cJ===r){switch(this.n.a){case 0:s=!0 -break -case 1:break -default:s=null}break A}if(B.T===r||B.o===r||B.co===r||B.cI===r)break A -s=null}return s}, -yp(a){var s -switch(this.n.a){case 0:s=a.b -break -case 1:s=a.a -break -default:s=null}return s}, -FY(a){var s -switch(this.n.a){case 0:s=a.a -break -case 1:s=a.b -break -default:s=null}return s}, -gFK(){var s,r=this,q=!1 -if(r.al$!=null)switch(r.n.a){case 0:s=r.a5 -A:{if(s==null||B.i===s)break A -if(B.aj===s){q=!0 -break A}q=null}break -case 1:switch(r.au.a){case 1:break -case 0:q=!0 -break -default:q=null}break -default:q=null}return q}, -gQN(){var s,r=this,q=!1 -if(r.al$!=null)switch(r.n.a){case 1:s=r.a5 -A:{if(s==null||B.i===s)break A -if(B.aj===s){q=!0 -break A}q=null}break -case 0:switch(r.au.a){case 1:break -case 0:q=!0 -break -default:q=null}break -default:q=null}return q}, -Fb(a){var s,r,q=null,p=this.a3 -A:{if(B.cI===p){s=!0 -break A}if(B.T===p||B.o===p||B.co===p||B.cJ===p){s=!1 -break A}s=q}switch(this.n.a){case 0:r=a.d -s=s?A.lH(r,q):new A.al(0,1/0,0,r) -break -case 1:r=a.b -s=s?A.lH(q,r):new A.al(0,r,0,1/0) -break -default:s=q}return s}, -Fa(a,b,c){var s,r,q=a.b -q.toString -q=t.J.a(q).f -switch((q==null?B.n9:q).a){case 0:q=c -break -case 1:q=0 -break -default:q=null}s=this.a3 -A:{if(B.cI===s){r=!0 -break A}if(B.T===s||B.o===s||B.co===s||B.cJ===s){r=!1 -break A}r=null}switch(this.n.a){case 0:r=r?b.d:0 -r=new A.al(q,c,r,b.d) -q=r -break -case 1:r=r?b.b:0 -q=new A.al(r,b.b,q,c) -break -default:q=null}return q}, -e2(a,b){var s,r=this,q=r.yc(a,A.jq(),A.hQ()) -if(r.gyK())return q.c -switch(r.n.a){case 0:s=r.aay(a,b,q) -break -case 1:s=r.aax(a,b,q) -break -default:s=null}return s}, -aay(a0,a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=new A.ar3(h,a2,a0,h.Fb(a0)),f=h.gFK(),e=h.gQN(),d=f?new A.an(h.gvr(),h.dn$):new A.an(h.grn(),h.al$),c=d.a,b=t.xP.b(c),a=null -if(b){s=d.b -a=s -r=c}else r=null -if(!b)throw A.i(A.aL("Pattern matching error")) -h.gyK() -for(b=a2.a.b,q=a,p=null;q!=null;q=r.$1(q)){o=g.$1(q) -n=q.gF6() -m=q.dy -l=B.iy.h4(m,new A.an(o,a1),n) -if(l!=null){h.gyK() -n=h.a3===B.cJ&&h.n===B.am -k=q.gcu() -if(n){j=B.S.h4(m,o,k) -i=B.T.ut(b-h.yp(j),!1)}else{j=B.S.h4(m,o,k) -i=h.a3.ut(b-h.yp(j),e)}p=A.A6(p,l+i)}}return p}, -aax(a5,a6,a7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=null,c="Pattern matching error",b=new A.ar2(e,a7,a5,e.Fb(a5)),a=Math.max(0,a7.b),a0=e.gFK(),a1=e.U.uq(a,e.dJ$,a0,e.av),a2=a1.a,a3=d,a4=a1.b -a3=a4 -s=a2 -r=A.t(t.x,t.i) -q=a0?new A.an(e.gvr(),e.dn$):new A.an(e.grn(),e.al$) -p=q.a -o=t.xP.b(p) -n=d -if(o){m=q.b -n=m -l=p}else l=d -if(!o)throw A.i(A.aL(c)) -for(k=n,j=s;k!=null;k=l.$1(k)){r.m(0,k,j) -i=b.$1(k) -o=k.gcu() -h=B.S.h4(k.dy,i,o) -j+=e.FY(h)+a3}k=e.al$ -o=A.n(e).i("ao.1") -while(k!=null){i=b.$1(k) -g=k.gF6() -h=B.iy.h4(k.dy,new A.an(i,a6),g) -if(h!=null){f=r.h(0,k) -return h+(f==null?s:f)}g=k.b -g.toString -k=o.a(g).aJ$}return d}, -dg(a){return A.azD(this.yc(a,A.jq(),A.hQ()).a,this.n)}, -yc(a3,a4,a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this,a=null,a0=b.FY(new A.L(A.E(1/0,a3.a,a3.b),A.E(1/0,a3.c,a3.d))),a1=isFinite(a0),a2=b.Fb(a3) -if(b.gyK())A.a0(A.h_('To use CrossAxisAlignment.baseline, you must also specify which baseline to use using the "textBaseline" argument.')) -s=new A.L(b.av*(b.dJ$-1),0) -r=b.al$ -q=A.n(b).i("ao.1") -p=t.J -o=s -n=a -m=n -l=0 -while(r!=null){if(a1){k=r.b -k.toString -j=p.a(k).e -if(j==null)j=0 -k=j>0}else{j=a -k=!1}if(k){l+=j -if(m==null)m=r}else{s=A.azD(a5.$2(r,a2),b.n) -s=new A.L(o.a+s.a,Math.max(o.b,s.b)) -n=A.b_m(n,a) -o=s}k=r.b -k.toString -r=q.a(k).aJ$}i=Math.max(0,a0-o.a)/l -r=m -for(;;){if(!(r!=null&&l>0))break -A:{k=r.b -k.toString -j=p.a(k).e -if(j==null)j=0 -if(j===0)break A -l-=j -s=A.azD(a5.$2(r,b.Fa(r,a3,i*j)),b.n) -s=new A.L(o.a+s.a,Math.max(o.b,s.b)) -n=A.b_m(n,a) -o=s}k=r.b -k.toString -r=q.a(k).aJ$}B:{q=n==null -if(q){p=B.Q -break B}h=a -g=a -f=n.a -h=n.b -g=f -s=new A.L(0,g+A.cG(h)) -p=s -break B -p=a}o=A.bcS(o,p) -e=b.a0 -C:{d=B.n===e -if(d&&a1){p=a0 -break C}if(d||B.ak===e){p=o.a -break C}p=a}c=A.bcT(new A.L(p,o.b),a3,b.n) -q=q?a:n.a -p=m==null?a:i -return new A.aDL(c,c.a-o.a,q,p)}, -c7(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=this,a4=null,a5="RenderBox was not laid out: ",a6=a3.yc(t.k.a(A.r.prototype.gab.call(a3)),A.aTv(),A.pz()),a7=a6.a,a8=a7.b -a3.fy=A.azD(a7,a3.n) -a7=a6.b -a3.P=Math.max(0,-a7) -s=Math.max(0,a7) -r=a3.gFK() -q=a3.gQN() -p=a3.U.uq(s,a3.dJ$,r,a3.av) -o=p.a -n=a4 -m=p.b -n=m -l=r?new A.an(a3.gvr(),a3.dn$):new A.an(a3.grn(),a3.al$) -k=l.a -a7=t.xP.b(k) -j=a4 -if(a7){i=l.b -j=i -h=k}else h=a4 -if(!a7)throw A.i(A.aL("Pattern matching error")) -g=a6.c -for(a7=t.J,f=g!=null,e=j,d=o;e!=null;e=h.$1(e)){if(f){c=a3.L -c.toString -b=e.qc(c,!0) -a=b!=null}else{b=a4 -a=!1}if(a){b.toString -a0=g-b}else{c=a3.a3 -a1=c===B.cJ&&a3.n===B.am -a2=e.fy -if(a1)a0=B.T.ut(a8-a3.yp(a2==null?A.a0(A.aL(a5+A.l(e).k(0)+"#"+A.bF(e))):a2),!1) -else a0=c.ut(a8-a3.yp(a2==null?A.a0(A.aL(a5+A.l(e).k(0)+"#"+A.bF(e))):a2),q)}c=e.b -c.toString -a7.a(c) -switch(a3.n.a){case 0:a1=new A.h(d,a0) -break -case 1:a1=new A.h(a0,d) -break -default:a1=a4}c.a=a1 -a1=e.fy -d+=a3.FY(a1==null?A.a0(A.aL(a5+A.l(e).k(0)+"#"+A.bF(e))):a1)+n}}, -da(a,b){return this.vE(a,b)}, -b1(a,b){var s,r,q,p=this -if(!(p.P>1e-10)){p.pe(a,b) -return}if(p.gC().gan(0))return -s=p.b8 -r=p.cx -r===$&&A.a() -q=p.gC() -s.saR(a.ll(r,b,new A.w(0,0,0+q.a,0+q.b),p.gJd(),p.ao,s.a))}, -l(){this.b8.saR(null) -this.a6O()}, -m3(a){var s -switch(this.ao.a){case 0:return null -case 1:case 2:case 3:if(this.P>1e-10){s=this.gC() -s=new A.w(0,0,0+s.a,0+s.b)}else s=null -return s}}, -dk(){return this.Ol()}} -A.ar4.prototype={ -$2(a,b){var s,r,q=this.a,p=q?b.b:b.d -if(isFinite(p))s=p -else s=q?a.aO(B.aK,1/0,a.gc2()):a.aO(B.bg,1/0,a.gcp()) -r=this.b -return q?new A.L(s,r.$2(a,s)):new A.L(r.$2(a,s),s)}, -$S:37} -A.ar8.prototype={ -$2(a,b){return a.aO(B.bR,b,a.gcG())}, -$S:32} -A.ar6.prototype={ -$2(a,b){return a.aO(B.aK,b,a.gc2())}, -$S:32} -A.ar7.prototype={ -$2(a,b){return a.aO(B.by,b,a.gcA())}, -$S:32} -A.ar5.prototype={ -$2(a,b){return a.aO(B.bg,b,a.gcp())}, -$S:32} -A.ar3.prototype={ -$1(a){var s,r,q=this,p=q.b.d -if(p!=null){s=A.aXH(a) -r=s>0}else{s=null -r=!1}return r?q.a.Fa(a,q.c,s*p):q.d}, -$S:221} -A.ar2.prototype={ -$1(a){var s,r,q=this,p=q.b.d -if(p!=null){s=A.aXH(a) -r=s>0}else{s=null -r=!1}return r?q.a.Fa(a,q.c,s*p):q.d}, -$S:221} -A.a5D.prototype={ -aP(a){var s,r,q -this.eV(a) -s=this.al$ -for(r=t.J;s!=null;){s.aP(a) -q=s.b -q.toString -s=r.a(q).aJ$}}, -az(){var s,r,q -this.eW() -s=this.al$ -for(r=t.J;s!=null;){s.az() -q=s.b -q.toString -s=r.a(q).aJ$}}} -A.a5E.prototype={} -A.Jd.prototype={ -l(){var s,r,q -for(s=this.JX$,r=s.length,q=0;q")),t.M) -s=q.length -r=0 -for(;r>")) -this.ig(new A.Mt(s,b.i("Mt<0>")),a,!0,b) -return s.length===0?null:B.b.gad(s).a}, -a8V(a){var s,r,q=this -if(!q.w&&q.x!=null){s=q.x -s.toString -r=a.b -r===$&&A.a() -s.a=r -r.c.push(s) -return}q.iR(a) -q.w=!1}, -dk(){var s=this.a4g() -return s+(this.y==null?" DETACHED":"")}} -A.akY.prototype={ -$0(){this.b.$1(this.a)}, -$S:0} -A.akZ.prototype={ -$0(){var s=this.a -s.a.J(0,this.b) -s.v1(-1)}, -$S:0} -A.Rr.prototype={ -saR(a){var s=this.a -if(a==s)return -if(s!=null)if(--s.f===0)s.l() -this.a=a -if(a!=null)++a.f}, -k(a){var s=this.a -return"LayerHandle("+(s!=null?s.k(0):"DISPOSED")+")"}} -A.Ue.prototype={ -sa0w(a){var s -this.fH() -s=this.ay -if(s!=null)s.l() -this.ay=a}, -l(){this.sa0w(null) -this.O0()}, -iR(a){var s,r,q=this.ay.a -q===$&&A.a() -s=new A.uV(!0) -s.a=q;++q.b -q=a.b -q===$&&A.a() -r=new A.kR(s,B.f,B.ag) -r.a=q -q.c.push(r)}, -ig(a,b,c){return!1}} -A.fl.prototype={ -uo(a){var s -this.a4A(a) -if(!a)return -s=this.ax -while(s!=null){s.uo(!0) -s=s.Q}}, -Eq(){for(var s=this.ay;s!=null;s=s.as)if(!s.Eq())return!1 -return!0}, -X9(a){var s=this -s.Df() -s.iR(a) -if(s.b>0)s.uo(!0) -s.w=!1 -return new A.akV(new A.akX(a.a))}, -l(){this.LW() -this.a.aa(0) -this.O0()}, -Df(){var s,r=this -r.a4E() -s=r.ax -while(s!=null){s.Df() -r.w=r.w||s.w -s=s.Q}}, -ig(a,b,c,d){var s,r,q -for(s=this.ay,r=a.a;s!=null;s=s.as){if(s.ig(a,b,!0,d))return!0 -q=r.length -if(q!==0)return!1}return!1}, -aP(a){var s -this.a4B(a) -s=this.ax -while(s!=null){s.aP(a) -s=s.Q}}, -az(){this.a4C() -var s=this.ax -while(s!=null){s.az() -s=s.Q}this.uo(!1)}, -Ij(a){var s,r=this -if(!r.grh())r.fH() -s=a.b -if(s!==0)r.v1(s) -a.r=r -s=r.y -if(s!=null)a.aP(s) -r.lo(a) -s=a.as=r.ay -if(s!=null)s.Q=a -r.ay=a -if(r.ax==null)r.ax=a -a.e.saR(a)}, -h6(){var s,r,q=this.ax -while(q!=null){s=q.z -r=this.z -if(s<=r){q.z=r+1 -q.h6()}q=q.Q}}, -lo(a){var s=a.z,r=this.z -if(s<=r){a.z=r+1 -a.h6()}}, -Su(a){var s,r=this -if(!r.grh())r.fH() -s=a.b -if(s!==0)r.v1(-s) -a.r=null -if(r.y!=null)a.az()}, -LW(){var s,r=this,q=r.ax -for(;q!=null;q=s){s=q.Q -q.Q=q.as=null -r.Su(q) -q.e.saR(null)}r.ay=r.ax=null}, -iR(a){this.jr(a)}, -jr(a){var s=this.ax -while(s!=null){s.a8V(a) -s=s.Q}}, -rj(a,b){}} -A.jT.prototype={ -scU(a){if(!a.j(0,this.k3))this.fH() -this.k3=a}, -ig(a,b,c,d){return this.mW(a,b.ac(0,this.k3),!0,d)}, -rj(a,b){var s=this.k3 -b.eh(s.a,s.b,0,1)}, -iR(a){var s,r=this,q=r.k3 -t.Ff.a(r.x) -s=A.wb() -s.qk(q.a,q.b,0) -r.shq(a.mv(new A.Do(s,A.c([],t.k5),B.ag))) -r.jr(a) -a.ct()}, -ayv(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e -$.ab() -r=A.aWA() -q=A.wc(b,b,1) -p=a.a -o=this.k3 -n=a.b -q.eh(-(p+o.a),-(n+o.b),0,1) -r.axk(q.a) -s=this.X9(r) -try{p=B.d.vo(b*(a.c-p)) -n=B.d.vo(b*(a.d-n)) -o=s.a -m=new A.pU() -l=A.aQk(m,new A.w(0,0,p,n)) -o=o.a -new A.Un(new A.wi(A.c([],t.YE))).oh(o) -k=A.c([],t.k_) -k.push(l) -j=A.c([],t.Ay) -if(!o.b.gan(0))new A.U6(new A.D6(k),null,j,A.t(t.uy,t.gm),l).oh(o) -i=m.vO() -o=$.aQi.cj().w -o===$&&A.a() -o.xC(new A.nA(p,n)) -h=o.c -o=h.getCanvas() -o.clear(A.b0X($.aUk(),B.D)) -k=i.a -k===$&&A.a() -k=k.a -k===$&&A.a() -k=k.a -k.toString -o.drawPicture(k) -g=h.makeImageSnapshot() -k=$.bx.cj().AlphaType.Premul -f={width:p,height:n,colorType:$.bx.cj().ColorType.RGBA_8888,alphaType:k,colorSpace:v.G.window.flutterCanvasKit.ColorSpace.SRGB} -e=g.readPixels(0,0,f) -if(e==null)e=null -g.delete() -if(e==null)A.a0(A.aL("Unable to convert read pixels from SkImage.")) -p=$.bx.cj().MakeImage(f,e,4*p) -if(p==null)A.a0(A.aL("Unable to convert image pixels into SkImage.")) -p=A.b69(p,null) -return p}finally{s.a.a.l()}}} -A.Az.prototype={ -ig(a,b,c,d){if(!this.k3.q(0,b))return!1 -return this.mW(a,b,!0,d)}, -iR(a){var s,r=this,q=r.k3 -q.toString -s=r.k4 -t.e4.a(r.x) -r.shq(a.mv(new A.Nm(q,s,A.c([],t.k5),B.ag))) -r.jr(a) -a.ct()}} -A.Ay.prototype={ -ig(a,b,c,d){if(!this.k3.q(0,b))return!1 -return this.mW(a,b,!0,d)}, -iR(a){var s,r=this,q=r.k3 -q.toString -s=r.k4 -t.cW.a(r.x) -r.shq(a.mv(new A.Nk(q,s,A.c([],t.k5),B.ag))) -r.jr(a) -a.ct()}} -A.Ax.prototype={ -ig(a,b,c,d){var s=this.k3.gi9().a -s===$&&A.a() -if(!s.a.contains(b.a,b.b))return!1 -return this.mW(a,b,!0,d)}, -iR(a){var s,r=this,q=r.k3 -q.toString -s=r.k4 -t.L5.a(r.x) -r.shq(a.mv(new A.Ni(q,s,A.c([],t.k5),B.ag))) -r.jr(a) -a.ct()}} -A.C1.prototype={ -iR(a){var s=this,r=s.aH,q=s.k3 -t.C6.a(s.x) -s.shq(a.mv(new A.R5(q,r,A.c([],t.k5),B.ag))) -s.jr(a) -a.ct()}} -A.xQ.prototype={ -scC(a){var s=this -if(a.j(0,s.aH))return -s.aH=a -s.U=!0 -s.fH()}, -iR(a){var s=this,r=s.aB=s.aH,q=s.k3 -if(!q.j(0,B.f)){r=A.r9(q.a,q.b,0) -q=s.aB -q.toString -r.f2(q) -s.aB=r}s.shq(a.wK(r.a,t.qf.a(s.x))) -s.jr(a) -a.ct()}, -HD(a){var s,r=this -if(r.U){s=r.aH -s.toString -r.n=A.ra(A.aRx(s)) -r.U=!1}s=r.n -if(s==null)return null -return A.bA(s,a)}, -ig(a,b,c,d){var s=this.HD(b) -if(s==null)return!1 -return this.a4Q(a,s,!0,d)}, -rj(a,b){var s=this.aB -if(s==null){s=this.aH -s.toString -b.f2(s)}else b.f2(s)}} -A.TZ.prototype={ -ser(a){var s=this,r=s.aH -if(a!=r){if(a===255||r===255)s.shq(null) -s.aH=a -s.fH()}}, -iR(a){var s,r,q,p,o=this -if(o.ax==null){o.shq(null) -return}s=o.aH -s.toString -r=t.k5 -q=o.k3 -p=o.x -if(s<255){t.Zr.a(p) -o.shq(a.mv(new A.TY(s,q,A.c([],r),B.ag)))}else{t.Ff.a(p) -s=A.wb() -s.qk(q.a,q.b,0) -o.shq(a.mv(new A.Do(s,A.c([],r),B.ag)))}o.jr(a) -a.ct()}} -A.A3.prototype={ -sZa(a){if(!a.j(0,this.k3)){this.k3=a -this.fH()}}, -iR(a){var s,r=this,q=r.k3 -q.toString -s=r.k4 -t.tX.a(r.x) -r.shq(a.mv(new A.ME(q,s,A.c([],t.k5),B.ag))) -r.jr(a) -a.ct()}} -A.vV.prototype={ -k(a){var s=A.bF(this),r=this.a!=null?"":"" -return"#"+s+"("+r+")"}} -A.Cs.prototype={ -spN(a){var s=this,r=s.k3 -if(r===a)return -if(s.y!=null){if(r.a===s)r.a=null -a.a=s}s.k3=a}, -scU(a){if(a.j(0,this.k4))return -this.k4=a -this.fH()}, -aP(a){this.a48(a) -this.k3.a=this}, -az(){var s=this.k3 -if(s.a===this)s.a=null -this.a49()}, -ig(a,b,c,d){return this.mW(a,b.ac(0,this.k4),!0,d)}, -iR(a){var s=this,r=s.k4 -if(!r.j(0,B.f))s.shq(a.wK(A.r9(r.a,r.b,0).a,t.qf.a(s.x))) -else s.shq(null) -s.jr(a) -if(!s.k4.j(0,B.f))a.ct()}, -rj(a,b){var s=this.k4 -if(!s.j(0,B.f))b.eh(s.a,s.b,0,1)}} -A.BL.prototype={ -HD(a){var s,r,q,p,o=this -if(o.R8){s=o.MM() -s.toString -o.p4=A.ra(s) -o.R8=!1}if(o.p4==null)return null -r=new A.n3(new Float64Array(4)) -r.Nu(a.a,a.b,0,1) -s=o.p4.aj(r).a -q=s[0] -p=o.p1 -return new A.h(q-p.a,s[1]-p.b)}, -ig(a,b,c,d){var s,r=this -if(r.k3.a==null){if(r.k4)return r.mW(a,b.ac(0,r.ok),!0,d) -return!1}s=r.HD(b) -if(s==null)return!1 -return r.mW(a,s,!0,d)}, -MM(){var s,r -if(this.p3==null)return null -s=this.p2 -r=A.r9(-s.a,-s.b,0) -s=this.p3 -s.toString -r.f2(s) -return r}, -abU(){var s,r,q,p,o,n,m=this -m.p3=null -s=m.k3.a -if(s==null)return -r=t.KV -q=A.c([s],r) -p=A.c([m],r) -A.aif(s,m,q,p) -o=A.aW3(q) -s.rj(null,o) -r=m.p1 -o.eh(r.a,r.b,0,1) -n=A.aW3(p) -if(n.ia(n)===0)return -n.f2(o) -m.p3=n -m.R8=!0}, -grh(){return!0}, -iR(a){var s,r,q=this -if(q.k3.a==null&&!q.k4){q.p2=q.p3=null -q.R8=!0 -q.shq(null) -return}q.abU() -s=q.p3 -r=t.qf -if(s!=null){q.p2=q.ok -q.shq(a.wK(s.a,r.a(q.x))) -q.jr(a) -a.ct()}else{q.p2=null -s=q.ok -q.shq(a.wK(A.r9(s.a,s.b,0).a,r.a(q.x))) -q.jr(a) -a.ct()}q.R8=!0}, -rj(a,b){var s=this.p3 -if(s!=null)b.f2(s) -else{s=this.ok -b.f2(A.r9(s.a,s.b,0))}}} -A.zU.prototype={ -ig(a,b,c,d){var s,r,q=this,p=q.mW(a,b,!0,d),o=a.a,n=o.length -if(n!==0)return p -n=q.k4 -if(n!=null){s=q.ok -r=s.a -s=s.b -n=!new A.w(r,s,r+n.a,s+n.b).q(0,b)}else n=!1 -if(n)return p -if(A.bM(q.$ti.c)===A.bM(d))o.push(new A.zV(d.a(q.k3),b.ac(0,q.ok),d.i("zV<0>"))) -return p}} -A.a3q.prototype={} -A.a3Y.prototype={ -ay1(a){var s=this.a -this.a=a -return s}, -k(a){var s="#",r=A.bF(this.b),q=this.a.a -return s+A.bF(this)+"("+("latestEvent: "+(s+r))+", "+("annotations: [list of "+q+"]")+")"}} -A.a3Z.prototype={ -giX(){return this.c.giX()}} -A.TD.prototype={ -Sb(a){var s,r,q,p,o,n,m=t._h,l=A.t(m,t.xV) -for(s=a.a,r=s.length,q=0;q") -this.b.asL(a.giX(),a.d,A.w4(new A.bD(s,r),new A.ao7(),r.i("y.E"),t.Pb))}, -ayY(a,b){var s,r,q,p,o,n=this -if(a.gdd()!==B.c5&&a.gdd()!==B.bm)return -if(t.ks.b(a))return -A:{if(t.PB.b(a)){s=A.QL() -break A}s=b==null?n.a.$2(a.gbV(),a.gog()):b -break A}r=a.giX() -q=n.c -p=q.h(0,r) -if(!A.b9i(p,a))return -o=q.a -new A.aoa(n,p,a,r,s).$0() -if(o!==0!==(q.a!==0))n.a7()}, -ayS(){new A.ao8(this).$0()}} -A.ao7.prototype={ -$1(a){return a.gY6()}, -$S:310} -A.aoa.prototype={ -$0(){var s=this -new A.ao9(s.a,s.b,s.c,s.d,s.e).$0()}, -$S:0} -A.ao9.prototype={ -$0(){var s,r,q,p,o,n=this,m=n.b -if(m==null){s=n.c -if(t.PB.b(s))return -n.a.c.m(0,n.d,new A.a3Y(A.t(t._h,t.xV),s))}else{s=n.c -if(t.PB.b(s))n.a.c.J(0,s.giX())}r=n.a -q=r.c.h(0,n.d) -if(q==null){m.toString -q=m}p=q.b -q.b=s -o=t.PB.b(s)?A.t(t._h,t.xV):r.Sb(n.e) -r.RB(new A.a3Z(q.ay1(o),o,p,s))}, -$S:0} -A.ao8.prototype={ -$0(){var s,r,q,p,o,n -for(s=this.a,r=s.c,r=new A.db(r,r.r,r.e);r.v();){q=r.d -p=q.b -o=s.acd(q) -n=q.a -q.a=o -s.RB(new A.a3Z(n,o,p,null))}}, -$S:0} -A.ao5.prototype={ -$2(a,b){var s -if(a.gMr()&&!this.a.aN(a)){s=a.gC9() -if(s!=null)s.$1(this.b.bW(this.c.h(0,a)))}}, -$S:311} -A.ao6.prototype={ -$1(a){return!this.a.aN(a)}, -$S:312} -A.aaL.prototype={} -A.cE.prototype={ -az(){}, -k(a){return""}} -A.rr.prototype={ -e4(a,b){var s,r=this -if(a.gfp()){r.tX() -if(!a.cy){s=a.ay -s===$&&A.a() -s=!s}else s=!0 -if(s)A.aXd(a,!0) -else if(a.db)A.b9F(a) -s=a.ch.a -s.toString -t.gY.a(s) -s.scU(b) -s.fI(0) -r.a.Ij(s)}else{s=a.ay -s===$&&A.a() -if(s){a.ch.saR(null) -a.H_(r,b)}else a.H_(r,b)}}, -gcw(){if(this.e==null)this.Hs() -var s=this.e -s.toString -return s}, -Hs(){var s,r=this -r.c=new A.Ue(r.b,A.t(t.S,t.M),A.at()) -$.mB.toString -$.ab() -s=new A.pU() -r.d=s -r.e=A.aQk(s,null) -s=r.c -s.toString -r.a.Ij(s)}, -tX(){var s,r=this -if(r.e==null)return -s=r.c -s.toString -s.sa0w(r.d.vO()) -r.e=r.d=r.c=null}, -Nn(){if(this.c==null)this.Hs() -var s=this.c -if(!s.ch){s.ch=!0 -s.fH()}}, -q2(a,b,c,d){var s -if(a.ax!=null)a.LW() -this.tX() -a.fI(0) -this.a.Ij(a) -s=new A.rr(a,d==null?this.b:d) -b.$2(s,c) -s.tX()}, -mw(a,b,c){return this.q2(a,b,c,null)}, -ll(a,b,c,d,e,f){var s,r,q=this -if(e===B.v){d.$2(q,b) -return null}s=c.e0(b) -if(a){r=f==null?new A.Az(B.N,A.t(t.S,t.M),A.at()):f -if(!s.j(0,r.k3)){r.k3=s -r.fH()}if(e!==r.k4){r.k4=e -r.fH()}q.q2(r,d,b,s) -return r}else{q.apF(s,e,s,new A.apo(q,d,b)) -return null}}, -axh(a,b,c,d){return this.ll(a,b,c,d,B.N,null)}, -a0P(a,b,c,d,e,f,g){var s,r,q,p=this -if(f===B.v){e.$2(p,b) -return null}s=c.e0(b) -r=d.e0(b) -if(a){q=g==null?new A.Ay(B.cm,A.t(t.S,t.M),A.at()):g -if(!r.j(0,q.k3)){q.k3=r -q.fH()}if(f!==q.k4){q.k4=f -q.fH()}p.q2(q,e,b,s) -return q}else{p.apE(r,f,s,new A.apn(p,e,b)) -return null}}, -LN(a,b,c,d,e,f,g){var s,r,q,p=this -if(f===B.v){e.$2(p,b) -return null}s=c.e0(b) -r=A.aWC(d,b) -if(a){q=g==null?new A.Ax(B.cm,A.t(t.S,t.M),A.at()):g -if(r!==q.k3){q.k3=r -q.fH()}if(f!==q.k4){q.k4=f -q.fH()}p.q2(q,e,b,s) -return q}else{p.apC(r,f,s,new A.apm(p,e,b)) -return null}}, -axg(a,b,c,d,e,f){return this.LN(a,b,c,d,e,B.cm,f)}, -wL(a,b,c,d,e){var s,r=this,q=b.a,p=b.b,o=A.r9(q,p,0) -o.f2(c) -o.eh(-q,-p,0,1) -if(a){s=e==null?A.aSi(B.f,null):e -s.scC(o) -r.q2(s,d,b,A.aWV(o,r.b)) -return s}else{q=r.gcw() -J.b4(q.a.save()) -q.aj(o.a) -d.$2(r,b) -r.gcw().a.restore() -return null}}, -a0Q(a,b,c,d){var s=d==null?A.aRt():d -s.ser(b) -s.scU(a) -this.mw(s,c,B.f) -return s}, -k(a){return"PaintingContext#"+A.h7(this)+"(layer: "+this.a.k(0)+", canvas bounds: "+this.b.k(0)+")"}} -A.apo.prototype={ -$0(){return this.b.$2(this.a,this.c)}, -$S:0} -A.apn.prototype={ -$0(){return this.b.$2(this.a,this.c)}, -$S:0} -A.apm.prototype={ -$0(){return this.b.$2(this.a,this.c)}, -$S:0} -A.lM.prototype={} -A.mn.prototype={ -tm(){var s=this.cx -if(s!=null)s.a.JR()}, -sM3(a){var s=this.e -if(s==a)return -if(s!=null)s.az() -this.e=a -if(a!=null)a.aP(this)}, -Zm(){var s,r,q,p,o,n,m,l,k,j,i,h=this -try{for(o=t.TT;n=h.r,n.length!==0;){s=n -h.r=A.c([],o) -J.ac9(s,new A.apw()) -for(r=0;r")) -i.xX(m,l,k,j.c) -B.b.a_(n,i) -break}}q=J.iQ(s,r) -if(q.z&&q.y===h)q.ah3()}h.f=!1}for(o=h.CW,o=A.cl(o,o.r,A.n(o).c),n=o.$ti.c;o.v();){m=o.d -p=m==null?n.a(m):m -p.Zm()}}finally{h.f=!1}}, -abP(a){try{a.$0()}finally{this.f=!0}}, -Zk(){var s,r,q,p,o=this.z -B.b.fO(o,new A.apv()) -for(s=o.length,r=0;r") -l=A.aa(new A.b1(n,new A.apy(g),m),m.i("y.E")) -B.b.fO(l,new A.apz()) -s=l -n.aa(0) -for(n=s,m=n.length,k=0;k"),n=new A.cu(n,m),n=new A.bf(n,n.gH(0),m.i("bf")),j=t.S,m=m.i("aE.E");n.v();){i=n.d -p=i==null?m.a(i):i -if(p.gfS().gmu())continue -i=p.gfS() -if(!i.f)i.EL(A.aU(j)) -else i.Ph(A.aU(j))}g.at.a2W() -for(n=g.CW,n=A.cl(n,n.r,A.n(n).c),m=n.$ti.c;n.v();){j=n.d -o=j==null?m.a(j):j -o.Zo()}}finally{}}, -aP(a){var s,r,q,p=this -p.cx=a -a.a9(p.gVZ()) -p.W_() -for(s=p.CW,s=A.cl(s,s.r,A.n(s).c),r=s.$ti.c;s.v();){q=s.d;(q==null?r.a(q):q).aP(a)}}, -az(){var s,r,q,p=this -p.cx.O(p.gVZ()) -p.cx=null -for(s=p.CW,s=A.cl(s,s.r,A.n(s).c),r=s.$ti.c;s.v();){q=s.d;(q==null?r.a(q):q).az()}}} -A.apw.prototype={ -$2(a,b){return a.c-b.c}, -$S:79} -A.apv.prototype={ -$2(a,b){return a.c-b.c}, -$S:79} -A.apx.prototype={ -$2(a,b){return b.c-a.c}, -$S:79} -A.apy.prototype={ -$1(a){return!a.z&&a.y===this.a}, -$S:220} -A.apz.prototype={ -$2(a,b){return a.c-b.c}, -$S:79} -A.r.prototype={ -be(){var s=this -s.cx=s.gfp()||s.gkg() -s.ay=s.gfp()}, -l(){this.ch.saR(null)}, -eT(a){if(!(a.b instanceof A.cE))a.b=new A.cE()}, -lo(a){var s=a.c,r=this.c -if(s<=r){a.c=r+1 -a.h6()}}, -h6(){}, -gbk(){return this.d}, -i7(a){var s,r=this -r.eT(a) -r.ag() -r.ld() -r.br() -a.d=r -s=r.y -if(s!=null)a.aP(s) -r.lo(a)}, -m5(a){var s=this,r=a.Q -if(r===!1)a.Q=null -a.b.az() -a.d=a.b=null -if(s.y!=null)a.az() -s.ag() -s.ld() -s.br()}, -bB(a){}, -za(a,b,c){A.dE(new A.c9(b,c,"rendering library",A.bZ("during "+a+"()"),new A.arf(this),!1))}, -aP(a){var s,r=this -r.y=a -if(r.z&&r.Q!=null){r.z=!1 -r.ag()}if(r.CW){r.CW=!1 -r.ld()}if(r.cy&&r.ch.a!=null){r.cy=!1 -r.bb()}s=r.gfS() -if(s.ax.geM().a)s=s.gmu()||!s.f -else s=!1 -if(s)r.br()}, -az(){this.y=null}, -gab(){var s=this.at -if(s==null)throw A.i(A.aL("A RenderObject does not have any constraints before it has been laid out.")) -return s}, -ag(){var s,r,q,p,o=this -if(o.z)return -o.z=!0 -s=o.y -r=null -q=!1 -if(s!=null){p=o.Q -q=p===!0 -r=s}if(q){r.r.push(o) -r.tm()}else if(o.gbk()!=null)o.BZ()}, -BZ(){this.z=!0 -var s=this.gbk() -s.toString -if(!this.as)s.ag()}, -ah3(){var s,r,q,p=this -try{p.c7() -p.br()}catch(q){s=A.aj(q) -r=A.b3(q) -p.za("performLayout",s,r)}p.z=!1 -p.bb()}, -cs(a,b){var s,r,q,p,o,n=this -n.Q=!b||n.gkH()||a.ga_I()||n.gbk()==null -if(!n.z&&a.j(0,n.at))return -n.at=a -if(n.gkH())try{n.q_()}catch(o){s=A.aj(o) -r=A.b3(o) -n.za("performResize",s,r)}try{n.c7() -n.br()}catch(o){q=A.aj(o) -p=A.b3(o) -n.za("performLayout",q,p)}n.z=!1 -n.bb()}, -hu(a){return this.cs(a,!1)}, -gkH(){return!1}, -wf(a,b){var s=this -s.as=!0 -try{s.y.abP(new A.arj(s,a,b))}finally{s.as=!1}}, -gfp(){return!1}, -gkg(){return!1}, -tz(a){return a==null?A.aX7(B.f):a}, -gaR(){return this.ch.a}, -ld(){var s,r,q,p=this -if(p.CW)return -s=p.CW=!0 -r=p.gbk() -if(r!=null){if(r.CW)return -q=p.ay -q===$&&A.a() -if((q?!p.gfp():s)&&!r.gfp()){r.ld() -return}}s=p.y -if(s!=null)s.z.push(p)}, -Vw(){var s,r,q=this -if(!q.CW)return -s=q.cx -s===$&&A.a() -q.cx=!1 -q.bB(new A.arg(q)) -if(q.gfp()||q.gkg())q.cx=!0 -if(!q.gfp()){r=q.ay -r===$&&A.a()}else r=!1 -if(r){q.db=q.cy=!1 -s=q.y -if(s!=null)B.b.f4(s.Q,new A.arh(q)) -q.CW=!1 -q.bb()}else if(s!==q.cx){q.CW=!1 -q.bb()}else q.CW=!1}, -bb(){var s,r=this -if(r.cy)return -r.cy=!0 -if(r.gfp()){s=r.ay -s===$&&A.a()}else s=!1 -if(s){s=r.y -if(s!=null){s.Q.push(r) -r.y.tm()}}else if(r.gbk()!=null)r.gbk().bb() -else{s=r.y -if(s!=null)s.tm()}}, -a_Y(){var s,r=this -if(r.db||r.cy)return -r.db=!0 -if(r.gfp()){s=r.ay -s===$&&A.a()}else s=!1 -if(s){s=r.y -if(s!=null){s.Q.push(r) -r.y.tm()}}else r.bb()}, -alZ(){var s,r=this.gbk() -while(r!=null){if(r.gfp()){s=r.ch.a -if(s==null)break -if(s.y!=null)break -r.cy=!0}r=r.gbk()}}, -H_(a,b){var s,r,q,p=this -if(p.z)return -p.db=p.cy=!1 -p.ay=p.gfp() -try{p.b1(a,b)}catch(q){s=A.aj(q) -r=A.b3(q) -p.za("paint",s,r)}}, -b1(a,b){}, -dz(a,b){}, -pY(a){return!0}, -bd(a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=null,b=" are not in the same render tree.",a=a0==null -if(a){s=d.y.e -s.toString -r=s}else r=a0 -for(s=t.TT,q=d,p=c,o=p;q!==r;){n=q.c -m=r.c -if(n>=m){l=q.gbk() -if(l==null)l=A.a0(A.h_(A.j(a0)+" and "+d.k(0)+b)) -if(o==null){o=A.c([d],s) -k=o}else k=o -k.push(l) -q=l}if(n<=m){j=r.gbk() -if(j==null)j=A.a0(A.h_(A.j(a0)+" and "+d.k(0)+b)) -if(p==null){a0.toString -p=A.c([a0],s) -k=p}else k=p -k.push(j) -r=j}}if(o!=null){i=new A.bc(new Float64Array(16)) -i.ei() -s=o.length -h=a?s-2:s-1 -for(g=h;g>0;g=f){f=g-1 -o[g].dz(o[f],i)}}else i=c -if(p==null){if(i==null){a=new A.bc(new Float64Array(16)) -a.ei()}else a=i -return a}e=new A.bc(new Float64Array(16)) -e.ei() -for(g=p.length-1;g>0;g=f){f=g-1 -p[g].dz(p[f],e)}if(e.ia(e)===0)return new A.bc(new Float64Array(16)) -if(i==null)a=c -else{i.f2(e) -a=i}return a==null?e:a}, -m3(a){return null}, -Jk(a){return null}, -xs(){this.y.ch.G(0,this) -this.y.tm()}, -eJ(a){}, -tP(a){var s,r=this -if(r.y.at==null)return -s=r.gfS().r -if(s!=null&&!s.y)s.a2V(a) -else if(r.gbk()!=null)r.gbk().tP(a)}, -pa(){var s=this.gfS() -s.f=!1 -s.d=s.at=s.as=s.r=null -s.e=!1 -B.b.aa(s.x) -B.b.aa(s.z) -B.b.aa(s.y) -B.b.aa(s.w) -s.ax.aa(0) -this.bB(new A.ari())}, -br(){var s=this.y -if(s==null||s.at==null)return -this.gfS().avx()}, -gfS(){var s,r,q,p,o=this,n=o.dx -if(n===$){s=A.c([],t.QF) -r=A.c([],t.g9) -q=A.c([],t.z_) -p=A.c([],t.fQ) -o.dx!==$&&A.aK() -n=o.dx=new A.hf(o,s,r,q,p,A.t(t.bu,t.rg),new A.aHj(o))}return n}, -fK(a){this.bB(a)}, -rk(a,b,c){a.mE(t.V1.a(c),b)}, -jF(a,b){}, -dk(){return"#"+A.bF(this)}, -k(a){return this.dk()}, -ff(a,b,c,d){var s=this.gbk() -if(s!=null)s.ff(a,b==null?this:b,c,d)}, -tS(){return this.ff(B.bE,null,B.z,null)}, -ov(a){return this.ff(B.bE,null,B.z,a)}, -qm(a,b,c){return this.ff(a,null,b,c)}, -ow(a,b){return this.ff(B.bE,a,B.z,b)}, -$iaC:1} -A.arf.prototype={ -$0(){var s=A.c([],t.D),r=this.a -s.push(A.aQA("The following RenderObject was being processed when the exception was fired",B.Oj,r)) -s.push(A.aQA("RenderObject",B.Ok,r)) -return s}, -$S:23} -A.arj.prototype={ -$0(){this.b.$1(this.c.a(this.a.gab()))}, -$S:0} -A.arg.prototype={ -$1(a){var s -a.Vw() -s=a.cx -s===$&&A.a() -if(s)this.a.cx=!0}, -$S:18} -A.arh.prototype={ -$1(a){return a===this.a}, -$S:220} -A.ari.prototype={ -$1(a){a.pa()}, -$S:18} -A.b2.prototype={ -sR(a){var s=this,r=s.u$ -if(r!=null)s.m5(r) -s.u$=a -if(a!=null)s.i7(a)}, -h6(){var s=this.u$ -if(s!=null)this.lo(s)}, -bB(a){var s=this.u$ -if(s!=null)a.$1(s)}} -A.ard.prototype={ -ayj(){this.wf(new A.are(this),t.Nq) -this.K_$=!1}} -A.are.prototype={ -$1(a){return this.a.L_()}, -$S:11} -A.dq.prototype={$icE:1} -A.ao.prototype={ -gID(){return this.dJ$}, -yI(a,b){var s,r,q,p=this,o=a.b -o.toString -s=A.n(p).i("ao.1") -s.a(o);++p.dJ$ -if(b==null){o=o.aJ$=p.al$ -if(o!=null){o=o.b -o.toString -s.a(o).cS$=a}p.al$=a -if(p.dn$==null)p.dn$=a}else{r=b.b -r.toString -s.a(r) -q=r.aJ$ -if(q==null){o.cS$=b -p.dn$=r.aJ$=a}else{o.aJ$=q -o.cS$=b -o=q.b -o.toString -s.a(o).cS$=r.aJ$=a}}}, -KN(a,b,c){this.i7(b) -this.yI(b,c)}, -a_(a,b){}, -z8(a){var s,r,q,p,o=this,n=a.b -n.toString -s=A.n(o).i("ao.1") -s.a(n) -r=n.cS$ -q=n.aJ$ -if(r==null)o.al$=q -else{p=r.b -p.toString -s.a(p).aJ$=q}q=n.aJ$ -if(q==null)o.dn$=r -else{q=q.b -q.toString -s.a(q).cS$=r}n.aJ$=n.cS$=null;--o.dJ$}, -J(a,b){this.z8(b) -this.m5(b)}, -t3(a,b){var s=this,r=a.b -r.toString -if(A.n(s).i("ao.1").a(r).cS$==b)return -s.z8(a) -s.yI(a,b) -s.ag()}, -h6(){var s,r,q,p=this.al$ -for(s=A.n(this).i("ao.1");p!=null;){r=p.c -q=this.c -if(r<=q){p.c=q+1 -p.h6()}r=p.b -r.toString -p=s.a(r).aJ$}}, -bB(a){var s,r,q=this.al$ -for(s=A.n(this).i("ao.1");q!=null;){a.$1(q) -r=q.b -r.toString -q=s.a(r).aJ$}}, -gasr(){return this.al$}, -apt(a){var s=a.b -s.toString -return A.n(this).i("ao.1").a(s).cS$}, -aps(a){var s=a.b -s.toString -return A.n(this).i("ao.1").a(s).aJ$}} -A.wI.prototype={ -xW(){this.ag()}, -akW(){if(this.B5$)return -this.B5$=!0 -$.c6.N4(new A.aqC(this))}} -A.aqC.prototype={ -$1(a){var s=this.a -s.B5$=!1 -if(s.y!=null)s.xW()}, -$S:4} -A.VQ.prototype={ -sa0N(a){var s=this,r=s.cZ$ -r===$&&A.a() -if(r===a)return -s.cZ$=a -s.Vo(a) -s.br()}, -sapR(a){var s=this.B_$ -s===$&&A.a() -if(s===a)return -this.B_$=a -this.br()}, -sas3(a){var s=this.B0$ -s===$&&A.a() -if(s===a)return -this.B0$=a -this.br()}, -sarZ(a){var s=this.B1$ -s===$&&A.a() -if(!s)return -this.B1$=!1 -this.br()}, -sap0(a){var s=this.B2$ -s===$&&A.a() -if(!s)return -this.B2$=!1 -this.br()}, -savj(a){if(J.b(this.B3$,a))return -this.B3$=a -this.br()}, -Vo(a){var s=this,r=a.k4 -r=a.k3 -r=r==null?null:new A.d8(r,B.aY) -s.YX$=r -r=a.p1 -r=a.ok -r=r==null?null:new A.d8(r,B.aY) -s.YY$=r -s.YZ$=null -s.cZ$===$&&A.a() -s.Z_$=null -s.Z0$=null}, -sce(a){if(this.B4$==a)return -this.B4$=a -this.br()}, -ajM(){var s=this.cZ$ -s===$&&A.a() -s=s.aH -if(s!=null)s.$0()}, -ajz(){var s=this.cZ$ -s===$&&A.a() -s=s.aB -if(s!=null)s.$0()}, -ajv(){var s=this.cZ$ -s===$&&A.a() -s=s.bo -if(s!=null)s.$0()}, -ajn(){var s=this.cZ$ -s===$&&A.a() -s=s.L -if(s!=null)s.$0()}, -ajp(){var s=this.cZ$ -s===$&&A.a() -s=s.P -if(s!=null)s.$0()}, -ajB(){var s=this.cZ$ -s===$&&A.a() -s=s.ao -if(s!=null)s.$0()}, -ajr(){var s=this.cZ$ -s===$&&A.a() -s=s.bU -if(s!=null)s.$0()}, -ajt(){var s=this.cZ$ -s===$&&A.a() -s=s.aK -if(s!=null)s.$0()}, -ajx(){var s=this.cZ$ -s===$&&A.a() -s=s.c_ -if(s!=null)s.$0()}} -A.JS.prototype={ -j(a,b){var s=this -if(b==null)return!1 -return b instanceof A.JS&&b.a===s.a&&b.b===s.b&&b.d===s.d&&J.b(b.f,s.f)&&A.pC(b.e,s.e)}, -gt(a){var s=this,r=s.e -return A.N(s.a,s.b,s.d,s.f,A.aRs(r==null?B.a6v:r),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.aHj.prototype={ -geM(){var s=this.d -return s==null?this.gbZ():s}, -gbZ(){var s,r=this -if(r.c==null){s=A.hD() -r.d=r.c=s -r.a.eJ(s)}s=r.c -s.toString -return s}, -tA(a){var s,r,q=this -if(!q.b){s=q.gbZ() -r=A.hD() -r.a=s.a -r.e=s.e -r.f=s.f -r.r=s.r -r.x1=!1 -r.L=s.L -r.p3=s.p3 -r.xr=s.xr -r.y1=s.y1 -r.y2=s.y2 -r.aB=s.aB -r.U=s.U -r.n=s.n -r.a0=s.a0 -r.a3=s.a3 -r.P=s.P -r.au=s.au -r.a5=s.a5 -r.u=s.u -r.bq=s.bq -r.b8=s.b8 -r.bL=s.bL -r.bz=s.bz -r.bE=s.bE -r.x=s.x -r.p4=s.p4 -r.RG=s.RG -r.R8=s.R8 -r.rx=s.rx -r.ry=s.ry -r.to=s.to -r.w.a_(0,s.w) -r.x2.a_(0,s.x2) -r.d=s.d -r.av=s.av -r.ao=s.ao -r.aH=s.aH -r.bv=s.bv -r.bU=s.bU -r.c_=s.c_ -r.aK=s.aK -r.y2=s.y2 -r.y1=s.y1 -r.cB=s.cB -r.bo=s.bo -q.d=r -q.b=!0}s=q.d -s.toString -a.$1(s)}, -ao0(a){this.tA(new A.aHk(a))}, -aa(a){this.b=!1 -this.c=this.d=null}} -A.aHk.prototype={ -$1(a){this.a.aL(0,a.gao_())}, -$S:54} -A.e4.prototype={} -A.I5.prototype={ -L7(a){}, -gjz(){return this.b}, -gms(){return this.c}} -A.hf.prototype={ -gms(){return this}, -gmu(){if(this.b.gbk()==null)return!1 -return this.as==null}, -gjz(){return this.got()?null:this.ax.geM()}, -gAj(){var s=this.ax -return s.geM().r||this.e||s.geM().a||this.b.gbk()==null}, -got(){var s=this -if(s.ax.geM().a)return!0 -if(s.b.gbk()==null)return!0 -if(!s.gAj())return!1 -return s.as.d||s.c}, -ga_t(){var s,r=this,q=r.d -if(q!=null)return q -q=r.ax -s=q.geM().f -r.d=s -if(s)return!0 -if(q.geM().a)return!1 -r.b.fK(new A.aGk(r)) -q=r.d -q.toString -return q}, -cL(){var s,r,q,p,o,n,m,l=this,k=l.f=!1 -if(!l.gmu()?!l.got():k)return -for(k=l.z,s=k.length,r=t.ju,q=0;q")),p=p.c;n.v();){m=p.a(o.gT()) -if(m.gmu())continue -if(!m.got())m.cL()}}, -Dd(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null,e={},d=g.ax -d.d=d.gbZ() -d.b=!1 -s=g.ad3() -r=!0 -if(g.b.gbk()!=null)if(!d.geM().e){if(!g.gAj()){q=g.as -q=q==null?f:q.d -q=q!==!1}else q=!1 -r=q}q=g.as -q=q==null?f:q.b -p=q===!0||d.geM().d -e.a=null -q=g.as -q=(q==null?f:q.c)===B.fT?e.a=B.fT:e.a=d.geM().P -o=d.geM().b -if(o==null){n=g.as -o=n==null?f:n.f}n=g.z -B.b.aa(n) -m=g.x -B.b.aa(m) -l=g.as -l=l==null?f:l.a -l=l===!0 -if(!l)d.geM() -k=g.aap(new A.JS(l,p,q,r,s,o)) -q=k.a -B.b.a_(m,q) -B.b.a_(n,k.b) -l=g.y -B.b.aa(l) -if(!g.gAj())return -g.GH(m,!0) -B.b.aL(n,g.gahh()) -d.ao0(new A.cN(new A.am(m,new A.aGl(),A.a6(m).i("am<1,ed?>")),t.t5)) -B.b.aa(m) -m.push(g) -for(q=B.b.gai(q),m=new A.le(q,t.Zw),j=t.ju;m.v();){i=j.a(q.gT()) -if(i.got())l.push(i) -else{B.b.a_(l,i.y) -B.b.a_(n,i.z)}}q=g.as -h=q==null?f:q.e -if(h!=null)d.tA(new A.aGm(h)) -if(e.a!==d.geM().P)d.tA(new A.aGn(e)) -if(p!==d.geM().d)d.tA(new A.aGo(p)) -if(!J.b(o,d.geM().c))d.tA(new A.aGp(o))}, -Ra(){var s=A.c([],t.z_) -this.b.fK(new A.aGe(s)) -return s}, -ad3(){var s,r,q=this -if(q.gAj()){s=q.ax.gbZ().bq -return s==null?null:s.ix(0)}s=q.ax -r=s.gbZ().bq!=null?s.gbZ().bq.ix(0):null -s=q.as -if((s==null?null:s.e)!=null)if(r==null)r=s.e -else{s=s.e -s.toString -r.a_(0,s)}return r}, -aap(a1){var s,r,q,p,o,n,m,l,k,j,i=this,h=A.c([],t.g9),g=A.c([],t.fQ),f=A.c([],t.q1),e=i.ax.geM().p2,d=e!=null,c=t.vC,b=A.t(t.VP,c),a=d&&a1.d,a0=a?new A.JS(a1.a,a1.b,a1.c,!1,a1.e,a1.f):a1 -for(s=i.Ra(),r=s.length,q=0;q"))) -for(r=j.b,o=r.length,q=0;q")),r).gai(0),new A.aGi(),B.lQ,r.i("vx")),s=j.a,m=t.ju;r.v();){l=r.d -if(l==null)l=m.a(l) -l.at=A.aSL(l,k,q,p,s) -l.cL() -l.HI()}}, -EL(a){var s,r,q,p,o,n,m,l=this,k=null,j=l.r -if(j!=null)for(s=l.w,r=s.length,q=0;q"),j=k.i("y.E"),i=a4.b,h=0;h")).gai(0),r=b.a,q=b.b,b=b.c;s.v();){p=s.d -for(o=J.bG(p.b),n=c,m=n,l=m;o.v();){k=o.gT() -if(k.gms().got())continue -j=A.aSL(k.gms(),this,b,q,r) -i=j.b -h=i==null -g=h?c:i.f0(k.gms().b.gjd()) -if(g==null)g=k.gms().b.gjd() -k=j.a -f=A.e0(k,g) -l=l==null?c:l.hr(f) -if(l==null)l=f -if(!h){e=A.e0(k,i) -m=m==null?c:m.f0(e) -if(m==null)m=e}i=j.c -if(i!=null){e=A.e0(k,i) -n=n==null?c:n.f0(e) -if(n==null)n=e}}d=p.a -l.toString -if(!d.f.j(0,l)){d.f=l -d.iO()}if(!A.aWW(d.d,c)){d.d=null -d.iO()}d.w=n}}, -avx(){var s,r,q,p,o,n,m,l,k=this,j=k.r!=null -if(j){s=k.ax.c -s=s==null?null:s.a -r=s===!0}else r=!1 -s=k.ax -s.aa(0) -k.e=!1 -q=s.geM().p2!=null -p=s.geM().a&&r -o=k.b -n=o -for(;;){if(n.gbk()!=null)s=q||!p -else s=!1 -if(!s)break -if(n!==o&&n.gfS().gmu()&&!q)break -s=n.gfS() -s.d=s.as=s.at=null -if(p)q=!1 -s=s.ax -m=s.d -if(m==null){if(s.c==null){m=A.hD() -s.d=s.c=m -s.a.eJ(m)}s=s.c -s.toString}else s=m -q=B.f3.tL(q,s.p2!=null) -n=n.gbk() -s=n.gfS() -m=s.ax -l=m.d -if(l==null){if(m.c==null){l=A.hD() -m.d=m.c=l -m.a.eJ(l)}m=m.c -m.toString}else m=l -p=m.a&&s.f}if(n!==o&&j&&n.gfS().gmu())o.y.ch.J(0,o) -if(!n.gfS().gmu()){j=o.y -if(j!=null)if(j.ch.G(0,n))o.y.tm()}}, -GH(a,b){var s,r,q,p,o,n,m,l,k=A.aU(t.vC) -for(s=J.bk(a),r=this.ax,q=r.a,p=0;ph){d=c0[h].fx -d=d!=null&&d.q(0,new A.mo(i,b7))}else d=!1 -if(!d)break -b=c0[h] -d=s.b -d.toString -if(m.a(d).a!=null)b5.push(b);++h}b7=s.b -b7.toString -s=n.a(b7).aJ$;++i}else{a=o.a(A.r.prototype.gab.call(b3)) -b6.iC(b3.bL) -a0=a.b -a0=b3.L||b3.P===B.bd?a0:1/0 -b6.j2(a0,a.a) -a1=b6.oj(new A.hb(j,e,B.k,!1,c,d),B.fW,B.d4) -if(a1.length===0)continue -d=B.b.gad(a1) -a2=new A.w(d.a,d.b,d.c,d.d) -a3=B.b.gad(a1).e -for(d=A.a6(a1),c=d.i("iz<1>"),a=new A.iz(a1,1,b4,c),a.xX(a1,1,b4,d.c),a=new A.bf(a,a.gH(0),c.i("bf")),c=c.i("aE.E");a.v();){d=a.d -if(d==null)d=c.a(d) -a2=a2.hr(new A.w(d.a,d.b,d.c,d.d)) -a3=d.e}d=a2.a -c=Math.max(0,d) -a=a2.b -a0=Math.max(0,a) -d=Math.min(a2.c-d,o.a(A.r.prototype.gab.call(b3)).b) -a=Math.min(a2.d-a,o.a(A.r.prototype.gab.call(b3)).d) -a4=Math.floor(c)-4 -a5=Math.floor(a0)-4 -d=Math.ceil(c+d)+4 -a=Math.ceil(a0+a)+4 -a6=new A.w(a4,a5,d,a) -a7=A.hD() -a8=k+1 -a7.p3=new A.rp(k,b4) -a7.r=!0 -a7.L=l -a7.xr="" -c=f.b -b7=c==null?b7:c -a7.aB=new A.d8(b7,f.r) -A:{break A}b7=b8.w -if(b7!=null){a9=b7.f0(a6) -if(a9.a>=a9.c||a9.b>=a9.d)b7=!(a4>=d||a5>=a) -else b7=!1 -a7.u=a7.u.IY(b7)}b7=b3.bE -d=b7==null?b4:b7.a!==0 -if(d===!0){b7.toString -b0=new A.bD(b7,A.n(b7).i("bD<1>")).gai(0) -if(!b0.v())A.a0(A.cD()) -b7=b7.J(0,b0.gT()) -b7.toString -b1=b7}else{b2=new A.hc() -b1=A.EN(b2,b3.ajf(b2))}b1.a1S(a7) -if(!b1.f.j(0,a6)){b1.f=a6 -b1.iO()}b7=b1.a -b7.toString -r.m(0,b7,b1) -b5.push(b1) -k=a8 -l=a3}}b3.bE=r -b8.mE(b5,b9)}, -ajf(a){return new A.ark(this,a)}, -pa(){this.Ee() -this.bE=null}} -A.arn.prototype={ -$1(a){return a.y=a.z=null}, -$S:218} -A.arp.prototype={ -$1(a){var s=a.x -s===$&&A.a() -return s.c!==B.dA}, -$S:325} -A.arm.prototype={ -$2(a,b){return new A.L(a.aO(B.bR,1/0,a.gcG()),0)}, -$S:37} -A.arl.prototype={ -$2(a,b){return new A.L(a.aO(B.aK,1/0,a.gc2()),0)}, -$S:37} -A.aro.prototype={ -$1(a){return a.y=a.z=null}, -$S:218} -A.ark.prototype={ -$0(){var s=this.a -s.ow(s,s.bE.h(0,this.b).f)}, -$S:0} -A.ln.prototype={ -gp(){var s=this.x -s===$&&A.a() -return s}, -ajg(){var s=this,r=s.Rk(),q=s.x -q===$&&A.a() -if(q.j(0,r))return -s.x=r -s.a7()}, -Rk(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this,a=null,a0=b.d -if(a0==null||b.e==null)return B.I0 -s=a0.a -r=b.e.a -a0=b.b -q=a0.uv(new A.ap(s,B.k)) -p=s===r -o=p?q:a0.uv(new A.ap(r,B.k)) -n=a0.n -m=n.w -m.toString -l=s>r!==(B.aj===m) -k=A.cp(B.k,s,r,!1) -j=A.c([],t.AO) -for(a0=a0.mJ(k),m=a0.length,i=0;ir!==s>r){p=sr?a.a:d}else if(e!=null)p=c.ar -if(s!==r&&n!==s>r){o=b.$1(e) -m.e=n?o.a:o.b}}p=null}return p==null?c:p}, -VV(a,b,c,d,e){var s,r,q,p,o,n,m,l=this -if(a!=null)if(l.f&&d!=null&&e!=null){s=c.a -r=d.a -q=e.a -if(s!==r&&r>q!==sr?a.a:e}else if(d!=null)p=c.ae.a -if(m!==s=p&&m.a.a>p}else s=!0}else s=!1 -if(s)m=null -l=k.f6(c?k.VV(m,b,n,j,i):k.VY(m,b,n,j,i)) -if(c)k.e=l -else k.d=l -s=l.a -p=k.a -if(s===p.b)return B.P -if(s===p.a)return B.X -return A.EI(k.giM(),q)}, -anm(a,b){var s,r,q,p,o,n,m=this -if(b)m.e=null -else m.d=null -s=m.b -r=s.bd(null) -r.ia(r) -q=A.bA(r,a) -if(m.giM().gan(0))return A.EI(m.giM(),q) -p=m.giM() -o=s.n.w -o.toString -n=m.f6(s.ds(A.EH(p,q,o))) -if(b)m.e=n -else m.d=n -s=n.a -p=m.a -if(s===p.b)return B.P -if(s===p.a)return B.X -return A.EI(m.giM(),q)}, -HY(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this -if(f.f&&d!=null&&e!=null){s=e.a -r=s>=d.a -if(b){q=f.c -p=a.$2(c,q) -o=a.$2(r?new A.ap(s-1,e.b):e,q) -n=r?o.a.a:o.b.a -s=c.a -q=s>n -if(sj&&p.a.a>j)return B.P -k=k.a -if(l=s.a){s=o.b.a -if(l>=s)return B.a1 -if(lq)return B.P}}else{i=f.f6(c) -s=r?new A.ap(s-1,e.b):e -o=a.$2(s,f.c) -if(r&&i.a===f.a.a){f.d=i -return B.X}s=!r -if(s&&i.a===f.a.b){f.d=i -return B.P}if(r&&i.a===f.a.b){f.e=f.f6(o.b) -f.d=i -return B.P}if(s&&i.a===f.a.a){f.e=f.f6(o.a) -f.d=i -return B.X}}}else{s=f.b.fM(c) -q=f.c -h=B.c.a6(q,s.a,s.b)===$.M9() -if(!b||h)return null -if(e!=null){p=a.$2(c,q) -s=d==null -g=!0 -if(!(s&&e.a===f.a.a))if(!(J.b(d,e)&&e.a===f.a.a)){s=!s&&d.a>e.a -g=s}s=p.b -q=s.a -l=f.a -k=l.a -j=ql&&p.a.a>l){f.d=new A.ap(l,B.k) -return B.P}if(g){s=p.a -q=s.a -if(q<=l){f.d=f.f6(s) -return B.a1}if(q>l){f.d=new A.ap(l,B.k) -return B.P}}else{f.d=f.f6(s) -if(j)return B.X -if(q>=k)return B.a1}}}return null}, -HX(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this -if(f.f&&d!=null&&e!=null){s=e.a -r=d.a -q=s>=r -if(b){s=f.c -p=a.$2(c,s) -o=a.$2(q?d:new A.ap(r-1,d.b),s) -n=q?o.b.a:o.a.a -s=c.a -r=sn)m=p.a -else m=q?e:d -if(!q!==r)f.d=f.f6(q?o.a:o.b) -s=f.f6(m) -f.e=s -r=f.d.a -l=p.b.a -k=f.a -j=k.b -if(l>j&&p.a.a>j)return B.P -k=k.a -if(l=r){s=p.a.a -r=o.a.a -if(s<=r)return B.a1 -if(s>r)return B.P}else{s=o.b.a -if(l>=s)return B.a1 -if(le.a -g=s}s=p.b -r=s.a -l=f.a -k=l.a -j=rl&&p.a.a>l){f.e=new A.ap(l,B.k) -return B.P}if(g){f.e=f.f6(s) -if(j)return B.X -if(r>=k)return B.a1}else{s=p.a -r=s.a -if(r<=l){f.e=f.f6(s) -return B.a1}if(r>l){f.e=new A.ap(l,B.k) -return B.P}}}}return null}, -ans(a6,a7,a8,a9,b0,b1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=this,a5=null -if(a4.f&&b0!=null&&b1!=null){s=b1.a>=b0.a -r=a4.Rc() -q=a4.b -if(r===q)return a4.HY(a6,a8,a9,b0,b1) -p=r.bd(a5) -p.ia(p) -o=A.bA(p,a7) -n=r.gC() -m=new A.w(0,0,0+n.a,0+n.b).q(0,o) -l=r.ds(o) -if(m){k=r.n.e.ob(!1) -j=a6.$2(l,k) -i=a6.$2(a4.na(r),k) -h=s?i.a.a:i.b.a -q=l.a -n=q>h -if(qe&&j.a.a>e)return B.P -if(d=q.a){q=j.a.a -n=i.a.a -if(q<=n)return B.a1 -if(q>n)return B.P}else{q=i.b.a -if(d>=q)return B.a1 -if(d=n){a4.d=new A.ap(a4.a.b,B.k) -return B.P}if(s&&c.a>=n){a4.e=b0 -a4.d=new A.ap(a4.a.b,B.k) -return B.P}if(f&&c.a<=q){a4.e=b0 -a4.d=new A.ap(a4.a.a,B.k) -return B.X}}}else{if(a8)return a4.HY(a6,!0,a9,b0,b1) -if(b1!=null){b=a4.Re(a7) -if(b==null)return a5 -a=b.b -a0=a.ds(b.a) -a1=a.n.e.ob(!1) -q=a.fM(a0) -if(B.c.a6(a1,q.a,q.b)===$.M9())return a5 -q=b0==null -a2=!0 -if(!(q&&b1.a===a4.a.a))if(!(J.b(b0,b1)&&b1.a===a4.a.a)){q=!q&&b0.a>b1.a -a2=q}a3=a6.$2(a0,a1) -q=a4.na(a).a -n=q+$.zz() -f=a3.b.a -e=fn&&a3.a.a>n){a4.d=new A.ap(a4.a.b,B.k) -return B.P}if(a2){if(a3.a.a<=n){a4.d=new A.ap(a4.a.b,B.k) -return B.a1}a4.d=new A.ap(a4.a.b,B.k) -return B.P}else{if(f>=q){a4.d=new A.ap(a4.a.a,B.k) -return B.a1}if(e){a4.d=new A.ap(a4.a.a,B.k) -return B.X}}}}return a5}, -anp(a6,a7,a8,a9,b0,b1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=this,a5=null -if(a4.f&&b0!=null&&b1!=null){s=b1.a>=b0.a -r=a4.Rc() -q=a4.b -if(r===q)return a4.HX(a6,a8,a9,b0,b1) -p=r.bd(a5) -p.ia(p) -o=A.bA(p,a7) -n=r.gC() -m=new A.w(0,0,0+n.a,0+n.b).q(0,o) -l=r.ds(o) -if(m){k=r.n.e.ob(!1) -j=a6.$2(l,k) -i=a6.$2(a4.na(r),k) -h=s?i.b.a:i.a.a -q=l.a -n=qh?j.a:b1 -if(!s!==n)a4.d=b1 -q=a4.f6(g) -a4.e=q -n=a4.d.a -f=a4.na(r).a -e=f+$.zz() -d=j.b.a -if(d>e&&j.a.a>e)return B.P -if(d=n){q=j.a.a -n=i.a.a -if(q<=n)return B.a1 -if(q>n)return B.P}else{q=i.b.a -if(d>=q)return B.a1 -if(d=n){a4.d=b1 -a4.e=new A.ap(a4.a.b,B.k) -return B.P}if(s&&c.a>=n){a4.e=new A.ap(a4.a.b,B.k) -return B.P}if(f&&c.a<=q){a4.e=new A.ap(a4.a.a,B.k) -return B.X}}}else{if(a8)return a4.HX(a6,!0,a9,b0,b1) -if(b0!=null){b=a4.Re(a7) -if(b==null)return a5 -a=b.b -a0=a.ds(b.a) -a1=a.n.e.ob(!1) -q=a.fM(a0) -if(B.c.a6(a1,q.a,q.b)===$.M9())return a5 -q=b1==null -a2=!0 -if(!(q&&b0.a===a4.a.b))if(!(b0.j(0,b1)&&b0.a===a4.a.b)){q=!q&&b0.a>b1.a -a2=q}a3=a6.$2(a0,a1) -q=a4.na(a).a -n=q+$.zz() -f=a3.b.a -e=fn&&a3.a.a>n){a4.e=new A.ap(a4.a.b,B.k) -return B.P}if(a2){if(f>=q){a4.e=new A.ap(a4.a.a,B.k) -return B.a1}if(e){a4.e=new A.ap(a4.a.a,B.k) -return B.X}}else{if(a3.a.a<=n){a4.e=new A.ap(a4.a.b,B.k) -return B.a1}a4.e=new A.ap(a4.a.b,B.k) -return B.P}}}return a5}, -ann(a,b,c,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=f.d,d=f.e -if(a0)f.e=null -else f.d=null -s=f.b -r=s.bd(null) -r.ia(r) -q=A.bA(r,a) -if(f.giM().gan(0))return A.EI(f.giM(),q) -p=f.giM() -o=s.n -n=o.w -n.toString -m=A.EH(p,q,n) -n=s.gC() -o=o.w -o.toString -l=A.EH(new A.w(0,0,0+n.a,0+n.b),q,o) -k=s.ds(m) -j=s.ds(l) -if(f.agV())if(a0){s=s.gC() -i=f.anp(c,a,new A.w(0,0,0+s.a,0+s.b).q(0,q),j,e,d)}else{s=s.gC() -i=f.ans(c,a,new A.w(0,0,0+s.a,0+s.b).q(0,q),j,e,d)}else if(a0){s=s.gC() -i=f.HX(c,new A.w(0,0,0+s.a,0+s.b).q(0,q),j,e,d)}else{s=s.gC() -i=f.HY(c,new A.w(0,0,0+s.a,0+s.b).q(0,q),j,e,d)}if(i!=null)return i -h=f.a9n(q)?b.$1(k):null -if(h!=null){s=h.b.a -p=f.a -o=p.a -if(!(s=p&&h.a.a>p}else s=!0}else s=!1 -if(s)h=null -g=f.f6(a0?f.VV(h,b,k,e,d):f.VY(h,b,k,e,d)) -if(a0)f.e=g -else f.d=g -s=g.a -p=f.a -if(s===p.b)return B.P -if(s===p.a)return B.X -return A.EI(f.giM(),q)}, -PN(a,b){var s=b.a,r=a.b,q=a.a -return Math.abs(s-r.a)=p&&a.a.a>p)return B.P}s.d=r -s.e=a.a -s.f=!0 -return B.a1}, -EA(a,b){var s=A.bQ(),r=A.bQ(),q=b.a,p=a.b -if(q>p){q=new A.ap(q,B.k) -r.sed(q) -s.sed(q)}else{s.sed(new A.ap(a.a,B.k)) -r.sed(new A.ap(p,B.at))}q=s.bc() -return new A.a5h(r.bc(),q)}, -afk(a){var s=this,r=s.b,q=r.ds(r.eC(a)) -if(s.ajR(q)&&!J.b(s.d,s.e))return B.a1 -return s.afj(s.Rr(q))}, -Rr(a){return this.EA(this.b.fM(a),a)}, -na(a){var s=this.b,r=s.bd(a) -s=s.gC() -return a.ds(A.bA(r,new A.w(0,0,0+s.a,0+s.b).gXk()))}, -acW(a,b){var s,r=new A.of(b),q=a.a,p=b.length,o=r.fc(q===p||a.b===B.at?q-1:q) -if(o==null)o=0 -s=r.fe(q) -return this.EA(new A.bI(o,s==null?p:s),a)}, -acz(a){var s,r,q=this.c,p=new A.of(q),o=a.a,n=q.length,m=p.fc(o===n||a.b===B.at?o-1:o) -if(m==null)m=0 -s=p.fe(o) -n=s==null?n:s -q=this.a -r=q.a -if(mo)m=o}s=q.b -if(n>s)n=s -else if(ns){i=q.gBV() -break}}if(b&&i===l.length-1)p=new A.ap(n.a.b,B.at) -else if(!b&&i===0)p=new A.ap(n.a.a,B.k) -else p=n.f6(m.ds(new A.h(c,l[b?i+1:i-1].gjw()))) -m=p.a -j=n.a -if(m===j.a)o=B.X -else o=m===j.b?B.P:B.a1 -return new A.aV(p,o,t.UH)}, -ajR(a){var s,r,q,p,o=this -if(o.d==null||o.e==null)return!1 -s=A.bQ() -r=A.bQ() -q=o.d -q.toString -p=o.e -p.toString -if(A.aSJ(q,p)>0){s.b=q -r.b=p}else{s.b=p -r.b=q}return A.aSJ(s.bc(),a)>=0&&A.aSJ(r.bc(),a)<=0}, -bd(a){return this.b.bd(a)}, -lm(a,b){if(this.b.y==null)return}, -glU(){var s,r,q,p,o,n,m,l=this -if(l.y==null){s=l.b -r=l.a -q=r.a -p=s.MD(A.cp(B.k,q,r.b,!1),B.pF) -r=t.AO -if(p.length!==0){l.y=A.c([],r) -for(s=p.length,o=0;o=q)return r.a -s=this.Ek(a) -r=this.D -q=r.a -if(!(q>=1/0))return A.E(s,q,r.b) -return s}, -bH(a){var s,r=this.D,q=r.b -if(q<1/0&&r.a>=q)return r.a -s=this.Ei(a) -r=this.D -q=r.a -if(!(q>=1/0))return A.E(s,q,r.b) -return s}, -bO(a){var s,r=this.D,q=r.d -if(q<1/0&&r.c>=q)return r.c -s=this.Ej(a) -r=this.D -q=r.c -if(!(q>=1/0))return A.E(s,q,r.d) -return s}, -bG(a){var s,r=this.D,q=r.d -if(q<1/0&&r.c>=q)return r.c -s=this.Eh(a) -r=this.D -q=r.c -if(!(q>=1/0))return A.E(s,q,r.d) -return s}, -e2(a,b){var s=this.u$ -return s==null?null:s.f5(this.D.rG(a),b)}, -c7(){var s=this,r=t.k.a(A.r.prototype.gab.call(s)),q=s.u$,p=s.D -if(q!=null){q.cs(p.rG(r),!0) -s.fy=s.u$.gC()}else s.fy=p.rG(r).bx(B.Q)}, -dg(a){var s=this.u$ -s=s==null?null:s.aO(B.S,this.D.rG(a),s.gcu()) -return s==null?this.D.rG(a).bx(B.Q):s}} -A.UW.prototype={ -sLb(a){if(this.D===a)return -this.D=a -this.ag()}, -sL9(a){if(this.a4===a)return -this.a4=a -this.ag()}, -Sv(a){var s,r,q=a.a,p=a.b -p=p<1/0?p:A.E(this.D,q,p) -s=a.c -r=a.d -return new A.al(q,p,s,r<1/0?r:A.E(this.a4,s,r))}, -ug(a,b){var s=this.u$ -if(s!=null)return a.bx(b.$2(s,this.Sv(a))) -return this.Sv(a).bx(B.Q)}, -dg(a){return this.ug(a,A.hQ())}, -c7(){this.fy=this.ug(t.k.a(A.r.prototype.gab.call(this)),A.pz())}} -A.E1.prototype={ -sa3M(a){return}, -sa3L(a){return}, -bP(a){return this.aO(B.aK,a,this.gc2())}, -bH(a){var s=this.u$ -if(s==null)return 0 -return A.arc(s.aO(B.aK,a,s.gc2()),this.D)}, -bO(a){var s,r=this -if(r.u$==null)return 0 -if(!isFinite(a))a=r.aO(B.aK,1/0,r.gc2()) -s=r.u$ -return A.arc(s.aO(B.by,a,s.gcA()),r.a4)}, -bG(a){var s,r=this -if(r.u$==null)return 0 -if(!isFinite(a))a=r.aO(B.aK,1/0,r.gc2()) -s=r.u$ -return A.arc(s.aO(B.bg,a,s.gcp()),r.a4)}, -PA(a,b){var s=b.a>=b.b?null:A.arc(a.aO(B.aK,b.d,a.gc2()),this.D) -return b.wX(null,s)}, -ug(a,b){var s=this.u$ -return s==null?new A.L(A.E(0,a.a,a.b),A.E(0,a.c,a.d)):b.$2(s,this.PA(s,a))}, -dg(a){return this.ug(a,A.hQ())}, -e2(a,b){var s=this.u$ -return s==null?null:s.f5(this.PA(s,a),b)}, -c7(){this.fy=this.ug(t.k.a(A.r.prototype.gab.call(this)),A.pz())}} -A.UX.prototype={ -gkg(){return this.u$!=null&&this.D>0}, -gfp(){return this.u$!=null&&this.D>0}, -sdY(a){var s,r,q,p,o=this -if(o.a4===a)return -s=o.u$!=null -r=s&&o.D>0 -q=o.D -o.a4=a -p=B.d.aY(A.E(a,0,1)*255) -o.D=p -if(r!==(s&&p>0))o.ld() -o.a_Y() -s=o.D -if(q!==0!==(s!==0))o.br()}, -sA1(a){return}, -pY(a){return this.D>0}, -tz(a){var s=a==null?A.aRt():a -s.ser(this.D) -return s}, -b1(a,b){if(this.u$==null||this.D===0)return -this.iE(a,b)}, -fK(a){var s,r=this.u$ -if(r!=null){s=this.D -s=s!==0}else s=!1 -if(s)a.$1(r)}} -A.DQ.prototype={ -gfp(){if(this.u$!=null){var s=this.K0$ -s.toString}else s=!1 -return s}, -tz(a){var s=a==null?A.aRt():a -s.ser(this.rL$) -return s}, -sdY(a){var s=this,r=s.rM$ -if(r===a)return -if(s.y!=null&&r!=null)r.O(s.gzA()) -s.rM$=a -if(s.y!=null)a.a9(s.gzA()) -s.HT()}, -sA1(a){if(!1===this.K1$)return -this.K1$=!1 -this.br()}, -HT(){var s,r=this,q=r.rL$,p=r.rL$=B.d.aY(A.E(r.rM$.gp(),0,1)*255) -if(q!==p){s=r.K0$ -p=p>0 -r.K0$=p -if(r.u$!=null&&s!==p)r.ld() -r.a_Y() -if(q===0||r.rL$===0)r.br()}}, -pY(a){return this.rM$.gp()>0}, -fK(a){var s,r=this.u$ -if(r!=null)if(this.rL$===0){s=this.K1$ -s.toString}else s=!0 -else s=!1 -if(s)a.$1(r)}} -A.UI.prototype={} -A.UJ.prototype={ -snK(a){return}, -sasl(a){if(this.a4.j(0,a))return -this.a4=a -this.bb()}, -sap_(a){if(this.am===a)return -this.am=a -this.bb()}, -saoS(a){return}, -gkg(){return this.u$!=null}, -b1(a,b){var s,r,q=this,p=q.a4 -q.gC() -if(q.u$!=null){s=t.m2 -if(s.a(A.r.prototype.gaR.call(q))==null)q.ch.saR(A.aUR(null)) -s.a(A.r.prototype.gaR.call(q)).sZa(p.a) -p=s.a(A.r.prototype.gaR.call(q)) -r=q.am -if(r!==p.k4){p.k4=r -p.fH()}s.a(A.r.prototype.gaR.call(q)).toString -p=s.a(A.r.prototype.gaR.call(q)) -p.toString -a.mw(p,A.f5.prototype.gf9.call(q),b)}else q.ch.saR(null)}} -A.AZ.prototype={ -a9(a){var s=this.a -return s==null?null:s.a.a9(a)}, -O(a){var s=this.a -return s==null?null:s.a.O(a)}, -a2b(a){return new A.w(0,0,0+a.a,0+a.b)}, -k(a){return"CustomClipper"}} -A.oH.prototype={ -Do(a){return this.b.fd(new A.w(0,0,0+a.a,0+a.b),this.c)}, -DQ(a){if(A.l(a)!==B.age)return!0 -t.jH.a(a) -return!a.b.j(0,this.b)||a.c!=this.c}} -A.yT.prototype={ -sro(a){var s,r=this,q=r.D -if(q==a)return -r.D=a -s=a==null -if(s||q==null||A.l(a)!==A.l(q)||a.DQ(q))r.qT() -if(r.y!=null){if(q!=null)q.O(r.gyP()) -if(!s)a.a9(r.gyP())}}, -aP(a){var s -this.qw(a) -s=this.D -if(s!=null)s.a9(this.gyP())}, -az(){var s=this.D -if(s!=null)s.O(this.gyP()) -this.n0()}, -qT(){this.a4=null -this.bb() -this.br()}, -snx(a){if(a!==this.am){this.am=a -this.bb()}}, -c7(){var s=this,r=s.fy!=null?s.gC():null -s.qv() -if(!J.b(r,s.gC()))s.a4=null}, -kO(){var s,r=this -if(r.a4==null){s=r.D -s=s==null?null:s.Do(r.gC()) -r.a4=s==null?r.guj():s}}, -m3(a){var s,r=this -switch(r.am.a){case 0:return null -case 1:case 2:case 3:s=r.D -s=s==null?null:s.a2b(r.gC()) -if(s==null){s=r.gC() -s=new A.w(0,0,0+s.a,0+s.b)}return s}}, -l(){this.bQ=null -this.fu()}} -A.UN.prototype={ -guj(){var s=this.gC() -return new A.w(0,0,0+s.a,0+s.b)}, -cT(a,b){var s=this -if(s.D!=null){s.kO() -if(!s.a4.q(0,b))return!1}return s.lE(a,b)}, -b1(a,b){var s,r,q=this,p=q.u$ -if(p!=null){s=q.ch -if(q.am!==B.v){q.kO() -p=q.cx -p===$&&A.a() -r=q.a4 -r.toString -s.saR(a.ll(p,b,r,A.f5.prototype.gf9.call(q),q.am,t.EM.a(s.a)))}else{a.e4(p,b) -s.saR(null)}}else q.ch.saR(null)}} -A.UM.prototype={ -sp6(a){if(this.c9.j(0,a))return -this.c9=a -this.qT()}, -sce(a){if(this.ea==a)return -this.ea=a -this.qT()}, -guj(){var s=this.c9.af(this.ea),r=this.gC() -return s.e5(new A.w(0,0,0+r.a,0+r.b))}, -cT(a,b){var s=this -if(s.D!=null){s.kO() -if(!s.a4.q(0,b))return!1}return s.lE(a,b)}, -b1(a,b){var s,r,q=this,p=q.u$ -if(p!=null){s=q.ch -if(q.am!==B.v){q.kO() -p=q.cx -p===$&&A.a() -r=q.a4 -s.saR(a.a0P(p,b,new A.w(r.a,r.b,r.c,r.d),r,A.f5.prototype.gf9.call(q),q.am,t.eG.a(s.a)))}else{a.e4(p,b) -s.saR(null)}}else q.ch.saR(null)}} -A.UL.prototype={ -guj(){var s=A.co($.ab().r),r=this.gC() -s.b9(new A.fF(new A.w(0,0,0+r.a,0+r.b))) -return s}, -cT(a,b){var s,r=this -if(r.D!=null){r.kO() -s=r.a4.gi9().a -s===$&&A.a() -if(!s.a.contains(b.a,b.b))return!1}return r.lE(a,b)}, -b1(a,b){var s,r,q,p=this,o=p.u$ -if(o!=null){s=p.ch -if(p.am!==B.v){p.kO() -o=p.cx -o===$&&A.a() -r=p.gC() -q=p.a4 -q.toString -s.saR(a.LN(o,b,new A.w(0,0,0+r.a,0+r.b),q,A.f5.prototype.gf9.call(p),p.am,t.JG.a(s.a)))}else{a.e4(o,b) -s.saR(null)}}else p.ch.saR(null)}} -A.Jj.prototype={ -se9(a){if(this.c9===a)return -this.c9=a -this.bb()}, -scz(a){if(this.ea.j(0,a))return -this.ea=a -this.bb()}, -sdQ(a){if(this.eb.j(0,a))return -this.eb=a -this.bb()}} -A.UY.prototype={ -sdt(a){if(this.JV===a)return -this.JV=a -this.qT()}, -sp6(a){if(J.b(this.JW,a))return -this.JW=a -this.qT()}, -guj(){var s,r,q=this.gC(),p=0+q.a -q=0+q.b -switch(this.JV.a){case 0:s=this.JW -if(s==null)s=B.ah -q=s.e5(new A.w(0,0,p,q)) -break -case 1:s=p/2 -r=q/2 -r=new A.jW(0,0,p,q,s,r,s,r,s,r,s,r) -q=r -break -default:q=null}return q}, -cT(a,b){var s=this -if(s.D!=null){s.kO() -if(!s.a4.q(0,b))return!1}return s.lE(a,b)}, -b1(a,b){var s,r,q,p,o,n,m,l,k,j=this -if(j.u$==null){j.ch.saR(null) -return}j.kO() -s=j.a4.e0(b) -r=A.co($.ab().r) -r.b9(new A.fh(s)) -q=a.gcw() -p=j.c9 -if(p!==0)q.YK(r,j.ea,p,j.eb.ger()!==255) -o=j.am===B.cH -if(!o){p=A.bt() -p.r=j.eb.gp() -q.eL(s,p)}p=j.cx -p===$&&A.a() -n=j.gC() -m=j.a4 -m.toString -l=j.ch -k=t.eG.a(l.a) -l.saR(a.a0P(p,b,new A.w(0,0,0+n.a,0+n.b),m,new A.arq(j,o),j.am,k))}} -A.arq.prototype={ -$2(a,b){var s,r -if(this.b){s=a.gcw() -$.ab() -r=A.bt() -r.r=this.a.eb.gp() -s.YI(r)}this.a.iE(a,b)}, -$S:17} -A.UZ.prototype={ -guj(){var s=A.co($.ab().r),r=this.gC() -s.b9(new A.fF(new A.w(0,0,0+r.a,0+r.b))) -return s}, -cT(a,b){var s,r=this -if(r.D!=null){r.kO() -s=r.a4.gi9().a -s===$&&A.a() -if(!s.a.contains(b.a,b.b))return!1}return r.lE(a,b)}, -b1(a,b){var s,r,q,p,o,n,m,l,k=this -if(k.u$==null){k.ch.saR(null) -return}k.kO() -s=k.a4 -s.toString -r=A.aWC(s,b) -q=a.gcw() -s=k.c9 -if(s!==0)q.YK(r,k.ea,s,k.eb.ger()!==255) -p=k.am===B.cH -if(!p){$.ab() -s=A.bt() -s.r=k.eb.gp() -q.jE(r,s)}s=k.cx -s===$&&A.a() -o=k.gC() -n=k.a4 -n.toString -m=k.ch -l=t.JG.a(m.a) -m.saR(a.LN(s,b,new A.w(0,0,0+o.a,0+o.b),n,new A.arr(k,p),k.am,l))}} -A.arr.prototype={ -$2(a,b){var s,r -if(this.b){s=a.gcw() -$.ab() -r=A.bt() -r.r=this.a.eb.gp() -s.YI(r)}this.a.iE(a,b)}, -$S:17} -A.PA.prototype={ -N(){return"DecorationPosition."+this.b}} -A.UP.prototype={ -saU(a){var s,r=this -if(a.j(0,r.a4))return -s=r.D -if(s!=null)s.l() -r.D=null -r.a4=a -r.bb()}, -sbV(a){if(a===this.am)return -this.am=a -this.bb()}, -srs(a){if(a.j(0,this.bw))return -this.bw=a -this.bb()}, -az(){var s=this,r=s.D -if(r!=null)r.l() -s.D=null -s.n0() -s.bb()}, -l(){var s=this.D -if(s!=null)s.l() -this.fu()}, -mf(a){return this.a4.KJ(this.gC(),a,this.bw.d)}, -b1(a,b){var s,r,q=this -if(q.D==null)q.D=q.a4.J5(q.geP()) -s=q.bw.XN(q.gC()) -if(q.am===B.dT){r=q.D -r.toString -r.li(a.gcw(),b,s) -if(q.a4.gBO())a.Nn()}q.iE(a,b) -if(q.am===B.qR){r=q.D -r.toString -r.li(a.gcw(),b,s) -if(q.a4.gBO())a.Nn()}}} -A.V7.prototype={ -sa0n(a){return}, -siS(a){var s=this -if(J.b(s.a4,a))return -s.a4=a -s.bb() -s.br()}, -sce(a){var s=this -if(s.am==a)return -s.am=a -s.bb() -s.br()}, -gkg(){return this.u$!=null&&this.bR!=null}, -scC(a){var s,r=this -if(J.b(r.bQ,a))return -s=new A.bc(new Float64Array(16)) -s.dl(a) -r.bQ=s -r.bb() -r.br()}, -sZb(a){var s,r,q=this,p=q.bR -if(p==a)return -s=q.u$!=null -r=s&&p!=null -q.bR=a -if(r!==(s&&a!=null))q.ld() -q.bb()}, -gFz(){var s,r,q=this,p=q.a4,o=p==null?null:p.af(q.am) -if(o==null)return q.bQ -s=new A.bc(new Float64Array(16)) -s.ei() -r=o.A0(q.gC()) -s.eh(r.a,r.b,0,1) -p=q.bQ -p.toString -s.f2(p) -s.eh(-r.a,-r.b,0,1) -return s}, -cT(a,b){return this.da(a,b)}, -da(a,b){var s=this.bw?this.gFz():null -return a.v9(new A.arG(this),b,s)}, -b1(a,b){var s,r,q,p,o,n,m,l,k,j=this -if(j.u$!=null){s=j.gFz() -s.toString -if(j.bR==null){r=A.anK(s) -if(r==null){q=s.Jl() -if(q===0||!isFinite(q)){j.ch.saR(null) -return}p=j.cx -p===$&&A.a() -o=A.f5.prototype.gf9.call(j) -n=j.ch -m=n.a -n.saR(a.wL(p,b,s,o,m instanceof A.xQ?m:null))}else{j.iE(a,b.a8(0,r)) -j.ch.saR(null)}}else{p=b.a -o=b.b -l=A.r9(p,o,0) -l.f2(s) -l.eh(-p,-o,0,1) -o=j.bR -o.toString -k=A.aWj(l.a,o) -o=j.ch -p=o.a -if(p instanceof A.C1){if(!k.j(0,p.aH)){p.aH=k -p.fH()}}else o.saR(new A.C1(k,B.f,A.t(t.S,t.M),A.at())) -s=o.a -s.toString -a.mw(s,A.f5.prototype.gf9.call(j),b)}}}, -dz(a,b){var s=this.gFz() -s.toString -b.f2(s)}} -A.arG.prototype={ -$2(a,b){return this.a.xT(a,b)}, -$S:19} -A.US.prototype={ -sayM(a){var s=this -if(s.D.j(0,a))return -s.D=a -s.bb() -s.br()}, -cT(a,b){return this.da(a,b)}, -da(a,b){var s=this,r=s.a4?new A.h(s.D.a*s.gC().a,s.D.b*s.gC().b):null -return a.kP(new A.ara(s),r,b)}, -b1(a,b){var s=this -if(s.u$!=null)s.iE(a,new A.h(b.a+s.D.a*s.gC().a,b.b+s.D.b*s.gC().b))}, -dz(a,b){var s=this -b.eh(s.D.a*s.gC().a,s.D.b*s.gC().b,0,1)}} -A.ara.prototype={ -$2(a,b){return this.a.xT(a,b)}, -$S:19} -A.V_.prototype={ -rr(a){return new A.L(A.E(1/0,a.a,a.b),A.E(1/0,a.c,a.d))}, -jF(a,b){var s,r=this,q=null -A:{s=q -if(t.pY.b(a)){s=r.cg -s=s==null?q:s.$1(a) -break A}if(t.n2.b(a))break A -if(t.oN.b(a)){s=r.bX -s=s==null?q:s.$1(a) -break A}if(t.XA.b(a))break A -if(t.Ko.b(a)){s=r.c9 -s=s==null?q:s.$1(a) -break A}if(t.w5.b(a)){s=r.ea -s=s==null?q:s.$1(a) -break A}if(t.DB.b(a))break A -if(t.WQ.b(a))break A -if(t.ks.b(a)){s=r.fk -s=s==null?q:s.$1(a) -break A}break A}return s}} -A.E3.prototype={ -cT(a,b){var s=this.a5g(a,b) -return s}, -jF(a,b){var s -if(t.XA.b(a)){s=this.bX -if(s!=null)s.$1(a)}}, -gY6(){return this.c9}, -gMr(){return this.ea}, -aP(a){this.qw(a) -this.ea=!0}, -az(){this.ea=!1 -this.n0()}, -rr(a){return new A.L(A.E(1/0,a.a,a.b),A.E(1/0,a.c,a.d))}, -$ikO:1, -gC8(){return this.dI}, -gC9(){return this.ci}} -A.V2.prototype={ -gfp(){return!0}} -A.E0.prototype={ -sa_7(a){if(a===this.D)return -this.D=a -this.br()}, -sKL(a){return}, -cT(a,b){return!this.D&&this.lE(a,b)}, -fK(a){this.qu(a)}, -eJ(a){var s -this.jg(a) -s=this.D -a.d=s}} -A.E4.prototype={ -sC2(a){var s=this -if(a===s.D)return -s.D=a -s.ag() -s.BZ()}, -bP(a){if(this.D)return 0 -return this.Ek(a)}, -bH(a){if(this.D)return 0 -return this.Ei(a)}, -bO(a){if(this.D)return 0 -return this.Ej(a)}, -bG(a){if(this.D)return 0 -return this.Eh(a)}, -hm(a){if(this.D)return null -return this.a6R(a)}, -gkH(){return this.D}, -e2(a,b){return this.D?null:this.a6S(a,b)}, -dg(a){if(this.D)return new A.L(A.E(0,a.a,a.b),A.E(0,a.c,a.d)) -return this.a5f(a)}, -q_(){this.a56()}, -c7(){var s,r=this -if(r.D){s=r.u$ -if(s!=null)s.hu(t.k.a(A.r.prototype.gab.call(r)))}else r.qv()}, -cT(a,b){return!this.D&&this.lE(a,b)}, -pY(a){return!this.D}, -b1(a,b){if(this.D)return -this.iE(a,b)}, -fK(a){if(this.D)return -this.qu(a)}} -A.DO.prototype={ -sWo(a){if(this.D===a)return -this.D=a -this.br()}, -sKL(a){return}, -cT(a,b){return this.D?this.gC().q(0,b):this.lE(a,b)}, -fK(a){this.qu(a)}, -eJ(a){var s -this.jg(a) -s=this.D -a.d=s}} -A.E2.prototype={} -A.mA.prototype={ -sayZ(a){if(A.pC(a,this.cg))return -this.cg=a -this.br()}, -slg(a){var s,r=this -if(J.b(r.dI,a))return -s=r.dI -r.dI=a -if(a!=null!==(s!=null))r.br()}, -so0(a){var s,r=this -if(J.b(r.bX,a))return -s=r.bX -r.bX=a -if(a!=null!==(s!=null))r.br()}, -sa0f(a){var s,r=this -if(J.b(r.ci,a))return -s=r.ci -r.ci=a -if(a!=null!==(s!=null))r.br()}, -sa0l(a){var s,r=this -if(J.b(r.c9,a))return -s=r.c9 -r.c9=a -if(a!=null!==(s!=null))r.br()}, -eJ(a){var s,r=this -r.jg(a) -if(r.dI!=null){s=r.cg -s=s==null||s.q(0,B.of)}else s=!1 -if(s)a.slg(r.dI) -if(r.bX!=null){s=r.cg -s=s==null||s.q(0,B.I3)}else s=!1 -if(s)a.so0(r.bX) -if(r.ci!=null){s=r.cg -if(s==null||s.q(0,B.kW))a.sCm(r.gajG()) -s=r.cg -if(s==null||s.q(0,B.kV))a.sCl(r.gajE())}if(r.c9!=null){s=r.cg -if(s==null||s.q(0,B.kS))a.sCn(r.gajI()) -s=r.cg -if(s==null||s.q(0,B.kT))a.sCk(r.gajC())}}, -ajF(){var s,r,q,p=this,o=null -if(p.ci!=null){s=p.gC().a*-0.8 -r=p.ci -r.toString -q=p.gC().lW(B.f) -r.$1(A.Bg(new A.h(s,0),A.bA(p.bd(o),q),o,o,s,o))}}, -ajH(){var s,r,q,p=this,o=null -if(p.ci!=null){s=p.gC().a*0.8 -r=p.ci -r.toString -q=p.gC().lW(B.f) -r.$1(A.Bg(new A.h(s,0),A.bA(p.bd(o),q),o,o,s,o))}}, -ajJ(){var s,r,q,p=this,o=null -if(p.c9!=null){s=p.gC().b*-0.8 -r=p.c9 -r.toString -q=p.gC().lW(B.f) -r.$1(A.Bg(new A.h(0,s),A.bA(p.bd(o),q),o,o,s,o))}}, -ajD(){var s,r,q,p=this,o=null -if(p.c9!=null){s=p.gC().b*0.8 -r=p.c9 -r.toString -q=p.gC().lW(B.f) -r.$1(A.Bg(new A.h(0,s),A.bA(p.bd(o),q),o,o,s,o))}}} -A.V3.prototype={} -A.UK.prototype={ -sap1(a){return}, -eJ(a){this.jg(a) -a.f=!0}} -A.UQ.prototype={ -sas_(a){if(a===this.D)return -this.D=a -this.br()}, -fK(a){if(this.D)return -this.qu(a)}} -A.UT.prototype={ -spD(a){if(a===this.D)return -this.D=a -this.br()}, -eJ(a){this.jg(a) -a.p4=this.D -a.r=!0}} -A.UV.prototype={ -spN(a){var s=this,r=s.D -if(r===a)return -r.d=null -s.D=a -r=s.a4 -if(r!=null)a.d=r -s.bb()}, -gkg(){return!0}, -c7(){var s=this -s.qv() -s.a4=s.gC() -s.D.d=s.gC()}, -b1(a,b){var s=this.ch,r=s.a,q=this.D -if(r==null)s.saR(A.al2(q,b)) -else{t.rf.a(r) -r.spN(q) -r.scU(b)}s=s.a -s.toString -a.mw(s,A.f5.prototype.gf9.call(this),B.f)}} -A.UR.prototype={ -spN(a){if(this.D===a)return -this.D=a -this.bb()}, -sa3u(a){if(this.a4===a)return -this.a4=a -this.bb()}, -scU(a){if(this.am.j(0,a))return -this.am=a -this.bb()}, -sauX(a){if(this.bw.j(0,a))return -this.bw=a -this.bb()}, -sasB(a){if(this.bQ.j(0,a))return -this.bQ=a -this.bb()}, -az(){this.ch.saR(null) -this.n0()}, -gkg(){return!0}, -MG(){var s=t.RC.a(A.r.prototype.gaR.call(this)) -s=s==null?null:s.MM() -if(s==null){s=new A.bc(new Float64Array(16)) -s.ei()}return s}, -cT(a,b){if(this.D.a==null&&!this.a4)return!1 -return this.da(a,b)}, -da(a,b){return a.v9(new A.ar9(this),b,this.MG())}, -b1(a,b){var s,r=this,q=r.D.d,p=q==null?r.am:r.bw.A0(q).ac(0,r.bQ.A0(r.gC())).a8(0,r.am),o=t.RC -if(o.a(A.r.prototype.gaR.call(r))==null)r.ch.saR(new A.BL(r.D,r.a4,b,p,A.t(t.S,t.M),A.at())) -else{s=o.a(A.r.prototype.gaR.call(r)) -if(s!=null){s.k3=r.D -s.k4=r.a4 -s.p1=p -s.ok=b}}o=o.a(A.r.prototype.gaR.call(r)) -o.toString -a.q2(o,A.f5.prototype.gf9.call(r),B.f,B.a5q)}, -dz(a,b){b.f2(this.MG())}} -A.ar9.prototype={ -$2(a,b){return this.a.xT(a,b)}, -$S:19} -A.DS.prototype={ -sp(a){if(this.D.j(0,a))return -this.D=a -this.bb()}, -sa3z(a){return}, -b1(a,b){var s=this,r=s.D,q=s.gC(),p=new A.zU(r,q,b,A.t(t.S,t.M),A.at(),s.$ti.i("zU<1>")) -s.am.saR(p) -a.mw(p,A.f5.prototype.gf9.call(s),b)}, -l(){this.am.saR(null) -this.fu()}, -gkg(){return!0}} -A.a5s.prototype={ -aP(a){var s=this -s.qw(a) -s.rM$.a9(s.gzA()) -s.HT()}, -az(){this.rM$.O(this.gzA()) -this.n0()}, -b1(a,b){if(this.rL$===0)return -this.iE(a,b)}} -A.Jk.prototype={ -aP(a){var s -this.eV(a) -s=this.u$ -if(s!=null)s.aP(a)}, -az(){this.eW() -var s=this.u$ -if(s!=null)s.az()}} -A.Jl.prototype={ -hm(a){var s=this.u$ -s=s==null?null:s.mL(a) -return s==null?this.Ed(a):s}, -e2(a,b){var s=this.u$,r=s==null?null:s.f5(a,b) -return r==null?this.a55(a,b):r}} -A.a5J.prototype={ -fK(a){this.B1$===$&&A.a() -this.qu(a)}, -eJ(a){var s,r,q=this -q.jg(a) -s=q.B_$ -s===$&&A.a() -a.a=s -s=q.B0$ -s===$&&A.a() -a.e=s -s=q.B2$ -s===$&&A.a() -a.d=s -s=q.B3$ -if(s!=null){a.b=s -a.r=!0}s=q.cZ$ -s===$&&A.a() -s=s.a -if(s!=null)a.sa_x(s) -s=q.cZ$ -s=s.e -if(s!=null)a.sa_J(s) -s=q.cZ$ -s=s.r -if(s!=null)a.sa_u(s) -s=q.cZ$ -s=s.x -if(s!=null)a.sa_y(s) -s=q.cZ$ -s=s.at -if(s!=null)a.sKR(s) -s=q.cZ$.ax -if(s!=null)a.spI(s) -s=q.cZ$ -s=s.k1 -if(s!=null)a.sD5(s) -s=q.cZ$ -r=q.YX$ -if(r!=null){a.aB=r -a.r=!0}r=q.YY$ -if(r!=null){a.n=r -a.r=!0}r=q.YZ$ -if(r!=null){a.U=r -a.r=!0}r=q.Z_$ -if(r!=null){a.a0=r -a.r=!0}r=q.Z0$ -if(r!=null){a.a3=r -a.r=!0}r=s.ry -if(r!=null){a.a5=r -a.r=!0}s=s.db -if(s!=null)a.sxt(s) -s=q.cZ$.dx -if(s!=null)a.sC0(s) -s=q.cZ$.fr -if(s!=null)a.sBW(s) -s=q.cZ$ -s=s.go -if(s!=null)a.sAy(s) -s=q.B4$ -if(s!=null){a.L=s -a.r=!0}s=q.cZ$ -r=s.xr -if(r!=null){a.p3=r -a.r=!0}s=s.y1 -if(s!=null)a.zW(s) -s=q.cZ$ -r=s.c0 -if(r!=null){a.aH=r -a.r=!0}r=s.d4 -if(a.bU!==r){a.bU=r -a.r=!0}r=s.eN -if(r!=null){a.c_=r -a.r=!0}r=s.D -if(r!=null){a.cB=r -a.r=!0}r=s.bI -if(r!=null){a.bo=r -a.r=!0}if(s.aH!=null)a.slg(q.gajL()) -if(q.cZ$.aB!=null)a.so0(q.gajy()) -if(q.cZ$.bo!=null)a.sC7(q.gaju()) -s=q.cZ$ -if(s.L!=null)a.sC3(q.gajm()) -if(q.cZ$.P!=null)a.sC4(q.gajo()) -if(q.cZ$.ao!=null)a.sCh(q.gajA()) -s=q.cZ$ -if(s.bU!=null)a.sC5(q.gajq()) -if(q.cZ$.aK!=null)a.sC6(q.gajs()) -if(q.cZ$.c_!=null)a.sCa(q.gajw())}} -A.oy.prototype={ -N(){return"SelectionResult."+this.b}} -A.eX.prototype={$iae:1} -A.VK.prototype={ -sq4(a){var s=this,r=s.B7$ -if(a==r)return -if(a==null)s.O(s.gUd()) -else if(r==null)s.a9(s.gUd()) -s.Uc() -s.B7$=a -s.Ue()}, -Ue(){var s,r=this,q=r.B7$ -if(q==null){r.rK$=!1 -return}s=r.rK$ -if(s&&!r.gp().e){q.J(0,r) -r.rK$=!1}else if(!s&&r.gp().e){q.G(0,r) -r.rK$=!0}}, -Uc(){var s=this -if(s.rK$){s.B7$.J(0,s) -s.rK$=!1}}} -A.t1.prototype={ -N(){return"SelectionEventType."+this.b}} -A.ty.prototype={ -N(){return"TextGranularity."+this.b}} -A.asR.prototype={} -A.Aw.prototype={} -A.EF.prototype={} -A.wY.prototype={ -N(){return"SelectionExtendDirection."+this.b}} -A.EG.prototype={ -N(){return"SelectionStatus."+this.b}} -A.ox.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.ox&&J.b(b.a,s.a)&&J.b(b.b,s.b)&&A.cV(b.d,s.d)&&b.c===s.c&&b.e===s.e}, -gt(a){var s=this -return A.N(s.a,s.b,s.d,s.c,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.t2.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.t2&&b.a.j(0,s.a)&&b.b===s.b&&b.c===s.c}, -gt(a){return A.N(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.G4.prototype={ -N(){return"TextSelectionHandleType."+this.b}} -A.a6o.prototype={} -A.a6p.prototype={} -A.rO.prototype={ -bP(a){var s=this.u$ -s=s==null?null:s.aO(B.bR,a,s.gcG()) -return s==null?0:s}, -bH(a){var s=this.u$ -s=s==null?null:s.aO(B.aK,a,s.gc2()) -return s==null?0:s}, -bO(a){var s=this.u$ -s=s==null?null:s.aO(B.by,a,s.gcA()) -return s==null?0:s}, -bG(a){var s=this.u$ -s=s==null?null:s.aO(B.bg,a,s.gcp()) -return s==null?0:s}, -hm(a){var s,r,q=this.u$ -if(q!=null){s=q.mL(a) -r=q.b -r.toString -t.r.a(r) -if(s!=null)s+=r.a.b}else s=this.Ed(a) -return s}, -e2(a,b){var s,r=this.u$ -if(r==null)return null -s=r.f5(a,b) -if(s==null)return null -return s}, -b1(a,b){var s,r=this.u$ -if(r!=null){s=r.b -s.toString -a.e4(r,t.r.a(s).a.a8(0,b))}}, -da(a,b){var s,r=this.u$ -if(r!=null){s=r.b -s.toString -return a.kP(new A.ars(r),t.r.a(s).a,b)}return!1}} -A.ars.prototype={ -$2(a,b){return this.a.cT(a,b)}, -$S:19} -A.E5.prototype={ -goP(){var s=this,r=s.D -return r==null?s.D=s.a4.af(s.am):r}, -scH(a){var s=this -if(s.a4.j(0,a))return -s.a4=a -s.D=null -s.ag()}, -sce(a){var s=this -if(s.am==a)return -s.am=a -s.D=null -s.ag()}, -bP(a){var s=this.goP(),r=this.u$ -if(r!=null)return r.aO(B.bR,Math.max(0,a-(s.gcR()+s.gcX())),r.gcG())+s.gfo() -return s.gfo()}, -bH(a){var s=this.goP(),r=this.u$ -if(r!=null)return r.aO(B.aK,Math.max(0,a-(s.gcR()+s.gcX())),r.gc2())+s.gfo() -return s.gfo()}, -bO(a){var s=this.goP(),r=this.u$ -if(r!=null)return r.aO(B.by,Math.max(0,a-s.gfo()),r.gcA())+(s.gcR()+s.gcX()) -return s.gcR()+s.gcX()}, -bG(a){var s=this.goP(),r=this.u$ -if(r!=null)return r.aO(B.bg,Math.max(0,a-s.gfo()),r.gcp())+(s.gcR()+s.gcX()) -return s.gcR()+s.gcX()}, -dg(a){var s,r=this.goP(),q=this.u$ -if(q==null)return a.bx(new A.L(r.gfo(),r.gcR()+r.gcX())) -s=q.aO(B.S,a.pf(r),q.gcu()) -return a.bx(new A.L(r.gfo()+s.a,r.gcR()+r.gcX()+s.b))}, -e2(a,b){var s,r,q=this.u$ -if(q==null)return null -s=this.goP() -r=q.f5(a.pf(s),b) -if(r==null)return null -return r+s.b}, -c7(){var s,r=this,q=t.k.a(A.r.prototype.gab.call(r)),p=r.goP(),o=r.u$ -if(o==null){r.fy=q.bx(new A.L(p.gfo(),p.gcR()+p.gcX())) -return}o.cs(q.pf(p),!0) -o=r.u$ -s=o.b -s.toString -t.r.a(s).a=new A.h(p.a,p.b) -r.fy=q.bx(new A.L(p.gfo()+o.gC().a,p.gcR()+p.gcX()+r.u$.gC().b))}} -A.UH.prototype={ -gwU(){var s=this,r=s.D -return r==null?s.D=s.a4.af(s.am):r}, -siS(a){var s=this -if(s.a4.j(0,a))return -s.a4=a -s.D=null -s.ag()}, -sce(a){var s=this -if(s.am==a)return -s.am=a -s.D=null -s.ag()}, -A_(){var s=this,r=s.u$.b -r.toString -t.r.a(r).a=s.gwU().ju(t.o.a(s.gC().ac(0,s.u$.gC())))}} -A.E6.prototype={ -saza(a){if(this.bX==a)return -this.bX=a -this.ag()}, -satM(a){if(this.ci==a)return -this.ci=a -this.ag()}, -bP(a){var s=this.a5k(a),r=this.bX -return s*(r==null?1:r)}, -bH(a){var s=this.a5i(a),r=this.bX -return s*(r==null?1:r)}, -bO(a){var s=this.a5j(a),r=this.ci -return s*(r==null?1:r)}, -bG(a){var s=this.a5h(a),r=this.ci -return s*(r==null?1:r)}, -dg(a){var s,r,q=this,p=q.bX!=null||a.b===1/0,o=q.ci!=null||a.d===1/0,n=q.u$ -if(n!=null){s=n.aO(B.S,new A.al(0,a.b,0,a.d),n.gcu()) -if(p){n=q.bX -if(n==null)n=1 -n=s.a*n}else n=1/0 -if(o){r=q.ci -if(r==null)r=1 -r=s.b*r}else r=1/0 -return a.bx(new A.L(n,r))}n=p?0:1/0 -return a.bx(new A.L(n,o?0:1/0))}, -c7(){var s,r,q=this,p=t.k.a(A.r.prototype.gab.call(q)),o=q.bX!=null||p.b===1/0,n=q.ci!=null||p.d===1/0,m=q.u$ -if(m!=null){m.cs(new A.al(0,p.b,0,p.d),!0) -if(o){m=q.u$.gC() -s=q.bX -if(s==null)s=1 -s=m.a*s -m=s}else m=1/0 -if(n){s=q.u$.gC() -r=q.ci -if(r==null)r=1 -r=s.b*r -s=r}else s=1/0 -q.fy=p.bx(new A.L(m,s)) -q.A_()}else{m=o?0:1/0 -q.fy=p.bx(new A.L(m,n?0:1/0))}}, -e2(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=h.u$ -if(g==null)return null -s=a.b -r=a.d -q=new A.al(0,s,0,r) -p=g.f5(q,b) -if(p==null)return null -o=g.aO(B.S,q,g.gcu()) -n=h.bX -m=n==null -l=!m||s===1/0 -s=h.ci -k=s==null -j=!k||r===1/0 -if(l){r=m?1:n -r=o.a*r}else r=1/0 -if(j){if(k)s=1 -s=o.b*s}else s=1/0 -i=a.bx(new A.L(r,s)) -return p+h.gwU().ju(t.o.a(i.ac(0,o))).b}} -A.ap9.prototype={ -N(){return"OverflowBoxFit."+this.b}} -A.UO.prototype={ -savJ(a){return}, -sLb(a){return}, -savF(a){return}, -sL9(a){if(this.ea===a)return -this.ea=a -this.ag()}, -sasu(a){var s=this -if(s.eb===a)return -s.eb=a -s.ag() -s.BZ()}, -R6(a){var s=this.ea -return new A.al(a.a,a.b,a.c,s)}, -gkH(){switch(this.eb.a){case 0:var s=!0 -break -case 1:s=!1 -break -default:s=null}return s}, -dg(a){var s -switch(this.eb.a){case 0:s=new A.L(A.E(1/0,a.a,a.b),A.E(1/0,a.c,a.d)) -break -case 1:s=this.u$ -s=s==null?null:s.aO(B.S,a,s.gcu()) -if(s==null)s=new A.L(A.E(0,a.a,a.b),A.E(0,a.c,a.d)) -break -default:s=null}return s}, -e2(a,b){var s,r,q,p,o=this,n=o.u$ -if(n==null)return null -s=o.R6(a) -r=n.f5(s,b) -if(r==null)return null -q=n.aO(B.S,s,n.gcu()) -p=o.aO(B.S,a,o.gcu()) -return r+o.gwU().ju(t.o.a(p.ac(0,q))).b}, -c7(){var s,r=this,q=r.u$ -if(q!=null){s=t.k -q.cs(r.R6(s.a(A.r.prototype.gab.call(r))),!0) -switch(r.eb.a){case 0:break -case 1:r.fy=s.a(A.r.prototype.gab.call(r)).bx(r.u$.gC()) -break}r.A_()}else switch(r.eb.a){case 0:break -case 1:q=t.k.a(A.r.prototype.gab.call(r)) -r.fy=new A.L(A.E(0,q.a,q.b),A.E(0,q.c,q.d)) -break}}} -A.avq.prototype={ -mO(a){return new A.L(A.E(1/0,a.a,a.b),A.E(1/0,a.c,a.d))}, -ol(a){return a}, -oo(a,b){return B.f}} -A.DY.prototype={ -sJh(a){var s=this.D -if(s===a)return -if(A.l(a)!==A.l(s)||a.mT(s))this.ag() -this.D=a}, -aP(a){this.Ov(a)}, -az(){this.Ow()}, -bP(a){var s=A.pN(a,1/0),r=s.bx(this.D.mO(s)).a -if(isFinite(r))return r -return 0}, -bH(a){var s=A.pN(a,1/0),r=s.bx(this.D.mO(s)).a -if(isFinite(r))return r -return 0}, -bO(a){var s=A.pN(1/0,a),r=s.bx(this.D.mO(s)).b -if(isFinite(r))return r -return 0}, -bG(a){var s=A.pN(1/0,a),r=s.bx(this.D.mO(s)).b -if(isFinite(r))return r -return 0}, -dg(a){return a.bx(this.D.mO(a))}, -e2(a,b){var s,r,q,p,o,n,m=this.u$ -if(m==null)return null -s=this.D.ol(a) -r=m.f5(s,b) -if(r==null)return null -q=this.D -p=a.bx(q.mO(a)) -o=s.a -n=s.b -return r+q.oo(p,o>=n&&s.c>=s.d?new A.L(A.E(0,o,n),A.E(0,s.c,s.d)):m.aO(B.S,s,m.gcu())).b}, -c7(){var s,r,q,p,o,n=this,m=t.k,l=m.a(A.r.prototype.gab.call(n)) -n.fy=l.bx(n.D.mO(l)) -if(n.u$!=null){s=n.D.ol(m.a(A.r.prototype.gab.call(n))) -m=n.u$ -m.toString -l=s.a -r=s.b -q=l>=r -m.cs(s,!(q&&s.c>=s.d)) -m=n.u$.b -m.toString -t.r.a(m) -p=n.D -o=n.gC() -m.a=p.oo(o,q&&s.c>=s.d?new A.L(A.E(0,l,r),A.E(0,s.c,s.d)):n.u$.gC())}}} -A.Jo.prototype={ -aP(a){var s -this.eV(a) -s=this.u$ -if(s!=null)s.aP(a)}, -az(){this.eW() -var s=this.u$ -if(s!=null)s.az()}} -A.QE.prototype={ -N(){return"GrowthDirection."+this.b}} -A.mN.prototype={ -ga_I(){return!1}, -aoN(a,b){var s=this.w -switch(A.bg(this.a).a){case 0:return new A.al(b,a,s,s) -case 1:return new A.al(s,s,b,a)}}, -aoM(){return this.aoN(1/0,0)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(!(b instanceof A.mN))return!1 -return b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.e===s.e&&b.f===s.f&&b.r===s.r&&b.w===s.w&&b.x===s.x&&b.y===s.y&&b.Q===s.Q&&b.z===s.z}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.Q,s.z,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=this,r=A.c([s.a.k(0),s.b.k(0),s.c.k(0),"scrollOffset: "+B.d.aq(s.d,1),"precedingScrollExtent: "+B.d.aq(s.e,1),"remainingPaintExtent: "+B.d.aq(s.r,1)],t.s),q=s.f -if(q!==0)r.push("overlap: "+B.d.aq(q,1)) -r.push("crossAxisExtent: "+B.d.aq(s.w,1)) -r.push("crossAxisDirection: "+s.x.k(0)) -r.push("viewportMainAxisExtent: "+B.d.aq(s.y,1)) -r.push("remainingCacheExtent: "+B.d.aq(s.Q,1)) -r.push("cacheOrigin: "+B.d.aq(s.z,1)) -return"SliverConstraints("+B.b.bJ(r,", ")+")"}} -A.Y8.prototype={ -dk(){return"SliverGeometry"}} -A.xj.prototype={} -A.Y9.prototype={ -k(a){return A.l(this.a).k(0)+"@(mainAxis: "+A.j(this.c)+", crossAxis: "+A.j(this.d)+")"}} -A.oL.prototype={ -k(a){var s=this.a -return"layoutOffset="+(s==null?"None":B.d.aq(s,1))}} -A.mO.prototype={} -A.oM.prototype={ -WL(a){var s=this.a -a.eh(s.a,s.b,0,1)}, -k(a){return"paintOffset="+this.a.k(0)}} -A.mP.prototype={} -A.dc.prototype={ -gab(){return t.q.a(A.r.prototype.gab.call(this))}, -gjd(){return this.glj()}, -glj(){var s=this,r=t.q -switch(A.bg(r.a(A.r.prototype.gab.call(s)).a).a){case 0:return new A.w(0,0,0+s.dy.c,0+r.a(A.r.prototype.gab.call(s)).w) -case 1:return new A.w(0,0,0+r.a(A.r.prototype.gab.call(s)).w,0+s.dy.c)}}, -q_(){}, -KI(a,b,c){var s,r=this -if(c>=0&&c=0&&br;j=h,i=o){o=a4.a_i(p,!0) -if(o==null){n=a4.al$ -k=n.b -k.toString -m.a(k).a=0 -if(r===0){n.cs(p,!0) -o=a4.al$ -if(a6.a==null)a6.a=o -i=o -break}else{a4.dy=A.tr(a5,!1,a5,a5,0,0,0,0,-r) -return}}n=a4.al$ -n.toString -h=j-a4.pW(n) -if(h<-1e-10){a4.dy=A.tr(a5,!1,a5,a5,0,0,0,0,-h) -a8=a4.al$.b -a8.toString -m.a(a8).a=0 -return}n=o.b -n.toString -m.a(n).a=h -if(a6.a==null)a6.a=o}if(r<1e-10)for(;;){n=a4.al$ -n.toString -n=n.b -n.toString -m.a(n) -k=n.b -k.toString -if(!(k>0))break -n=n.a -n.toString -o=a4.a_i(p,!0) -k=a4.al$ -k.toString -h=n-a4.pW(k) -k=a4.al$.b -k.toString -m.a(k).a=0 -if(h<-1e-10){a4.dy=A.tr(a5,!1,a5,a5,0,0,0,0,-h) -return}}if(i==null){o.cs(p,!0) -a6.a=o}a6.b=!0 -a6.c=o -n=o.b -n.toString -m.a(n) -k=n.b -k.toString -a6.d=k -n=n.a -n.toString -a6.e=n+a4.pW(o) -g=new A.arx(a6,a4,p) -for(f=0;a6.es+a7.r||s>0,a5,a5,a0,a2,0,a0,a5) -if(a0===a)a8.R8=!0 -a8.Jq()}} -A.arx.prototype={ -$0(){var s,r,q,p=this.a,o=p.c,n=p.a -if(o==n)p.b=!1 -s=this.b -o=o.b -o.toString -r=p.c=A.n(s).i("ao.1").a(o).aJ$ -o=r==null -if(o)p.b=!1 -q=++p.d -if(!p.b){if(!o){o=r.b -o.toString -o=t.W.a(o).b -o.toString -q=o!==q -o=q}else o=!0 -q=this.c -if(o){r=s.aun(q,n,!0) -p.c=r -if(r==null)return!1}else r.cs(q,!0) -o=p.a=p.c}else o=r -n=o.b -n.toString -t.W.a(n) -q=p.e -n.a=q -p.e=q+s.pW(o) -return!0}, -$S:58} -A.kI.prototype={$icE:1} -A.arB.prototype={ -eT(a){}} -A.l2.prototype={ -k(a){var s=this.b,r=this.w0$?"keepAlive; ":"" -return"index="+A.j(s)+"; "+r+this.a5W(0)}} -A.wM.prototype={ -eT(a){if(!(a.b instanceof A.l2))a.b=new A.l2(!1,null,null)}, -i7(a){var s -this.Oj(a) -s=a.b -s.toString -if(!t.W.a(s).c)this.y1.Jn(t.x.a(a))}, -KN(a,b,c){this.E3(0,b,c)}, -t3(a,b){var s,r=this,q=a.b -q.toString -t.W.a(q) -if(!q.c){r.a4a(a,b) -r.y1.Jn(a) -r.ag()}else{s=r.y2 -if(s.h(0,q.b)===a)s.J(0,q.b) -r.y1.Jn(a) -q=q.b -q.toString -s.m(0,q,a)}}, -J(a,b){var s=b.b -s.toString -t.W.a(s) -if(!s.c){this.a4b(0,b) -return}this.y2.J(0,s.b) -this.m5(b)}, -Fn(a,b){this.wf(new A.ary(this,a,b),t.q)}, -Qa(a){var s,r=this,q=a.b -q.toString -t.W.a(q) -if(q.w0$){r.J(0,a) -s=q.b -s.toString -r.y2.m(0,s,a) -a.b=q -r.Oj(a) -q.c=!0}else r.y1.a12(a)}, -aP(a){var s -this.a6T(a) -for(s=this.y2,s=new A.db(s,s.r,s.e);s.v();)s.d.aP(a)}, -az(){this.a6U() -for(var s=this.y2,s=new A.db(s,s.r,s.e);s.v();)s.d.az()}, -h6(){this.NL() -var s=this.y2 -new A.bo(s,A.n(s).i("bo<2>")).aL(0,this.gLU())}, -bB(a){var s -this.xP(a) -s=this.y2 -new A.bo(s,A.n(s).i("bo<2>")).aL(0,a)}, -fK(a){this.xP(a)}, -gjd(){var s=this,r=s.dy,q=!1 -if(r!=null)if(!r.w){r=s.al$ -r=r!=null&&r.fy!=null}else r=q -else r=q -if(r){r=s.al$.gC() -return new A.w(0,0,0+r.a,0+r.b)}return A.dc.prototype.gjd.call(s)}, -aoo(a,b){var s -this.Fn(a,null) -s=this.al$ -if(s!=null){s=s.b -s.toString -t.W.a(s).a=b -return!0}this.y1.R8=!0 -return!1}, -Wu(){return this.aoo(0,0)}, -a_i(a,b){var s,r,q,p=this,o=p.al$ -o.toString -o=o.b -o.toString -s=t.W -o=s.a(o).b -o.toString -r=o-1 -p.Fn(r,null) -o=p.al$ -o.toString -q=o.b -q.toString -q=s.a(q).b -q.toString -if(q===r){o.cs(a,b) -return p.al$}p.y1.R8=!0 -return null}, -aun(a,b,c){var s,r,q,p=b.b -p.toString -s=t.W -p=s.a(p).b -p.toString -r=p+1 -this.Fn(r,b) -p=b.b -p.toString -q=A.n(this).i("ao.1").a(p).aJ$ -if(q!=null){p=q.b -p.toString -p=s.a(p).b -p.toString -p=p===r}else p=!1 -if(p){q.cs(a,c) -return q}this.y1.R8=!0 -return null}, -IM(a,b){var s={} -s.a=a -s.b=b -this.wf(new A.arA(s,this),t.q)}, -pW(a){var s -switch(A.bg(t.q.a(A.r.prototype.gab.call(this)).a).a){case 0:s=a.gC().a -break -case 1:s=a.gC().b -break -default:s=null}return s}, -KK(a,b,c){var s,r,q=this.dn$,p=A.aV1(a) -for(s=A.n(this).i("ao.1");q!=null;){if(this.atX(p,q,b,c))return!0 -r=q.b -r.toString -q=s.a(r).cS$}return!1}, -IE(a){var s=a.b -s.toString -return t.W.a(s).a}, -pY(a){var s=t.MR.a(a.b) -return(s==null?null:s.b)!=null&&!this.y2.aN(s.b)}, -dz(a,b){if(!this.pY(a))b.Nv() -else this.aoK(a,b)}, -b1(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=null -if(d.al$==null)return -s=t.q -r=!0 -switch(A.nr(s.a(A.r.prototype.gab.call(d)).a,s.a(A.r.prototype.gab.call(d)).b).a){case 0:q=b.a8(0,new A.h(0,d.dy.c)) -p=B.nS -o=B.dw -break -case 1:q=b -p=B.dw -o=B.ed -r=!1 -break -case 2:q=b -p=B.ed -o=B.dw -r=!1 -break -case 3:q=b.a8(0,new A.h(d.dy.c,0)) -p=B.nU -o=B.ed -break -default:r=c -q=r -o=q -p=o}n=d.al$ -for(m=A.n(d).i("ao.1"),l=t.W;n!=null;){k=n.b -k.toString -k=l.a(k).a -k.toString -j=k-s.a(A.r.prototype.gab.call(d)).d -k=q.a -i=p.a -k=k+i*j+o.a*0 -h=q.b -g=p.b -h=h+g*j+o.b*0 -f=new A.h(k,h) -if(r){e=d.pW(n) -f=new A.h(k+i*e,h+g*e)}if(j0)a.e4(n,f) -k=n.b -k.toString -n=m.a(k).aJ$}}} -A.ary.prototype={ -$1(a){var s,r=this.a,q=r.y2,p=this.b,o=this.c -if(q.aN(p)){s=q.J(0,p) -q=s.b -q.toString -t.W.a(q) -r.m5(s) -s.b=q -r.E3(0,s,o) -q.c=!1}else r.y1.aqZ(p,o)}, -$S:214} -A.arA.prototype={ -$1(a){var s,r,q,p -for(s=this.a,r=this.b;s.a>0;){q=r.al$ -q.toString -r.Qa(q);--s.a}while(s.b>0){q=r.dn$ -q.toString -r.Qa(q);--s.b}s=r.y2 -q=A.n(s).i("bo<2>") -p=q.i("b1") -s=A.aa(new A.b1(new A.bo(s,q),new A.arz(),p),p.i("y.E")) -B.b.aL(s,r.y1.gaxS())}, -$S:214} -A.arz.prototype={ -$1(a){var s=a.b -s.toString -return!t.W.a(s).w0$}, -$S:331} -A.Jq.prototype={ -aP(a){var s,r,q -this.eV(a) -s=this.al$ -for(r=t.W;s!=null;){s.aP(a) -q=s.b -q.toString -s=r.a(q).aJ$}}, -az(){var s,r,q -this.eW() -s=this.al$ -for(r=t.W;s!=null;){s.az() -q=s.b -q.toString -s=r.a(q).aJ$}}} -A.a5M.prototype={} -A.a5N.prototype={} -A.a8M.prototype={ -az(){this.u0()}} -A.a8N.prototype={} -A.E8.prototype={ -gIr(){var s=this,r=t.q -switch(A.nr(r.a(A.r.prototype.gab.call(s)).a,r.a(A.r.prototype.gab.call(s)).b).a){case 0:r=s.bq.d -break -case 1:r=s.bq.a -break -case 2:r=s.bq.b -break -case 3:r=s.bq.c -break -default:r=null}return r}, -gaox(){var s=this,r=t.q -switch(A.nr(r.a(A.r.prototype.gab.call(s)).a,r.a(A.r.prototype.gab.call(s)).b).a){case 0:r=s.bq.b -break -case 1:r=s.bq.c -break -case 2:r=s.bq.d -break -case 3:r=s.bq.a -break -default:r=null}return r}, -gar3(){switch(A.bg(t.q.a(A.r.prototype.gab.call(this)).a).a){case 0:var s=this.bq -s=s.gcR()+s.gcX() -break -case 1:s=this.bq.gfo() -break -default:s=null}return s}, -eT(a){if(!(a.b instanceof A.oM))a.b=new A.oM(B.f)}, -c7(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=this,a3=null,a4=t.q,a5=a4.a(A.r.prototype.gab.call(a2)),a6=new A.aru(a2,a5),a7=new A.art(a2,a5),a8=a2.bq -a8.toString -s=a2.gIr() -a2.gaox() -r=a8.aoy(A.bg(a4.a(A.r.prototype.gab.call(a2)).a)) -q=a2.gar3() -if(a2.u$==null){p=a6.$2$from$to(0,r) -a2.dy=A.tr(a7.$2$from$to(0,r),!1,a3,a3,r,Math.min(p,a5.r),0,r,a3) -return}o=a6.$2$from$to(0,s) -n=a5.f -if(n>0)n=Math.max(0,n-o) -a4=a2.u$ -a4.toString -m=Math.max(0,a5.d-s) -l=Math.min(0,a5.z+s) -k=a5.r -j=a6.$2$from$to(0,s) -i=a5.Q -h=a7.$2$from$to(0,s) -g=Math.max(0,a5.w-q) -f=a5.a -e=a5.b -a4.cs(new A.mN(f,e,a5.c,m,s+a5.e,n,k-j,g,a5.x,a5.y,l,i-h),!0) -d=a2.u$.dy -a4=d.y -if(a4!=null){a2.dy=A.tr(a3,!1,a3,a3,0,0,0,0,a4) -return}c=d.a -b=a7.$2$from$to(0,s) -a4=s+c -m=r+c -a=a7.$2$from$to(a4,m) -a0=a6.$2$from$to(a4,m) -a1=o+a0 -a4=d.c -l=d.d -p=Math.min(o+Math.max(a4,l+a0),k) -k=d.b -l=Math.min(a1+l,p) -i=Math.min(b+a+d.z,i) -j=d.e -a4=Math.max(a1+a4,o+d.r) -a2.dy=A.tr(i,d.x,a4,l,r+j,p,k,m,a3) -switch(A.nr(f,e).a){case 0:a4=a6.$2$from$to(a8.d+c,a8.gcR()+a8.gcX()+c) -break -case 3:a4=a6.$2$from$to(a8.c+c,a8.gfo()+c) -break -case 1:a4=a6.$2$from$to(0,a8.a) -break -case 2:a4=a6.$2$from$to(0,a8.b) -break -default:a4=a3}m=a2.u$.b -m.toString -t.jB.a(m) -switch(A.bg(f).a){case 0:a4=new A.h(a4,a8.b) -break -case 1:a4=new A.h(a8.a,a4) -break -default:a4=a3}m.a=a4}, -KK(a,b,c){var s,r,q,p,o=this,n=o.u$ -if(n!=null&&n.dy.r>0){n=n.b -n.toString -t.jB.a(n) -s=o.Iy(t.q.a(A.r.prototype.gab.call(o)),0,o.gIr()) -r=o.u$ -r.toString -q=o.apu(r) -n=n.a -a.c.push(new A.yJ(new A.h(-n.a,-n.b))) -p=r.gatU().$3$crossAxisPosition$mainAxisPosition(a,b-q,c-s) -a.Cz() -return p}return!1}, -apu(a){var s -switch(A.bg(t.q.a(A.r.prototype.gab.call(this)).a).a){case 0:s=this.bq.b -break -case 1:s=this.bq.a -break -default:s=null}return s}, -IE(a){return this.gIr()}, -dz(a,b){var s=a.b -s.toString -t.jB.a(s).WL(b)}, -b1(a,b){var s,r=this.u$ -if(r!=null&&r.dy.w){s=r.b -s.toString -a.e4(r,b.a8(0,t.jB.a(s).a))}}} -A.aru.prototype={ -$2$from$to(a,b){return this.a.Iy(this.b,a,b)}, -$S:213} -A.art.prototype={ -$2$from$to(a,b){return this.a.Xd(this.b,a,b)}, -$S:213} -A.V6.prototype={ -am_(){if(this.bq!=null)return -this.bq=this.u}, -scH(a){var s=this -if(s.u.j(0,a))return -s.u=a -s.bq=null -s.ag()}, -sce(a){var s=this -if(s.c0===a)return -s.c0=a -s.bq=null -s.ag()}, -c7(){this.am_() -this.a5n()}} -A.a5L.prototype={ -aP(a){var s -this.eV(a) -s=this.u$ -if(s!=null)s.aP(a)}, -az(){this.eW() -var s=this.u$ -if(s!=null)s.az()}} -A.f7.prototype={ -gpK(){var s=this -return s.e!=null||s.f!=null||s.r!=null||s.w!=null||s.x!=null||s.y!=null}, -LK(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null,e=g.w,d=g.f -A:{s=e!=null -r=f -q=!1 -if(s){q=d!=null -r=d -p=e}else p=f -if(q){o=s?r:d -if(o==null)o=A.cG(o) -q=a.a-o-p -break A}q=g.x -break A}n=g.e -m=g.r -B:{l=n!=null -k=f -j=!1 -if(l){j=m!=null -k=m -i=n}else i=f -if(j){h=l?k:m -if(h==null)h=A.cG(h) -j=a.b-h-i -break B}j=g.y -break B}q=q==null?f:Math.max(0,q) -return A.lH(j==null?f:Math.max(0,j),q)}, -k(a){var s=this,r=A.c([],t.s),q=s.e -if(q!=null)r.push("top="+A.kl(q)) -q=s.f -if(q!=null)r.push("right="+A.kl(q)) -q=s.r -if(q!=null)r.push("bottom="+A.kl(q)) -q=s.w -if(q!=null)r.push("left="+A.kl(q)) -q=s.x -if(q!=null)r.push("width="+A.kl(q)) -q=s.y -if(q!=null)r.push("height="+A.kl(q)) -if(r.length===0)r.push("not positioned") -r.push(s.xN(0)) -return B.b.bJ(r,"; ")}} -A.Yq.prototype={ -N(){return"StackFit."+this.b}} -A.E9.prototype={ -eT(a){if(!(a.b instanceof A.f7))a.b=new A.f7(null,null,B.f)}, -gUG(){var s=this,r=s.U -return r==null?s.U=s.a0.af(s.a3):r}, -siS(a){var s=this -if(s.a0.j(0,a))return -s.a0=a -s.U=null -s.ag()}, -sce(a){var s=this -if(s.a3==a)return -s.a3=a -s.U=null -s.ag()}, -bP(a){return A.rP(this.al$,new A.arF(a))}, -bH(a){return A.rP(this.al$,new A.arD(a))}, -bO(a){return A.rP(this.al$,new A.arE(a))}, -bG(a){return A.rP(this.al$,new A.arC(a))}, -hm(a){return this.AD(a)}, -e2(a,b){var s,r,q,p,o,n,m,l=this -switch(l.a5.a){case 0:s=new A.al(0,a.b,0,a.d) -break -case 1:s=A.pM(new A.L(A.E(1/0,a.a,a.b),A.E(1/0,a.c,a.d))) -break -case 2:s=a -break -default:s=null}r=l.gUG() -q=l.aO(B.S,a,l.gcu()) -p=l.al$ -o=A.n(l).i("ao.1") -n=null -while(p!=null){n=A.A6(n,A.bao(p,q,s,r,b)) -m=p.b -m.toString -p=o.a(m).aJ$}return n}, -dg(a){return this.UF(a,A.hQ())}, -UF(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g -if(this.dJ$===0){s=a.a -r=a.b -q=A.E(1/0,s,r) -p=a.c -o=a.d -n=A.E(1/0,p,o) -return isFinite(q)&&isFinite(n)?new A.L(A.E(1/0,s,r),A.E(1/0,p,o)):new A.L(A.E(0,s,r),A.E(0,p,o))}m=a.a -l=a.c -switch(this.a5.a){case 0:s=new A.al(0,a.b,0,a.d) -break -case 1:s=A.pM(new A.L(A.E(1/0,m,a.b),A.E(1/0,l,a.d))) -break -case 2:s=a -break -default:s=null}k=this.al$ -for(r=t.B,j=l,i=m,h=!1;k!=null;){q=k.b -q.toString -r.a(q) -if(!q.gpK()){g=b.$2(k,s) -i=Math.max(i,g.a) -j=Math.max(j,g.b) -h=!0}k=q.aJ$}return h?new A.L(i,j):new A.L(A.E(1/0,m,a.b),A.E(1/0,l,a.d))}, -c7(){var s,r,q,p,o,n,m,l=this,k="RenderBox was not laid out: ",j=t.k.a(A.r.prototype.gab.call(l)) -l.n=!1 -l.fy=l.UF(j,A.pz()) -s=l.gUG() -r=l.al$ -for(q=t.B,p=t.o;r!=null;){o=r.b -o.toString -q.a(o) -if(!o.gpK()){n=l.fy -if(n==null)n=A.a0(A.aL(k+A.l(l).k(0)+"#"+A.bF(l))) -m=r.fy -o.a=s.ju(p.a(n.ac(0,m==null?A.a0(A.aL(k+A.l(r).k(0)+"#"+A.bF(r))):m)))}else{n=l.fy -l.n=A.aXI(r,o,n==null?A.a0(A.aL(k+A.l(l).k(0)+"#"+A.bF(l))):n,s)||l.n}r=o.aJ$}}, -da(a,b){return this.vE(a,b)}, -awT(a,b){this.pe(a,b)}, -b1(a,b){var s,r=this,q=r.au!==B.v&&r.n,p=r.L -if(q){q=r.cx -q===$&&A.a() -s=r.gC() -p.saR(a.ll(q,b,new A.w(0,0,0+s.a,0+s.b),r.gawS(),r.au,p.a))}else{p.saR(null) -r.pe(a,b)}}, -l(){this.L.saR(null) -this.fu()}, -m3(a){var s -switch(this.au.a){case 0:return null -case 1:case 2:case 3:if(this.n){s=this.gC() -s=new A.w(0,0,0+s.a,0+s.b)}else s=null -return s}}} -A.arF.prototype={ -$1(a){return a.aO(B.bR,this.a,a.gcG())}, -$S:45} -A.arD.prototype={ -$1(a){return a.aO(B.aK,this.a,a.gc2())}, -$S:45} -A.arE.prototype={ -$1(a){return a.aO(B.by,this.a,a.gcA())}, -$S:45} -A.arC.prototype={ -$1(a){return a.aO(B.bg,this.a,a.gcp())}, -$S:45} -A.a5O.prototype={ -aP(a){var s,r,q -this.eV(a) -s=this.al$ -for(r=t.B;s!=null;){s.aP(a) -q=s.b -q.toString -s=r.a(q).aJ$}}, -az(){var s,r,q -this.eW() -s=this.al$ -for(r=t.B;s!=null;){s.az() -q=s.b -q.toString -s=r.a(q).aJ$}}} -A.a5P.prototype={} -A.nv.prototype={ -eo(a){return A.jv(this.a,this.b,a)}} -A.Gx.prototype={ -a3n(a){if(A.l(a)!==A.l(this))return!0 -return a.c!==this.c}, -j(a,b){var s=this -if(b==null)return!1 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.Gx&&b.a.j(0,s.a)&&b.b.j(0,s.b)&&b.c===s.c}, -gt(a){return A.N(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return this.a.k(0)+" at "+A.kl(this.c)+"x"}} -A.rQ.prototype={ -a8r(a,b,c){this.sR(a)}, -srs(a){var s,r,q,p=this -if(J.b(p.fr,a))return -s=p.fr -p.fr=a -if(p.go==null)return -if(s==null||a.a3n(s)){r=p.VK() -q=p.ch -q.a.az() -q.saR(r) -p.bb()}p.ag()}, -gab(){var s=this.fr -if(s==null)throw A.i(A.aL("Constraints are not available because RenderView has not been given a configuration yet.")) -return s.a}, -LL(){var s=this -s.Q=!0 -s.y.r.push(s) -s.ch.saR(s.VK()) -s.y.Q.push(s)}, -VK(){var s,r=this.fr.c -r=A.wc(r,r,1) -this.go=r -s=A.aSi(B.f,r) -s.aP(this) -return s}, -q_(){}, -c7(){var s=this,r=s.gab(),q=!(r.a>=r.b&&r.c>=r.d) -r=s.u$ -if(r!=null)r.cs(s.gab(),q) -if(q&&s.u$!=null)r=s.u$.gC() -else{r=s.gab() -r=new A.L(A.E(0,r.a,r.b),A.E(0,r.c,r.d))}s.dy=r}, -gfp(){return!0}, -b1(a,b){var s=this.u$ -if(s!=null)a.e4(s,b)}, -dz(a,b){var s=this.go -s.toString -b.f2(s) -this.a58(a,b)}, -apM(){var s,r,q,p,o,n,m,l=this -try{$.mB.toString -$.ab() -s=A.aWA() -r=l.ch.a.X9(s) -l.any() -q=l.fx -p=l.fr -o=l.dy -p=p.b.bx(o.ak(0,p.c)) -o=$.dm() -n=o.d -m=p.d7(0,n==null?o.gcN():n) -p=q.gfZ().a.style -A.a_(p,"width",A.j(m.a)+"px") -A.a_(p,"height",A.j(m.b)+"px") -if(!(!B.oi.q(0,$.bN().ge3())&&$.uu().c))q.at=q.F8() -q.b.CN(r,q) -r.a.a.l()}finally{}}, -any(){var s,r,q,p,o,n=null,m=this.glj(),l=m.gbp(),k=m.gbp(),j=this.ch,i=t.lu,h=j.a.Zd(new A.h(l.a,0),i),g=n -switch(A.aT().a){case 0:g=j.a.Zd(new A.h(k.a,m.d-1),i) -break -case 1:case 2:case 3:case 4:case 5:break}l=h==null -if(l&&g==null)return -if(!l&&g!=null){l=h.f -k=h.r -j=h.e -i=h.w -A.aS3(new A.l5(g.a,g.b,g.c,g.d,j,l,k,i)) -return}s=A.aT()===B.as -r=l?g:h -l=r.f -k=r.r -j=r.e -i=r.w -q=s?r.a:n -p=s?r.b:n -o=s?r.c:n -A.aS3(new A.l5(q,p,o,s?r.d:n,j,l,k,i))}, -glj(){var s=this.dy.ak(0,this.fr.c) -return new A.w(0,0,0+s.a,0+s.b)}, -gjd(){var s,r=this.go -r.toString -s=this.dy -return A.e0(r,new A.w(0,0,0+s.a,0+s.b))}} -A.a5R.prototype={ -aP(a){var s -this.eV(a) -s=this.u$ -if(s!=null)s.aP(a)}, -az(){this.eW() -var s=this.u$ -if(s!=null)s.az()}} -A.adI.prototype={ -N(){return"CacheExtentStyle."+this.b}} -A.avF.prototype={ -N(){return"SliverPaintOrder."+this.b}} -A.ou.prototype={ -k(a){return"RevealedOffset(offset: "+A.j(this.a)+", rect: "+this.b.k(0)+")"}} -A.wO.prototype={ -eJ(a){this.jg(a) -a.zW(B.Ic)}, -fK(a){var s=this.gXo() -new A.b1(s,new A.arI(),A.a6(s).i("b1<1>")).aL(0,a)}, -shD(a){if(a===this.n)return -this.n=a -this.ag()}, -sY5(a){if(a===this.U)return -this.U=a -this.ag()}, -scU(a){var s=this,r=s.a0 -if(a===r)return -if(s.y!=null)r.O(s.gpR()) -s.a0=a -if(s.y!=null)a.a9(s.gpR()) -s.ag()}, -sape(a){if(250===this.a3)return -this.a3=250 -this.ag()}, -sapf(a){if(a===this.au)return -this.au=a -this.ag()}, -sa0s(a){var s=this -if(a!==s.L){s.L=a -s.bb() -s.br()}}, -snx(a){var s=this -if(a!==s.P){s.P=a -s.bb() -s.br()}}, -aP(a){this.a6W(a) -this.a0.a9(this.gpR())}, -az(){this.a0.O(this.gpR()) -this.a6X()}, -bP(a){return 0}, -bH(a){return 0}, -bO(a){return 0}, -bG(a){return 0}, -gfp(){return!0}, -L0(a,b,c,d,e,f,g,h,a0,a1,a2){var s,r,q,p,o,n,m,l,k=this,j=A.bj0(k.a0.k4,e),i=f+h -for(s=f,r=0;c!=null;){q=a2<=0?0:a2 -p=Math.max(b,-q) -o=b-p -c.cs(new A.mN(k.n,e,j,q,r,i-s,Math.max(0,a1-s+f),d,k.U,g,p,Math.max(0,a0+o)),!0) -n=c.dy -m=n.y -if(m!=null)return m -l=s+n.b -if(n.w||a2>0)k.Md(c,l,e) -else k.Md(c,-a2+f,e) -i=Math.max(l+n.c,i) -m=n.a -a2-=m -r+=m -s+=n.d -m=n.z -if(m!==0){a0-=m-o -b=Math.min(p+m,0)}k.a1Q(e,n) -c=a.$1(c)}return 0}, -m3(a){var s,r,q,p,o,n -switch(this.P.a){case 0:return null -case 1:case 2:case 3:break}s=this.gC() -r=0+s.a -q=0+s.b -s=t.q -if(s.a(A.r.prototype.gab.call(a)).f===0||!isFinite(s.a(A.r.prototype.gab.call(a)).y))return new A.w(0,0,r,q) -p=s.a(A.r.prototype.gab.call(a)).y-s.a(A.r.prototype.gab.call(a)).r+s.a(A.r.prototype.gab.call(a)).f -o=0 -n=0 -switch(A.nr(this.n,s.a(A.r.prototype.gab.call(a)).b).a){case 2:n=0+p -break -case 0:q-=p -break -case 1:o=0+p -break -case 3:r-=p -break}return new A.w(o,n,r,q)}, -Jk(a){var s,r,q,p,o=this -if(o.a5==null){s=o.gC() -return new A.w(0,0,0+s.a,0+s.b)}switch(A.bg(o.n).a){case 1:o.gC() -o.gC() -s=o.a5 -s.toString -r=o.gC() -q=o.gC() -p=o.a5 -p.toString -return new A.w(0,0-s,0+r.a,0+q.b+p) -case 0:o.gC() -s=o.a5 -s.toString -o.gC() -r=o.gC() -q=o.a5 -q.toString -return new A.w(0-s,0,0+r.a+q,0+o.gC().b)}}, -b1(a,b){var s,r,q,p=this -if(p.al$==null)return -s=p.ga__()&&p.P!==B.v -r=p.ao -if(s){s=p.cx -s===$&&A.a() -q=p.gC() -r.saR(a.ll(s,b,new A.w(0,0,0+q.a,0+q.b),p.gaj6(),p.P,r.a))}else{r.saR(null) -p.SX(a,b)}}, -l(){this.ao.saR(null) -this.fu()}, -SX(a,b){var s,r,q,p,o,n,m -for(s=this.gXo(),r=s.length,q=b.a,p=b.b,o=0;o0 -else s=!0 -return s}, -$S:334} -A.arH.prototype={ -$1(a){var s=this,r=s.c,q=s.a,p=s.b.Xy(r,q.b) -return r.KI(s.d,q.a,p)}, -$S:215} -A.Eb.prototype={ -eT(a){if(!(a.b instanceof A.mP))a.b=new A.mP(null,null,B.f)}, -saoA(a){if(a===this.ev)return -this.ev=a -this.ag()}, -sbp(a){if(a==this.dq)return -this.dq=a -this.ag()}, -gkH(){return!0}, -dg(a){return new A.L(A.E(1/0,a.a,a.b),A.E(1/0,a.c,a.d))}, -c7(){var s,r,q,p,o,n,m,l,k,j,i,h=this -switch(A.bg(h.n).a){case 1:h.a0.ve(h.gC().b) -break -case 0:h.a0.ve(h.gC().a) -break}if(h.dq==null){h.mc=h.ew=0 -h.rQ=!1 -h.a0.ri(0,0) -return}switch(A.bg(h.n).a){case 1:s=new A.an(h.gC().b,h.gC().a) -break -case 0:s=new A.an(h.gC().a,h.gC().b) -break -default:s=null}r=s.a -q=null -p=s.b -q=p -o=r -h.dq.toString -n=10*h.dJ$ -m=0 -do{s=h.a0.at -s.toString -l=h.EI(o,q,s+0) -if(l!==0)h.a0.J4(l) -else{s=h.a0 -k=h.ew -k===$&&A.a() -j=h.ev -k=Math.min(0,k+o*j) -i=h.mc -i===$&&A.a() -if(s.ri(k,Math.max(0,i-o*(1-j))))break}++m}while(m=a?s:r -f=e.a5 -f.toString -return e.L0(e.grn(),A.E(s,-f,0),q,b,B.jh,j,a,o,k,p,h)}, -ga__(){return this.rQ}, -a1Q(a,b){var s,r=this -switch(a.a){case 0:s=r.mc -s===$&&A.a() -r.mc=s+b.a -break -case 1:s=r.ew -s===$&&A.a() -r.ew=s-b.a -break}if(b.x)r.rQ=!0}, -Md(a,b,c){var s=a.b -s.toString -t.jB.a(s).a=this.Xx(a,b,c)}, -LD(a){var s=a.b -s.toString -return t.jB.a(s).a}, -N8(a,b){var s,r,q,p,o=this -switch(t.q.a(A.r.prototype.gab.call(a)).b.a){case 0:s=o.dq -for(r=A.n(o).i("ao.1"),q=0;s!==a;){q+=s.dy.a -p=s.b -p.toString -s=r.a(p).aJ$}return q+b -case 1:r=o.dq.b -r.toString -p=A.n(o).i("ao.1") -s=p.a(r).cS$ -for(q=0;s!==a;){q-=s.dy.a -r=s.b -r.toString -s=p.a(r).cS$}return q-b}}, -a00(a){var s,r,q,p=this -switch(t.q.a(A.r.prototype.gab.call(a)).b.a){case 0:s=p.dq -for(r=A.n(p).i("ao.1");s!==a;){s.dy.toString -q=s.b -q.toString -s=r.a(q).aJ$}return 0 -case 1:r=p.dq.b -r.toString -q=A.n(p).i("ao.1") -s=q.a(r).cS$ -while(s!==a){s.dy.toString -r=s.b -r.toString -s=q.a(r).cS$}return 0}}, -dz(a,b){var s=a.b -s.toString -t.jB.a(s).WL(b)}, -Xy(a,b){var s,r=a.b -r.toString -s=t.jB.a(r).a -r=t.q -switch(A.nr(r.a(A.r.prototype.gab.call(a)).a,r.a(A.r.prototype.gab.call(a)).b).a){case 2:r=b-s.b -break -case 1:r=b-s.a -break -case 0:r=a.dy.c-(b-s.b) -break -case 3:r=a.dy.c-(b-s.a) -break -default:r=null}return r}} -A.V4.prototype={ -eT(a){if(!(a.b instanceof A.mO))a.b=new A.mO(null,null)}, -c7(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=null,c=t.k.a(A.r.prototype.gab.call(e)) -if(e.al$==null){switch(A.bg(e.n).a){case 1:s=new A.L(c.b,c.c) -break -case 0:s=new A.L(c.a,c.d) -break -default:s=d}e.fy=s -e.a0.ve(0) -e.dq=e.ev=0 -e.ew=!1 -e.a0.ri(0,0) -return}switch(A.bg(e.n).a){case 1:s=new A.an(c.d,c.b) -break -case 0:s=new A.an(c.b,c.d) -break -default:s=d}r=s.a -q=d -p=s.b -q=p -o=r -for(s=c.a,n=c.b,m=c.c,l=c.d,k=d;;){j=e.a0.at -j.toString -i=e.EI(o,q,j) -if(i!==0){j=e.a0 -h=j.at -h.toString -j.at=h+i -j.ch=!0}else{switch(A.bg(e.n).a){case 1:j=e.dq -j===$&&A.a() -j=A.E(j,m,l) -break -case 0:j=e.dq -j===$&&A.a() -j=A.E(j,s,n) -break -default:j=d}h=e.a0 -if(h.ax!==j){h.ax=j -h.ch=!0}g=e.ev -g===$&&A.a() -f=h.ri(0,Math.max(0,g-j)) -if(f){k=j -break}k=j}}switch(A.bg(e.n).a){case 1:s=new A.L(A.E(q,s,n),A.E(k,m,l)) -break -case 0:s=new A.L(A.E(k,s,n),A.E(q,m,l)) -break -default:s=d}e.fy=s}, -EI(a,b,c){var s,r,q,p,o,n=this -n.dq=n.ev=0 -n.ew=c<0 -switch(n.au.a){case 0:s=n.a3 -break -case 1:s=a*n.a3 -break -default:s=null}n.a5=s -r=n.al$ -q=Math.max(0,c) -p=Math.min(0,c) -o=Math.max(0,-c) -s.toString -return n.L0(n.grn(),-s,r,b,B.jh,o,a,p,a+2*s,a+p,q)}, -ga__(){return this.ew}, -a1Q(a,b){var s=this,r=s.ev -r===$&&A.a() -s.ev=r+b.a -if(b.x)s.ew=!0 -r=s.dq -r===$&&A.a() -s.dq=r+b.e}, -Md(a,b,c){var s=a.b -s.toString -t.Xp.a(s).a=b}, -LD(a){var s=a.b -s.toString -s=t.Xp.a(s).a -s.toString -return this.Xx(a,s,B.jh)}, -N8(a,b){var s,r,q,p=this.al$ -for(s=A.n(this).i("ao.1"),r=0;p!==a;){r+=p.dy.a -q=p.b -q.toString -p=s.a(q).aJ$}return r+b}, -a00(a){var s,r,q=this.al$ -for(s=A.n(this).i("ao.1");q!==a;){q.dy.toString -r=q.b -r.toString -q=s.a(r).aJ$}return 0}, -dz(a,b){var s=this.LD(t.nl.a(a)) -b.eh(s.a,s.b,0,1)}, -Xy(a,b){var s,r,q=a.b -q.toString -q=t.Xp.a(q).a -q.toString -s=t.q -r=A.nr(s.a(A.r.prototype.gab.call(a)).a,s.a(A.r.prototype.gab.call(a)).b) -A:{if(B.aV===r||B.cl===r){q=b-q -break A}if(B.b_===r){q=this.gC().b-b-q -break A}if(B.bh===r){q=this.gC().a-b-q -break A}q=null}return q}} -A.jj.prototype={ -aP(a){var s,r,q -this.eV(a) -s=this.al$ -for(r=A.n(this).i("jj.0");s!=null;){s.aP(a) -q=s.b -q.toString -s=r.a(q).aJ$}}, -az(){var s,r,q -this.eW() -s=this.al$ -for(r=A.n(this).i("jj.0");s!=null;){s.az() -q=s.b -q.toString -s=r.a(q).aJ$}}} -A.Ex.prototype={ -N(){return"ScrollDirection."+this.b}} -A.iG.prototype={ -wu(a,b,c){var s=c.a===0 -if(s){this.f7(a) -return A.di(null,t.H)}else return this.kQ(a,b,c)}, -k(a){var s=this,r=A.c([],t.s) -s.a5M(r) -r.push(A.l(s.w).k(0)) -r.push(s.r.k(0)) -r.push(A.j(s.fr)) -r.push(s.k4.k(0)) -return"#"+A.bF(s)+"("+B.b.bJ(r,", ")+")"}, -eu(a){var s=this.at -if(s!=null)a.push("offset: "+B.d.aq(s,1))}} -A.oY.prototype={ -N(){return"WrapAlignment."+this.b}, -yi(a,b,c,d){var s,r,q=this -A:{if(B.bZ===q){s=new A.an(d?a:0,b) -break A}if(B.aiP===q){s=B.bZ.yi(a,b,c,!d) -break A}r=B.aiQ===q -if(r&&c<2){s=B.bZ.yi(a,b,c,d) -break A}if(B.ih===q){s=new A.an(a/2,b) -break A}if(r){s=new A.an(0,a/(c-1)+b) -break A}if(B.aiR===q){s=a/c -s=new A.an(s/2,s+b) -break A}if(B.aiS===q){s=a/(c+1) -s=new A.an(s,s+b) -break A}s=null}return s}} -A.GN.prototype={ -N(){return"WrapCrossAlignment."+this.b}, -gach(){switch(this.a){case 0:var s=B.aiT -break -case 1:s=B.ii -break -case 2:s=B.ij -break -default:s=null}return s}, -ga90(){switch(this.a){case 0:var s=0 -break -case 1:s=1 -break -case 2:s=0.5 -break -default:s=null}return s}} -A.Jw.prototype={ -ayP(a,b,c,d,e){var s=this,r=s.a -if(r.a+b.a+d-e>1e-10)return new A.Jw(b,a) -else{s.a=A.azC(r,A.azC(b,new A.L(d,0)));++s.b -if(c)s.c=a -return null}}} -A.lf.prototype={} -A.Ec.prototype={ -sAL(a){if(this.n===a)return -this.n=a -this.ag()}, -siS(a){if(this.U===a)return -this.U=a -this.ag()}, -sDV(a){if(this.a0===a)return -this.a0=a -this.ag()}, -sayf(a){if(this.a3===a)return -this.a3=a -this.ag()}, -sayk(a){if(this.a5===a)return -this.a5=a -this.ag()}, -sar2(a){if(this.au===a)return -this.au=a -this.ag()}, -eT(a){if(!(a.b instanceof A.lf))a.b=new A.lf(null,null,B.f)}, -bP(a){var s,r,q,p,o,n=this -switch(n.n.a){case 0:s=n.al$ -for(r=A.n(n).i("ao.1"),q=0;s!=null;){p=s.gcG() -o=B.bR.h4(s.dy,1/0,p) -q=Math.max(q,o) -p=s.b -p.toString -s=r.a(p).aJ$}return q -case 1:return n.aO(B.S,new A.al(0,1/0,0,a),n.gcu()).a}}, -bH(a){var s,r,q,p,o,n=this -switch(n.n.a){case 0:s=n.al$ -for(r=A.n(n).i("ao.1"),q=0;s!=null;){p=s.gc2() -o=B.aK.h4(s.dy,1/0,p) -q+=o -p=s.b -p.toString -s=r.a(p).aJ$}return q -case 1:return n.aO(B.S,new A.al(0,1/0,0,a),n.gcu()).a}}, -bO(a){var s,r,q,p,o,n=this -switch(n.n.a){case 0:return n.aO(B.S,new A.al(0,a,0,1/0),n.gcu()).b -case 1:s=n.al$ -for(r=A.n(n).i("ao.1"),q=0;s!=null;){p=s.gcA() -o=B.by.h4(s.dy,1/0,p) -q=Math.max(q,o) -p=s.b -p.toString -s=r.a(p).aJ$}return q}}, -bG(a){var s,r,q,p,o,n=this -switch(n.n.a){case 0:return n.aO(B.S,new A.al(0,a,0,1/0),n.gcu()).b -case 1:s=n.al$ -for(r=A.n(n).i("ao.1"),q=0;s!=null;){p=s.gcp() -o=B.bg.h4(s.dy,1/0,p) -q+=o -p=s.b -p.toString -s=r.a(p).aJ$}return q}}, -hm(a){return this.AD(a)}, -acR(a){var s -switch(this.n.a){case 0:s=a.a -break -case 1:s=a.b -break -default:s=null}return s}, -acB(a){var s -switch(this.n.a){case 0:s=a.b -break -case 1:s=a.a -break -default:s=null}return s}, -acU(a,b){var s -switch(this.n.a){case 0:s=new A.h(a,b) -break -case 1:s=new A.h(b,a) -break -default:s=null}return s}, -gP5(){var s,r=this.L -switch((r==null?B.i:r).a){case 1:r=!1 -break -case 0:r=!0 -break -default:r=null}switch(this.P.a){case 1:s=!1 -break -case 0:s=!0 -break -default:s=null}switch(this.n.a){case 0:r=new A.an(r,s) -break -case 1:r=new A.an(s,r) -break -default:r=null}return r}, -e2(a,b){var s,r,q,p,o,n,m,l=this,k=null,j={} -if(l.al$==null)return k -switch(l.n.a){case 0:s=new A.al(0,a.b,0,1/0) -break -case 1:s=new A.al(0,1/0,0,a.d) -break -default:s=k}r=l.PW(a,A.hQ()) -q=r.a -p=k -o=r.b -p=o -n=q -m=A.b_n(n,a,l.n) -j.a=null -l.Tb(p,n,m,new A.arJ(j,s,b),new A.arK(s)) -return j.a}, -dg(a){return this.anQ(a)}, -anQ(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=null -switch(d.n.a){case 0:s=a.b -s=new A.an(new A.al(0,s,0,1/0),s) -break -case 1:s=a.d -s=new A.an(new A.al(0,1/0,0,s),s) -break -default:s=c}r=s.a -q=c -p=s.b -q=p -o=r -n=d.al$ -for(s=A.n(d).i("ao.1"),m=0,l=0,k=0,j=0,i=0;n!=null;){h=A.aV3(n,o) -g=d.acR(h) -f=d.acB(h) -if(i>0&&k+g+d.a0>q){m=Math.max(m,k) -l+=j+d.a5 -k=0 -j=0 -i=0}k+=g -j=Math.max(j,f) -if(i>0)k+=d.a0;++i -e=n.b -e.toString -n=s.a(e).aJ$}l+=j -m=Math.max(m,k) -switch(d.n.a){case 0:s=new A.L(m,l) -break -case 1:s=new A.L(l,m) -break -default:s=c}return a.bx(s)}, -c7(){var s,r,q,p,o,n,m,l,k=this,j=t.k.a(A.r.prototype.gab.call(k)) -if(k.al$==null){k.fy=new A.L(A.E(0,j.a,j.b),A.E(0,j.c,j.d)) -k.av=!1 -return}s=k.PW(j,A.pz()) -r=s.a -q=null -p=s.b -q=p -o=r -n=k.n -m=A.b_n(o,j,n) -k.fy=A.aSt(m,n) -n=m.a-o.a -l=m.b-o.b -k.av=n<0||l<0 -k.Tb(q,new A.L(n,l),m,A.bli(),A.blh())}, -PW(a0,a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=null,a="Pattern matching error" -switch(c.n.a){case 0:s=a0.b -s=new A.an(new A.al(0,s,0,1/0),s) -break -case 1:s=a0.d -s=new A.an(new A.al(0,1/0,0,s),s) -break -default:s=b}r=s.a -q=b -p=s.b -q=p -o=r -n=c.gP5().a -m=n -l=c.a0 -k=A.c([],t.M6) -j=c.al$ -s=A.n(c).i("ao.1") -i=b -h=B.Q -while(j!=null){g=A.aSt(a1.$2(j,o),c.n) -f=i==null -e=f?new A.Jw(g,j):i.ayP(j,g,m,l,q) -if(e!=null){k.push(e) -if(f)f=b -else{f=i.a -g=new A.L(f.b,f.a) -f=g}if(f==null)f=B.Q -g=new A.L(h.a+f.a,Math.max(h.b,f.b)) -h=g -i=e}f=j.b -f.toString -j=s.a(f).aJ$}s=c.a5 -f=k.length -d=i.a -h=A.azC(h,A.azC(new A.L(s*(f-1),0),new A.L(d.b,d.a))) -return new A.an(new A.L(h.b,h.a),k)}, -Tb(b3,b4,b5,b6,b7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5=this,a6=null,a7=a5.a0,a8=Math.max(0,b4.b),a9=a5.gP5(),b0=a9.a,b1=a6,b2=a9.b -b1=b2 -s=a5.au -if(b1)s=s.gach() -r=a5.a3.yi(a8,a5.a5,b3.length,b1) -q=r.a -p=a6 -o=r.b -p=o -n=b0?a5.gvr():a5.grn() -for(m=J.bG(b1?new A.cu(b3,A.a6(b3).i("cu<1>")):b3),l=b5.a,k=q;m.v();){j=m.gT() -i=j.a -h=i.b -g=j.b -f=Math.max(0,l-i.a) -e=a5.U.yi(f,a7,g,b0) -d=e.a -c=a6 -b=e.b -c=b -a=j.c -a0=g -a1=d -for(;;){if(!(a!=null&&a0>0))break -a2=A.aSt(b7.$1(a),a5.n) -a3=a6 -a4=a2.b -a3=a4 -b6.$2(a5.acU(a1,k+s.ga90()*(h-a3)),a) -a1+=a2.a+c -a=n.$1(a);--a0}k+=h+p}}, -da(a,b){return this.vE(a,b)}, -b1(a,b){var s,r=this,q=r.av&&r.ao!==B.v,p=r.b8 -if(q){q=r.cx -q===$&&A.a() -s=r.gC() -p.saR(a.ll(q,b,new A.w(0,0,0+s.a,0+s.b),r.gJd(),r.ao,p.a))}else{p.saR(null) -r.pe(a,b)}}, -l(){this.b8.saR(null) -this.fu()}} -A.arJ.prototype={ -$2(a,b){var s=this.a -s.a=A.A6(s.a,A.b5K(b.f5(this.b,this.c),a.b))}, -$S:211} -A.arK.prototype={ -$1(a){return a.aO(B.S,this.a,a.gcu())}, -$S:210} -A.a5T.prototype={ -aP(a){var s,r,q -this.eV(a) -s=this.al$ -for(r=t.Qy;s!=null;){s.aP(a) -q=s.b -q.toString -s=r.a(q).aJ$}}, -az(){var s,r,q -this.eW() -s=this.al$ -for(r=t.Qy;s!=null;){s.az() -q=s.b -q.toString -s=r.a(q).aJ$}}} -A.a5U.prototype={} -A.yo.prototype={} -A.rU.prototype={ -N(){return"SchedulerPhase."+this.b}} -A.apr.prototype={} -A.kW.prototype={ -a18(a){var s=this.dy$ -B.b.J(s,a) -if(s.length===0){s=$.b7() -s.dy=null -s.fr=$.as}}, -abY(a){var s,r,q,p,o,n,m,l,k,j=this.dy$,i=A.aa(j,t.xt) -for(o=i.length,n=0;n0)return!1 -if(h)A.a0(A.aL(j)) -s=i.yk(0) -h=s.ga0L() -if(k.fx$.$2$priority$scheduler(h,k)){try{if(i.c===0)A.a0(A.aL(j));++i.d -i.yk(0) -o=i.c-1 -n=i.yk(o) -i.b[o]=null -i.c=o -if(o>0)i.a9p(n,0) -s.aA0()}catch(m){r=A.aj(m) -q=A.b3(m) -p=null -h=A.bZ("during a task callback") -l=p==null?null:new A.asr(p) -A.dE(new A.c9(r,q,"scheduler library",h,l,!1))}return i.c!==0}return!0}, -DC(a,b,c){var s,r=this -if(c)r.kG() -s=++r.id$ -r.k1$.m(0,s,new A.yo(a)) -return r.id$}, -N4(a){return this.DC(a,!1,!0)}, -a2H(a,b){return this.DC(a,!1,b)}, -Xi(a){this.k1$.J(0,a) -this.k2$.G(0,a)}, -garP(){var s=this -if(s.ok$==null){if(s.p2$===B.ej)s.kG() -s.ok$=new A.bC(new A.ax($.as,t.c),t.R) -s.k4$.push(new A.asp(s))}return s.ok$.a}, -gZv(){return this.p3$}, -Uk(a){if(this.p3$===a)return -this.p3$=a -if(a)this.kG()}, -YS(){var s=$.b7() -if(s.ax==null){s.ax=this.gadm() -s.ay=$.as}if(s.ch==null){s.ch=this.gadW() -s.CW=$.as}}, -JR(){switch(this.p2$.a){case 0:case 4:this.kG() -return -case 1:case 2:case 3:return}}, -kG(){var s,r=this -if(!r.p1$)s=!(A.kW.prototype.gZv.call(r)&&r.bR$) -else s=!0 -if(s)return -r.YS() -$.b7() -s=$.m1 -if(s==null){s=new A.qx(B.je) -$.jo.push(s.gyh()) -$.m1=s}s.kG() -r.p1$=!0}, -N3(){if(this.p1$)return -this.YS() -$.b7() -var s=$.m1 -if(s==null){s=new A.qx(B.je) -$.jo.push(s.gyh()) -$.m1=s}s.kG() -this.p1$=!0}, -N6(){var s,r,q=this -if(q.p4$||q.p2$!==B.ej)return -q.p4$=!0 -s=q.p1$ -$.b7() -r=$.m1 -if(r==null){r=new A.qx(B.je) -$.jo.push(r.gyh()) -$.m1=r}r.a2J(new A.ass(q),new A.ast(q,s)) -q.avk(new A.asu(q))}, -OQ(a){var s=this.R8$ -return A.cI(B.d.aY((s==null?B.z:new A.b5(a.a-s.a)).a/1)+this.RG$.a,0)}, -adn(a){if(this.p4$){this.x2$=!0 -return}this.ZA(a)}, -adX(){var s=this -if(s.x2$){s.x2$=!1 -s.k4$.push(new A.aso(s)) -return}s.ZE()}, -ZA(a){var s,r,q=this -if(q.R8$==null)q.R8$=a -r=a==null -q.ry$=q.OQ(r?q.rx$:a) -if(!r)q.rx$=a -q.p1$=!1 -try{q.p2$=B.HR -s=q.k1$ -q.k1$=A.t(t.S,t.h1) -J.ac8(s,new A.asq(q)) -q.k2$.aa(0)}finally{q.p2$=B.HS}}, -ay6(a){var s=this,r=s.y1$,q=r==null -if(!q&&r!==a)return null -if(r===a)++s.y2$ -else if(q){s.y1$=a -s.y2$=1}return new A.apr(s.gabn())}, -abo(){if(--this.y2$===0){this.y1$=null -$.b7()}}, -ZE(){var s,r,q,p,o,n,m,l,k,j=this -try{j.p2$=B.fz -p=t.zv -o=A.aa(j.k3$,p) -n=o.length -m=0 -for(;m0&&r<4){s=s.ry$ -s.toString -q.d=s}s=q.a -s.toString -return s}, -tW(a){var s=this,r=s.a -if(r==null)return -s.d=s.a=null -s.Dc() -if(a)r.V8(s) -else r.V9()}, -fg(){return this.tW(!1)}, -amB(a){var s,r=this -r.f=null -s=r.d -if(s==null)s=r.d=a -r.e.$1(new A.b5(a.a-s.a)) -if(!r.c&&r.a!=null&&r.f==null)r.N5(!0)}, -N5(a){var s=this.b,r=$.c6 -if(s)r.N3() -else r.kG() -this.f=$.c6.DC(this.gamA(),a,!1)}, -DD(){return this.N5(!1)}, -Dc(){var s=this.f -if(s!=null){$.c6.Xi(s) -this.f=null}}, -l(){var s=this,r=s.a -if(r!=null){s.a=null -s.Dc() -r.V8(s)}}, -k(a){return"Ticker()".charCodeAt(0)==0?"Ticker()":"Ticker()"}} -A.tF.prototype={ -V9(){this.c=!0 -this.a.fW() -var s=this.b -if(s!=null)s.fW()}, -V8(a){var s -this.c=!1 -s=this.b -if(s!=null)s.rp(new A.G8(a))}, -az8(a){var s,r,q=this,p=new A.axl(a) -if(q.b==null){s=q.b=new A.bC(new A.ax($.as,t.c),t.R) -r=q.c -if(r!=null)if(r)s.fW() -else s.rp(B.afj)}q.b.a.hP(p,p,t.H)}, -hP(a,b,c){return this.a.a.hP(a,b,c)}, -c1(a,b){return this.hP(a,null,b)}, -h9(a){return this.a.a.h9(a)}, -k(a){var s=A.bF(this),r=this.c -if(r==null)r="active" -else r=r?"complete":"canceled" -return"#"+s+"("+r+")"}, -$iav:1} -A.axl.prototype={ -$1(a){this.a.$0()}, -$S:46} -A.G8.prototype={ -k(a){var s=this.a -if(s!=null)return"This ticker was canceled: "+s.k(0) -return'The ticker was canceled before the "orCancel" property was first used.'}, -$icx:1} -A.EK.prototype={ -goQ(){var s=this.Z5$ -return s===$?this.Z5$=new A.cb($.b7().c.c,$.af()):s}, -arS(){++this.JZ$ -this.goQ().sp(!0) -return new A.atT(this.gab8())}, -ab9(){--this.JZ$ -this.goQ().sp(this.JZ$>0)}, -RZ(){var s,r=this -if($.b7().c.c){if(r.B8$==null)r.B8$=r.arS()}else{s=r.B8$ -if(s!=null)s.a.$0() -r.B8$=null}}, -afx(a){var s,r,q,p,o,n,m=a.d -if(t.V4.b(m)){s=B.b1.hF(m) -if(J.b(s,B.aA))s=m -r=new A.oB(a.a,a.b,a.c,s)}else r=a -s=this.JY$ -q=s.a -p=J.o0(q.slice(0),A.a6(q).c) -for(q=p.length,o=0;o=0;--p)r[p]=b0[q-p-1].b}b0=a9.go -o=b0.length -if(o!==0){n=new Int32Array(o) -for(p=0;p0?r[n-1].R8:null -if(n!==0)if(J.S(l)===J.S(o)){s=l==null||l.a==o.a -k=s}else k=!1 -else k=!0 -if(!k&&p.length!==0){if(o!=null)B.b.jZ(p) -B.b.a_(q,p) -B.b.aa(p)}p.push(new A.nl(m,l,n))}if(o!=null)B.b.jZ(p) -B.b.a_(q,p) -s=t.rB -s=A.aa(new A.am(q,new A.atW(),s),s.i("aE.E")) -return s}, -a2V(a){if(this.ay==null)return -B.eB.hX(a.D_(this.b))}, -dk(){return"SemanticsNode#"+this.b}, -a1y(a){return new A.a6s()}} -A.atY.prototype={ -$2(a,b){return b===this.a}, -$S:206} -A.atZ.prototype={ -$1(a){return a===this.a}, -$S:67} -A.atW.prototype={ -$1(a){return a.a}, -$S:344} -A.n7.prototype={ -bt(a,b){return B.d.bt(this.b,b.b)}, -$icn:1} -A.kh.prototype={ -bt(a,b){return B.d.bt(this.a,b.a)}, -a3E(){var s,r,q,p,o,n,m,l,k,j=A.c([],t.TV) -for(s=this.c,r=s.length,q=0;q") -s=A.aa(new A.fo(n,new A.aHq(),s),s.i("y.E")) -return s}, -a3D(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=this.c,a4=a3.length -if(a4<=1)return a3 -s=t.S -r=A.t(s,t.bu) -q=A.t(s,s) -for(p=this.b,o=p===B.aj,p=p===B.i,n=a4,m=0;m2.356194490192345 -else a0=!1 -if(a||a0)q.m(0,l.b,f.b)}}a1=A.c([],t.t) -a2=A.c(a3.slice(0),A.a6(a3)) -B.b.fO(a2,new A.aHm()) -new A.am(a2,new A.aHn(),A.a6(a2).i("am<1,o>")).aL(0,new A.aHp(A.aU(s),q,a1)) -a3=t.qn -a3=A.aa(new A.am(a1,new A.aHo(r),a3),a3.i("aE.E")) -a4=A.a6(a3).i("cu<1>") -a3=A.aa(new A.cu(a3,a4),a4.i("aE.E")) -return a3}, -$icn:1} -A.aHq.prototype={ -$1(a){return a.a3D()}, -$S:205} -A.aHm.prototype={ -$2(a,b){var s,r,q=a.f,p=A.uj(a,new A.h(q.a,q.b)) -q=b.f -s=A.uj(b,new A.h(q.a,q.b)) -r=B.d.bt(p.b,s.b) -if(r!==0)return-r -return-B.d.bt(p.a,s.a)}, -$S:95} -A.aHp.prototype={ -$1(a){var s=this,r=s.a -if(r.q(0,a))return -r.G(0,a) -r=s.b -if(r.aN(a)){r=r.h(0,a) -r.toString -s.$1(r)}s.c.push(a)}, -$S:24} -A.aHn.prototype={ -$1(a){return a.b}, -$S:347} -A.aHo.prototype={ -$1(a){var s=this.a.h(0,a) -s.toString -return s}, -$S:348} -A.aM3.prototype={ -$1(a){return a.a3E()}, -$S:205} -A.nl.prototype={ -bt(a,b){var s,r=this.b -if(r==null||b.b==null)return this.c-b.c -s=b.b -s.toString -return r.bt(0,s)}, -$icn:1} -A.EO.prototype={ -l(){var s=this -s.b.aa(0) -s.c.aa(0) -s.d.aa(0) -s.f.aa(0) -s.e.aa(0) -s.d8()}, -a2W(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=c.b -if(b.a===0)return -s=A.aU(t.S) -r=t.QF -q=A.c([],r) -for(p=c.f,o=c.e,n=c.d,m=A.n(b).i("b1<1>"),l=m.i("y.E");b.a!==0;){k=A.aa(new A.b1(b,new A.au0(c),m),l) -b.aa(0) -n.aa(0) -B.b.fO(k,new A.au1()) -B.b.a_(q,k) -for(j=k.length,i=0;i#"+A.bF(this)}} -A.au0.prototype={ -$1(a){return!this.a.d.q(0,a)}, -$S:67} -A.au1.prototype={ -$2(a,b){return a.cx-b.cx}, -$S:95} -A.au2.prototype={ -$2(a,b){return this.a===b}, -$S:206} -A.au3.prototype={ -$1(a){return this.a===a}, -$S:67} -A.au4.prototype={ -$2(a,b){return a.cx-b.cx}, -$S:95} -A.au_.prototype={ -$1(a){if(a.dx.aN(this.b)){this.a.a=a -return!1}return!0}, -$S:67} -A.ed.prototype={ -n3(a,b){var s=this -s.w.m(0,a,b) -s.x=s.x|a.a -s.r=!0}, -fP(a,b){this.n3(a,new A.atH(b))}, -slg(a){a.toString -this.fP(B.of,a)}, -so0(a){a.toString -this.fP(B.I3,a)}, -sCl(a){this.fP(B.kV,a)}, -sC7(a){this.fP(B.a6_,a)}, -sCm(a){this.fP(B.kW,a)}, -sCn(a){this.fP(B.kS,a)}, -sCk(a){this.fP(B.kT,a)}, -sawh(a){this.n3(B.I5,new A.atN(a))}, -sLs(a){this.fP(B.I4,a)}, -sLo(a){this.fP(B.I2,a)}, -sC3(a){this.fP(B.a62,a)}, -sC4(a){this.fP(B.a66,a)}, -sCh(a){this.fP(B.a5U,a)}, -sCf(a){this.n3(B.a63,new A.atL(a))}, -sCd(a){this.n3(B.a5W,new A.atJ(a))}, -sCg(a){this.n3(B.a64,new A.atM(a))}, -sCe(a){this.n3(B.a5T,new A.atK(a))}, -sCo(a){this.n3(B.a5X,new A.atO(a))}, -sCp(a){this.n3(B.a5Y,new A.atP(a))}, -sC5(a){this.fP(B.a60,a)}, -sC6(a){this.fP(B.a65,a)}, -sCa(a){this.fP(B.kU,a)}, -sLq(a){this.fP(B.a5V,a)}, -sLm(a){this.fP(B.a61,a)}, -sa2K(a){if(a==this.R8)return -this.R8=a -this.r=!0}, -sa2L(a){if(a==this.RG)return -this.RG=a -this.r=!0}, -sLa(a){return}, -sAy(a){if(a==this.to)return -this.to=a -this.r=!0}, -sD5(a){if(a==this.y1)return -this.y1=a -this.r=!0}, -sD4(a){if(a==this.y2)return -this.y2=a -this.r=!0}, -sKG(a){if(a==null)return -this.au=a -this.r=!0}, -sxt(a){this.u=this.u.aqr(!0) -this.r=!0}, -sC0(a){this.u=this.u.aqp(!0) -this.r=!0}, -sauE(a){this.u=this.u.aqc(a) -this.r=!0}, -sBW(a){this.u=this.u.aqg(a) -this.r=!0}, -sauP(a){this.u=this.u.aql(A.LN(a)) -this.r=!0}, -sauB(a){this.u=this.u.aqa(A.LN(a)) -this.r=!0}, -sa_x(a){this.u=this.u.aq9(A.LN(a)) -this.r=!0}, -sauz(a){this.r=!0}, -sauy(a){this.r=!0}, -sa_J(a){this.u=this.u.aqo(A.LN(a)) -this.r=!0}, -sauF(a){this.u=this.u.aqd(a) -this.r=!0}, -sKR(a){var s,r=this -if(!a)r.u=r.u.IX(B.V) -else{s=r.u -if(s.r===B.V)r.u=s.IX(B.ic)}r.r=!0}, -spI(a){this.u=this.u.IX(A.LN(a)) -this.r=!0}, -szO(a){var s=this -s.P=a -s.u=s.u.aq7(a!==B.lC) -s.r=!0}, -sa_u(a){this.u=this.u.aq8(!0) -this.r=!0}, -sauK(a){this.u=this.u.aqf(!0) -this.r=!0}, -sL1(a){return}, -sa_y(a){this.u=this.u.aqb(!0) -this.r=!0}, -sKE(a){this.av=a -this.r=!0}, -sauQ(a){this.u=this.u.aqm(a) -this.r=!0}, -sauJ(a){this.u=this.u.aqe(a) -this.r=!0}, -sa_z(a){this.u=this.u.IY(a) -this.r=!0}, -sa_H(a){this.u=this.u.aqn(!0) -this.r=!0}, -sa_E(a){this.u=this.u.aqj(a) -this.r=!0}, -sa_B(a){this.u=this.u.aqi(a) -this.r=!0}, -sa_A(a){this.u=this.u.aqh(a) -this.r=!0}, -sKV(a){this.u=this.u.aqk(A.LN(a)) -this.r=!0}, -ayo(a){var s=this.bq -s=s==null?null:s.q(0,a) -return s===!0}, -zW(a){var s=this.bq;(s==null?this.bq=A.aU(t.g3):s).G(0,a)}, -gS6(){if(this.aH!==B.og)return!0 -var s=this.u -if(!s.x)s=s.z||s.dx||s.db||s.as||s.ay||s.dy -else s=!0 -if(s)return!0 -return!1}, -a_v(a){var s,r,q,p,o,n=this -if(a==null||!a.r)return!0 -if(n.y2!=a.y2)return!1 -if(!n.r)return!0 -if((n.x&a.x)!==0)return!1 -s=n.u -r=a.u -q=!0 -if(!(s.a!==B.eG&&r.a!==B.eG))if(!(s.b!==B.V&&r.b!==B.V)){p=r.c -o=s.c!==B.V -if(!(o&&p!==B.V))if(!(s.d!==B.V&&r.d!==B.V))if(!(o&&p!==B.V))if(!(s.e!==B.V&&r.e!==B.V))if(!(s.f!==B.V&&r.f!==B.V))if(!(s.r!==B.V&&r.r!==B.V))if(!(s.w&&r.w))if(!(s.x&&r.x))if(!(s.y&&r.y))if(!(s.z&&r.z))if(!(s.Q&&r.Q))if(!(s.as&&r.as))if(!(s.at&&r.at))if(!(s.ax&&r.ax))if(!(s.ay&&r.ay))if(!(s.ch&&r.ch))if(!(s.CW&&r.CW))if(!(s.cx&&r.cx))if(!(s.cy&&r.cy))if(!(s.db&&r.db))if(!(s.dx&&r.dx))s=s.dy&&r.dy||s.fr!==r.fr -else s=q -else s=q -else s=q -else s=q -else s=q -else s=q -else s=q -else s=q -else s=q -else s=q -else s=q -else s=q -else s=q -else s=q -else s=q -else s=q -else s=q -else s=q -else s=q -else s=q -else s=q}else s=q -else s=q -if(s)return!1 -if(n.to!=null&&a.to!=null)return!1 -if(n.n.a.length!==0&&a.n.a.length!==0)return!1 -if(!J.b(n.b,a.b))return!1 -if(n.gS6()&&a.gS6())return!1 -if(n.aK!==B.dB||a.aK!==B.dB)return!1 -if(n.cB!=null&&a.cB!=null)return!1 -if(n.bo!=null&&a.bo!=null)return!1 -return!0}, -rb(a){var s,r,q,p=this -if(!a.r)return -s=a.w -if(a.d)s.aL(0,new A.atI(p)) -else p.w.a_(0,s) -s=p.x -r=a.d -q=a.x -p.x=s|(r?q&$.aPV():q) -p.x2.a_(0,a.x2) -p.u=p.u.E(a.u) -p.ao=a.ao -if(p.b8==null)p.b8=a.b8 -if(p.bL==null)p.bL=a.bL -if(p.bz==null)p.bz=a.bz -if(p.bE==null)p.bE=a.bE -if(p.au==null)p.au=a.au -if(p.p4==null)p.p4=a.p4 -if(p.RG==null)p.RG=a.RG -if(p.R8==null)p.R8=a.R8 -p.rx=a.rx -p.ry=a.ry -if(p.to==null)p.to=a.to -s=p.y2==null -if(s)if(p.y1==null)p.y1=a.y1 -if(s)p.y2=a.y2 -s=a.av -r=p.av -p.av=r===0?s:r -s=p.L -if(s==null){s=p.L=a.L -p.r=!0}if(p.p3==null)p.p3=a.p3 -if(p.xr==="")p.xr=a.xr -r=p.aB -p.aB=A.b0r(a.aB,a.L,r,s) -if(p.n.a==="")p.n=a.n -if(p.U.a==="")p.U=a.U -if(p.a0.a==="")p.a0=a.a0 -if(p.aH===B.og)p.aH=a.aH -if(p.c_===B.I7)p.c_=a.c_ -s=p.a3 -r=p.L -p.a3=A.b0r(a.a3,a.L,s,r) -if(p.a5==="")p.a5=a.a5 -s=p.bv -if(s==null)p.bv=a.bv -else if(a.bv!=null){s=A.ep(s,t.N) -r=a.bv -r.toString -s.a_(0,r) -p.bv=s}s=a.bU -r=p.bU -if(s!==r)if(s===B.oh)p.bU=B.oh -else if(r===B.Y)p.bU=s -p.P=p.P.aht(a.P) -if(p.cB==null)p.cB=a.cB -if(p.bo==null)p.bo=a.bo -if(p.aK===B.dB&&a.aK!==B.dB)p.aK=a.aK -p.r=p.r||a.r}} -A.atH.prototype={ -$1(a){this.a.$0()}, -$S:11} -A.atN.prototype={ -$1(a){a.toString -t.OE.a(a) -this.a.$1(new A.h(a[0],a[1]))}, -$S:11} -A.atL.prototype={ -$1(a){a.toString -this.a.$1(A.uh(a))}, -$S:11} -A.atJ.prototype={ -$1(a){a.toString -this.a.$1(A.uh(a))}, -$S:11} -A.atM.prototype={ -$1(a){a.toString -this.a.$1(A.uh(a))}, -$S:11} -A.atK.prototype={ -$1(a){a.toString -this.a.$1(A.uh(a))}, -$S:11} -A.atO.prototype={ -$1(a){var s,r,q -a.toString -s=t.f.a(a).jy(0,t.N,t.S) -r=s.h(0,"base") -r.toString -q=s.h(0,"extent") -q.toString -this.a.$1(A.cp(B.k,r,q,!1))}, -$S:11} -A.atP.prototype={ -$1(a){a.toString -this.a.$1(A.c7(a))}, -$S:11} -A.atI.prototype={ -$2(a,b){if(($.aPV()&a.a)>0)this.a.w.m(0,a,b)}, -$S:350} -A.afb.prototype={ -N(){return"DebugSemanticsDumpOrder."+this.b}} -A.x_.prototype={ -bt(a,b){var s,r=this.a,q=b.a -if(r==q)return this.arB(b) -s=r==null -if(s&&q!=null)return-1 -else if(!s&&q==null)return 1 -r.toString -q.toString -return B.c.bt(r,q)}, -$icn:1} -A.rp.prototype={ -arB(a){var s=a.b,r=this.b -if(s===r)return 0 -return B.j.bt(r,s)}} -A.a6r.prototype={} -A.a6u.prototype={} -A.a6v.prototype={} -A.Mx.prototype={ -N(){return"Assertiveness."+this.b}} -A.atR.prototype={ -D_(a){var s=A.aG(["type",this.a,"data",this.qb()],t.N,t.z) -if(a!=null)s.m(0,"nodeId",a) -return s}, -a1B(){return this.D_(null)}, -k(a){var s,r,q=A.c([],t.s),p=this.qb(),o=p.gcd(),n=A.aa(o,A.n(o).i("y.E")) -B.b.jZ(n) -for(o=n.length,s=0;s#"+A.bF(this)+"()"}} -A.adJ.prototype={ -pP(a,b){if(b)return this.a.cl(a,new A.adK(this,a)) -return this.NI(a,!0)}, -avg(a,b,c){var s,r=this,q={},p=r.b -if(p.aN(a)){q=p.h(0,a) -q.toString -return c.i("av<0>").a(q)}q.a=q.b=null -r.pP(a,!1).c1(b,c).hP(new A.adL(q,r,a,c),new A.adM(q,r,a),t.H) -s=q.a -if(s!=null)return s -s=new A.ax($.as,c.i("ax<0>")) -q.b=new A.bC(s,c.i("bC<0>")) -p.m(0,a,s) -return q.b.a}} -A.adK.prototype={ -$0(){return this.a.NI(this.b,!0)}, -$S:351} -A.adL.prototype={ -$1(a){var s=this,r=new A.cF(a,s.d.i("cF<0>")),q=s.a -q.a=r -s.b.b.m(0,s.c,r) -q=q.b -if(q!=null)q.dR(a)}, -$S(){return this.d.i("bv(0)")}} -A.adM.prototype={ -$2(a,b){this.b.b.J(0,this.c) -this.a.b.fX(a,b)}, -$S:70} -A.apA.prototype={ -j3(a){var s,r=B.d6.e8(A.aad(null,A.zc(4,a,B.ao,!1),null).e),q=$.ee.bv$ -q===$&&A.a() -s=q.DI("flutter/assets",A.aQg(r)).c1(new A.apB(a),t.V4) -return s}} -A.apB.prototype={ -$1(a){if(a==null)throw A.i(A.nP(A.c([A.bf1(this.a),A.bZ("The asset does not exist or has empty data.")],t.D))) -return a}, -$S:352} -A.acL.prototype={ -$1(a){return this.a21(a)}, -a21(a){var s=0,r=A.I(t.CL),q -var $async$$1=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:q=new A.tK(t.pE.a(B.b1.hF(A.aQg(B.Lf.e8(A.c7(B.ca.ic(a)))))),A.t(t.N,t.Rk)) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$$1,r)}, -$S:353} -A.tK.prototype={$iaUP:1} -A.uI.prototype={ -kC(){var s,r,q=this -if(q.a){s=A.t(t.N,t.z) -s.m(0,"uniqueIdentifier",q.b) -s.m(0,"hints",q.c) -s.m(0,"editingValue",q.d.M7()) -r=q.e -if(r!=null)s.m(0,"hintText",r)}else s=null -return s}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.uI&&b.a===s.a&&b.b===s.b&&A.cV(b.c,s.c)&&b.d.j(0,s.d)&&b.e==s.e}, -gt(a){var s=this -return A.N(s.a,s.b,A.bh(s.c),s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=this,r=A.c(["enabled: "+s.a,"uniqueIdentifier: "+s.b,"autofillHints: "+A.j(s.c),"currentEditingValue: "+s.d.k(0)],t.s),q=s.e -if(q!=null)r.push("hintText: "+q) -return"AutofillConfiguration("+B.b.bJ(r,", ")+")"}} -A.ad7.prototype={} -A.EQ.prototype={ -agA(){var s,r,q=this,p=t.v3,o=new A.ajg(A.t(p,t.bd),A.aU(t.SQ),A.c([],t.sA)) -q.bz$!==$&&A.bs() -q.bz$=o -s=$.aTW() -r=A.c([],t.K0) -q.bE$!==$&&A.bs() -q.bE$=new A.Rn(o,s,r,A.aU(p)) -p=q.bz$ -p===$&&A.a() -p.xV().c1(new A.aud(q),t.a)}, -w5(){var s=$.Mc() -s.a.aa(0) -s.b.aa(0) -s.c.aa(0)}, -nQ(a){return this.atp(a)}, -atp(a){var s=0,r=A.I(t.H),q,p=this -var $async$nQ=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:switch(A.c7(t.P.a(a).h(0,"type"))){case"memoryPressure":p.w5() -break}s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$nQ,r)}, -a8R(){var s=A.bQ() -s.sed(A.aZz(new A.auc(s),t.hz)) -return s.bc().gE1()}, -axz(){if(this.fr$==null)$.b7() -return}, -Gc(a){return this.aen(a)}, -aen(a){var s=0,r=A.I(t.ob),q,p=this,o,n,m,l,k -var $async$Gc=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:a.toString -o=A.baQ(a) -n=p.fr$ -o.toString -m=p.acv(n,o) -for(n=m.length,l=0;lq)for(p=q;p") -r=A.ep(new A.bD(c,s),s.i("y.E")) -q=A.c([],t.K0) -p=c.h(0,b) -o=$.ee.rx$ -n=a0.a -if(n==="")n=d -m=e.aaI(a0) -if(a0 instanceof A.on)if(p==null){l=new A.kJ(b,a,n,o,!1) -r.G(0,b)}else l=A.aWw(n,m,p,b,o) -else if(p==null)l=d -else{l=A.aWx(m,p,b,!1,o) -r.J(0,b)}for(s=e.c.d,k=A.n(s).i("bD<1>"),j=k.i("y.E"),i=r.fY(A.ep(new A.bD(s,k),j)),i=i.gai(i),h=e.e;i.v();){g=i.gT() -if(g.j(0,b))q.push(new A.qQ(g,a,d,o,!0)) -else{f=c.h(0,g) -f.toString -h.push(new A.qQ(g,f,d,o,!0))}}for(c=A.ep(new A.bD(s,k),j).fY(r),c=c.gai(c);c.v();){k=c.gT() -j=s.h(0,k) -j.toString -h.push(new A.kJ(k,j,d,o,!0))}if(l!=null)h.push(l) -B.b.a_(h,q)}} -A.a3o.prototype={} -A.akQ.prototype={ -k(a){return"KeyboardInsertedContent("+this.a+", "+this.b+", "+A.j(this.c)+")"}, -j(a,b){var s,r,q=this -if(b==null)return!1 -if(J.S(b)!==A.l(q))return!1 -s=!1 -if(b instanceof A.akQ)if(b.a===q.a)if(b.b===q.b){s=b.c -r=q.c -r=s==null?r==null:s===r -s=r}return s}, -gt(a){return A.N(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.akR.prototype={} -A.f.prototype={ -gt(a){return B.j.gt(this.a)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.f&&b.a===this.a}} -A.alh.prototype={ -$1(a){var s=$.b2z().h(0,a) -return s==null?A.cy([a],t.bd):s}, -$S:361} -A.u.prototype={ -gt(a){return B.j.gt(this.a)}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.u&&b.a===this.a}} -A.a3p.prototype={} -A.jQ.prototype={ -k(a){return"MethodCall("+this.a+", "+A.j(this.b)+")"}} -A.Dz.prototype={ -k(a){var s=this -return"PlatformException("+s.a+", "+A.j(s.b)+", "+A.j(s.c)+", "+A.j(s.d)+")"}, -$icx:1} -A.CZ.prototype={ -k(a){return"MissingPluginException("+A.j(this.a)+")"}, -$icx:1} -A.aw9.prototype={ -hF(a){if(a==null)return null -return B.ao.ic(A.aSk(a,0,null))}, -cK(a){if(a==null)return null -return A.aQg(B.d6.e8(a))}} -A.akq.prototype={ -cK(a){if(a==null)return null -return B.lS.cK(B.ca.rE(a))}, -hF(a){var s -if(a==null)return a -s=B.lS.hF(a) -s.toString -return B.ca.ic(s)}} -A.aks.prototype={ -kj(a){var s=B.dO.cK(A.aG(["method",a.a,"args",a.b],t.N,t.X)) -s.toString -return s}, -jB(a){var s,r,q=null,p=B.dO.hF(a) -if(!t.f.b(p))throw A.i(A.ca("Expected method call Map, got "+A.j(p),q,q)) -s=p.h(0,"method") -if(s==null)r=p.aN("method") -else r=!0 -if(r)r=typeof s=="string" -else r=!1 -if(r)return new A.jQ(s,p.h(0,"args")) -throw A.i(A.ca("Invalid method call: "+p.k(0),q,q))}, -Yc(a){var s,r,q,p=null,o=B.dO.hF(a) -if(!t.j.b(o))throw A.i(A.ca("Expected envelope List, got "+A.j(o),p,p)) -s=J.bk(o) -if(s.gH(o)===1)return s.h(o,0) -r=!1 -if(s.gH(o)===3)if(typeof s.h(o,0)=="string")r=s.h(o,1)==null||typeof s.h(o,1)=="string" -if(r){r=A.c7(s.h(o,0)) -q=A.bH(s.h(o,1)) -throw A.i(A.aRw(r,s.h(o,2),q,p))}r=!1 -if(s.gH(o)===4)if(typeof s.h(o,0)=="string")if(s.h(o,1)==null||typeof s.h(o,1)=="string")r=s.h(o,3)==null||typeof s.h(o,3)=="string" -if(r){r=A.c7(s.h(o,0)) -q=A.bH(s.h(o,1)) -throw A.i(A.aRw(r,s.h(o,2),q,A.bH(s.h(o,3))))}throw A.i(A.ca("Invalid envelope: "+A.j(o),p,p))}, -vN(a){var s=B.dO.cK([a]) -s.toString -return s}, -pn(a,b,c){var s=B.dO.cK([a,c,b]) -s.toString -return s}, -YQ(a,b){return this.pn(a,null,b)}} -A.avS.prototype={ -cK(a){var s -if(a==null)return null -s=A.ay9(64) -this.fq(s,a) -return s.nH()}, -hF(a){var s,r -if(a==null)return null -s=new A.DK(a) -r=this.jP(s) -if(s.b=a.a.byteLength)throw A.i(B.c3) -return this.my(a.qg(0),a)}, -my(a,b){var s,r,q,p,o,n,m,l,k=this -switch(a){case 0:return null -case 1:return!0 -case 2:return!1 -case 3:s=b.b -r=$.ei() -q=b.a.getInt32(s,B.b0===r) -b.b+=4 -return q -case 4:return b.Ds(0) -case 6:b.kJ(8) -s=b.b -r=$.ei() -q=b.a.getFloat64(s,B.b0===r) -b.b+=8 -return q -case 5:case 7:p=k.h5(b) -return B.eq.e8(b.qh(p)) -case 8:return b.qh(k.h5(b)) -case 9:p=k.h5(b) -b.kJ(4) -s=b.a -o=J.aUC(B.aU.gcF(s),s.byteOffset+b.b,p) -b.b=b.b+4*p -return o -case 10:return b.Dt(k.h5(b)) -case 14:p=k.h5(b) -b.kJ(4) -s=b.a -o=J.b5j(B.aU.gcF(s),s.byteOffset+b.b,p) -b.b=b.b+4*p -return o -case 11:p=k.h5(b) -b.kJ(8) -s=b.a -o=J.aUB(B.aU.gcF(s),s.byteOffset+b.b,p) -b.b=b.b+8*p -return o -case 12:p=k.h5(b) -n=A.bO(p,null,!1,t.X) -for(s=b.a,m=0;m=s.byteLength)A.a0(B.c3) -b.b=r+1 -n[m]=k.my(s.getUint8(r),b)}return n -case 13:p=k.h5(b) -s=t.X -n=A.t(s,s) -for(s=b.a,m=0;m=s.byteLength)A.a0(B.c3) -b.b=r+1 -r=k.my(s.getUint8(r),b) -l=b.b -if(l>=s.byteLength)A.a0(B.c3) -b.b=l+1 -n.m(0,r,k.my(s.getUint8(l),b))}return n -default:throw A.i(B.c3)}}, -hU(a,b){var s,r -if(b<254)a.fT(b) -else{s=a.d -if(b<=65535){a.fT(254) -r=$.ei() -s.$flags&2&&A.az(s,10) -s.setUint16(0,b,B.b0===r) -a.u6(a.e,0,2)}else{a.fT(255) -r=$.ei() -s.$flags&2&&A.az(s,11) -s.setUint32(0,b,B.b0===r) -a.u6(a.e,0,4)}}}, -h5(a){var s,r,q=a.qg(0) -A:{if(254===q){s=a.b -r=$.ei() -q=a.a.getUint16(s,B.b0===r) -a.b+=2 -s=q -break A}if(255===q){s=a.b -r=$.ei() -q=a.a.getUint32(s,B.b0===r) -a.b+=4 -s=q -break A}s=q -break A}return s}} -A.avT.prototype={ -$2(a,b){var s=this.a,r=this.b -s.fq(r,a) -s.fq(r,b)}, -$S:109} -A.avW.prototype={ -kj(a){var s=A.ay9(64) -B.b1.fq(s,a.a) -B.b1.fq(s,a.b) -return s.nH()}, -jB(a){var s,r,q -a.toString -s=new A.DK(a) -r=B.b1.jP(s) -q=B.b1.jP(s) -if(typeof r=="string"&&s.b>=a.byteLength)return new A.jQ(r,q) -else throw A.i(B.ry)}, -vN(a){var s=A.ay9(64) -s.fT(0) -B.b1.fq(s,a) -return s.nH()}, -pn(a,b,c){var s=A.ay9(64) -s.fT(1) -B.b1.fq(s,a) -B.b1.fq(s,c) -B.b1.fq(s,b) -return s.nH()}, -YQ(a,b){return this.pn(a,null,b)}, -Yc(a){var s,r,q,p,o,n -if(a.byteLength===0)throw A.i(B.Pn) -s=new A.DK(a) -if(s.qg(0)===0)return B.b1.jP(s) -r=B.b1.jP(s) -q=B.b1.jP(s) -p=B.b1.jP(s) -o=s.b=a.byteLength -else n=!1 -if(n)throw A.i(A.aRw(r,p,A.bH(q),o)) -else throw A.i(B.Pm)}} -A.ao4.prototype={ -asL(a,b,c){var s,r,q,p -if(t.PB.b(b)){this.b.J(0,a) -return}s=this.b -r=s.h(0,a) -q=A.bd1(c) -if(q==null)q=this.a -if(J.b(r==null?null:t.ZC.a(r.a),q))return -p=q.Av(a) -s.m(0,a,p) -B.a3V.dc("activateSystemCursor",A.aG(["device",p.b,"kind",t.ZC.a(p.a).a],t.N,t.z),t.H)}} -A.D0.prototype={} -A.dS.prototype={ -k(a){var s=this.gAC() -return s}} -A.a1V.prototype={ -Av(a){throw A.i(A.fc(null))}, -gAC(){return"defer"}} -A.a95.prototype={} -A.k7.prototype={ -gAC(){return"SystemMouseCursor("+this.a+")"}, -Av(a){return new A.a95(this,a)}, -j(a,b){if(b==null)return!1 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.k7&&b.a===this.a}, -gt(a){return B.c.gt(this.a)}} -A.a3X.prototype={} -A.nz.prototype={ -gvj(){var s=$.ee.bv$ -s===$&&A.a() -return s}, -hX(a){return this.a2T(a,this.$ti.i("1?"))}, -a2T(a,b){var s=0,r=A.I(b),q,p=this,o,n,m -var $async$hX=A.J(function(c,d){if(c===1)return A.F(d,r) -for(;;)switch(s){case 0:o=p.b -n=p.gvj().DI(p.a,o.cK(a)) -m=o -s=3 -return A.p(t.T8.b(n)?n:A.he(n,t.CD),$async$hX) -case 3:q=m.hF(d) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$hX,r)}, -xA(a){this.gvj().Np(this.a,new A.ad6(this,a))}} -A.ad6.prototype={ -$1(a){return this.a22(a)}, -a22(a){var s=0,r=A.I(t.CD),q,p=this,o,n -var $async$$1=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:o=p.a.b -n=o -s=3 -return A.p(p.b.$1(o.hF(a)),$async$$1) -case 3:q=n.cK(c) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$$1,r)}, -$S:204} -A.we.prototype={ -gvj(){var s=$.ee.bv$ -s===$&&A.a() -return s}, -nc(a,b,c,d){return this.agQ(a,b,c,d,d.i("0?"))}, -agQ(a,b,c,d,e){var s=0,r=A.I(e),q,p=this,o,n,m,l,k -var $async$nc=A.J(function(f,g){if(f===1)return A.F(g,r) -for(;;)switch(s){case 0:o=p.b -n=o.kj(new A.jQ(a,b)) -m=p.a -l=p.gvj().DI(m,n) -s=3 -return A.p(t.T8.b(l)?l:A.he(l,t.CD),$async$nc) -case 3:k=g -if(k==null){if(c){q=null -s=1 -break}throw A.i(A.anW("No implementation found for method "+a+" on channel "+m))}q=d.i("0?").a(o.Yc(k)) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$nc,r)}, -dc(a,b,c){return this.nc(a,b,!1,c)}, -BM(a,b,c,d){return this.aur(a,b,c,d,c.i("@<0>").bN(d).i("ba<1,2>?"))}, -a_r(a,b,c){return this.BM(a,null,b,c)}, -aur(a,b,c,d,e){var s=0,r=A.I(e),q,p=this,o -var $async$BM=A.J(function(f,g){if(f===1)return A.F(g,r) -for(;;)switch(s){case 0:s=3 -return A.p(p.dc(a,b,t.f),$async$BM) -case 3:o=g -q=o==null?null:o.jy(0,c,d) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$BM,r)}, -mQ(a){var s=this.gvj() -s.Np(this.a,new A.anV(this,a))}, -yw(a,b){return this.adi(a,b)}, -adi(a,b){var s=0,r=A.I(t.CD),q,p=2,o=[],n=this,m,l,k,j,i,h,g,f,e -var $async$yw=A.J(function(c,d){if(c===1){o.push(d) -s=p}for(;;)switch(s){case 0:h=n.b -g=h.jB(a) -p=4 -e=h -s=7 -return A.p(b.$1(g),$async$yw) -case 7:k=e.vN(d) -q=k -s=1 -break -p=2 -s=6 -break -case 4:p=3 -f=o.pop() -k=A.aj(f) -if(k instanceof A.Dz){m=k -k=m.a -i=m.b -q=h.pn(k,m.c,i) -s=1 -break}else if(k instanceof A.CZ){q=null -s=1 -break}else{l=k -h=h.YQ("error",J.cB(l)) -q=h -s=1 -break}s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$yw,r)}} -A.anV.prototype={ -$1(a){return this.a.yw(a,this.b)}, -$S:204} -A.hy.prototype={ -dc(a,b,c){return this.aus(a,b,c,c.i("0?"))}, -j1(a,b){return this.dc(a,null,b)}, -aus(a,b,c,d){var s=0,r=A.I(d),q,p=this -var $async$dc=A.J(function(e,f){if(e===1)return A.F(f,r) -for(;;)switch(s){case 0:q=p.a4H(a,b,!0,c) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$dc,r)}} -A.FF.prototype={ -N(){return"SwipeEdge."+this.b}} -A.om.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.om&&J.b(s.a,b.a)&&s.b===b.b&&s.c===b.c}, -gt(a){return A.N(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"PredictiveBackEvent{touchOffset: "+A.j(this.a)+", progress: "+A.j(this.b)+", swipeEdge: "+this.c.k(0)+"}"}} -A.wA.prototype={ -j(a,b){if(b==null)return!1 -if(this===b)return!0 -return b instanceof A.wA&&b.a===this.a&&b.b===this.b}, -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.afh.prototype={ -CD(){var s=0,r=A.I(t.Xf),q,p=2,o=[],n=this,m,l,k,j,i,h,g,f,e -var $async$CD=A.J(function(a,b){if(a===1){o.push(b) -s=p}for(;;)switch(s){case 0:g=null -p=4 -l=n.a -l===$&&A.a() -e=t.J1 -s=7 -return A.p(l.j1("ProcessText.queryTextActions",t.z),$async$CD) -case 7:m=e.a(b) -if(m==null){l=A.c([],t.RW) -q=l -s=1 -break}g=m -p=2 -s=6 -break -case 4:p=3 -f=o.pop() -l=A.c([],t.RW) -q=l -s=1 -break -s=6 -break -case 3:s=2 -break -case 6:l=A.c([],t.RW) -for(j=g.gcd(),j=j.gai(j);j.v();){i=j.gT() -i.toString -A.c7(i) -h=J.iQ(g,i) -h.toString -l.push(new A.wA(i,A.c7(h)))}q=l -s=1 -break -case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$CD,r)}, -CC(a,b,c){return this.axb(a,b,c)}, -axb(a,b,c){var s=0,r=A.I(t.ob),q,p=this,o,n -var $async$CC=A.J(function(d,e){if(d===1)return A.F(e,r) -for(;;)switch(s){case 0:o=p.a -o===$&&A.a() -n=A -s=3 -return A.p(o.dc("ProcessText.processTextAction",[a,b,c],t.z),$async$CC) -case 3:q=n.bH(e) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$CC,r)}} -A.qR.prototype={ -N(){return"KeyboardSide."+this.b}} -A.id.prototype={ -N(){return"ModifierKey."+this.b}} -A.DI.prototype={ -gavM(){var s,r,q=A.t(t.xS,t.Di) -for(s=0;s<9;++s){r=B.y3[s] -if(this.auM(r))q.m(0,r,B.f6)}return q}} -A.my.prototype={} -A.aq7.prototype={ -$0(){var s,r,q,p=this.b,o=A.bH(p.h(0,"key")),n=o==null -if(!n){s=o.length -s=s!==0&&s===1}else s=!1 -if(s)this.a.a=o -s=A.bH(p.h(0,"code")) -if(s==null)s="" -n=n?"":o -r=A.d2(p.h(0,"location")) -if(r==null)r=0 -q=A.d2(p.h(0,"metaState")) -if(q==null)q=0 -p=A.d2(p.h(0,"keyCode")) -return new A.Uz(s,n,r,q,p==null?0:p)}, -$S:363} -A.on.prototype={} -A.wG.prototype={} -A.aqa.prototype={ -atc(a){var s,r,q,p,o,n,m,l,k,j,i,h=this -if(a instanceof A.on){o=a.c -h.d.m(0,o.gks(),o.gL4())}else if(a instanceof A.wG)h.d.J(0,a.c.gks()) -h.amg(a) -o=h.a -n=A.aa(o,t.iS) -m=n.length -l=0 -for(;l")),e),a0=a1 instanceof A.on -if(a0)a.G(0,g.gks()) -for(s=g.a,r=null,q=0;q<9;++q){p=B.y3[q] -o=$.b36() -n=o.h(0,new A.dz(p,B.cM)) -if(n==null)continue -m=B.DQ.h(0,s) -if(n.q(0,m==null?new A.u(98784247808+B.c.gt(s)):m))r=p -if(f.h(0,p)===B.f6){c.a_(0,n) -if(n.i8(0,a.glX(a)))continue}l=f.h(0,p)==null?A.aU(e):o.h(0,new A.dz(p,f.h(0,p))) -if(l==null)continue -for(o=A.n(l),m=new A.p8(l,l.r,o.i("p8<1>")),m.c=l.e,o=o.c;m.v();){k=m.d -if(k==null)k=o.a(k) -j=$.b35().h(0,k) -j.toString -d.m(0,k,j)}}i=b.h(0,B.ee)!=null&&!J.b(b.h(0,B.ee),B.hC) -for(e=$.aTV(),e=new A.eS(e,e.r,e.e);e.v();){a=e.d -h=i&&a.j(0,B.ee) -if(!c.q(0,a)&&!h)b.J(0,a)}b.J(0,B.hS) -b.a_(0,d) -if(a0&&r!=null&&!b.aN(g.gks())){e=g.gks().j(0,B.fv) -if(e)b.m(0,g.gks(),g.gL4())}}} -A.dz.prototype={ -j(a,b){if(b==null)return!1 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.dz&&b.a===this.a&&b.b==this.b}, -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a5b.prototype={} -A.a5a.prototype={} -A.Uz.prototype={ -gks(){var s=this.a,r=B.DQ.h(0,s) -return r==null?new A.u(98784247808+B.c.gt(s)):r}, -gL4(){var s,r=this.b,q=B.a2D.h(0,r),p=q==null?null:q[this.c] -if(p!=null)return p -s=B.a14.h(0,r) -if(s!=null)return s -if(r.length===1)return new A.f(r.toLowerCase().charCodeAt(0)) -return new A.f(B.c.gt(this.a)+98784247808)}, -auM(a){var s,r=this -A:{if(B.fk===a){s=(r.d&4)!==0 -break A}if(B.fl===a){s=(r.d&1)!==0 -break A}if(B.fm===a){s=(r.d&2)!==0 -break A}if(B.fn===a){s=(r.d&8)!==0 -break A}if(B.nO===a){s=(r.d&16)!==0 -break A}if(B.nN===a){s=(r.d&32)!==0 -break A}if(B.nP===a){s=(r.d&64)!==0 -break A}if(B.nQ===a||B.DT===a){s=!1 -break A}s=null}return s}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.Uz&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.e===s.e}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.Eg.prototype={ -gayd(){var s=this -if(s.c)return new A.cF(s.a,t.hr) -if(s.b==null){s.b=new A.bC(new A.ax($.as,t.X6),t.EZ) -s.yt()}return s.b.a}, -yt(){var s=0,r=A.I(t.H),q,p=this,o -var $async$yt=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:s=3 -return A.p(B.nX.j1("get",t.pE),$async$yt) -case 3:o=b -if(p.b==null){s=1 -break}p.T3(o) -case 1:return A.G(q,r)}}) -return A.H($async$yt,r)}, -T3(a){var s,r=a==null -if(!r){s=a.h(0,"enabled") -s.toString -A.uh(s)}else s=!1 -this.ate(r?null:t.nc.a(a.h(0,"data")),s)}, -ate(a,b){var s,r,q=this,p=q.c&&b -q.d=p -if(p)$.c6.k4$.push(new A.arW(q)) -s=q.a -if(b){p=q.ab_(a) -r=t.N -if(p==null){p=t.X -p=A.t(p,p)}r=new A.e1(p,q,null,"root",A.t(r,t.z4),A.t(r,t.I1)) -p=r}else p=null -q.a=p -q.c=!0 -r=q.b -if(r!=null)r.dR(p) -q.b=null -if(q.a!=s){q.a7() -if(s!=null)s.l()}}, -GL(a){return this.ahy(a)}, -ahy(a){var s=0,r=A.I(t.H),q=this,p -var $async$GL=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:p=a.a -switch(p){case"push":q.T3(t.pE.a(a.b)) -break -default:throw A.i(A.fc(p+" was invoked but isn't implemented by "+A.l(q).k(0)))}return A.G(null,r)}}) -return A.H($async$GL,r)}, -ab_(a){if(a==null)return null -return t.J1.a(B.b1.hF(J.zC(B.a0.gcF(a),a.byteOffset,a.byteLength)))}, -a2I(a){var s=this -s.r.G(0,a) -if(!s.f){s.f=!0 -$.c6.k4$.push(new A.arX(s))}}, -Qr(){var s,r,q,p,o=this -if(!o.f)return -o.f=!1 -for(s=o.r,r=A.cl(s,s.r,A.n(s).c),q=r.$ti.c;r.v();){p=r.d;(p==null?q.a(p):p).w=!1}s.aa(0) -s=B.b1.cK(o.a.a) -s.toString -B.nX.dc("put",J.jr(B.aU.gcF(s),s.byteOffset,s.byteLength),t.H)}, -asv(){if($.c6.p1$)return -this.Qr()}, -l(){var s=this.a -if(s!=null)s.l() -this.d8()}} -A.arW.prototype={ -$1(a){this.a.d=!1}, -$S:4} -A.arX.prototype={ -$1(a){return this.a.Qr()}, -$S:4} -A.e1.prototype={ -guN(){var s=this.a.cl("c",new A.arT()) -s.toString -return t.pE.a(s)}, -gni(){var s=this.a.cl("v",new A.arU()) -s.toString -return t.pE.a(s)}, -axO(a,b,c){var s=this,r=s.gni().aN(b),q=c.i("0?").a(s.gni().J(0,b)),p=s.gni() -if(p.gan(p))s.a.J(0,"v") -if(r)s.qU() -return q}, -apy(a,b){var s,r,q,p,o=this,n=o.f -if(n.aN(a)||!o.guN().aN(a)){n=t.N -s=new A.e1(A.t(n,t.X),null,null,a,A.t(n,t.z4),A.t(n,t.I1)) -o.i7(s) -return s}r=t.N -q=o.c -p=o.guN().h(0,a) -p.toString -s=new A.e1(t.pE.a(p),q,o,a,A.t(r,t.z4),A.t(r,t.I1)) -n.m(0,a,s) -return s}, -i7(a){var s=this,r=a.d -if(r!==s){if(r!=null)r.z7(a) -a.d=s -s.OJ(a) -if(a.c!=s.c)s.Tr(a)}}, -abA(a){this.z7(a) -a.d=null -if(a.c!=null){a.Hd(null) -a.We(this.gTq())}}, -qU(){var s,r=this -if(!r.w){r.w=!0 -s=r.c -if(s!=null)s.a2I(r)}}, -Tr(a){a.Hd(this.c) -a.We(this.gTq())}, -Hd(a){var s=this,r=s.c -if(r==a)return -if(s.w)if(r!=null)r.r.J(0,s) -s.c=a -if(s.w&&a!=null){s.w=!1 -s.qU()}}, -z7(a){var s,r,q,p=this -if(p.f.J(0,a.e)===a){p.guN().J(0,a.e) -s=p.r -r=s.h(0,a.e) -if(r!=null){q=J.d5(r) -p.QI(q.jQ(r)) -if(q.gan(r))s.J(0,a.e)}s=p.guN() -if(s.gan(s))p.a.J(0,"c") -p.qU() -return}s=p.r -q=s.h(0,a.e) -if(q!=null)J.aUF(q,a) -q=s.h(0,a.e) -q=q==null?null:J.js(q) -if(q===!0)s.J(0,a.e)}, -OJ(a){var s=this -if(s.f.aN(a.e)){J.eJ(s.r.cl(a.e,new A.arS()),a) -s.qU() -return}s.QI(a) -s.qU()}, -QI(a){this.f.m(0,a.e,a) -this.guN().m(0,a.e,a.a)}, -Wf(a,b){var s=this.f,r=this.r,q=A.n(r).i("bo<2>"),p=new A.bo(s,A.n(s).i("bo<2>")).Zp(0,new A.fo(new A.bo(r,q),new A.arV(),q.i("fo"))) -if(b){s=A.aa(p,A.n(p).i("y.E")) -s.$flags=1 -p=s}J.ac8(p,a)}, -We(a){return this.Wf(a,!1)}, -axX(a){var s,r=this -if(a===r.e)return -s=r.d -if(s!=null)s.z7(r) -r.e=a -s=r.d -if(s!=null)s.OJ(r)}, -l(){var s,r=this -r.Wf(r.gabz(),!0) -r.f.aa(0) -r.r.aa(0) -s=r.d -if(s!=null)s.z7(r) -r.d=null -r.Hd(null)}, -k(a){return"RestorationBucket(restorationId: "+this.e+", owner: null)"}} -A.arT.prototype={ -$0(){var s=t.X -return A.t(s,s)}, -$S:202} -A.arU.prototype={ -$0(){var s=t.X -return A.t(s,s)}, -$S:202} -A.arS.prototype={ -$0(){return A.c([],t.QT)}, -$S:367} -A.arV.prototype={ -$1(a){return a}, -$S:368} -A.xx.prototype={ -j(a,b){var s,r -if(b==null)return!1 -if(this===b)return!0 -if(b instanceof A.xx){s=b.a -r=this.a -s=s.a===r.a&&s.b===r.b&&A.cV(b.b,this.b)}else s=!1 -return s}, -gt(a){var s=this.a -return A.N(s.a,s.b,A.bh(this.b),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){var s=this.b -return"SuggestionSpan(range: "+this.a.k(0)+", suggestions: "+s.k(s)+")"}} -A.Yp.prototype={ -j(a,b){if(b==null)return!1 -if(this===b)return!0 -return b instanceof A.Yp&&b.a===this.a&&A.cV(b.b,this.b)}, -gt(a){return A.N(this.a,A.bh(this.b),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"SpellCheckResults(spellCheckText: "+this.a+", suggestionSpans: "+A.j(this.b)+")"}} -A.acH.prototype={} -A.l5.prototype={ -gt(a){var s=this -return A.N(s.a,s.b,s.d,s.e,s.f,s.r,s.w,s.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.l5)if(J.b(b.a,r.a))if(J.b(b.e,r.e))if(b.r===r.r)if(b.f===r.f)s=b.c==r.c -return s}} -A.awi.prototype={ -$0(){var s,r,q,p,o,n,m -if(!J.b($.xy,$.awf)){s=$.xy -r=s.a -r=r==null?null:r.A() -q=s.w -p=s.e -p=p==null?null:p.A() -o=s.f.N() -n=s.r.N() -m=s.c -m=m==null?null:m.N() -B.bb.dc("SystemChrome.setSystemUIOverlayStyle",A.aG(["systemNavigationBarColor",r,"systemNavigationBarDividerColor",null,"systemStatusBarContrastEnforced",q,"statusBarColor",p,"statusBarBrightness",o,"statusBarIconBrightness",n,"systemNavigationBarIconBrightness",m,"systemNavigationBarContrastEnforced",s.d],t.N,t.z),t.H) -$.awf=$.xy}$.xy=null}, -$S:0} -A.awg.prototype={ -$0(){$.awf=null}, -$S:0} -A.a96.prototype={} -A.Yz.prototype={ -N(){return"SystemSoundType."+this.b}} -A.hG.prototype={ -fc(a){var s -if(a<0)return null -s=this.tJ(a).a -return s>=0?s:null}, -fe(a){var s=this.tJ(Math.max(0,a)).b -return s>=0?s:null}, -tJ(a){var s,r=this.fc(a) -if(r==null)r=-1 -s=this.fe(a) -return new A.bI(r,s==null?-1:s)}} -A.uP.prototype={ -fc(a){var s -if(a<0)return null -s=this.a -return A.aw8(s,Math.min(a,s.length)).b}, -fe(a){var s,r=this.a -if(a>=r.length)return null -s=A.aw8(r,Math.max(0,a+1)) -return s.b+s.gT().length}, -tJ(a){var s,r,q,p=this -if(a<0){s=p.fe(a) -return new A.bI(-1,s==null?-1:s)}else{s=p.a -if(a>=s.length){s=p.fc(a) -return new A.bI(s==null?-1:s,-1)}}r=A.aw8(s,a) -s=r.b -if(s!==r.c)s=new A.bI(s,s+r.gT().length) -else{q=p.fe(a) -s=new A.bI(s,q==null?-1:q)}return s}} -A.vW.prototype={ -tJ(a){return this.a.tG(new A.ap(Math.max(a,0),B.k))}} -A.of.prototype={ -fc(a){var s,r,q -if(a<0||this.a.length===0)return null -s=this.a -r=s.length -if(a>=r)return r -if(a===0)return 0 -if(a>1&&s.charCodeAt(a)===10&&s.charCodeAt(a-1)===13)q=a-2 -else q=A.aS8(s.charCodeAt(a))?a-1:a -while(q>0){if(A.aS8(s.charCodeAt(q)))return q+1;--q}return Math.max(q,0)}, -fe(a){var s,r=this.a,q=r.length -if(a>=q||q===0)return null -if(a<0)return 0 -for(s=a;!A.aS8(r.charCodeAt(s));){++s -if(s===q)return s}return s=s?null:s}} -A.hb.prototype={ -gnu(){var s,r=this -if(!r.gca()||r.c===r.d)s=r.e -else s=r.c=n&&o<=p.b)return p -s=p.c -r=p.d -q=s<=r -if(o<=n){if(b)return p.rw(a.b,p.b,o) -n=q?o:s -return p.rv(n,q?r:o)}if(b)return p.rw(a.b,n,o) -n=q?s:o -return p.rv(n,q?o:r)}, -YU(a){if(this.gdT().j(0,a))return this -return this.aqz(a.b,a.a)}} -A.oS.prototype={} -A.YI.prototype={} -A.YH.prototype={} -A.YJ.prototype={} -A.xC.prototype={} -A.a9i.prototype={} -A.Tz.prototype={ -N(){return"MaxLengthEnforcement."+this.b}} -A.tz.prototype={} -A.a40.prototype={} -A.aKe.prototype={} -A.Qi.prototype={ -asE(a,b){var s,r,q,p,o,n,m=this,l=null,k=new A.cf(""),j=b.b,i=j.gca()?new A.a40(j.c,j.d):l,h=b.c,g=h.gca()&&h.a!==h.b?new A.a40(h.a,h.b):l,f=new A.aKe(b,k,i,g) -h=b.a -s=B.c.rg(m.a,h) -for(r=new A.a8U(s.a,s.b,s.c),q=l;r.v();q=p){p=r.d -p.toString -o=q==null?l:q.a+q.c.length -if(o==null)o=0 -n=p.a -m.H0(!1,o,n,f) -m.H0(!0,n,n+p.c.length,f)}r=q==null?l:q.a+q.c.length -if(r==null)r=0 -m.H0(!1,r,h.length,f) -k=k.a -h=g==null||g.a===g.b?B.be:new A.bI(g.a,g.b) -j=i==null?B.fF:A.cp(j.e,i.a,i.b,j.f) -return new A.cA(k.charCodeAt(0)==0?k:k,j,h)}, -H0(a,b,c,d){var s,r,q,p -if(a)s=b===c?"":this.c -else s=B.c.a6(d.a.a,b,c) -d.b.a+=s -if(s.length===c-b)return -r=new A.ahM(b,c,s) -q=d.c -p=q==null -if(!p)q.a=q.a+r.$1(d.a.b.c) -if(!p)q.b=q.b+r.$1(d.a.b.d) -q=d.d -p=q==null -if(!p)q.a=q.a+r.$1(d.a.c.a) -if(!p)q.b=q.b+r.$1(d.a.c.b)}} -A.ahM.prototype={ -$1(a){var s=this,r=s.a,q=a<=r&&a=r.a&&s<=this.a.length}else r=!1 -return r}, -M_(a,b){var s,r,q,p,o=this -if(!a.gca())return o -s=a.a -r=a.b -q=B.c.ky(o.a,s,r,b) -if(r-s===b.length)return o.aqw(q) -s=new A.awD(a,b) -r=o.b -p=o.c -return new A.cA(q,A.cp(B.k,s.$1(r.c),s.$1(r.d),!1),new A.bI(s.$1(p.a),s.$1(p.b)))}, -M7(){var s=this.b,r=this.c -return A.aG(["text",this.a,"selectionBase",s.c,"selectionExtent",s.d,"selectionAffinity",s.e.N(),"selectionIsDirectional",s.f,"composingBase",r.a,"composingExtent",r.b],t.N,t.z)}, -k(a){return"TextEditingValue(text: \u2524"+this.a+"\u251c, selection: "+this.b.k(0)+", composing: "+this.c.k(0)+")"}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -return b instanceof A.cA&&b.a===s.a&&b.b.j(0,s.b)&&b.c.j(0,s.c)}, -gt(a){var s=this.c -return A.N(B.c.gt(this.a),this.b.gt(0),A.N(B.j.gt(s.a),B.j.gt(s.b),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.awD.prototype={ -$1(a){var s=this.a,r=s.a,q=a<=r&&a") -o=A.aa(new A.am(n,new A.awW(),m),m.i("aE.E")) -n=p.f -m=A.n(n).i("bD<1>") -l=m.i("h6>") -n=A.aa(new A.h6(new A.b1(new A.bD(n,m),new A.awX(p,o),m.i("b1")),new A.awY(p),l),l.i("y.E")) -q=n -s=1 -break A -case"TextInputClient.scribbleInteractionBegan":p.r=!0 -s=1 -break A -case"TextInputClient.scribbleInteractionFinished":p.r=!1 -s=1 -break A}n=p.d -if(n==null){s=1 -break}if(d==="TextInputClient.requestExistingInputState"){m=p.e -m===$&&A.a() -p.EH(n,m) -p.zj(p.d.r.a.c.a) -s=1 -break}n=t.j -o=n.a(a.b) -if(d===u.l){n=t.P -j=n.a(J.iQ(o,1)) -for(m=j.gcd(),m=m.gai(m);m.v();)A.aZL(n.a(j.h(0,m.gT()))) -s=1 -break}m=J.bk(o) -i=A.eF(m.h(o,0)) -l=p.d -if(i!==l.f){s=1 -break}switch(d){case"TextInputClient.updateEditingState":h=A.aZL(t.P.a(m.h(o,1))) -$.cv().an4(h,$.aPT()) -break -case u.s:l=t.P -g=l.a(m.h(o,1)) -m=A.c([],t.sD) -for(n=J.bG(n.a(g.h(0,"deltas")));n.v();)m.push(A.bby(l.a(n.gT()))) -t.Je.a(p.d.r).aA2(m) -break -case"TextInputClient.performAction":if(A.c7(m.h(o,1))==="TextInputAction.commitContent"){n=t.P.a(m.h(o,2)) -A.c7(n.h(0,"mimeType")) -A.c7(n.h(0,"uri")) -if(n.h(0,"data")!=null)new Uint8Array(A.iN(A.jN(t.JY.a(n.h(0,"data")),!0,t.S))) -p.d.r.a.toString}else p.d.r.awY(A.biS(A.c7(m.h(o,1)))) -break -case"TextInputClient.performSelectors":f=J.Md(n.a(m.h(o,1)),t.N) -f.aL(f,p.d.r.gax0()) -break -case"TextInputClient.performPrivateCommand":n=t.P -e=n.a(m.h(o,1)) -m=p.d.r -A.c7(e.h(0,"action")) -if(e.h(0,"data")!=null)n.a(e.h(0,"data")) -m.a.toString -break -case"TextInputClient.updateFloatingCursor":n=l.r -l=A.biR(A.c7(m.h(o,1))) -m=t.P.a(m.h(o,2)) -n.De(new A.wE(l===B.ja?new A.h(A.fg(m.h(0,"X")),A.fg(m.h(0,"Y"))):B.f,null,l)) -break -case"TextInputClient.onConnectionClosed":n=l.r -if(n.gi2()){n.z.toString -n.ok=n.z=$.cv().d=null -n.a.d.jc()}break -case"TextInputClient.showAutocorrectionPromptRect":l.r.a3s(A.eF(m.h(o,1)),A.eF(m.h(o,2))) -break -case"TextInputClient.showToolbar":l.r.hY() -break -case"TextInputClient.insertTextPlaceholder":l.r.auo(new A.L(A.fg(m.h(o,1)),A.fg(m.h(o,2)))) -break -case"TextInputClient.removeTextPlaceholder":l.r.a17() -break -default:throw A.i(A.anW(null))}case 1:return A.G(q,r)}}) -return A.H($async$Gg,r)}, -akO(){if(this.w)return -this.w=!0 -A.fE(new A.ax_(this))}, -alj(a,b){var s,r,q,p,o,n,m -for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=t.jl,q=t.H,p=s.$ti.c;s.v();){o=s.d -if(o==null)o=p.a(o) -n=$.cv() -m=n.c -m===$&&A.a() -m.dc("TextInput.setClient",A.c([n.d.f,o.PZ(b)],r),q)}}, -PF(){var s,r,q,p,o=this -o.d.toString -for(s=o.b,s=A.cl(s,s.r,A.n(s).c),r=t.H,q=s.$ti.c;s.v();){p=s.d -if(p==null)q.a(p) -p=$.cv().c -p===$&&A.a() -p.j1("TextInput.clearClient",r)}o.d=null -o.akO()}, -HJ(a){var s,r,q,p,o -for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=t.H,q=s.$ti.c;s.v();){p=s.d -if(p==null)p=q.a(p) -o=$.cv().c -o===$&&A.a() -o.dc("TextInput.updateConfig",p.PZ(a),r)}}, -zj(a){var s,r,q,p -for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=t.H,q=s.$ti.c;s.v();){p=s.d -if(p==null)q.a(p) -p=$.cv().c -p===$&&A.a() -p.dc("TextInput.setEditingState",a.M7(),r)}}, -Ho(){var s,r,q,p -for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=t.H,q=s.$ti.c;s.v();){p=s.d -if(p==null)q.a(p) -p=$.cv().c -p===$&&A.a() -p.j1("TextInput.show",r)}}, -agt(){var s,r,q,p -for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=t.H,q=s.$ti.c;s.v();){p=s.d -if(p==null)q.a(p) -p=$.cv().c -p===$&&A.a() -p.j1("TextInput.hide",r)}}, -aln(a,b){var s,r,q,p,o,n,m,l,k -for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=a.a,q=a.b,p=b.a,o=t.N,n=t.z,m=t.H,l=s.$ti.c;s.v();){k=s.d -if(k==null)l.a(k) -k=$.cv().c -k===$&&A.a() -k.dc("TextInput.setEditableSizeAndTransform",A.aG(["width",r,"height",q,"transform",p],o,n),m)}}, -alk(a){var s,r,q,p,o,n,m,l,k,j -for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=a.a,q=a.c-r,p=a.b,o=a.d-p,n=t.N,m=t.z,l=t.H,k=s.$ti.c;s.v();){j=s.d -if(j==null)k.a(j) -j=$.cv().c -j===$&&A.a() -j.dc("TextInput.setMarkedTextRect",A.aG(["width",q,"height",o,"x",r,"y",p],n,m),l)}}, -ali(a){var s,r,q,p,o,n,m,l,k,j -for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=a.a,q=a.c-r,p=a.b,o=a.d-p,n=t.N,m=t.z,l=t.H,k=s.$ti.c;s.v();){j=s.d -if(j==null)k.a(j) -j=$.cv().c -j===$&&A.a() -j.dc("TextInput.setCaretRect",A.aG(["width",q,"height",o,"x",r,"y",p],n,m),l)}}, -als(a){var s,r,q -for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=s.$ti.c;s.v();){q=s.d;(q==null?r.a(q):q).a3b(a)}}, -Hk(a,b,c,d,e){var s,r,q,p,o,n,m,l,k -for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=d.a,q=e.a,p=t.N,o=t.z,n=t.H,m=c==null,l=s.$ti.c;s.v();){k=s.d -if(k==null)l.a(k) -k=$.cv().c -k===$&&A.a() -k.dc("TextInput.setStyle",A.aG(["fontFamily",a,"fontSize",b,"fontWeightIndex",m?null:B.j.eX(B.j.el(c.a,100)-1,0,8),"textAlignIndex",r,"textDirectionIndex",q],p,o),n)}}, -ako(){var s,r,q,p -for(s=this.b,s=A.cl(s,s.r,A.n(s).c),r=t.H,q=s.$ti.c;s.v();){p=s.d -if(p==null)q.a(p) -p=$.cv().c -p===$&&A.a() -p.j1("TextInput.requestAutofill",r)}}, -an4(a,b){var s,r,q,p -if(this.d==null)return -for(s=$.cv().b,s=A.cl(s,s.r,A.n(s).c),r=s.$ti.c,q=t.H;s.v();){p=s.d -if((p==null?r.a(p):p)!==b){p=$.cv().c -p===$&&A.a() -p.dc("TextInput.setEditingState",a.M7(),q)}}$.cv().d.r.ayT(a)}} -A.awZ.prototype={ -$0(){var s=null -return A.c([A.kv("call",this.a,!0,B.c0,s,s,s,B.bq,!1,!0,!0,B.cL,s)],t.D)}, -$S:23} -A.awW.prototype={ -$1(a){return a}, -$S:369} -A.awX.prototype={ -$1(a){var s,r,q,p=this.b,o=p[0],n=p[1],m=p[2] -p=p[3] -s=this.a.f -r=s.h(0,a) -p=r==null?null:r.auG(new A.w(o,n,o+m,n+p)) -if(p!==!0)return!1 -p=s.h(0,a) -q=p==null?null:p.gkT() -if(q==null)q=B.ag -return!(q.j(0,B.ag)||q.gatF()||q.a>=1/0||q.b>=1/0||q.c>=1/0||q.d>=1/0)}, -$S:26} -A.awY.prototype={ -$1(a){var s=this.a.f.h(0,a).gkT(),r=[a],q=s.a,p=s.b -B.b.a_(r,[q,p,s.c-q,s.d-p]) -return r}, -$S:370} -A.ax_.prototype={ -$0(){var s=this.a -s.w=!1 -if(s.d==null)s.agt()}, -$S:0} -A.G_.prototype={} -A.a4p.prototype={ -PZ(a){var s,r=a.kC() -if($.cv().a!==$.aPT()){s=B.aal.kC() -s.m(0,"isMultiline",a.b.j(0,B.l8)) -r.m(0,"inputType",s)}return r}, -a3b(a){var s,r=$.cv().c -r===$&&A.a() -s=A.a6(a).i("am<1,U>") -s=A.aa(new A.am(a,new A.aFc(),s),s.i("aE.E")) -r.dc("TextInput.setSelectionRects",s,t.H)}} -A.aFc.prototype={ -$1(a){var s=a.b,r=s.a,q=s.b -return A.c([r,q,s.c-r,s.d-q,a.a,a.c.a],t.a0)}, -$S:371} -A.awk.prototype={ -ato(){var s,r=this -if(!r.f)s=!(r===$.tw&&!r.e) -else s=!0 -if(s)return -if($.tw===r)$.tw=null -r.e=!0 -r.b.aa(0) -r.a.$0()}, -a3v(a,b){var s,r,q,p,o=this,n=$.tw -if(n!=null){s=n.e -n=!s&&J.b(n.c,a)&&A.cV($.tw.d,b)}else n=!1 -if(n)return A.di(null,t.H) -$.ee.bo$=o -o.b.aa(0) -for(n=b.length,r=0;r>") -q=A.aa(new A.am(b,new A.awl(),n),n.i("aE.E")) -o.c=a -o.d=b -$.tw=o -o.e=!1 -n=a.a -s=a.b -p=t.N -return B.bb.dc("ContextMenu.showSystemContextMenu",A.aG(["targetRect",A.aG(["x",n,"y",s,"width",a.c-n,"height",a.d-s],p,t.i),"items",q],p,t.z),t.H)}, -fn(){var s=0,r=A.I(t.H),q,p=this -var $async$fn=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:if(p!==$.tw){s=1 -break}$.tw=null -$.ee.bo$=null -p.b.aa(0) -q=B.bb.j1("ContextMenu.hideSystemContextMenu",t.H) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$fn,r)}} -A.awl.prototype={ -$1(a){var s,r=A.t(t.N,t.z) -r.m(0,"callbackId",J.D(a.ghQ())) -s=a.ghQ() -if(s!=null)r.m(0,"title",s) -r.m(0,"type",a.gnd()) -return r}, -$S:372} -A.fr.prototype={ -ghQ(){return null}, -gt(a){return J.D(this.ghQ())}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.fr&&b.ghQ()==this.ghQ()}} -A.QR.prototype={ -gnd(){return"copy"}} -A.QS.prototype={ -gnd(){return"cut"}} -A.QV.prototype={ -gnd(){return"paste"}} -A.QX.prototype={ -gnd(){return"selectAll"}} -A.QU.prototype={ -gnd(){return"lookUp"}, -ghQ(){return this.a}} -A.QW.prototype={ -gnd(){return"searchWeb"}, -ghQ(){return this.a}} -A.QY.prototype={ -gnd(){return"share"}, -ghQ(){return this.a}} -A.QT.prototype={ -gnd(){return"captureTextFromCamera"}} -A.a33.prototype={} -A.a34.prototype={} -A.a35.prototype={} -A.a91.prototype={} -A.a92.prototype={} -A.aaO.prototype={} -A.YZ.prototype={ -N(){return"UndoDirection."+this.b}} -A.Z_.prototype={ -gamR(){var s=this.a -s===$&&A.a() -return s}, -Gh(a){return this.agf(a)}, -agf(a){var s=0,r=A.I(t.z),q,p=this,o,n -var $async$Gh=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:n=t.j.a(a.b) -if(a.a==="UndoManagerClient.handleUndo"){o=p.b -o.toString -o.at7(p.amE(A.c7(J.iQ(n,0)))) -s=1 -break}throw A.i(A.anW(null)) -case 1:return A.G(q,r)}}) -return A.H($async$Gh,r)}, -amE(a){var s -A:{if("undo"===a){s=B.agH -break A}if("redo"===a){s=B.agI -break A}s=A.a0(A.nP(A.c([A.kz("Unknown undo direction: "+a)],t.D)))}return s}} -A.axI.prototype={} -A.ay5.prototype={} -A.aax.prototype={} -A.aNA.prototype={ -$1(a){this.a.sed(a) -return!1}, -$S:25} -A.be.prototype={} -A.bn.prototype={ -fV(a){this.b=a}, -lc(a){return this.gkp()}, -u5(a,b){var s -A:{if(this instanceof A.cW){s=this.mj(a,b) -break A}s=this.lc(a) -break A}return s}, -gkp(){return!0}, -ru(a){return!0}, -M8(a,b){return this.ru(a)?B.f4:B.ji}, -uA(a,b){var s -A:{if(this instanceof A.cW){s=this.dM(a,b) -break A}s=this.ee(a) -break A}return s}, -I9(a){var s=this.a -s.b=!0 -s.a.push(a) -return null}, -CL(a){return this.a.J(0,a)}, -e1(a){return new A.IM(this,a,!1,!1,!1,!1,new A.bp(A.c([],t.e),t.d),A.n(this).i("IM"))}} -A.cW.prototype={ -mj(a,b){return this.a3S(a)}, -lc(a){return this.mj(a,null)}, -e1(a){return new A.IN(this,a,!1,!1,!1,!1,new A.bp(A.c([],t.e),t.d),A.n(this).i("IN"))}} -A.dg.prototype={ -ee(a){return this.c.$1(a)}} -A.aci.prototype={ -a_o(a,b,c){return a.uA(b,c)}, -aup(a,b,c){if(a.u5(b,c))return new A.an(!0,a.uA(b,c)) -return B.a5d}} -A.lA.prototype={ -ah(){return new A.GQ(A.aU(t.od),new A.Q())}, -gR(){return this.e}} -A.ack.prototype={ -$1(a){t.L1.a(a.gW()) -return!1}, -$S:66} -A.acn.prototype={ -$1(a){var s=this,r=A.acj(t.L1.a(a.gW()),s.b,s.d) -if(r!=null){s.c.AE(a) -s.a.a=r -return!0}return!1}, -$S:66} -A.acl.prototype={ -$1(a){var s=A.acj(t.L1.a(a.gW()),this.b,this.c) -if(s!=null){this.a.a=s -return!0}return!1}, -$S:66} -A.acm.prototype={ -$1(a){var s=this,r=s.b,q=A.acj(t.L1.a(a.gW()),r,s.d),p=q!=null -if(p&&q.u5(r,s.c))s.a.a=A.aQ2(a).a_o(q,r,s.c) -return p}, -$S:66} -A.aco.prototype={ -$1(a){var s=this,r=s.b,q=A.acj(t.L1.a(a.gW()),r,s.d),p=q!=null -if(p&&q.u5(r,s.c))s.a.a=A.aQ2(a).a_o(q,r,s.c) -return p}, -$S:66} -A.GQ.prototype={ -aw(){this.b3() -this.Vl()}, -ad8(a){this.ar(new A.ayR(this))}, -Vl(){var s,r=this,q=r.a.d,p=A.n(q).i("bo<2>"),o=A.ep(new A.bo(q,p),p.i("y.E")),n=r.d.fY(o) -p=r.d -p.toString -s=o.fY(p) -for(q=n.gai(n),p=r.gRw();q.v();)q.gT().CL(p) -for(q=s.gai(s);q.v();)q.gT().I9(p) -r.d=o}, -aV(a){this.bm(a) -this.Vl()}, -l(){var s,r,q,p,o=this -o.aQ() -for(s=o.d,s=A.cl(s,s.r,A.n(s).c),r=o.gRw(),q=s.$ti.c;s.v();){p=s.d;(p==null?q.a(p):p).CL(r)}o.d=null}, -K(a){var s=this.a -return new A.GP(null,s.d,this.e,s.e,null)}} -A.ayR.prototype={ -$0(){this.a.e=new A.Q()}, -$S:0} -A.GP.prototype={ -cI(a){var s -if(this.w===a.w)s=!A.uo(a.r,this.r) -else s=!0 -return s}} -A.qr.prototype={ -ah(){return new A.HU(new A.by(null,t.A))}, -gR(){return this.ax}} -A.HU.prototype={ -aw(){this.b3() -$.c6.k4$.push(new A.aC1(this)) -$.a1.ap$.d.a.f.G(0,this.gRK())}, -l(){$.a1.ap$.d.a.f.J(0,this.gRK()) -this.aQ()}, -VI(a){this.yR(new A.aC_(this))}, -aea(a){if(this.c==null)return -this.VI(a)}, -a8H(a){if(!this.e)this.yR(new A.aBV(this))}, -a8J(a){if(this.e)this.yR(new A.aBW(this))}, -a8F(a){var s=this -if(s.f!==a){s.yR(new A.aBU(s,a)) -s.a.toString}}, -SA(a,b){var s,r,q,p,o,n,m=this,l=new A.aBZ(m),k=new A.aBY(m,new A.aBX(m)) -if(a==null){s=m.a -s.toString -r=s}else r=a -q=l.$1(r) -p=k.$1(r) -if(b!=null)b.$0() -s=m.a -s.toString -o=l.$1(s) -s=m.a -s.toString -n=k.$1(s) -if(p!==n)m.a.y.$1(n) -if(q!==o){l=m.a.z -if(l!=null)l.$1(o)}}, -yR(a){return this.SA(null,a)}, -ahm(a){return this.SA(a,null)}, -aV(a){this.bm(a) -if(this.a.c!==a.c)$.c6.k4$.push(new A.aC0(this,a))}, -ga8D(){var s,r=this.c -r.toString -r=A.c_(r,B.io) -s=r==null?null:r.CW -A:{if(B.fp===s||s==null){r=this.a.c -break A}if(B.kp===s){r=!0 -break A}r=null}return r}, -K(a){var s,r,q,p=this,o=null,n=p.a,m=n.as -n=n.d -s=p.ga8D() -r=p.a -q=A.ie(A.jH(!1,s,r.ax,o,!0,!0,n,!0,o,p.ga8E(),o,o,o,o),m,p.r,p.ga8G(),p.ga8I(),o) -if(r.c)n=r.w.a!==0 -else n=!1 -if(n)q=A.uB(r.w,q) -return q}} -A.aC1.prototype={ -$1(a){var s=$.a1.ap$.d.a.b -if(s==null)s=A.I2() -this.a.VI(s)}, -$S:4} -A.aC_.prototype={ -$0(){var s=$.a1.ap$.d.a.b -switch((s==null?A.I2():s).a){case 0:s=!1 -break -case 1:s=!0 -break -default:s=null}this.a.d=s}, -$S:0} -A.aBV.prototype={ -$0(){this.a.e=!0}, -$S:0} -A.aBW.prototype={ -$0(){this.a.e=!1}, -$S:0} -A.aBU.prototype={ -$0(){this.a.f=this.b}, -$S:0} -A.aBZ.prototype={ -$1(a){var s=this.a -return s.e&&a.c&&s.d}, -$S:100} -A.aBX.prototype={ -$1(a){var s,r=this.a.c -r.toString -r=A.c_(r,B.io) -s=r==null?null:r.CW -A:{if(B.fp===s||s==null){r=a.c -break A}if(B.kp===s){r=!0 -break A}r=null}return r}, -$S:100} -A.aBY.prototype={ -$1(a){var s=this.a -return s.f&&s.d&&this.b.$1(a)}, -$S:100} -A.aC0.prototype={ -$1(a){this.a.ahm(this.b)}, -$S:4} -A.Zf.prototype={ -ee(a){a.azI() -return null}} -A.Bb.prototype={ -ru(a){return this.c}, -ee(a){}} -A.uC.prototype={} -A.uL.prototype={} -A.ht.prototype={} -A.PT.prototype={} -A.mv.prototype={} -A.Us.prototype={ -mj(a,b){var s,r,q,p,o,n=$.a1.ap$.d.c -if(n==null||n.e==null)return!1 -for(s=t.C,r=0;r<2;++r){q=B.WT[r] -p=n.e -p.toString -o=A.aQ4(p,q,s) -if(o!=null&&o.u5(q,b)){this.e=o -this.f=q -return!0}}return!1}, -lc(a){return this.mj(a,null)}, -dM(a,b){var s,r=this.e -r===$&&A.a() -s=this.f -s===$&&A.a() -r.uA(s,b)}, -ee(a){return this.dM(a,null)}} -A.yM.prototype={ -Sl(a,b,c){var s -a.fV(this.gnB()) -s=a.uA(b,c) -a.fV(null) -return s}, -dM(a,b){var s=this,r=A.aQ3(s.gwo(),A.n(s).c) -return r==null?s.a_q(a,s.b,b):s.Sl(r,a,b)}, -ee(a){return this.dM(a,null)}, -gkp(){var s,r,q=this,p=A.aQ4(q.gwo(),null,A.n(q).c) -if(p!=null){p.fV(q.gnB()) -s=p.gkp() -p.fV(null) -r=s}else r=q.gnB().gkp() -return r}, -mj(a,b){var s,r=this,q=A.aQ3(r.gwo(),A.n(r).c),p=q==null -if(!p)q.fV(r.gnB()) -s=(p?r.gnB():q).u5(a,b) -if(!p)q.fV(null) -return s}, -lc(a){return this.mj(a,null)}, -ru(a){var s,r=this,q=A.aQ3(r.gwo(),A.n(r).c),p=q==null -if(!p)q.fV(r.gnB()) -s=(p?r.gnB():q).ru(a) -if(!p)q.fV(null) -return s}} -A.IM.prototype={ -a_q(a,b,c){var s=this.e -if(b==null)return s.ee(a) -else return s.ee(a)}, -gnB(){return this.e}, -gwo(){return this.f}} -A.IN.prototype={ -Sl(a,b,c){var s -c.toString -a.fV(new A.Hk(c,this.e,new A.bp(A.c([],t.e),t.d),this.$ti.i("Hk<1>"))) -s=a.uA(b,c) -a.fV(null) -return s}, -a_q(a,b,c){var s=this.e -if(b==null)return s.dM(a,c) -else return s.dM(a,c)}, -gnB(){return this.e}, -gwo(){return this.f}} -A.Hk.prototype={ -fV(a){this.d.fV(a)}, -lc(a){return this.d.mj(a,this.c)}, -gkp(){return this.d.gkp()}, -ru(a){return this.d.ru(a)}, -I9(a){var s -this.a3R(a) -s=this.d.a -s.b=!0 -s.a.push(a)}, -CL(a){this.a3T(a) -this.d.a.J(0,a)}, -ee(a){return this.d.dM(a,this.c)}} -A.a0d.prototype={} -A.a0b.prototype={} -A.a3k.prototype={} -A.Lq.prototype={ -fV(a){this.NH(a) -this.e.fV(a)}} -A.Lr.prototype={ -fV(a){this.NH(a) -this.e.fV(a)}} -A.zM.prototype={ -ah(){return new A.a0p(null,null)}, -gR(){return this.c}} -A.a0p.prototype={ -K(a){var s=this.a -return new A.a0o(B.a_,s.e,s.f,null,this,B.N,null,s.c,null)}} -A.a0o.prototype={ -bf(a){var s=this -return A.baj(s.e,s.y,s.f,s.r,s.z,s.w,A.dD(a),s.x)}, -bj(a,b){var s,r=this -b.siS(r.e) -b.sJG(r.r) -b.sayb(r.w) -b.sar8(r.f) -b.saz5(r.x) -b.sce(A.dD(a)) -s=r.y -if(s!==b.fk){b.fk=s -b.bb() -b.br()}b.saw8(r.z)}} -A.aaC.prototype={ -l(){var s=this,r=s.bu$ -if(r!=null)r.O(s.gfA()) -s.bu$=null -s.aQ()}, -bF(){this.cE() -this.cv() -this.fB()}} -A.zT.prototype={ -bf(a){var s=new A.DS(this.e,!0,A.at(),null,new A.b8(),A.at(),this.$ti.i("DS<1>")) -s.be() -s.sR(null) -return s}, -bj(a,b){b.sp(this.e) -b.sa3z(!0)}} -A.GD.prototype={ -ah(){return new A.KU()}} -A.KU.prototype={ -gagE(){$.a1.toString -var s=$.b7() -if(s.gJe()!=="/"){$.a1.toString -s=s.gJe()}else{this.a.toString -$.a1.toString -s=s.gJe()}return s}, -ab3(a){switch(this.d){case null:case void 0:case B.dM:return!0 -case B.is:case B.d2:case B.it:case B.lJ:A.aS4(a.a) -return!0}}, -rz(a){this.d=a -this.a6d(a)}, -aw(){var s=this -s.b3() -s.anj() -$.a1.bI$.push(s) -s.d=$.a1.fr$}, -aV(a){var s,r,q,p,o,n,m=this -m.bm(a) -m.VS(a) -s=m.a -if(s.go!==a.go||s.fr!==a.fr){s=m.gyM() -r=m.a -q=r.dy -p=r.fx -o=r.fy -n=r.fr -r=r.go -s.e=q -s.b=p -s.c=o -s.a=n -if(s.d!==r){s.d=r -$.a1.toString -s.VR($.b7().c.f)}}}, -l(){var s,r=this -$.a1.is(r) -s=r.e -if(s!=null)s.l() -s=r.gyM() -$.a1.is(s) -s.d8() -r.aQ()}, -PH(){var s=this.e -if(s!=null)s.l() -this.f=this.e=null}, -VS(a){var s,r=this -r.a.toString -if(r.gW9()){r.PH() -s=r.r==null -if(!s){r.a.toString -a.toString}if(s){r.a.toString -r.r=new A.qD(r,t.TX)}}else{r.PH() -r.r=null}}, -anj(){return this.VS(null)}, -gW9(){var s=this.a -if(s.Q==null){s=s.as -s=s==null?null:s.gc6(s) -s=s===!0 -if(!s)this.a.toString}else s=!0 -return s}, -aip(a){var s=this,r=a.a,q=r==="/"&&s.a.Q!=null?new A.aLD(s):s.a.as.h(0,r) -if(q!=null)return s.a.f.$1$2(a,q,t.z) -s.a.toString -return null}, -aiR(a){return this.a.at.$1(a)}, -AG(){var s=0,r=A.I(t.y),q,p=this,o,n -var $async$AG=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:p.a.toString -o=p.r -n=o==null?null:o.gS() -if(n==null){q=!1 -s=1 -break}q=n.a01() -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$AG,r)}, -vI(a){return this.arr(a)}, -arr(a){var s=0,r=A.I(t.y),q,p=this,o,n,m,l -var $async$vI=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:p.a.toString -o=p.r -n=o==null?null:o.gS() -if(n==null){q=!1 -s=1 -break}m=a.gjU() -o=m.gfa().length===0?"/":m.gfa() -l=m.gq3() -l=l.gan(l)?null:m.gq3() -o=A.aad(m.gl8().length===0?null:m.gl8(),o,l).guY() -o=n.He(A.po(o,0,o.length,B.ao,!1),null,t.X) -o.toString -n.o5(o) -q=!0 -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$vI,r)}, -gyM(){var s,r,q,p,o,n,m=this,l=m.w -if(l===$){s=m.a -r=s.dy -q=s.fx -p=s.fy -o=s.fr -s=s.go -n=new A.w_(o,q,p,s,r,$.af()) -$.a1.toString -n.f=n.TJ($.b7().c.f,s) -$.a1.bI$.push(n) -m.w!==$&&A.aK() -m.w=n -l=n}return l}, -K(a){var s,r,q,p,o,n=this,m=null,l={} -l.a=null -s=n.a -s.toString -if(n.gW9()){s=n.r -r=n.gagE() -q=n.a -p=q.ch -p.toString -l.a=A.aQO(!0,m,new A.Dj(r,n.gaio(),n.gaiQ(),p,"nav",B.afv,A.bkE(),!0,B.v,s),"Navigator Scope",!0,m,m,m,m) -s=q}else{s=n.a -s.toString}l.b=null -o=new A.dO(new A.aLE(l,n),m) -l.b=o -o=A.fn(o,m,m,B.bc,!0,s.db,m,m,B.al) -l.b=o -l.b=A.jH(!1,!1,o,m,m,m,m,!0,m,m,m,new A.aLF(),m,m) -l.c=null -l.c=new A.Gd(s.cx,s.dx.aI(1),l.b,m) -s=n.a.p4 -r=A.bcj() -q=A.kM($.b3z(),t.u,t.od) -q.m(0,B.p_,new A.Eu(new A.bp(A.c([],t.e),t.d)).e1(a)) -p=A.UE() -return new A.Ej(new A.Fg(new A.dT(n.gab2(),A.aRZ(new A.PG(A.uB(q,A.Qm(new A.YC(new A.Fh(new A.ib(new A.aLG(l,n),m,n.gyM(),m),m),m),p)),m),"",r),m,t.en),m),s,m)}} -A.aLD.prototype={ -$1(a){var s=this.a.a.Q -s.toString -return s}, -$S:15} -A.aLE.prototype={ -$1(a){return this.b.a.CW.$2(a,this.a.a)}, -$S:15} -A.aLF.prototype={ -$2(a,b){if(!(b instanceof A.kJ)&&!(b instanceof A.qP)||!b.b.j(0,B.hB))return B.f5 -return A.baf()?B.f4:B.f5}, -$S:101} -A.aLG.prototype={ -$2(a,b){var s,r,q=this.b.gyM(),p=q.f -p.toString -s=t.IO -r=A.c([],s) -B.b.a_(r,q.a) -r.push(B.Mq) -q=A.c(r.slice(0),s) -s=this.a -r=s.c -s=r==null?s.b:r -return new A.qZ(p,q,s,!0,null)}, -$S:381} -A.abC.prototype={} -A.Mu.prototype={ -rA(){var s=0,r=A.I(t.s1),q -var $async$rA=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:q=B.lI -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$rA,r)}, -rz(a){if(a===this.a)return -this.a=a -switch(a.a){case 1:this.e.$0() -break -case 2:break -case 3:break -case 4:break -case 0:break}}} -A.a0A.prototype={} -A.a0B.prototype={} -A.A2.prototype={ -ah(){return new A.H_()}, -gR(){return this.c}} -A.H_.prototype={ -aw(){this.b3() -this.Pa()}, -aV(a){this.bm(a) -this.Pa()}, -Pa(){this.e=new A.dT(this.ga8N(),this.a.c,null,t.Jc)}, -l(){var s,r,q=this.d -if(q!=null)for(q=new A.eS(q,q.r,q.e);q.v();){s=q.d -r=this.d.h(0,s) -r.toString -s.O(r)}this.aQ()}, -a8O(a){var s,r=this,q=a.a,p=r.d -if(p==null)p=r.d=A.t(t.I_,t.M) -p.m(0,q,r.aaO(q)) -p=r.d.h(0,q) -p.toString -q.a9(p) -if(!r.f){r.f=!0 -s=r.QZ() -if(s!=null)r.VN(s) -else $.c6.k4$.push(new A.azw(r))}return!1}, -QZ(){var s={},r=this.c -r.toString -s.a=null -r.bB(new A.azB(s)) -return t.xO.a(s.a)}, -VN(a){var s,r -this.c.toString -s=this.f -r=this.e -r===$&&A.a() -a.P4(t.Fw.a(A.b8z(r,s)))}, -aaO(a){var s=A.bQ(),r=new A.azA(this,a,s) -s.sed(r) -return r}, -K(a){var s=this.f,r=this.e -r===$&&A.a() -return new A.Cl(s,r,null)}} -A.azw.prototype={ -$1(a){var s,r=this.a -if(r.c==null)return -s=r.QZ() -s.toString -r.VN(s)}, -$S:4} -A.azB.prototype={ -$1(a){this.a.a=a}, -$S:14} -A.azA.prototype={ -$0(){var s=this.a,r=this.b -s.d.J(0,r) -r.O(this.c.bc()) -if(s.d.a===0)if($.c6.p2$.a<3)s.ar(new A.azy(s)) -else{s.f=!1 -A.fE(new A.azz(s))}}, -$S:0} -A.azy.prototype={ -$0(){this.a.f=!1}, -$S:0} -A.azz.prototype={ -$0(){var s=this.a -if(s.c!=null&&s.d.a===0)s.ar(new A.azx())}, -$S:0} -A.azx.prototype={ -$0(){}, -$S:0} -A.vT.prototype={} -A.Cm.prototype={ -l(){this.a7() -this.d8()}} -A.hV.prototype={ -ka(){var s=new A.Cm($.af()) -this.dh$=s -this.c.em(new A.vT(s))}, -oe(){var s,r=this -if(r.gjV()){if(r.dh$==null)r.ka()}else{s=r.dh$ -if(s!=null){s.a7() -s.d8() -r.dh$=null}}}, -K(a){if(this.gjV()&&this.dh$==null)this.ka() -return B.ajT}} -A.a4b.prototype={ -K(a){throw A.i(A.h_("Widgets that mix AutomaticKeepAliveClientMixin into their State must call super.build() but must ignore the return value of the superclass."))}} -A.aa7.prototype={ -Ni(a,b){}, -o_(a){A.b0_(this,new A.aLi(this,a))}} -A.aLi.prototype={ -$1(a){var s=a.z -s=s==null?null:s.q(0,this.a) -if(s===!0)a.by()}, -$S:14} -A.aLh.prototype={ -$1(a){A.b0_(a,this.a)}, -$S:14} -A.aa8.prototype={ -cf(){return new A.aa7(A.h0(null,null,null,t.Q,t.X),this,B.ae)}} -A.iY.prototype={ -cI(a){return this.w!==a.w}} -A.TX.prototype={ -bf(a){var s=this.e -s=new A.UX(B.d.aY(A.E(s,0,1)*255),s,!1,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.sdY(this.e) -b.sA1(!1)}} -A.MD.prototype={ -QX(a){return null}, -gQx(){var s=this.e -s.toString -return new A.a21(s)}, -bf(a){var s=this.gQx(),r=this.QX(a) -s=new A.UJ(!0,s,B.c8,r,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.sasl(this.gQx()) -b.snK(!0) -b.sap_(B.c8) -b.saoS(this.QX(a))}} -A.B0.prototype={ -bf(a){var s=new A.DX(this.e,this.f,this.r,!1,!1,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.spX(this.e) -b.sZt(this.f) -b.sax8(this.r) -b.bQ=b.bw=!1}, -AK(a){a.spX(null) -a.sZt(null)}} -A.uZ.prototype={ -bf(a){var s=new A.UN(this.e,this.f,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.sro(this.e) -b.snx(this.f)}, -AK(a){a.sro(null)}} -A.Nj.prototype={ -bf(a){var s=new A.UM(this.e,A.dD(a),null,B.cm,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.sp6(this.e) -b.snx(B.cm) -b.sro(null) -b.sce(A.dD(a))}} -A.uY.prototype={ -bf(a){var s=new A.UL(this.e,this.f,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.sro(this.e) -b.snx(this.f)}, -AK(a){a.sro(null)}} -A.aer.prototype={ -$1(a){return A.aeq(this.c,this.b,new A.oH(this.a,A.dD(a),null))}, -$S:384} -A.Uc.prototype={ -bf(a){var s=this,r=new A.UY(s.e,s.r,s.w,s.y,s.x,null,s.f,null,new A.b8(),A.at()) -r.be() -r.sR(null) -return r}, -bj(a,b){var s=this -b.sdt(s.e) -b.snx(s.f) -b.sp6(s.r) -b.se9(s.w) -b.sdQ(s.x) -b.scz(s.y)}} -A.Ud.prototype={ -bf(a){var s=this,r=new A.UZ(s.r,s.x,s.w,s.e,s.f,null,new A.b8(),A.at()) -r.be() -r.sR(null) -return r}, -bj(a,b){var s=this -b.sro(s.e) -b.snx(s.f) -b.se9(s.r) -b.sdQ(s.w) -b.scz(s.x)}} -A.mZ.prototype={ -bf(a){var s=this,r=A.dD(a),q=new A.V7(s.w,null,new A.b8(),A.at()) -q.be() -q.sR(null) -q.scC(s.e) -q.siS(s.r) -q.sce(r) -q.sZb(s.x) -q.sa0n(null) -return q}, -bj(a,b){var s=this -b.scC(s.e) -b.sa0n(null) -b.siS(s.r) -b.sce(A.dD(a)) -b.bw=s.w -b.sZb(s.x)}} -A.pZ.prototype={ -bf(a){var s=new A.UV(this.e,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.spN(this.e)}} -A.Nu.prototype={ -bf(a){var s=this,r=new A.UR(s.e,s.f,s.x,s.r,s.w,null,new A.b8(),A.at()) -r.be() -r.sR(null) -return r}, -bj(a,b){var s=this -b.spN(s.e) -b.sa3u(s.f) -b.scU(s.x) -b.sauX(s.r) -b.sasB(s.w)}} -A.Qr.prototype={ -bf(a){var s=new A.US(this.e,this.f,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.sayM(this.e) -b.a4=this.f}} -A.bR.prototype={ -bf(a){var s=new A.E5(this.e,A.dD(a),null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.scH(this.e) -b.sce(A.dD(a))}} -A.ex.prototype={ -bf(a){var s=new A.E6(this.f,this.r,this.e,A.dD(a),null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.siS(this.e) -b.saza(this.f) -b.satM(this.r) -b.sce(A.dD(a))}} -A.iT.prototype={} -A.jC.prototype={ -bf(a){var s=new A.DY(this.e,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.sJh(this.e)}} -A.Cq.prototype={ -p0(a){var s,r=a.b -r.toString -t.Wz.a(r) -s=this.f -if(r.gpC()!==s){r.spC(s) -r=a.gbk() -if(r!=null)r.ag()}}} -A.B_.prototype={ -bf(a){var s=new A.DW(this.e,0,null,null,new A.b8(),A.at()) -s.be() -s.a_(0,null) -return s}, -bj(a,b){b.sJh(this.e)}} -A.eB.prototype={ -bf(a){return A.aXD(A.lH(this.f,this.e))}, -bj(a,b){b.sWA(A.lH(this.f,this.e))}, -dk(){var s,r,q,p,o=this.e,n=this.f -A:{s=1/0===o -if(s){r=1/0===n -q=n}else{q=null -r=!1}if(r){r="SizedBox.expand" -break A}if(0===o)r=0===(s?q:n) -else r=!1 -if(r){r="SizedBox.shrink" -break A}r="SizedBox" -break A}p=this.a -return p==null?r:r+"-"+p.k(0)}} -A.dX.prototype={ -bf(a){return A.aXD(this.e)}, -bj(a,b){b.sWA(this.e)}} -A.Rw.prototype={ -bf(a){var s=new A.UW(this.e,this.f,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.sLb(this.e) -b.sL9(this.f)}} -A.U2.prototype={ -bf(a){var s=null,r=new A.UO(s,s,s,this.x,B.E7,this.e,A.dD(a),s,new A.b8(),A.at()) -r.be() -r.sR(s) -return r}, -bj(a,b){b.siS(this.e) -b.savJ(null) -b.sLb(null) -b.savF(null) -b.sL9(this.x) -b.sasu(B.E7) -b.sce(A.dD(a))}} -A.wn.prototype={ -bf(a){var s=new A.E4(this.e,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.sC2(this.e)}, -cf(){return new A.a4f(this,B.ae)}} -A.a4f.prototype={} -A.Rg.prototype={ -bf(a){var s=null,r=new A.E1(s,s,s,new A.b8(),A.at()) -r.be() -r.sR(s) -return r}, -bj(a,b){b.sa3M(null) -b.sa3L(null)}} -A.Yc.prototype={ -bf(a){var s=new A.V6(this.e,a.aA(t.I).w,null,A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.scH(this.e) -b.sce(a.aA(t.I).w)}} -A.a6q.prototype={ -Rn(a){var s,r=this.e,q=r.x2 -if(q!=null)return q -s=!0 -if(r.k3==null){if(r.ok==null)r=r.ry!=null -else r=s -s=r}if(!s)return null -return A.dD(a)}} -A.xq.prototype={ -bf(a){var s=A.dD(a) -s=new A.E9(this.e,s,this.r,this.w,A.at(),0,null,null,new A.b8(),A.at()) -s.be() -s.a_(0,null) -return s}, -bj(a,b){var s -b.siS(this.e) -s=A.dD(a) -b.sce(s) -s=this.r -if(b.a5!==s){b.a5=s -b.ag()}s=this.w -if(s!==b.au){b.au=s -b.bb() -b.br()}}} -A.il.prototype={ -p0(a){var s,r,q=this,p=a.b -p.toString -t.B.a(p) -s=q.f -r=p.w!=s -if(r)p.w=s -s=q.r -if(p.e!=s){p.e=s -r=!0}s=q.w -if(p.f!=s){p.f=s -r=!0}s=q.x -if(p.r!=s){p.r=s -r=!0}s=q.y -if(p.x!=s){p.x=s -r=!0}s=q.z -if(p.y!=s){p.y=s -r=!0}if(r){p=a.gbk() -if(p!=null)p.ag()}}} -A.Ul.prototype={ -K(a){var s=this -return A.b9Z(s.f,s.x,null,null,s.c,a.aA(t.I).w,s.d,s.r)}, -gR(){return this.x}} -A.BD.prototype={ -gahU(){switch(this.e.a){case 0:return!0 -case 1:var s=this.w -return s===B.T||s===B.co}}, -MH(a){var s=this.x -s=this.gahU()?A.dD(a):null -return s}, -bf(a){var s=this -return A.bal(B.v,s.w,s.e,s.f,s.r,s.as,s.z,s.MH(a),s.y)}, -bj(a,b){var s=this,r=s.e -if(b.n!==r){b.n=r -b.ag()}r=s.f -if(b.U!==r){b.U=r -b.ag()}r=s.r -if(b.a0!==r){b.a0=r -b.ag()}r=s.w -if(b.a3!==r){b.a3=r -b.ag()}r=s.MH(a) -if(b.a5!=r){b.a5=r -b.ag()}r=s.y -if(b.au!==r){b.au=r -b.ag()}if(B.v!==b.ao){b.ao=B.v -b.bb() -b.br()}b.sDV(s.as)}} -A.wS.prototype={} -A.kr.prototype={} -A.fZ.prototype={ -p0(a){var s,r,q=a.b -q.toString -t.J.a(q) -s=this.f -r=q.e!==s -if(r)q.e=s -s=this.r -if(q.f!==s){q.f=s -r=!0}if(r){q=a.gbk() -if(q!=null)q.ag()}}} -A.kA.prototype={} -A.a07.prototype={ -bf(a){var s=A.dD(a) -s=new A.Ec(B.am,B.bZ,0,B.bZ,0,B.ii,s,B.d_,B.v,A.at(),0,null,null,new A.b8(),A.at()) -s.be() -s.a_(0,null) -return s}, -bj(a,b){var s -b.sAL(B.am) -b.siS(B.bZ) -b.sDV(0) -b.sayf(B.bZ) -b.sayk(0) -b.sar2(B.ii) -s=A.dD(a) -if(b.L!=s){b.L=s -b.ag()}if(b.P!==B.d_){b.P=B.d_ -b.ag()}if(B.v!==b.ao){b.ao=B.v -b.bb() -b.br()}}} -A.Ve.prototype={ -bf(a){var s,r,q,p,o=this,n=null,m=o.r -if(m==null)m=a.aA(t.I).w -s=o.x -r=o.y -q=A.CB(a) -if(r.j(0,B.Mo))r=new A.iJ(1) -p=s===B.bd?"\u2026":n -s=new A.os(A.xH(p,q,o.z,o.as,o.e,o.f,m,o.ax,r,o.at),o.w,s,o.ch,!1,0,n,n,new A.b8(),A.at()) -s.be() -s.a_(0,n) -s.sq4(o.ay) -return s}, -bj(a,b){var s,r=this -b.sde(r.e) -b.so9(r.f) -s=r.r -b.sce(s==null?a.aA(t.I).w:s) -b.sa3B(r.w) -b.sawJ(r.x) -b.sdO(r.y) -b.snX(r.z) -b.sk5(r.as) -b.soa(r.at) -b.stq(r.ax) -s=A.CB(a) -b.sjN(s) -b.sq4(r.ay) -b.sa2Q(r.ch)}} -A.RA.prototype={ -bf(a){var s=this,r=null,q=new A.V_(s.e,r,s.r,r,s.x,s.y,r,r,s.as,s.at,r,new A.b8(),A.at()) -q.be() -q.sR(r) -return q}, -bj(a,b){var s=this -b.cg=s.e -b.dI=null -b.bX=s.r -b.ci=null -b.c9=s.x -b.ea=s.y -b.fE=b.eb=null -b.fk=s.as -b.D=s.at}} -A.rb.prototype={ -bf(a){var s=this -return A.ban(s.w,null,s.e,s.r,s.f,!0)}, -bj(a,b){var s,r=this -b.dI=r.e -b.bX=r.f -b.ci=r.r -s=r.w -if(!b.c9.j(0,s)){b.c9=s -b.bb()}if(b.D!==B.aG){b.D=B.aG -b.bb()}}} -A.j6.prototype={ -bf(a){var s=new A.V2(null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}} -A.kF.prototype={ -bf(a){var s=new A.E0(this.e,null,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.sa_7(this.e) -b.sKL(null)}} -A.Mg.prototype={ -bf(a){var s=new A.DO(this.e,null,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.sWo(this.e) -b.sKL(null)}} -A.TC.prototype={ -bf(a){var s=new A.E2(null,this.f,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.cg=null -b.D=this.f}} -A.oA.prototype={ -bf(a){var s=this,r=null,q=s.e,p=s.Rn(a),o=new A.V3($,$,$,$,$,r,r,r,r,r,r,r,r,new A.b8(),A.at()) -o.be() -o.sR(r) -o.cZ$=q -o.B_$=s.f -o.B0$=s.r -o.B2$=o.B1$=!1 -o.B3$=s.w -o.B4$=p -o.Vo(q) -return o}, -bj(a,b){var s=this -b.sapR(s.f) -b.sas3(s.r) -b.sarZ(!1) -b.sap0(!1) -b.sa0N(s.e) -b.sce(s.Rn(a)) -b.savj(s.w)}} -A.MM.prototype={ -bf(a){var s=new A.UK(!0,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.sap1(!0)}} -A.nN.prototype={ -bf(a){var s=new A.UQ(this.e,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.sas_(this.e)}} -A.R8.prototype={ -bf(a){var s=new A.UT(this.e,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.spD(this.e)}} -A.o3.prototype={ -K(a){return this.c}, -gR(){return this.c}} -A.dO.prototype={ -K(a){return this.c.$1(a)}} -A.tu.prototype={ -ah(){return new A.a8R()}, -Ab(a,b){return this.c.$2(a,b)}} -A.a8R.prototype={ -K(a){return this.a.Ab(a,this.ga3c())}} -A.v3.prototype={ -bf(a){var s=new A.J8(this.e,!0,B.aG,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){t.rj.a(b) -b.sdQ(this.e) -b.saux(!0)}} -A.J8.prototype={ -sdQ(a){if(a.j(0,this.cg))return -this.cg=a -this.bb()}, -saux(a){return}, -b1(a,b){var s,r,q,p,o=this,n=o.gC() -if(n.a>0&&n.b>0){n=a.gcw() -s=o.gC() -r=b.a -q=b.b -$.ab() -p=A.bt() -p.f=!0 -p.r=o.cg.gp() -n.h_(new A.w(r,q,r+s.a,q+s.b),p)}n=o.u$ -if(n!=null)a.e4(n,b)}} -A.aLJ.prototype={ -$0(){var s=$.c6,r=this.a -if(s.p2$===B.fz)s.k4$.push(new A.aLI(r)) -else r.Bo()}, -$S:0} -A.aLI.prototype={ -$1(a){this.a.Bo()}, -$S:4} -A.aLK.prototype={ -$1(a){var s=a==null?A.aSU(a):a -return this.a.nQ(s)}, -$S:200} -A.aLL.prototype={ -$1(a){var s=a==null?A.aSU(a):a -return this.a.G4(s)}, -$S:200} -A.de.prototype={ -AG(){return A.di(!1,t.y)}, -ZM(a){return!1}, -ZS(a){}, -ZD(){}, -ZB(){}, -Ks(){}, -vI(a){var s=a.gjU(),r=s.gfa().length===0?"/":s.gfa(),q=s.gq3() -q=q.gan(q)?null:s.gq3() -r=A.aad(s.gl8().length===0?null:s.gl8(),r,q).guY() -A.po(r,0,r.length,B.ao,!1) -return A.di(!1,t.y)}, -vH(){}, -Yr(){}, -Yq(){}, -Yp(a){}, -rz(a){}, -Ys(a){}, -rA(){var s=0,r=A.I(t.s1),q -var $async$rA=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:q=B.lI -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$rA,r)}, -Yo(){}} -A.Zn.prototype={ -is(a){B.b.J(this.D$,a) -return B.b.J(this.bI$,a)}, -Bw(){var s=0,r=A.I(t.s1),q,p=this,o,n,m,l -var $async$Bw=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:o=A.aa(p.bI$,t.X5) -n=o.length -m=!1 -l=0 -case 3:if(!(l=s.b&&s.c>=s.d) -else s=!0}else s=!1 -if(s)m=A.b8G(new A.dX(B.pE,n,n),0,0) -else{s=o.d -if(s!=null)m=new A.ex(s,n,n,m,n)}r=o.gaj2() -if(r!=null)m=new A.bR(r,m,n) -s=o.f -if(s!=null)m=A.v4(m,s,!0) -s=o.at -if(s!==B.v){q=A.dD(a) -p=o.w -p.toString -m=A.aeq(m,s,new A.a1P(q==null?B.i:q,p,n))}s=o.w -if(s!=null)m=A.vh(m,s,B.dT) -s=o.x -if(s!=null)m=A.vh(m,s,B.qR) -s=o.y -if(s!=null)m=new A.dX(s,m,n) -s=o.z -if(s!=null)m=new A.bR(s,m,n) -s=o.Q -if(s!=null)m=A.YV(o.as,m,n,s,!0) -m.toString -return m}, -gR(){return this.c}} -A.a1P.prototype={ -Do(a){return this.c.Dp(new A.w(0,0,0+a.a,0+a.b),this.b)}, -DQ(a){return!a.c.j(0,this.c)||a.b!==this.b}} -A.iV.prototype={ -N(){return"ContextMenuButtonType."+this.b}} -A.dr.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.dr&&b.c==s.c&&J.b(b.a,s.a)&&b.b===s.b}, -gt(a){return A.N(this.c,this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"ContextMenuButtonItem "+this.b.k(0)+", "+A.j(this.c)}} -A.NA.prototype={ -a3q(a,b){var s,r -A.aVe() -s=A.Du(a,!0) -s.toString -r=A.aoN(a,!1) -if(r==null)r=null -else{r=r.c -r.toString}r=A.rq(new A.aeL(A.aR6(a,r),b),!1,!1) -$.q1=r -s.mg(0,r) -$.lN=this}, -fI(a){if($.lN!==this)return -A.aVe()}} -A.aeL.prototype={ -$1(a){return new A.tM(this.a.a,this.b.$1(a),null)}, -$S:15} -A.nI.prototype={ -qa(a,b){return A.afi(b,this.w,null,this.y,this.x)}, -cI(a){return!J.b(this.w,a.w)||!J.b(this.x,a.x)||!J.b(this.y,a.y)}} -A.afj.prototype={ -$1(a){var s=a.aA(t.Uf) -if(s==null)s=B.eO -return A.afi(this.e,s.w,this.a,this.d,s.x)}, -$S:387} -A.a4c.prototype={ -K(a){throw A.i(A.h_("A DefaultSelectionStyle constructed with DefaultSelectionStyle.fallback cannot be incorporated into the widget tree, it is meant only to provide a fallback value returned by DefaultSelectionStyle.of() when no enclosing default selection style is present in a BuildContext."))}} -A.PG.prototype={ -acH(){var s,r -switch(A.aT().a){case 3:s=A.kM($.aTO(),t.Vz,t.C) -for(r=$.aTM(),r=new A.eS(r,r.r,r.e);r.v();)s.m(0,r.d,B.y) -return s -case 0:case 1:case 5:case 2:case 4:return $.aTO()}switch(A.aT().a){case 0:case 1:case 3:case 5:return null -case 2:return B.DF -case 4:return $.b2n()}}, -K(a){var s=this.c,r=this.acH() -if(r!=null)s=A.aRZ(s,"",r) -return A.aRZ(s,"",A.b70())}, -gR(){return this.c}} -A.PL.prototype={ -ol(a){return new A.al(0,a.b,0,a.d)}, -oo(a,b){var s,r=this.b,q=r.a,p=q+b.a-a.a -r=r.b -s=r+b.b-a.b -if(p>0)q-=p -return new A.h(q,s>0?r-s:r)}, -mT(a){return!this.b.j(0,a.b)}} -A.jD.prototype={ -N(){return"DismissDirection."+this.b}} -A.Ba.prototype={ -ah(){var s=null -return new A.HA(new A.by(s,t.A),s,s,s)}, -gR(){return this.c}} -A.HP.prototype={ -N(){return"_FlingGestureKind."+this.b}} -A.HA.prototype={ -aw(){var s,r,q=this -q.a7G() -s=q.gkc() -s.bC() -r=s.cP$ -r.b=!0 -r.a.push(q.gadJ()) -s.bC() -s.d_$.G(0,q.gadL()) -q.HS()}, -gkc(){var s,r=this,q=r.d -if(q===$){r.a.toString -s=A.bX(null,B.a3,null,null,r) -r.d!==$&&A.aK() -r.d=s -q=s}return q}, -gjV(){var s=this.gkc().r -if(!(s!=null&&s.a!=null)){s=this.f -if(s==null)s=null -else{s=s.r -s=s!=null&&s.a!=null}s=s===!0}else s=!0 -return s}, -l(){this.gkc().l() -var s=this.f -if(s!=null)s.l() -this.a7F()}, -gjk(){var s=this.a.x -return s===B.Ou||s===B.qT||s===B.mr}, -un(a){var s,r,q,p -if(a===0)return B.qV -if(this.gjk()){s=this.c.aA(t.I).w -A:{r=B.aj===s -if(r&&a<0){q=B.mr -break A}p=B.i===s -if(p&&a>0){q=B.mr -break A}if(!r)q=p -else q=!0 -if(q){q=B.qT -break A}q=null}return q}return a>0?B.qU:B.Ov}, -gFv(){this.a.toString -B.a2B.h(0,this.un(this.w)) -return 0.4}, -gST(){var s=this.c.gC() -s.toString -return this.gjk()?s.a:s.b}, -adT(a){var s,r,q=this -if(q.x)return -q.y=!0 -s=q.gkc() -r=s.r -if(r!=null&&r.a!=null){r=s.x -r===$&&A.a() -q.w=r*q.gST()*J.ej(q.w) -s.fg()}else{q.w=0 -s.sp(0)}q.ar(new A.aBq(q))}, -adU(a){var s,r,q,p=this -if(p.y){s=p.gkc().r -s=s!=null&&s.a!=null}else s=!0 -if(s)return -s=a.e -s.toString -r=p.w -switch(p.a.x.a){case 1:case 0:p.w=r+s -break -case 4:s=r+s -if(s<0)p.w=s -break -case 5:s=r+s -if(s>0)p.w=s -break -case 2:switch(p.c.aA(t.I).w.a){case 0:s=p.w+s -if(s>0)p.w=s -break -case 1:s=p.w+s -if(s<0)p.w=s -break}break -case 3:switch(p.c.aA(t.I).w.a){case 0:s=p.w+s -if(s<0)p.w=s -break -case 1:s=p.w+s -if(s>0)p.w=s -break}break -case 6:p.w=0 -break}if(J.ej(r)!==J.ej(p.w))p.ar(new A.aBr(p)) -s=p.gkc() -q=s.r -if(!(q!=null&&q.a!=null))s.sp(Math.abs(p.w)/p.gST())}, -adM(){this.a.toString}, -HS(){var s=this,r=J.ej(s.w),q=s.gkc(),p=s.gjk(),o=s.a -if(p){o.toString -p=new A.h(r,0)}else{o.toString -p=new A.h(0,r)}o=t.Ni -s.e=new A.aw(t.v.a(q),new A.aA(B.f,p,o),o.i("aw"))}, -ab4(a){var s,r,q,p,o=this -if(o.w===0)return B.pe -s=a.a -r=s.a -q=s.b -if(o.gjk()){s=Math.abs(r) -if(s-Math.abs(q)<400||s<700)return B.pe -p=o.un(r)}else{s=Math.abs(q) -if(s-Math.abs(r)<400||s<700)return B.pe -p=o.un(q)}if(p===o.un(o.w))return B.ajc -return B.ajd}, -adS(a){var s,r,q,p,o=this -if(o.y){s=o.gkc().r -s=s!=null&&s.a!=null}else s=!0 -if(s)return -o.y=!1 -s=o.gkc() -if(s.gba()===B.a9){o.uy() -return}r=a.c -q=r.a -p=o.gjk()?q.a:q.b -switch(o.ab4(r).a){case 1:if(o.gFv()>=1){s.d6() -break}o.w=J.ej(p) -s.Kb(Math.abs(p)*0.0033333333333333335) -break -case 2:o.w=J.ej(p) -s.Kb(-Math.abs(p)*0.0033333333333333335) -break -case 0:if(s.gba()!==B.Z){r=s.x -r===$&&A.a() -if(r>o.gFv())s.cc() -else s.d6()}break}}, -yy(a){return this.adK(a)}, -adK(a){var s=0,r=A.I(t.H),q=this -var $async$yy=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:s=a===B.a9&&!q.y?2:3 -break -case 2:s=4 -return A.p(q.uy(),$async$yy) -case 4:case 3:if(q.c!=null)q.oe() -return A.G(null,r)}}) -return A.H($async$yy,r)}, -uy(){var s=0,r=A.I(t.H),q,p=this,o -var $async$uy=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:if(p.gFv()>=1){p.gkc().d6() -s=1 -break}s=3 -return A.p(p.F9(),$async$uy) -case 3:o=b -if(p.c!=null)if(o)p.am7() -else p.gkc().d6() -case 1:return A.G(q,r)}}) -return A.H($async$uy,r)}, -F9(){var s=0,r=A.I(t.y),q,p=this -var $async$F9=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:p.a.toString -q=!0 -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$F9,r)}, -am7(){var s,r=this -r.a.toString -s=r.un(r.w) -r.a.w.$1(s)}, -K(a){var s,r,q,p,o,n,m,l,k=this,j=null -k.lD(a) -s=k.a -s.toString -r=k.r -if(r!=null){s=k.gjk()?B.L:B.am -q=k.z -p=q.a -return A.aZn(s,0,A.a8(j,q.b,p),r)}r=k.e -r===$&&A.a() -o=A.oK(new A.o3(s.c,k.as),r,j,!0) -if(s.x===B.qV)return o -r=k.gjk()?k.gRE():j -q=k.gjk()?k.gRF():j -p=k.gjk()?k.gRD():j -n=k.gjk()?j:k.gRE() -m=k.gjk()?j:k.gRF() -l=k.gjk()?j:k.gRD() -return A.eP(s.ax,o,B.W,!1,j,j,j,j,p,r,q,j,j,j,j,j,j,j,j,j,j,j,l,n,m)}} -A.aBq.prototype={ -$0(){this.a.HS()}, -$S:0} -A.aBr.prototype={ -$0(){this.a.HS()}, -$S:0} -A.Le.prototype={ -bF(){this.cE() -this.cv() -this.eG()}, -l(){var s=this,r=s.bl$ -if(r!=null)r.O(s.geq()) -s.bl$=null -s.aQ()}} -A.Lf.prototype={ -aw(){this.b3() -if(this.gjV())this.ka()}, -dA(){var s=this.dh$ -if(s!=null){s.a7() -s.d8() -this.dh$=null}this.iF()}} -A.nL.prototype={ -ah(){return new A.HG(A.mw(null),A.mw(null))}, -asG(a,b,c){return this.d.$3(a,b,c)}, -aya(a,b,c){return this.e.$3(a,b,c)}, -gR(){return this.f}} -A.HG.prototype={ -aw(){var s,r=this -r.b3() -r.d=r.a.c.gba() -s=r.a.c -s.bC() -s=s.cP$ -s.b=!0 -s.a.push(r.gEE()) -r.Qv()}, -P0(a){var s,r=this,q=r.d -q===$&&A.a() -s=r.a9V(a,q) -r.d=s -if(q!==s)r.Qv()}, -aV(a){var s,r,q=this -q.bm(a) -s=a.c -if(s!==q.a.c){r=q.gEE() -s.dj(r) -s=q.a.c -s.bC() -s=s.cP$ -s.b=!0 -s.a.push(r) -q.P0(q.a.c.gba())}}, -a9V(a,b){switch(a.a){case 0:case 3:return a -case 1:switch(b.a){case 0:case 3:case 1:return a -case 2:return b}break -case 2:switch(b.a){case 0:case 3:case 2:return a -case 1:return b}break}}, -Qv(){var s=this,r=s.d -r===$&&A.a() -switch(r.a){case 0:case 1:s.e.sbk(s.a.c) -s.f.sbk(B.dQ) -break -case 2:case 3:s.e.sbk(B.fZ) -s.f.sbk(new A.hB(s.a.c,new A.bp(A.c([],t.F),t.T),0)) -break}}, -l(){this.a.c.dj(this.gEE()) -this.aQ()}, -K(a){var s=this.a -return s.asG(a,this.e,s.aya(a,this.f,s.f))}} -A.a19.prototype={ -bf(a){var s=new A.a5x(this.e,this.f,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){var s -this.On(a,b) -s=this.f -b.am=s -if(!s){s=b.a4 -if(s!=null)s.$0() -b.a4=null}else if(b.a4==null)b.bb()}} -A.a5x.prototype={ -b1(a,b){var s=this -if(s.am)if(s.a4==null)s.a4=a.a.aok(s.D) -s.iE(a,b)}} -A.eD.prototype={ -sde(a){this.n_(this.a.vz(B.be,B.fF,a))}, -ap8(a,b,c){var s,r,q,p=null,o=this.a -if(!o.ga_w()||!c)return A.ef(p,p,p,p,p,p,p,p,p,b,o.a) -s=b.E(B.Jx) -o=this.a -r=o.c -o=o.a -q=r.a -r=r.b -return A.ef(A.c([A.ef(p,p,p,p,p,p,p,p,p,p,B.c.a6(o,0,q)),A.ef(p,p,p,p,p,p,p,p,p,s,B.c.a6(o,q,r)),A.ef(p,p,p,p,p,p,p,p,p,p,B.c.cD(o,r))],t.Ne),p,p,p,p,p,p,p,p,b,p)}, -stO(a){var s,r=this.a,q=r.a.length,p=a.b -if(q=s.a&&p<=s.b?s:B.be,a))}} -A.xN.prototype={} -A.hJ.prototype={} -A.aBp.prototype={ -h0(a){return 0}, -mi(a){return a>=this.b}, -fb(a){var s,r,q,p=this.c,o=this.d -if(p[o].a>a){s=o -o=0}else s=11 -for(r=s-1;o=n)return r.h(s,o) -else if(a<=n)q=o-1 -else p=o+1}return null}, -apd(){var s,r=this,q=null,p=r.a.z -if(p===B.oW)return q -s=A.c([],t.ZD) -if(p.b&&r.gAz())s.push(new A.dr(new A.agI(r),B.eL,q)) -if(p.a&&r.gAk())s.push(new A.dr(new A.agJ(r),B.eM,q)) -if(p.c&&r.gta())s.push(new A.dr(new A.agK(r),B.he,q)) -if(p.d&&r.gNb())s.push(new A.dr(new A.agL(r),B.hf,q)) -return s}, -MK(){var s,r,q,p,o,n,m=this.a.c.a.b,l=this.gaF(),k=l.aK,j=k.e.ayw(),i=this.a.c.a.a -if(j!==i||!m.gca()||m.a===m.b){l=k.df().gbY() -return new A.IZ(k.df().gbY(),l)}s=m.a -r=m.b -q=B.c.a6(i,s,r) -p=q.length===0 -o=l.tI(new A.bI(s,s+(p?B.cT:new A.f8(q)).gad(0).length)) -n=l.tI(new A.bI(r-(p?B.cT:new A.f8(q)).gaC(0).length,r)) -l=o==null?null:o.d-o.b -if(l==null)l=k.df().gbY() -s=n==null?null:n.d-n.b -return new A.IZ(s==null?k.df().gbY():s,l)}, -gXH(){var s,r,q,p,o,n=this.gaF(),m=n.w1 -if(m!=null)return new A.G5(m,null) -s=this.MK() -r=s.b -q=null -p=s.a -q=p -o=r -return A.bbG(q,n,n.xh(this.a.c.a.b),o)}, -gIS(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null,e=g.apd() -if(e==null){e=g.x.ay -s=g.gAk()?new A.agM(g):f -r=g.gAz()?new A.agN(g):f -q=g.gta()?new A.agO(g):f -p=g.gNb()?new A.agP(g):f -o=g.gavm()?new A.agQ(g):f -n=g.ga2O()?new A.agR(g):f -m=g.ga3i()?new A.agS(g):f -l=g.ga_S()?new A.agT(g):f -k=t.ZD -j=A.c([],k) -i=q!=null -if(!i||e!==B.lX){h=A.aT()===B.as -e=A.c([],k) -if(r!=null)e.push(new A.dr(r,B.eL,f)) -if(s!=null)e.push(new A.dr(s,B.eM,f)) -if(i)e.push(new A.dr(q,B.he,f)) -s=m!=null -if(s&&h)e.push(new A.dr(m,B.iQ,f)) -if(p!=null)e.push(new A.dr(p,B.hf,f)) -if(o!=null)e.push(new A.dr(o,B.md,f)) -if(n!=null)e.push(new A.dr(n,B.me,f)) -if(s&&!h)e.push(new A.dr(m,B.iQ,f)) -B.b.a_(j,e)}if(l!=null)j.push(new A.dr(l,B.mf,f)) -e=j}B.b.a_(e,g.gamk()) -return e}, -gamk(){var s,r,q,p=A.c([],t.ZD),o=this.a,n=o.c.a.b -if(o.f||!n.gca()||n.a===n.b)return p -for(o=this.go,s=o.length,r=0;r0||!r.gi2())return -s=r.a.c.a -if(s.j(0,r.ok))return -r.z.toString -$.cv().zj(s) -r.ok=s}, -Rb(a){var s,r,q,p,o,n,m,l,k=this -if(!B.b.gcM(k.ghg().f).r.goZ()){s=B.b.gcM(k.ghg().f).at -s.toString -return new A.ou(s,a)}s=k.gaF() -r=s.gC() -if(k.a.k2===1){s=a.c -q=a.a -p=r.a -o=s-q>=p?p/2-a.gbp().a:A.E(0,s-p,q) -n=B.dw}else{m=A.aXC(a.gbp(),Math.max(a.d-a.b,s.aK.df().gbY()),a.c-a.a) -s=m.d -q=m.b -p=r.b -o=s-q>=p?p/2-m.gbp().b:A.E(0,s-p,q) -n=B.ed}s=B.b.gcM(k.ghg().f).at -s.toString -q=B.b.gcM(k.ghg().f).z -q.toString -p=B.b.gcM(k.ghg().f).Q -p.toString -l=A.E(o+s,q,p) -p=B.b.gcM(k.ghg().f).at -p.toString -return new A.ou(l,a.e0(n.ak(0,p-l)))}, -z1(){var s,r,q,p,o,n,m=this -if(!m.gi2()){s=m.a -r=s.c.a -s=s.bo;(s==null?m:s).glr() -s=m.a.bo -s=(s==null?m:s).glr() -q=A.aZN(m) -$.cv().EH(q,s) -s=q -m.z=s -m.W0() -m.TS() -m.z.toString -s=m.fr -s===$&&A.a() -p=m.guZ() -o=m.a.db -n=$.cv() -n.Hk(s.d,s.r,s.w,o,p) -n.zj(r) -n.Ho() -s=m.a.bo -if((s==null?m:s).glr().f.a){m.z.toString -n.ako()}m.ok=r}else{m.z.toString -$.cv().Ho()}}, -PL(){var s,r,q=this -if(q.gi2()){s=q.z -s.toString -r=$.cv() -if(r.d===s)r.PF() -q.aH=q.ok=q.z=null -q.a17()}}, -akU(){if(this.rx)return -this.rx=!0 -A.fE(this.gakx())}, -aky(){var s,r,q,p,o,n=this -n.rx=!1 -s=n.gi2() -if(!s)return -s=n.z -s.toString -r=$.cv() -if(r.d===s)r.PF() -n.ok=n.z=null -s=n.a.bo;(s==null?n:s).glr() -s=n.a.bo -s=(s==null?n:s).glr() -q=A.aZN(n) -r.EH(q,s) -p=q -n.z=p -r.Ho() -s=n.fr -s===$&&A.a() -o=n.guZ() -r.Hk(s.d,s.r,s.w,n.a.db,o) -r.zj(n.a.c.a) -n.ok=n.a.c.a}, -amS(){this.ry=!1 -$.a1.ap$.d.O(this.gzz())}, -CP(){var s=this -if(s.a.d.gc5())s.z1() -else{s.ry=!0 -$.a1.ap$.d.a9(s.gzz()) -s.a.d.it()}}, -VL(){var s,r,q=this -if(q.Q!=null){s=q.a.d.gc5() -r=q.Q -if(s){r.toString -r.cQ(q.a.c.a)}else{r.l() -q.Q=null}}}, -al4(a){var s,r,q,p,o -if(a==null)return!1 -s=this.c -s.toString -r=t.Lm -q=a.l6(r) -if(q==null)return!1 -for(p=s;p!=null;){o=p.l6(r) -if(o===q)return!0 -if(o==null)p=null -else{s=o.c -s.toString -p=s}}return!1}, -adC(a){var s,r,q,p=this,o=a instanceof A.rZ -if(!o&&!(a instanceof A.j7))return -A:{if(!(o&&p.at!=null))o=a instanceof A.j7&&p.at==null -else o=!0 -if(o)break A -if(a instanceof A.j7&&!p.at.b.j(0,p.a.c.a)){p.at=null -p.Fw() -break A}s=a.b -o=!1 -r=s==null?null:s.l6(t.Lm) -o=$.a1.ap$.x.h(0,p.ay) -if(r==null)q=null -else{q=r.c -q.toString}o=!J.b(o,q)&&p.al4(s) -if(o)p.RA(a)}}, -RA(a){$.abW() -return}, -ye(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=g.a -f.toString -s=g.c -s.toString -r=f.c.a -q=g.gaF() -p=g.a -o=p.p2 -n=p.bL -m=p.x1 -$.abW() -p=p.eN -l=$.af() -k=new A.cb(!1,l) -j=new A.cb(!1,l) -i=new A.cb(!1,l) -h=new A.YP(s,q,o,g,null,r,k,j,i) -r=h.gW2() -q.bv.a9(r) -q.bU.a9(r) -h.I_() -r=h.gadg() -q=q.w1 -h.e!==$&&A.bs() -h.e=new A.VJ(s,new A.cb(B.a0Y,l),new A.r0(),p,B.cU,0,k,h.gafs(),h.gafu(),r,B.cU,0,j,h.gafm(),h.gafo(),r,i,B.X7,f,g.CW,g.cx,g.cy,o,g,n,m,g.x,q,new A.NA(),new A.NA()) -return h}, -yD(a,b){var s,r,q,p=this,o=p.a.c,n=o.a.a.length -if(n0}else q=!1 -r.r.sp(q)}, -gzl(){var s,r,q=this -if(q.a.d.gc5()){s=q.a -r=s.c.a.b -s=r.a===r.b&&s.as&&q.k4&&!q.gaF().fF}else s=!1 -return s}, -uV(){var s,r=this -if(!r.a.as)return -if(!r.k4)return -s=r.d -if(s!=null)s.bg() -r.gkM().sp(1) -if(r.a.a3)r.gkM().A2(r.gSm()).a.a.h9(r.gSK()) -else r.d=A.aZW(B.hk,new A.agx(r))}, -GU(){var s,r=this,q=r.y1 -if(q>0){$.a1.toString -$.b7();--q -r.y1=q -if(q===0)r.ar(new A.agp())}if(r.a.a3){q=r.d -if(q!=null)q.bg() -r.d=A.ck(B.z,new A.agq(r))}else{q=r.d -q=q==null?null:q.b!=null -if(q!==!0&&r.k4)r.d=A.aZW(B.hk,new A.agr(r)) -q=r.gkM() -s=r.gkM().x -s===$&&A.a() -q.sp(s===0?1:0)}}, -zr(a){var s=this,r=s.gkM() -r.sp(s.gaF().fF?1:0) -r=s.d -if(r!=null)r.bg() -s.d=null -if(a)s.y1=0}, -UL(){return this.zr(!0)}, -Hr(){var s=this -if(!s.gzl())s.UL() -else if(s.d==null)s.uV()}, -Qg(){var s,r,q,p=this -if(p.a.d.gc5()&&!p.a.c.a.b.gca()){s=p.gyg() -p.a.c.O(s) -r=p.a.c -q=p.OT() -q.toString -r.stO(q) -p.a.c.a9(s)}p.HV() -p.Hr() -p.VL() -p.ar(new A.agl()) -p.gWb().a3N()}, -abI(){var s,r,q,p=this -if(p.a.d.gc5()&&p.a.d.apQ())p.z1() -else if(!p.a.d.gc5()){p.PL() -s=p.a.c -s.n_(s.a.IV(B.be))}p.Hr() -p.VL() -s=p.a.d.gc5() -r=$.a1 -if(s){r.bI$.push(p) -s=p.c -s.toString -p.xr=A.ld(s).ay.d -if(!p.a.x)p.zf(!0) -q=p.OT() -if(q!=null)p.yD(q,null)}else{r.is(p) -p.ar(new A.agn(p))}p.oe()}, -OT(){var s,r=this,q=r.a,p=q.b8&&q.k2===1&&!r.ry&&!r.k3 -r.k3=!1 -if(p)s=A.cp(B.k,0,q.c.a.a.length,!1) -else{q=q.c.a -s=!q.b.gca()?A.mW(B.k,q.a.length):null}return s}, -aau(a){if(this.gaF().y==null||!this.gi2())return -this.W0()}, -W0(){var s=this.gaF(),r=s.gC(),q=s.bd(null) -s=this.z -if(!r.j(0,s.a)||!q.j(0,s.b)){s.a=r -s.b=q -$.cv().aln(r,q)}}, -TT(a){var s,r,q,p=this -if(!p.gi2())return -p.anr() -s=p.a.c.a.c -r=p.gaF() -q=r.tI(s) -if(q==null)q=r.jX(new A.ap(s.gca()?s.a:0,B.k)) -p.z.a3_(q) -p.amZ() -$.c6.k4$.push(p.gakR())}, -TS(){return this.TT(null)}, -VW(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=null -c.gzt() -s=A.aT() -if(s!==B.U)return -if(B.b.gcM(c.ghg().f).k4!==B.kN)return -s=c.gaF() -r=s.aK.e -r.toString -q=c.c -q.toString -q=A.c_(q,B.ln) -p=q==null?b:q.dx -c.a.toString -A:{q=c.c -q.toString -q=A.c_(q,B.dK) -q=q==null?b:q.gdO() -if(q==null)q=B.bz -break A}o=c.a.db -n=c.guZ() -c.a.toString -m=c.c -m.toString -m=A.afn(m) -l=new A.aH8(o,n,q,m,b,c.a.gk5().E(A.aS2(b,b,b,b,b,b,b,p,b,b,b)),c.n,s.gC(),r) -if(a)k=B.bL -else{q=c.aH -q=q==null?b:q.apJ(l) -k=q==null?B.bL:q}if(k.a<3)return -c.aH=l -j=A.c([],t.u1) -i=r.ob(!1) -h=new A.FD(i,0,0) -for(g=0;h.EB(1,h.c);g=f){r=h.d -f=g+(r==null?h.d=B.c.a6(i,h.b,h.c):r).length -r=g1){o=p.a.c.a.b -o=o.a!==o.b||o.c===0}else o=!0 -if(o)return -o=p.a.c.a -s=o.a -o=o.b.c -r=A.aw8(s,o) -q=r.b -if(o===s.length)r.TK(2,q) -else{r.TK(1,q) -r.EB(1,r.b)}o=r.a -p.hw(new A.cA(B.c.a6(o,0,r.b)+new A.f8(r.gT()).gaC(0)+new A.f8(r.gT()).gad(0)+B.c.cD(o,r.c),A.mW(B.k,r.b+r.gT().length),B.be),B.av)}, -TC(a){var s=this.a.c.a,r=a.a.M_(a.c,a.b) -this.hw(r,a.d) -if(r.j(0,s))this.Qg()}, -akZ(a){if(a.a)this.iV(new A.ap(this.a.c.a.a.length,B.k)) -else this.iV(B.fE)}, -abM(a){var s,r,q,p,o,n,m,l=this -if(a.b!==B.hY)return -s=B.b.gcM(l.ghg().f) -if(l.a.k2===1){r=l.ghg() -q=s.Q -q.toString -r.f7(q) -return}r=s.Q -r.toString -if(r===0){r=s.z -r.toString -r=r===0}else r=!1 -if(r)return -p=t._N.a(l.ay.gS()) -p.toString -o=A.asx(p,a) -r=s.at -r.toString -q=s.z -q.toString -n=s.Q -n.toString -m=A.E(r+o,q,n) -if(m===r)return -l.ghg().f7(m)}, -ac4(a){var s,r,q,p,o,n,m,l,k,j,i,h=this -if(h.a.k2===1)return -s=h.gaF() -r=s.jX(h.a.c.a.b.gdT()) -q=t._N.a(h.ay.gS()) -q.toString -p=A.asx(q,new A.eW(a.gBn()?B.aV:B.b_,B.hY)) -o=B.b.gcM(h.ghg().f) -if(a.gBn()){n=h.a.c.a -if(n.b.d>=n.a.length)return -n=r.b+p -m=o.Q -m.toString -l=s.gC() -k=o.at -k.toString -j=n+k>=m+l.b?new A.ap(h.a.c.a.a.length,B.k):s.ha(A.bA(s.bd(null),new A.h(r.a,n))) -i=h.a.c.a.b.IW(j.a)}else{if(h.a.c.a.b.d<=0)return -n=r.b+p -m=o.at -m.toString -j=n+m<=0?B.fE:s.ha(A.bA(s.bd(null),new A.h(r.a,n))) -i=h.a.c.a.b.IW(j.a)}h.iV(i.gdT()) -h.hw(h.a.c.a.iW(i),B.av)}, -anl(a){var s=a.b -this.iV(s.gdT()) -this.hw(a.a.iW(s),a.c)}, -gWb(){var s,r=this,q=r.L -if(q===$){s=A.c([],t.e) -r.L!==$&&A.aK() -q=r.L=new A.KK(r,new A.bp(s,t.d),t.Wp)}return q}, -agv(a){var s=this.Q -if(s==null)s=null -else{s=s.e -s===$&&A.a() -s=s.gtu()}if(s===!0){this.km(!1) -return null}s=this.c -s.toString -return A.lB(s,a,t.xm)}, -aiL(a,b){if(!this.RG)return -this.RG=!1 -A.lB(a,new A.ky(this.a.d),t.Rz)}, -K(c3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0=this,c1=null,c2={} -c0.lD(c3) -s=c0.a.p2 -A:{r=A.c_(c3,B.dK) -r=r==null?c1:r.gdO() -if(r==null)r=B.bz -break A}q=A.c_(c3,B.ln) -p=q==null?c1:q.dx -q=A.c_(c3,B.pj) -o=q==null?c1:q.dy -q=A.c_(c3,B.pk) -n=q==null?c1:q.fr -c2.a=null -B:{m=c0.a.p3 -if(B.aam.j(0,m)){c2.a=B.a68 -break B}if(B.aao.j(0,m)){c2.a=B.a67 -break B}if(B.aan.j(0,m)){c2.a=B.a69 -break B}c2.a=B.I8}q=c0.gi2() -l=c0.P -if(l===$){k=t.e -j=A.c([],k) -i=t.d -l=c0.a5 -if(l===$){h=A.c([],k) -c0.a5!==$&&A.aK() -l=c0.a5=new A.dg(c0.gakl(),new A.bp(h,i),t.Tx)}g=c0.au -if(g===$){h=A.c([],k) -c0.au!==$&&A.aK() -g=c0.au=new A.dg(c0.gank(),new A.bp(h,i),t.ZQ)}h=A.c([],k) -f=A.c([],k) -e=c0.gaa3() -d=c0.gahD() -c=A.c([],k) -b=c0.c -b.toString -b=new A.na(c0,e,d,new A.bp(c,i),t.dA).e1(b) -c=c0.gai2() -a=A.c([],k) -a0=c0.c -a0.toString -a0=new A.na(c0,c,d,new A.bp(a,i),t.Uy).e1(a0) -a=c0.gah6() -a1=c0.gahH() -a2=A.c([],k) -a3=c0.c -a3.toString -a2=new A.na(c0,a,a1,new A.bp(a2,i),t.Fb).e1(a3) -a3=A.pn(c0,e,d,!1,!1,!1,t._w).e1(a3) -e=A.c([],k) -a4=c0.c -a4.toString -e=new A.dg(c0.gac3(),new A.bp(e,i),t.vr).e1(a4) -a5=A.pn(c0,c,d,!1,!0,!1,t.P9).e1(a4) -a6=c0.gajh() -a7=A.pn(c0,a6,d,!1,!0,!1,t.cP).e1(a4) -a4=A.pn(c0,a,a1,!1,!0,!1,t.OO).e1(a4) -a8=c0.gWb() -a9=c0.c -a9.toString -b0=a8.e1(a9) -a8=a8.e1(a9) -a6=A.pn(c0,a6,d,!1,!0,!1,t.b5).e1(a9) -b1=c0.gabv() -b2=A.pn(c0,b1,d,!1,!0,!1,t.HH).e1(a9) -a9=A.pn(c0,c,d,!1,!0,!1,t.eI).e1(a9) -d=A.c([],k) -c=c0.c -c.toString -c=new A.KQ(c0,c0.gakY(),new A.bp(d,i),t.px).e1(c) -d=A.c([],k) -a=A.pn(c0,a,a1,!1,!0,!0,t.oB) -b3=c0.c -b3.toString -a=a.e1(b3) -b3=A.pn(c0,b1,a1,!0,!0,!0,t.bh).e1(b3) -a1=A.c([],k) -b1=c0.c -b1.toString -b1=new A.a6j(c0,new A.bp(a1,i)).e1(b1) -a1=A.c([],k) -b4=c0.c -b4.toString -b4=new A.a1q(c0,new A.bp(a1,i)).e1(b4) -a1=A.c([],k) -b5=c0.c -b5.toString -b5=new A.a4n(c0,new A.bp(a1,i)).e1(b5) -b6=c0.a3 -if(b6===$){a1=A.c([],k) -c0.a3!==$&&A.aK() -b6=c0.a3=new A.dg(c0.gamM(),new A.bp(a1,i),t.j5)}a1=c0.c -a1.toString -a1=b6.e1(a1) -b7=A.c([],k) -b8=c0.c -b8.toString -b8=new A.a2i(new A.bp(b7,i)).e1(b8) -k=A.c([],k) -b7=c0.c -b7.toString -b9=A.aG([B.afA,new A.Bb(!1,new A.bp(j,i)),B.aga,l,B.agq,g,B.JM,new A.B8(!0,new A.bp(h,i)),B.oY,new A.dg(c0.gagu(),new A.bp(f,i),t.OX),B.afJ,b,B.agw,a0,B.afK,a2,B.afX,a3,B.afP,e,B.agx,a5,B.agE,a7,B.agD,a4,B.agj,b0,B.agk,a8,B.ag8,a6,B.agy,b2,B.agC,a9,B.agA,c,B.p_,new A.dg(c0.gabL(),new A.bp(d,i),t.fn),B.afy,a,B.afz,b3,B.agc,b1,B.afH,b4,B.ag4,b5,B.agi,a1,B.afN,b8,B.afx,new A.a2j(new A.bp(k,i)).e1(b7)],t.u,t.od) -c0.P!==$&&A.aK() -c0.P=b9 -l=b9}return new A.a19(c0.gaat(),q,A.uB(l,new A.dO(new A.agH(c2,c0,s,p,o,n,r),c1)),c1)}, -Xa(){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=i.a -if(g.f){s=g.c.a.a -s=B.c.ak(g.e,s.length) -$.a1.toString -$.b7() -r=B.a6o.q(0,A.aT()) -if(r){q=i.y1>0?i.y2:h -if(q!=null&&q>=0&&q=0&&p<=g.c.a.a.length){o=A.c([],t.s6) -g=i.a -n=g.c.a.a.length-i.n -if(g.k2!==1){o.push(B.ak6) -o.push(new A.nh(new A.L(i.gaF().gC().a,0),B.aE,B.fw,h,h))}else o.push(B.ak5) -g=i.fr -g===$&&A.a() -p=A.c([A.ef(h,h,h,h,h,h,h,h,h,h,B.c.a6(i.a.c.a.a,0,n))],t.VO) -B.b.a_(p,o) -p.push(A.ef(h,h,h,h,h,h,h,h,h,h,B.c.cD(i.a.c.a.a,n))) -return A.ef(p,h,h,h,h,h,h,h,h,g,h)}m=!g.x&&g.d.gc5() -if(i.gUD()){g=i.a.c.a -l=!g.ga_w()||!m -p=i.fr -p===$&&A.a() -k=i.dy -k===$&&A.a() -k=k.c -k.toString -j=i.fx -j.toString -return A.bje(g,l,p,k,j)}g=i.a.c -p=i.c -p.toString -k=i.fr -k===$&&A.a() -return g.ap8(p,k,m)}} -A.ago.prototype={ -$0(){}, -$S:0} -A.agU.prototype={ -$1(a){var s=this.a -if(s.c!=null)s.iV(s.a.c.a.b.gdT())}, -$S:4} -A.ags.prototype={ -$1(a){var s=this.a -if(s.c!=null)s.iV(s.a.c.a.b.gdT())}, -$S:4} -A.agI.prototype={ -$0(){this.a.AA(B.aD)}, -$S:0} -A.agJ.prototype={ -$0(){this.a.Al(B.aD)}, -$S:0} -A.agK.prototype={ -$0(){this.a.pZ(B.aD)}, -$S:0} -A.agL.prototype={ -$0(){this.a.DG(B.aD)}, -$S:0} -A.agM.prototype={ -$0(){return this.a.Al(B.aD)}, -$S:0} -A.agN.prototype={ -$0(){return this.a.AA(B.aD)}, -$S:0} -A.agO.prototype={ -$0(){return this.a.pZ(B.aD)}, -$S:0} -A.agP.prototype={ -$0(){return this.a.DG(B.aD)}, -$S:0} -A.agQ.prototype={ -$0(){return this.a.BY(B.aD)}, -$S:0} -A.agR.prototype={ -$0(){return this.a.xu(B.aD)}, -$S:0} -A.agS.prototype={ -$0(){return this.a.xE(B.aD)}, -$S:0} -A.agT.prototype={ -$0(){return this.a.am5(B.aD)}, -$S:0} -A.agy.prototype={ -$0(){var s=0,r=A.I(t.H),q=this,p,o,n,m,l -var $async$$0=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:o=q.b -n=q.a -m=n.a -l=B.c.a6(m.c.a.a,o.a,o.b) -s=l.length!==0?2:3 -break -case 2:s=4 -return A.p(n.fy.CC(q.c.a,l,m.x),$async$$0) -case 4:p=b -if(p!=null&&n.gEC())n.T5(B.aD,p) -else n.fG() -case 3:return A.G(null,r)}}) -return A.H($async$$0,r)}, -$S:10} -A.agW.prototype={ -$1(a){var s,r=this -if(r.b)r.a.Q.hY() -if(r.c){s=r.a.Q -s.oW() -s=s.e -s===$&&A.a() -s.Ny()}}, -$S:4} -A.agX.prototype={ -$1(a){this.a.z1()}, -$S:4} -A.agt.prototype={ -$1(a){var s,r,q,p,o,n,m,l,k,j,i,h=this.a -h.x2=!1 -s=$.a1.ap$.x.h(0,h.w) -s=s==null?null:s.ga1() -t.CA.a(s) -if(s!=null){r=s.D.gca() -r=!r||h.ghg().f.length===0}else r=!0 -if(r)return -q=s.aK.df().gbY() -p=h.a.av.d -r=h.Q -if((r==null?null:r.c)!=null){o=r.c.tE(q).b -n=Math.max(o,48) -p=Math.max(o/2-h.Q.c.tD(B.cU,q).b+n/2,p)}m=h.a.av.Am(p) -l=h.Rb(s.jX(s.D.gdT())) -k=h.a.c.a.b -if(k.a===k.b)j=l.b -else{i=s.mJ(k) -if(i.length===0)j=l.b -else if(k.c=s)return s -if(s<=1)return a -return this.Pd(a)?a-1:a}, -fe(a){var s=this.a.length -if(s===0||a>=s)return null -if(a<0)return 0 -if(a===s-1)return s -if(s<=1)return a -s=a+1 -return this.Pd(s)?a+2:s}} -A.na.prototype={ -Sa(a){var s,r=this.e,q=r.Q -if(q!=null){q=q.e -q===$&&A.a() -q=!q.gtu()}else q=!0 -if(q)return -s=a.a -if(s.a!==s.M_(a.c,a.b).a)r.km(!1)}, -dM(a,b){var s,r,q,p,o,n,m=this,l=m.e,k=l.a.c.a.b -if(!k.gca())return null -s=l.Pn() -r=k.a -q=k.b -if(r!==q){r=s.fc(r) -if(r==null)r=l.a.c.a.a.length -q=s.fe(q-1) -if(q==null)q=0 -p=new A.jX(l.a.c.a,"",new A.bI(r,q),B.av) -m.Sa(p) -b.toString -return A.lB(b,p,t.UM)}r=a.a -o=m.r.$3(k.gnu(),r,m.f.$0()).a -q=k.c -if(r){r=s.fc(q) -if(r==null)r=l.a.c.a.a.length}else{r=s.fe(q-1) -if(r==null)r=0}n=A.cp(B.k,r,o,!1) -p=new A.jX(l.a.c.a,"",n,B.av) -m.Sa(p) -b.toString -return A.lB(b,p,t.UM)}, -ee(a){return this.dM(a,null)}, -gkp(){var s=this.e.a -return!s.x&&s.c.a.b.gca()}} -A.KJ.prototype={ -dM(a,b){var s,r,q,p,o,n,m,l,k=this,j=k.e,i=j.a,h=i.c.a,g=h.b,f=a.b||!i.b8 -i=g.a -s=g.b -r=i===s -if(!r&&!k.f&&f){b.toString -return A.lB(b,new A.jf(h,A.mW(B.k,a.a?s:i),B.av),t.gU)}q=g.gdT() -if(a.d){i=a.a -h=!1 -if(i){s=j.gaF().tG(q).b -if(new A.ap(s,B.at).j(0,q)){h=j.a.c.a.a -h=s!==h.length&&h.charCodeAt(q.a)!==10}}if(h)q=new A.ap(q.a,B.k) -else{if(!i){i=j.gaF().tG(q).a -i=new A.ap(i,B.k).j(0,q)&&i!==0&&j.a.c.a.a.charCodeAt(q.a-1)!==10}else i=!1 -if(i)q=new A.ap(q.a,B.at)}}i=k.r -if(i){h=g.c -s=g.d -p=a.a?h>s:h"))}, -gdw(){var s,r,q=this.x -if(q==null){s=A.c([],t.bp) -r=this.Q -while(r!=null){s.push(r) -r=r.Q}this.x=s -q=s}return q}, -gc5(){if(!this.glb()){var s=this.w -if(s==null)s=null -else{s=s.c -s=s==null?null:B.b.q(s.gdw(),this)}s=s===!0}else s=!0 -return s}, -glb(){var s=this.w -return(s==null?null:s.c)===this}, -gip(){return this.ghp()}, -PG(){var s,r,q,p,o=this.ay -if(o==null)return -this.ay=null -s=this.as -r=s.length -if(r!==0)for(q=0;q")).aL(0,B.b.gth(r))}}a.Q=null -a.PG() -B.b.J(this.as,a) -for(r=this.gdw(),q=r.length,p=0;p#"+s+q}, -$iae:1} -A.ai8.prototype={ -$1(a){return!a.ghd()&&a.b&&B.b.en(a.gdw(),A.f0())}, -$S:38} -A.ai7.prototype={ -$1(a){return a.ghp()===this.a}, -$S:38} -A.m_.prototype={ -gip(){return this}, -gho(){return this.b&&A.cY.prototype.gho.call(this)}, -gq7(){if(!(this.b&&B.b.en(this.gdw(),A.f0())))return B.pN -return A.cY.prototype.gq7.call(this)}, -DJ(a){if(a.Q==null)this.uQ(a) -if(this.gc5())a.k9(!0) -else a.oT()}, -aoQ(a){var s,r=this -if(a.Q==null)r.uQ(a) -s=r.w -if(s!=null)s.w.push(new A.a0I(r,a)) -s=r.w -if(s!=null)s.uJ()}, -k9(a){var s,r,q,p=this,o=p.fy -for(;;){if(o.length!==0){s=B.b.gaC(o) -if(s.b&&B.b.en(s.gdw(),A.f0())){s=B.b.gaC(o) -r=s.ay -if(r==null){q=s.Q -r=s.ay=q==null?null:q.gip()}s=r==null}else s=!0}else s=!1 -if(!s)break -o.pop()}o=A.jL(o) -if(!a||o==null){if(p.b&&B.b.en(p.gdw(),A.f0())){p.oT() -p.Sz(p)}return}o.k9(!0)}} -A.nQ.prototype={ -N(){return"FocusHighlightMode."+this.b}} -A.ai6.prototype={ -N(){return"FocusHighlightStrategy."+this.b}} -A.a0z.prototype={ -rz(a){return this.a.$1(a)}} -A.BJ.prototype={ -gakv(){return!0}, -l(){var s,r=this,q=r.e -if(q!=null)$.a1.is(q) -q=r.a -s=$.ee.bE$ -s===$&&A.a() -if(J.b(s.a,q.gZI())){$.fq.aB$.b.J(0,q.gZJ()) -s=$.ee.bE$ -s===$&&A.a() -s.a=null -$.EL.JY$.J(0,q.gZL())}q.f=new A.eQ(A.t(t.Su,t.S),t.op) -r.b.l() -r.d8()}, -a9b(a){var s,r,q=this -if(a===B.d2)if(q.c!==q.b)q.f=null -else{s=q.f -if(s!=null){s.it() -q.f=null}}else{s=q.c -r=q.b -if(s!==r){q.r=r -q.f=s -q.WK()}}}, -uJ(){if(this.x)return -this.x=!0 -A.fE(this.gaoJ())}, -WK(){var s,r,q,p,o,n,m,l,k,j=this -j.x=!1 -s=j.c -for(r=j.w,q=r.length,p=j.b,o=0;o")) -if(!r.gai(0).v())p=null -else p=b?r.gaC(0):r.gad(0)}return p==null?a:p}, -QK(a,b){return this.FG(a,!1,b)}, -jI(a){}, -vp(a,b){}, -qW(a,b){var s,r,q,p,o,n,m,l=this,k=a.gip() -k.toString -l.jI(k) -s=A.jL(k.fy) -r=s==null -if(r){q=b?l.QK(a,!1):l.FG(a,!0,!1) -return l.r0(q,b?B.cQ:B.cR,b)}if(r)s=k -p=A.aQP(k,s) -if(b&&s===B.b.gaC(p))switch(k.fr.a){case 1:s.jc() -return!1 -case 2:o=k.ghp() -if(o!=null&&o!==$.a1.ap$.d.b){s.jc() -k=o.e -k.toString -A.nR(k).qW(o,!0) -k=s.ghp() -return(k==null?null:A.jL(k.fy))!==s}return l.r0(B.b.gad(p),B.cQ,b) -case 0:return l.r0(B.b.gad(p),B.cQ,b) -case 3:return!1}if(!b&&s===B.b.gad(p))switch(k.fr.a){case 1:s.jc() -return!1 -case 2:o=k.ghp() -if(o!=null&&o!==$.a1.ap$.d.b){s.jc() -k=o.e -k.toString -A.nR(k).qW(o,!1) -k=s.ghp() -return(k==null?null:A.jL(k.fy))!==s}return l.r0(B.b.gaC(p),B.cR,b) -case 0:return l.r0(B.b.gaC(p),B.cR,b) -case 3:return!1}for(k=J.bG(b?p:new A.cu(p,A.a6(p).i("cu<1>"))),n=null;k.v();n=m){m=k.gT() -if(n===s)return l.r0(m,b?B.cQ:B.cR,b)}return!1}} -A.aic.prototype={ -$1(a){return a.b&&B.b.en(a.gdw(),A.f0())&&!a.ghd()}, -$S:38} -A.aie.prototype={ -$1(a){var s,r,q,p,o,n,m -for(s=a.c,r=s.length,q=this.b,p=this.a,o=0;o")) -if(!p.gan(0))s=p}o=J.aUH(s,new A.afJ(new A.w(a.gbS().a,-1/0,a.gbS().c,1/0))) -if(!o.gan(0)){if(d)return B.b.gad(A.aVC(a.gbS().gbp(),o)) -return B.b.gaC(A.aVC(a.gbS().gbp(),o))}if(d)return B.b.gad(A.aVD(a.gbS().gbp(),s)) -return B.b.gaC(A.aVD(a.gbS().gbp(),s)) -case B.cX:case B.cZ:s=this.am0(c,a.gbS(),b,d) -if(s.length===0)break -r=a.e -r.toString -q=A.iq(r,B.am) -if(q!=null){p=new A.b1(s,new A.afK(q),A.a6(s).i("b1<1>")) -if(!p.gan(0))s=p}o=J.aUH(s,new A.afL(new A.w(-1/0,a.gbS().b,1/0,a.gbS().d))) -if(!o.gan(0)){if(d)return B.b.gad(A.aVB(a.gbS().gbp(),o)) -return B.b.gaC(A.aVB(a.gbS().gbp(),o))}if(d)return B.b.gad(A.aVE(a.gbS().gbp(),s)) -return B.b.gaC(A.aVE(a.gbS().gbp(),s))}return null}, -QL(a,b,c){return this.FH(a,b,c,!0)}, -am0(a,b,c,d){var s=c.lw(0,null).eA(0) -A.ls(s,new A.afN(),t.mx) -return s}, -am1(a,b,c,d){var s=c.lw(0,null).eA(0) -A.ls(s,new A.afO(),t.mx) -return s}, -ajP(a,b,c){var s,r,q,p=this,o=p.l2$.h(0,b),n=o!=null -if(n){s=o.a -r=s.length!==0 -if(r)B.b.gad(s) -s=r}else s=!1 -if(s){s=o.a -if(B.b.gaC(s).b.Q==null){p.jI(b) -return!1}q=new A.afM(p,o,b) -switch(a){case B.cY:case B.cW:switch(B.b.gad(s).a){case B.cZ:case B.cX:p.jI(b) -break -case B.cW:case B.cY:if(q.$1(a))return!0 -break}break -case B.cZ:case B.cX:switch(B.b.gad(s).a){case B.cZ:case B.cX:if(q.$1(a))return!0 -break -case B.cW:case B.cY:p.jI(b) -break}break}}if(n&&o.a.length===0)p.jI(b) -return!1}, -H8(a,b,c,d){var s,r,q,p=this -if(b instanceof A.m_){s=b.fy -if(A.jL(s)!=null){s=A.jL(s) -s.toString -return p.H8(a,s,b,d)}r=p.Ze(b,d) -if(r==null)r=a -switch(d){case B.cW:case B.cZ:p.a.$2$alignmentPolicy(r,B.cR) -break -case B.cX:case B.cY:p.a.$2$alignmentPolicy(r,B.cQ) -break}return!0}q=b.glb() -switch(d){case B.cW:case B.cZ:p.a.$2$alignmentPolicy(b,B.cR) -break -case B.cX:case B.cY:p.a.$2$alignmentPolicy(b,B.cQ) -break}return!q}, -SL(a,b,c,d){var s,r,q,p,o=this -if(d==null){s=a.gip() -s.toString -r=s}else r=d -switch(r.fx.a){case 1:b.jc() -return!1 -case 2:q=r.ghp() -if(q!=null&&q!==$.a1.ap$.d.b){o.jI(r) -o.jI(q) -p=o.QL(b,q.gq7(),c) -if(p==null)return o.SL(a,b,c,q) -r=q}else p=o.FH(b,r.gq7(),c,!1) -break -case 0:p=o.FH(b,r.gq7(),c,!1) -break -case 3:return!1 -default:p=null}if(p!=null)return o.H8(a,p,r,c) -return!1}, -aif(a,b,c){return this.SL(a,b,c,null)}, -au5(a,b){var s,r,q,p,o,n=this,m=a.gip(),l=A.jL(m.fy) -if(l==null){s=n.Ze(a,b) -if(s==null)s=a -switch(b){case B.cW:case B.cZ:n.a.$2$alignmentPolicy(s,B.cR) -break -case B.cX:case B.cY:n.a.$2$alignmentPolicy(s,B.cQ) -break}return!0}if(n.ajP(b,m,l))return!0 -r=n.QL(l,m.gq7(),b) -if(r!=null){q=n.l2$ -p=q.h(0,m) -o=new A.yi(b,l) -if(p!=null)p.a.push(o) -else q.m(0,m,new A.a22(A.c([o],t.Kj))) -return n.H8(a,r,m,b)}return n.aif(a,l,b)}} -A.aF_.prototype={ -$1(a){return a.b===this.a}, -$S:105} -A.aFH.prototype={ -$1(a){return a.b===this.a}, -$S:105} -A.aLC.prototype={ -$1(a){return a.b===this.a}, -$S:105} -A.afT.prototype={ -$2(a,b){var s=this.a -if(s.b)if(s.a)return B.d.bt(a.gbS().b,b.gbS().b) -else return B.d.bt(b.gbS().d,a.gbS().d) -else if(s.a)return B.d.bt(a.gbS().a,b.gbS().a) -else return B.d.bt(b.gbS().c,a.gbS().c)}, -$S:56} -A.afI.prototype={ -$1(a){var s=a.e -s.toString -return A.iq(s,B.L)===this.a}, -$S:38} -A.afJ.prototype={ -$1(a){return!a.gbS().f0(this.a).gan(0)}, -$S:38} -A.afK.prototype={ -$1(a){var s=a.e -s.toString -return A.iq(s,B.am)===this.a}, -$S:38} -A.afL.prototype={ -$1(a){return!a.gbS().f0(this.a).gan(0)}, -$S:38} -A.afQ.prototype={ -$2(a,b){var s=a.gbS().gbp(),r=b.gbS().gbp(),q=this.a,p=A.aQG(q,s,r) -if(p===0)return A.aQF(q,s,r) -return p}, -$S:56} -A.afP.prototype={ -$2(a,b){var s=a.gbS().gbp(),r=b.gbS().gbp(),q=this.a,p=A.aQF(q,s,r) -if(p===0)return A.aQG(q,s,r) -return p}, -$S:56} -A.afR.prototype={ -$2(a,b){var s,r,q,p=this.a,o=a.gbS(),n=b.gbS(),m=o.a,l=p.a,k=o.c -m=Math.abs(m-l)"),s=new A.am(s,new A.aFC(),r),s=new A.bf(s,s.gH(0),r.i("bf")),r=r.i("aE.E");s.v();){q=s.d -if(q==null)q=r.a(q) -p=o.b -if(p==null){o.b=q -p=q}o.b=p.hr(q)}s=o.b -s.toString -return s}} -A.aFC.prototype={ -$1(a){return a.b}, -$S:419} -A.aFD.prototype={ -$2(a,b){var s -switch(this.a.a){case 1:s=B.d.bt(a.gbS().a,b.gbS().a) -break -case 0:s=B.d.bt(b.gbS().c,a.gbS().c) -break -default:s=null}return s}, -$S:420} -A.aqp.prototype={ -DU(a,b){return A.aXB(a)}} -A.aqq.prototype={ -$2(a,b){return B.d.bt(a.b.b,b.b.b)}, -$S:150} -A.aqr.prototype={ -$2(a,b){var s=a.b,r=A.a6(b).i("b1<1>") -s=A.aa(new A.b1(b,new A.aqs(new A.w(-1/0,s.b,1/0,s.d)),r),r.i("y.E")) -return s}, -$S:421} -A.aqs.prototype={ -$1(a){return!a.b.f0(this.a).gan(0)}, -$S:422} -A.ap6.prototype={ -DU(a,b){var s,r,q,p,o,n,m,l,k -A.UE() -s=A.aXB(a) -r=A.c([],t.bp) -q=A.c([],t.Y0) -for(p=s.length,o=t.jW,n=t.lW,m=0;m#"+A.bF(r))+s+"]"}} -A.qD.prototype={ -j(a,b){if(b==null)return!1 -if(J.S(b)!==A.l(this))return!1 -return this.$ti.b(b)&&b.a===this.a}, -gt(a){return A.pA(this.a)}, -k(a){var s="GlobalObjectKey",r=B.c.l_(s,">")?B.c.a6(s,0,-8):s -return"["+r+" "+("#"+A.bF(this.a))+"]"}} -A.e.prototype={ -dk(){var s=this.a -return s==null?"Widget":"Widget-"+s.k(0)}, -j(a,b){if(b==null)return!1 -return this.oC(0,b)}, -gt(a){return A.Q.prototype.gt.call(this,0)}} -A.a5.prototype={ -cf(){return new A.xr(this,B.ae)}} -A.W.prototype={ -cf(){var s=this.ah(),r=new A.jc(s,this,B.ae) -s.c=r -s.a=this -return r}} -A.T.prototype={ -gW(){var s=this.a -s.toString -return s}, -aw(){}, -aV(a){}, -ar(a){a.$0() -this.c.cL()}, -dA(){}, -bF(){}, -l(){}, -by(){}} -A.b_.prototype={ -gR(){return this.b}} -A.eb.prototype={ -cf(){return new A.oh(this,B.ae,A.n(this).i("oh"))}} -A.bd.prototype={ -cf(){return A.b8r(this)}} -A.aF.prototype={ -bj(a,b){}, -AK(a){}} -A.Ru.prototype={ -cf(){return new A.Rt(this,B.ae)}} -A.bj.prototype={ -cf(){return new A.Fj(this,B.ae)}, -gR(){return this.c}} -A.eT.prototype={ -cf(){return A.b9j(this)}} -A.tT.prototype={ -N(){return"_ElementLifecycle."+this.b}} -A.a3d.prototype={ -amV(){var s,r=this.b,q=A.aa(r,A.n(r).c) -B.b.fO(q,A.aTo()) -s=q -r.aa(0) -try{r=s -new A.cu(r,A.a6(r).i("cu<1>")).aL(0,A.bk_())}finally{}}, -G(a,b){var s -A:{s=b.w -if(B.im===s){A.b_C(b) -this.b.G(0,b) -break A}if(B.K1===s){this.b.G(0,b) -break A}}}} -A.aDb.prototype={ -$1(a){A.b_D(a)}, -$S:14} -A.N1.prototype={ -amO(a){var s,r,q -try{a.a0U()}catch(q){s=A.aj(q) -r=A.b3(q) -A.aO6(A.bZ("while rebuilding dirty elements"),s,r,new A.adE(a))}}, -acj(a){var s,r,q,p,o,n=this,m=n.e -B.b.fO(m,A.aTo()) -n.d=!1 -try{for(s=0;s0?r[a-1].as:s))break;--a}return a}} -A.adE.prototype={ -$0(){var s=null,r=A.c([],t.D) -J.eJ(r,A.kv("The element being rebuilt at the time was",this.a,!0,B.c0,s,s,s,B.bq,!1,!0,!0,B.cL,s)) -return r}, -$S:23} -A.adD.prototype={ -N2(a){var s,r=this,q=a.glV() -if(!r.c&&r.a!=null){r.c=!0 -r.a.$0()}if(!a.at){q.e.push(a) -a.at=!0}if(!q.a&&!q.b){q.a=!0 -s=q.c -if(s!=null)s.$0()}if(q.d!=null)q.d=!0}, -a_V(a){try{a.$0()}finally{}}, -rm(a,b){var s=a.glV(),r=b==null -if(r&&s.e.length===0)return -try{this.c=!0 -s.b=!0 -if(!r)try{b.$0()}finally{}s.acj(a)}finally{this.c=s.b=!1}}, -ap6(a){return this.rm(a,null)}, -asn(){var s,r,q -try{this.a_V(this.b.gamU())}catch(q){s=A.aj(q) -r=A.b3(q) -A.aO6(A.kz("while finalizing the widget tree"),s,r,null)}finally{}}} -A.Dl.prototype={ -Io(){var s=this.a -this.b=new A.aEZ(this,s==null?null:s.b)}} -A.aEZ.prototype={ -em(a){var s=this.a.a0g(a) -if(s)return -s=this.b -if(s!=null)s.em(a)}} -A.au.prototype={ -j(a,b){if(b==null)return!1 -return this===b}, -gW(){var s=this.e -s.toString -return s}, -glV(){var s=this.r -s.toString -return s}, -ga1(){for(var s=this;s!=null;)if(s.w===B.K2)break -else if(s instanceof A.b0)return s.ga1() -else s=s.gtj() -return null}, -gtj(){var s={} -s.a=null -this.bB(new A.ah8(s)) -return s.a}, -ark(a){var s=null,r=A.c([],t.D),q=A.c([],t.lX) -this.lv(new A.ah6(q)) -r.push(A.kv("The specific widget that could not find a "+a.k(0)+" ancestor was",this,!0,B.c0,s,s,s,B.bq,!1,!0,!0,B.cL,s)) -if(q.length!==0)r.push(A.b7G("The ancestors of this widget were",q)) -else r.push(A.bZ('This widget is the root of the tree, so it has no ancestors, let alone a "'+a.k(0)+'" ancestor.')) -return r}, -arj(a){var s=null -return A.kv(a,this,!0,B.c0,s,s,s,B.bq,!1,!0,!0,B.cL,s)}, -bB(a){}, -dZ(a,b,c){var s,r,q=this -if(b==null){if(a!=null)q.AB(a) -return null}if(a!=null){s=a.gW().oC(0,b) -if(s){if(!J.b(a.c,c))q.Mm(a,c) -r=a}else{s=a.gW() -if(A.l(s)===A.l(b)&&J.b(s.a,b.a)){if(!J.b(a.c,c))q.Mm(a,c) -a.cQ(b) -r=a}else{q.AB(a) -r=q.rW(b,c)}}}else r=q.rW(b,c) -return r}, -Me(a,a0,a1){var s,r,q,p,o,n,m=this,l=null,k=new A.ah9(a1),j=new A.aha(l),i=a0.length,h=i-1,g=a.length-1,f=t.Q,e=A.bO(i,$.aU5(),!1,f),d=l,c=0,b=0 -for(;;){if(!(b<=g&&c<=h))break -s=k.$1(a[b]) -r=a0[c] -if(s!=null){i=s.gW() -i=!(A.l(i)===A.l(r)&&J.b(i.a,r.a))}else i=!0 -if(i)break -i=m.dZ(s,r,j.$2(c,d)) -i.toString -e[c]=i;++c;++b -d=i}for(;;){i=b<=g -if(!(i&&c<=h))break -s=k.$1(a[g]) -r=a0[h] -if(s!=null){q=s.gW() -q=!(A.l(q)===A.l(r)&&J.b(q.a,r.a))}else q=!0 -if(q)break;--g;--h}if(i){p=A.t(t.D2,f) -while(b<=g){s=k.$1(a[b]) -if(s!=null)if(s.gW().a!=null){f=s.gW().a -f.toString -p.m(0,f,s)}else{s.a=null -s.nC() -m.f.b.G(0,s)}++b}}else p=l -for(;c<=h;d=f){r=a0[c] -s=l -if(i){o=r.a -if(o!=null){n=p.h(0,o) -if(n!=null){f=n.gW() -if(A.l(f)===A.l(r)&&J.b(f.a,o)){p.J(0,o) -s=n}}else s=n}}f=m.dZ(s,r,j.$2(c,d)) -f.toString -e[c]=f;++c}h=a0.length-1 -g=a.length-1 -for(;;){if(!(b<=g&&c<=h))break -f=m.dZ(a[b],a0[c],j.$2(c,d)) -f.toString -e[c]=f;++c;++b -d=f}if(i&&p.a!==0)for(i=new A.db(p,p.r,p.e);i.v();){f=i.d -q=a1.q(0,f) -if(!q){f.a=null -f.nC() -m.f.b.G(0,f)}}return e}, -ex(a,b){var s,r,q,p=this -p.a=a -p.c=b -p.w=B.im -s=a==null -if(s)r=null -else{r=a.d -r===$&&A.a()}p.d=1+(r==null?0:r) -if(!s){p.f=a.f -p.r=a.glV()}q=p.gW().a -if(q instanceof A.i3)p.f.x.m(0,q,p) -p.HO() -p.Io()}, -cQ(a){this.e=a}, -Mm(a,b){new A.ahb(b).$1(a)}, -x6(a){this.c=a}, -VB(a){var s=a+1,r=this.d -r===$&&A.a() -if(r")),n=n.c;r.v();){q=r.d;(q==null?n.a(q):q).n.J(0,p)}p.y=null -p.w=B.K1}, -kD(){var s=this,r=s.e,q=r==null?null:r.a -if(q instanceof A.i3){r=s.f.x -if(J.b(r.h(0,q),s))r.J(0,q)}s.z=s.e=null -s.w=B.K2}, -gC(){var s=this.ga1() -if(s instanceof A.A)return s.gC() -return null}, -m2(a,b){var s=this.z;(s==null?this.z=A.dv(t.IS):s).G(0,a) -a.Mf(this,b) -return t.WB.a(a.gW())}, -AE(a){return this.m2(a,null)}, -aA(a){var s=this.y,r=s==null?null:s.h(0,A.bM(a)) -if(r!=null)return a.a(this.m2(r,null)) -this.Q=!0 -return null}, -Dr(a){var s=this.fs(a) -s=s==null?null:s.gW() -return a.i("0?").a(s)}, -fs(a){var s=this.y -return s==null?null:s.h(0,A.bM(a))}, -Io(){var s=this.a -this.b=s==null?null:s.b}, -HO(){var s=this.a -this.y=s==null?null:s.y}, -Ka(a){var s,r=this.a -for(;;){s=r==null -if(!(!s&&A.l(r.gW())!==A.bM(a)))break -r=r.a}s=s?null:r.gW() -return a.i("0?").a(s)}, -l6(a){var s,r,q=this.a -while(s=q==null,!s){if(q instanceof A.jc){r=q.ok -r.toString -r=a.b(r)}else r=!1 -if(r)break -q=q.a}t.lE.a(q) -if(s)s=null -else{s=q.ok -s.toString}return a.i("0?").a(s)}, -Zf(a){var s,r,q=this.a -for(s=null;q!=null;){if(q instanceof A.jc){r=q.ok -r.toString -r=a.b(r)}else r=!1 -if(r)s=q -q=q.a}if(s==null)r=null -else{r=s.ok -r.toString}return a.i("0?").a(r)}, -nP(a){var s=this.a -while(s!=null){if(s instanceof A.b0&&a.b(s.ga1()))return a.a(s.ga1()) -s=s.a}return null}, -lv(a){var s=this.a -for(;;){if(!(s!=null&&a.$1(s)))break -s=s.a}}, -by(){this.cL()}, -ard(a){var s,r=A.c([],t.s),q=this -for(;;){if(!(r.length#"+B.c.mt(B.j.oc(q.gt(0)&1048575,16),5,"0")+"(DEFUNCT)":s) -q=q.a}if(q!=null)r.push("\u22ef") -return B.b.bJ(r," \u2190 ")}, -em(a){var s=this.b -if(s!=null)s.em(a)}, -dk(){var s=this.e -s=s==null?null:s.dk() -return s==null?"#"+A.bF(this)+"(DEFUNCT)":s}, -cL(){var s=this -if(s.w!==B.im)return -if(s.as)return -s.as=!0 -s.f.N2(s)}, -CH(a){var s -if(this.w===B.im)s=!this.as&&!a -else s=!0 -if(s)return -try{this.j8()}finally{}}, -a0U(){return this.CH(!1)}, -j8(){this.as=!1}, -$iv:1} -A.ah8.prototype={ -$1(a){this.a.a=a}, -$S:14} -A.ah6.prototype={ -$1(a){this.a.push(a) -return!0}, -$S:25} -A.ah5.prototype={ -$1(a){var s=null -return A.kv("",a,!0,B.c0,s,s,s,B.bq,!1,!0,!0,B.mq,s)}, -$S:426} -A.ah9.prototype={ -$1(a){var s=this.a.q(0,a) -return s?null:a}, -$S:427} -A.aha.prototype={ -$2(a,b){return new A.h2(b,a,t.Bc)}, -$S:428} -A.ahb.prototype={ -$1(a){var s -a.x6(this.a) -s=a.gtj() -if(s!=null)this.$1(s)}, -$S:14} -A.ah3.prototype={ -$1(a){a.VB(this.a)}, -$S:14} -A.ah2.prototype={ -$1(a){a.Vp()}, -$S:14} -A.ah7.prototype={ -$1(a){a.nC()}, -$S:14} -A.ah4.prototype={ -$1(a){a.vf(this.a)}, -$S:14} -A.Qb.prototype={ -bf(a){var s=this.d,r=new A.DZ(s,new A.b8(),A.at()) -r.be() -r.a8q(s) -return r}} -A.AD.prototype={ -gtj(){return this.ay}, -ex(a,b){this.E7(a,b) -this.FJ()}, -FJ(){this.a0U()}, -j8(){var s,r,q,p,o,n,m,l=this,k=null -try{k=l.aM() -l.gW()}catch(o){s=A.aj(o) -r=A.b3(o) -n=A.vw(A.aO6(A.bZ("building "+l.k(0)),s,r,new A.aeF())) -k=n}finally{l.oB()}try{l.ay=l.dZ(l.ay,k,l.c)}catch(o){q=A.aj(o) -p=A.b3(o) -n=A.vw(A.aO6(A.bZ("building "+l.k(0)),q,p,new A.aeG())) -k=n -try{m=l.ay -if(m!=null)m.dA()}catch(o){}l.ay=l.dZ(null,k,l.c)}}, -bB(a){var s=this.ay -if(s!=null)a.$1(s)}, -ij(a){this.ay=null -this.jf(a)}} -A.aeF.prototype={ -$0(){var s=A.c([],t.D) -return s}, -$S:23} -A.aeG.prototype={ -$0(){var s=A.c([],t.D) -return s}, -$S:23} -A.xr.prototype={ -aM(){return t.Iz.a(this.gW()).K(this)}, -cQ(a){this.qs(a) -this.CH(!0)}} -A.jc.prototype={ -aM(){return this.ok.K(this)}, -FJ(){this.ok.aw() -this.ok.by() -this.a46()}, -j8(){var s=this -if(s.p1){s.ok.by() -s.p1=!1}s.a47()}, -cQ(a){var s,r,q,p=this -p.qs(a) -s=p.ok -r=s.a -r.toString -q=p.e -q.toString -s.a=t.d1.a(q) -s.aV(r) -p.CH(!0)}, -bF(){this.tZ() -this.ok.bF() -this.cL()}, -dA(){this.ok.dA() -this.NS()}, -kD(){var s=this -s.u_() -s.ok.l() -s.ok=s.ok.c=null}, -m2(a,b){return this.E5(a,b)}, -AE(a){return this.m2(a,null)}, -by(){this.E6() -this.p1=!0}} -A.DF.prototype={ -aM(){return t.yH.a(this.gW()).b}, -cQ(a){var s=this,r=t.yH.a(s.gW()) -s.qs(a) -s.x7(r) -s.CH(!0)}, -x7(a){this.o_(a)}} -A.oh.prototype={ -P4(a){var s=this.ay -if(s!=null)new A.app(a).$1(s)}, -o_(a){var s=this.e -s.toString -this.P4(this.$ti.i("eb<1>").a(s))}} -A.app.prototype={ -$1(a){var s -if(a instanceof A.b0)this.a.p0(a.ga1()) -else if(a.gtj()!=null){s=a.gtj() -s.toString -this.$1(s)}}, -$S:14} -A.h3.prototype={ -HO(){var s=this,r=s.a,q=r==null?null:r.y -if(q==null)q=B.a48 -s.y=q.axl(A.l(s.gW()),s)}, -Ni(a,b){this.n.m(0,a,b)}, -Mf(a,b){this.Ni(a,null)}, -Lj(a,b){b.by()}, -x7(a){if(t.WB.a(this.gW()).cI(a))this.a4Y(a)}, -o_(a){var s,r,q -for(s=this.n,r=A.n(s),s=new A.ys(s,s.F7(),r.i("ys<1>")),r=r.c;s.v();){q=s.d -this.Lj(a,q==null?r.a(q):q)}}} -A.b0.prototype={ -ga1(){var s=this.ay -s.toString -return s}, -gtj(){return null}, -acc(){var s=this.a -for(;;){if(!(s!=null&&!(s instanceof A.b0)))break -s=s.a}return t.c_.a(s)}, -acb(){var s=this.a,r=A.c([],t.OM) -for(;;){if(!(s!=null&&!(s instanceof A.b0)))break -if(s instanceof A.oh)r.push(s) -s=s.a}return r}, -ex(a,b){var s=this -s.E7(a,b) -s.ay=t.F5.a(s.gW()).bf(s) -s.vf(b) -s.oB()}, -cQ(a){var s=this -s.qs(a) -t.F5.a(s.gW()).bj(s,s.ga1()) -s.oB()}, -j8(){var s=this -t.F5.a(s.gW()).bj(s,s.ga1()) -s.oB()}, -dA(){this.NS()}, -kD(){var s=this,r=t.F5.a(s.gW()) -s.u_() -r.AK(s.ga1()) -s.ay.l() -s.ay=null}, -x6(a){var s,r=this,q=r.c -r.a4i(a) -s=r.CW -if(s!=null)s.io(r.ga1(),q,r.c)}, -vf(a){var s,r,q,p,o,n=this -n.c=a -s=n.CW=n.acc() -if(s!=null)s.j0(n.ga1(),a) -r=n.acb() -for(s=r.length,q=t.IL,p=0;p"))}, -j0(a,b){var s=this.ga1(),r=b.a -s.KN(0,a,r==null?null:r.ga1())}, -io(a,b,c){var s=this.ga1(),r=c.a -s.t3(a,r==null?null:r.ga1())}, -jR(a,b){this.ga1().J(0,a)}, -bB(a){var s,r,q,p,o=this.p1 -o===$&&A.a() -s=o.length -r=this.p2 -q=0 -for(;q") -j.d=new A.aw(t.v.a(q),new A.eE(new A.fm(new A.eo(o,1,B.a7)),p,n),n.i("aw"))}if(s)s=!(isFinite(r.a)&&isFinite(r.b)) -else s=!0 -j.w=s}, -a3F(a){var s,r,q,p=this -p.savt(a) -s=p.f -switch(s.a.a){case 1:r=p.e -r===$&&A.a() -r.sbk(new A.hB(s.gjv(),new A.bp(A.c([],t.F),t.T),0)) -q=!1 -break -case 0:r=p.e -r===$&&A.a() -r.sbk(s.gjv()) -q=!0 -break -default:q=null}s=p.f -p.b=s.vB(s.gZx(),p.f.gCZ()) -p.f.f.DZ(q) -p.f.r.DY() -s=p.f.b -r=A.rq(p.ga9F(),!1,!1) -p.r=r -s.mg(0,r) -r=p.e -r===$&&A.a() -r.bC() -r.d_$.G(0,p.gLx())}, -k(a){var s,r,q=this.f,p=q.d.c,o=q.e.c,n=q.f.a.c -q=p.k(0) -s=o.k(0) -r=this.e -r===$&&A.a() -return"HeroFlight(for: "+n+", from: "+q+", to: "+s+" "+A.j(r.c)+")"}} -A.aCN.prototype={ -$2(a,b){var s,r=null,q=this.a,p=q.b -p===$&&A.a() -s=q.e -s===$&&A.a() -s=p.aj(s.gp()) -s.toString -p=q.f.c -return A.mu(p.b-s.d,A.jK(new A.e9(q.d,!1,b,r),!0,r),r,r,s.a,p.a-s.c,s.b,r)}, -$S:442} -A.aCO.prototype={ -$0(){var s,r=this.a -r.x=!1 -this.b.cy.O(this) -s=r.e -s===$&&A.a() -r.T6(s.gba())}, -$S:0} -A.vI.prototype={ -arp(a,b){var s -if(b==null)return -s=$.kn() -A.qj(this) -if(!s.a.get(this).cy.a)this.SD(b,!1,a)}, -pk(){var s,r,q,p,o=$.kn() -A.qj(this) -if(o.a.get(this).cy.a)return -o=this.b -s=A.n(o).i("bo<2>") -r=s.i("b1") -o=A.aa(new A.b1(new A.bo(o,s),new A.ajr(),r),r.i("y.E")) -o.$flags=1 -q=o -for(o=q.length,p=0;p"),a1=t.k2;s.v();){a2=s.gT() -a3=a2.a -a4=a2.b -a5=k.h(0,a3) -a6=j.h(0,a3) -if(a5==null||i)a7=null -else{a2=o.fy -if(a2==null)a2=A.a0(A.aL("RenderBox was not laid out: "+A.l(o).k(0)+"#"+A.bF(o))) -a5.a.toString -a4.a.toString -a7=new A.aCM(b4,q,a2,b2,b3,a4,a5,p,r,b5,a6!=null)}if(a7!=null&&a7.gca()){k.J(0,a3) -if(a6!=null){a2=a6.f -a8=a2.a -if(a8===B.f1&&a7.a===B.f2){a2=a6.e -a2===$&&A.a() -a2.sbk(new A.hB(a7.gjv(),new A.bp(A.c([],g),f),0)) -a2=a6.b -a2===$&&A.a() -a6.b=new A.Eh(a2,a2.b,a2.a,a1)}else{a8=a8===B.f2&&a7.a===B.f1 -a9=a6.e -if(a8){a9===$&&A.a() -a2=a7.gjv() -a8=a6.f.gjv().gp() -a9.sbk(new A.aw(a.a(a2),new A.aA(a8,1,b),a0)) -a2=a6.f -a8=a2.f -a9=a7.r -if(a8!==a9){a8.rF(!0) -a9.DY() -a2=a6.f -a2.toString -a8=a6.b -a8===$&&A.a() -a6.b=a2.vB(a8.b,a7.gCZ())}else{a8=a6.b -a8===$&&A.a() -a6.b=a2.vB(a8.b,a8.a)}}else{a8=a6.b -a8===$&&A.a() -a9===$&&A.a() -a6.b=a2.vB(a8.aj(a9.gp()),a7.gCZ()) -a6.c=null -a2=a7.a -a8=a6.e -if(a2===B.f2)a8.sbk(new A.hB(a7.gjv(),new A.bp(A.c([],g),f),0)) -else a8.sbk(a7.gjv()) -a6.f.f.rF(!0) -a6.f.r.rF(!0) -a7.f.DZ(a2===B.f1) -a7.r.DY() -a2=a6.r.r.gS() -if(a2!=null)a2.yO()}}a2=a6.f -if(a2!=null){a2=a2.Q -if(a2!=null)a2.a.dj(a2.gHK())}a6.f=a7}else{a2=new A.ne(h,B.fZ) -a8=A.c([],g) -a9=new A.bp(a8,f) -b0=new A.rF(a9,new A.eQ(A.t(e,d),c),0) -b0.a=B.Z -b0.b=0 -b0.bC() -a9.b=!0 -a8.push(a2.gRx()) -a2.e=b0 -a2.a3F(a7) -j.m(0,a3,a2)}}else if(a6!=null)a6.w=!0}for(s=k.gh8(),s=s.gai(s);s.v();)s.gT().arM()}, -ae5(a){var s=this.b.J(0,a.f.f.a.c) -if(s!=null)s.l()}, -ab1(a,b,c,d,e){var s=t.rA.a(e.gW()),r=A.c_(e,null),q=A.c_(d,null) -if(r==null||q==null)return s.e -return A.hU(b,new A.ajp(r,c,q.r,r.r,b,s),null)}, -l(){for(var s=this.b,s=new A.db(s,s.r,s.e);s.v();)s.d.l()}} -A.ajr.prototype={ -$1(a){var s=a.f,r=!1 -if(s.y)if(s.a===B.f2){s=a.e -s===$&&A.a() -s=s.gba()===B.Z}else s=r -else s=r -return s}, -$S:445} -A.ajq.prototype={ -$1(a){var s=this,r=s.c -if(r.b==null||s.d.b==null)return -s.b.UH(r,s.d,s.a.a,s.e)}, -$S:4} -A.ajp.prototype={ -$2(a,b){var s=this,r=s.c,q=s.d,p=s.e -r=s.b===B.f1?new A.Bl(r,q).aj(p.gp()):new A.Bl(q,r).aj(p.gp()) -return A.CU(s.f.e,s.a.J_(r))}, -$S:446} -A.m4.prototype={ -K(a){var s,r,q,p,o,n,m,l,k,j=this,i=null,h=a.aA(t.I).w,g=A.BZ(a),f=j.d,e=f==null?g.a:f -if(e==null)e=14 -if(g.x===!0){f=A.c_(a,B.dK) -f=f==null?i:f.gdO() -s=(f==null?B.bz:f).bi(e)}else s=e -r=g.b -q=g.c -p=g.d -o=g.e -n=j.c -if(n==null)return A.cz(i,A.a8(i,s,s),!1,i,i,!1,i,i,i,i,i,j.z,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,B.Y,i) -m=g.gdY() -if(m==null)m=1 -l=j.x -if(l==null){f=g.f -f.toString -l=f}if(m!==1)l=l.aI(l.gdY()*m) -f=A.c([],t.uf) -if(r!=null)f.push(new A.jI("FILL",r)) -if(q!=null)f.push(new A.jI("wght",q)) -if(p!=null)f.push(new A.jI("GRAD",p)) -if(o!=null)f.push(new A.jI("opsz",o)) -k=A.aRJ(i,i,i,B.aaq,i,i,!0,i,A.ef(i,i,i,i,i,i,i,i,i,A.ay(i,i,l,i,i,i,i,i,n.b,i,i,s,i,f,i,i,1,!1,B.A,i,i,i,n.c,g.w,i,i),A.eV(n.a)),B.aN,h,i,B.bz,B.al) -if(n.d)switch(h.a){case 0:f=new A.bc(new Float64Array(16)) -f.ei() -f.oq(-1,1,1,1) -k=A.YV(B.a_,k,i,f,!1) -break -case 1:break}return A.cz(i,new A.nN(!0,A.a8(A.dp(k,i,i),s,s),i),!1,i,i,!1,i,i,i,i,i,j.z,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,B.Y,i)}} -A.cZ.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.cZ&&b.a===s.a&&b.b==s.b&&b.c==s.c&&b.d===s.d&&A.cV(null,null)}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,A.bh(B.Xe),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"IconData(U+"+B.c.mt(B.j.oc(this.a,16).toUpperCase(),5,"0")+")"}} -A.m6.prototype={ -cI(a){return!this.w.j(0,a.w)}, -qa(a,b){return A.qI(b,this.w,null)}} -A.ak_.prototype={ -$1(a){return A.qI(this.c,A.aWh(a).E(this.b),this.a)}, -$S:447} -A.dw.prototype={ -pc(a,b,c,d,e,f,g,h,i){var s=this,r=h==null?s.a:h,q=c==null?s.b:c,p=i==null?s.c:i,o=d==null?s.d:d,n=f==null?s.e:f,m=b==null?s.f:b,l=e==null?s.gdY():e,k=g==null?s.w:g -return new A.dw(r,q,p,o,n,m,l,k,a==null?s.x:a)}, -c3(a){var s=null -return this.pc(s,a,s,s,s,s,s,s,s)}, -XS(a,b){var s=null -return this.pc(s,a,s,s,s,s,s,b,s)}, -E(a){return this.pc(a.x,a.f,a.b,a.d,a.gdY(),a.e,a.w,a.a,a.c)}, -af(a){return this}, -gdY(){var s=this.r -if(s==null)s=null -else s=A.E(s,0,1) -return s}, -j(a,b){var s=this -if(b==null)return!1 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.dw&&b.a==s.a&&b.b==s.b&&b.c==s.c&&b.d==s.d&&b.e==s.e&&J.b(b.f,s.f)&&b.gdY()==s.gdY()&&A.cV(b.w,s.w)&&b.x==s.x}, -gt(a){var s=this,r=s.gdY(),q=s.w -q=q==null?null:A.bh(q) -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,r,q,s.x,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a3c.prototype={} -A.pO.prototype={ -eo(a){var s=A.dC(this.a,this.b,a) -s.toString -return s}} -A.lP.prototype={ -eo(a){var s=A.afe(this.a,this.b,a) -s.toString -return s}} -A.Bl.prototype={ -eo(a){var s=A.Bm(this.a,this.b,a) -s.toString -return s}} -A.lS.prototype={ -eo(a){var s=A.aI(this.a,this.b,a) -s.toString -return s}} -A.pL.prototype={ -eo(a){return A.el(this.a,this.b,a)}} -A.r8.prototype={ -eo(b0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=new A.fd(new Float64Array(3)),a5=new A.fd(new Float64Array(3)),a6=A.aXu(),a7=A.aXu(),a8=new A.fd(new Float64Array(3)),a9=new A.fd(new Float64Array(3)) -this.a.Yd(a4,a6,a8) -this.b.Yd(a5,a7,a9) -s=1-b0 -r=a4.lz(s).a8(0,a5.lz(b0)) -q=a6.lz(s).a8(0,a7.lz(b0)) -p=new Float64Array(4) -o=new A.mx(p) -o.dl(q) -o.ww() -n=a8.lz(s).a8(0,a9.lz(b0)) -s=new Float64Array(16) -q=new A.bc(s) -m=p[0] -l=p[1] -k=p[2] -j=p[3] -i=m+m -h=l+l -g=k+k -f=m*i -e=m*h -d=m*g -c=l*h -b=l*g -a=k*g -a0=j*i -a1=j*h -a2=j*g -a3=r.a -s[0]=1-(c+a) -s[1]=e+a2 -s[2]=d-a1 -s[3]=0 -s[4]=e-a2 -s[5]=1-(f+a) -s[6]=b+a0 -s[7]=0 -s[8]=d+a1 -s[9]=b-a0 -s[10]=1-(f+c) -s[11]=0 -s[12]=a3[0] -s[13]=a3[1] -s[14]=a3[2] -s[15]=1 -s=n.a -q.oq(s[0],s[1],s[2],1) -return q}} -A.tC.prototype={ -eo(a){var s=A.ag(this.a,this.b,a) -s.toString -return s}} -A.R6.prototype={} -A.vL.prototype={ -gcJ(){var s,r=this,q=r.d -if(q===$){s=A.bX(null,r.a.d,null,null,r) -r.d!==$&&A.aK() -r.d=s -q=s}return q}, -geD(){var s,r=this,q=r.e -if(q===$){s=r.gcJ() -q=r.e=A.cQ(r.a.c,s,null)}return q}, -aw(){var s,r=this -r.b3() -s=r.gcJ() -s.bC() -s=s.cP$ -s.b=!0 -s.a.push(new A.ak6(r)) -r.Q0() -r.Jw()}, -aV(a){var s,r=this -r.bm(a) -if(r.a.c!==a.c){r.geD().l() -s=r.gcJ() -r.e=A.cQ(r.a.c,s,null)}s=r.gcJ() -s.e=r.a.d -if(r.Q0()){r.l7(new A.ak5(r)) -s.kl(0) -r.Jw()}}, -l(){this.geD().l() -this.gcJ().l() -this.a6u()}, -Q0(){var s={} -s.a=!1 -this.l7(new A.ak4(s)) -return s.a}, -Jw(){}} -A.ak6.prototype={ -$1(a){if(a===B.a9)this.a.a.toString}, -$S:8} -A.ak5.prototype={ -$3(a,b,c){var s -if(a==null)s=null -else{a.sIs(a.aj(this.a.geD().gp())) -a.sc4(b) -s=a}return s}, -$S:179} -A.ak4.prototype={ -$3(a,b,c){var s -if(b!=null){if(a==null)a=c.$1(b) -s=a.b -if(!J.b(b,s==null?a.a:s))this.a.a=!0 -else if(a.b==null)a.sc4(a.a)}else a=null -return a}, -$S:179} -A.uF.prototype={ -aw(){this.a4q() -var s=this.gcJ() -s.bC() -s.d_$.G(0,this.gadb())}, -adc(){this.ar(new A.acx())}} -A.acx.prototype={ -$0(){}, -$S:0} -A.zG.prototype={ -ah(){return new A.a0i(null,null)}, -gR(){return this.r}} -A.a0i.prototype={ -l7(a){var s,r,q=this,p=q.CW -q.a.toString -s=t.VA -q.CW=s.a(a.$3(p,null,new A.ayU())) -p=t.Om -q.cx=p.a(a.$3(q.cx,q.a.x,new A.ayV())) -r=t.xG -q.cy=r.a(a.$3(q.cy,q.a.y,new A.ayW())) -q.db=r.a(a.$3(q.db,q.a.z,new A.ayX())) -q.dx=t.YY.a(a.$3(q.dx,q.a.Q,new A.ayY())) -q.dy=p.a(a.$3(q.dy,q.a.as,new A.ayZ())) -p=q.fr -q.a.toString -q.fr=t.ka.a(a.$3(p,null,new A.az_())) -p=q.fx -q.a.toString -q.fx=s.a(a.$3(p,null,new A.az0()))}, -K(a){var s,r,q,p,o,n,m,l=this,k=null,j=l.geD(),i=l.CW -i=i==null?k:i.aj(j.gp()) -s=l.cx -s=s==null?k:s.aj(j.gp()) -r=l.cy -r=r==null?k:r.aj(j.gp()) -q=l.db -q=q==null?k:q.aj(j.gp()) -p=l.dx -p=p==null?k:p.aj(j.gp()) -o=l.dy -o=o==null?k:o.aj(j.gp()) -n=l.fr -n=n==null?k:n.aj(j.gp()) -m=l.fx -m=m==null?k:m.aj(j.gp()) -return A.bL(i,l.a.r,B.v,k,p,r,q,k,o,s,n,m,k)}} -A.ayU.prototype={ -$1(a){return new A.nv(t.pC.a(a),null)}, -$S:178} -A.ayV.prototype={ -$1(a){return new A.lS(t.A0.a(a),null)}, -$S:117} -A.ayW.prototype={ -$1(a){return new A.lP(t.Hw.a(a),null)}, -$S:177} -A.ayX.prototype={ -$1(a){return new A.lP(t.Hw.a(a),null)}, -$S:177} -A.ayY.prototype={ -$1(a){return new A.pO(t.k.a(a),null)}, -$S:452} -A.ayZ.prototype={ -$1(a){return new A.lS(t.A0.a(a),null)}, -$S:117} -A.az_.prototype={ -$1(a){return new A.r8(t.xV.a(a),null)}, -$S:453} -A.az0.prototype={ -$1(a){return new A.nv(t.pC.a(a),null)}, -$S:178} -A.zJ.prototype={ -ah(){return new A.a0l(null,null)}, -gR(){return this.w}} -A.a0l.prototype={ -l7(a){this.CW=t.Om.a(a.$3(this.CW,this.a.r,new A.az3()))}, -K(a){var s=this.CW -s.toString -return new A.bR(J.b5k(s.aj(this.geD().gp()),B.ap,B.K9),this.a.w,null)}} -A.az3.prototype={ -$1(a){return new A.lS(t.A0.a(a),null)}, -$S:117} -A.zL.prototype={ -ah(){return new A.a0n(null,null)}, -gR(){return this.r}} -A.a0n.prototype={ -l7(a){var s,r=this,q=null,p=t.ir -r.CW=p.a(a.$3(r.CW,r.a.w,new A.az8())) -r.cx=p.a(a.$3(r.cx,r.a.x,new A.az9())) -s=r.cy -r.a.toString -r.cy=p.a(a.$3(s,q,new A.aza())) -s=r.db -r.a.toString -r.db=p.a(a.$3(s,q,new A.azb())) -s=r.dx -r.a.toString -r.dx=p.a(a.$3(s,q,new A.azc())) -s=r.dy -r.a.toString -r.dy=p.a(a.$3(s,q,new A.azd()))}, -K(a){var s,r,q,p,o,n=this,m=null,l=n.CW -l=l==null?m:l.aj(n.geD().gp()) -s=n.cx -s=s==null?m:s.aj(n.geD().gp()) -r=n.cy -r=r==null?m:r.aj(n.geD().gp()) -q=n.db -q=q==null?m:q.aj(n.geD().gp()) -p=n.dx -p=p==null?m:p.aj(n.geD().gp()) -o=n.dy -o=o==null?m:o.aj(n.geD().gp()) -return A.mu(q,n.a.r,o,m,l,r,s,p)}} -A.az8.prototype={ -$1(a){return new A.aA(A.cG(a),null,t.Y)}, -$S:41} -A.az9.prototype={ -$1(a){return new A.aA(A.cG(a),null,t.Y)}, -$S:41} -A.aza.prototype={ -$1(a){return new A.aA(A.cG(a),null,t.Y)}, -$S:41} -A.azb.prototype={ -$1(a){return new A.aA(A.cG(a),null,t.Y)}, -$S:41} -A.azc.prototype={ -$1(a){return new A.aA(A.cG(a),null,t.Y)}, -$S:41} -A.azd.prototype={ -$1(a){return new A.aA(A.cG(a),null,t.Y)}, -$S:41} -A.zI.prototype={ -ah(){return new A.a0k(null,null)}, -gR(){return this.r}} -A.a0k.prototype={ -l7(a){this.z=t.ir.a(a.$3(this.z,this.a.w,new A.az2()))}, -Jw(){var s=this.geD(),r=this.z -r.toString -this.Q=new A.aw(t.v.a(s),r,A.n(r).i("aw"))}, -K(a){var s=this.Q -s===$&&A.a() -return new A.e9(s,!1,this.a.r,null)}} -A.az2.prototype={ -$1(a){return new A.aA(A.cG(a),null,t.Y)}, -$S:41} -A.zH.prototype={ -ah(){return new A.a0j(null,null)}, -gR(){return this.r}} -A.a0j.prototype={ -l7(a){this.CW=t.Dh.a(a.$3(this.CW,this.a.w,new A.az1()))}, -K(a){var s=null,r=this.CW -r.toString -r=r.aj(this.geD().gp()) -return A.fn(this.a.r,s,s,B.bc,!0,r,s,s,B.al)}} -A.az1.prototype={ -$1(a){return new A.tC(t.em.a(a),null)}, -$S:454} -A.zK.prototype={ -ah(){return new A.a0m(null,null)}, -gR(){return this.r}} -A.a0m.prototype={ -l7(a){var s=this,r=s.CW -s.a.toString -s.CW=t.eJ.a(a.$3(r,B.ah,new A.az4())) -s.cx=t.ir.a(a.$3(s.cx,s.a.z,new A.az5())) -r=t.YJ -s.cy=r.a(a.$3(s.cy,s.a.Q,new A.az6())) -s.db=r.a(a.$3(s.db,s.a.at,new A.az7()))}, -K(a){var s,r,q,p=this,o=p.a.x,n=p.CW -n.toString -n=n.aj(p.geD().gp()) -s=p.cx -s.toString -s=s.aj(p.geD().gp()) -r=p.a.Q -q=p.db -q.toString -q=q.aj(p.geD().gp()) -q.toString -return new A.Uc(B.G,o,n,s,r,q,p.a.r,null)}} -A.az4.prototype={ -$1(a){return new A.pL(t.m_.a(a),null)}, -$S:455} -A.az5.prototype={ -$1(a){return new A.aA(A.cG(a),null,t.Y)}, -$S:41} -A.az6.prototype={ -$1(a){return new A.fV(t.G.a(a),null)}, -$S:77} -A.az7.prototype={ -$1(a){return new A.fV(t.G.a(a),null)}, -$S:77} -A.yw.prototype={ -l(){var s=this,r=s.bu$ -if(r!=null)r.O(s.gfA()) -s.bu$=null -s.aQ()}, -bF(){this.cE() -this.cv() -this.fB()}} -A.iZ.prototype={ -cf(){return new A.C6(A.h0(null,null,null,t.Q,t.X),this,B.ae,A.n(this).i("C6"))}} -A.C6.prototype={ -Mf(a,b){var s=this.n,r=this.$ti,q=r.i("bq<1>?").a(s.h(0,a)),p=q==null -if(!p&&q.gan(q))return -if(b==null)s.m(0,a,A.dv(r.c)) -else{p=p?A.dv(r.c):q -p.G(0,r.c.a(b)) -s.m(0,a,p)}}, -Lj(a,b){var s,r=this.$ti,q=r.i("bq<1>?").a(this.n.h(0,b)) -if(q==null)return -if(!q.gan(q)){s=this.e -s.toString -s=r.i("iZ<1>").a(s).Ml(a,q) -r=s}else r=!0 -if(r)b.by()}} -A.kG.prototype={ -cI(a){return a.f!==this.f}, -cf(){var s=new A.yx(A.h0(null,null,null,t.Q,t.X),this,B.ae,A.n(this).i("yx")) -this.f.a9(s.gGi()) -return s}} -A.yx.prototype={ -cQ(a){var s,r,q=this,p=q.e -p.toString -s=q.$ti.i("kG<1>").a(p).f -r=a.f -if(s!==r){p=q.gGi() -s.O(p) -r.a9(p)}q.Od(a)}, -aM(){var s,r=this -if(r.bo){s=r.e -s.toString -r.NZ(r.$ti.i("kG<1>").a(s)) -r.bo=!1}return r.Oc()}, -agg(){this.bo=!0 -this.cL()}, -o_(a){this.NZ(a) -this.bo=!1}, -kD(){var s=this,r=s.e -r.toString -s.$ti.i("kG<1>").a(r).f.O(s.gGi()) -s.u_()}} -A.da.prototype={} -A.akf.prototype={ -$1(a){var s,r,q,p,o -if(a.j(0,this.a))return!1 -s=a instanceof A.h3 -r=null -if(s){r=a.gW() -q=r -q=q instanceof A.da}else q=!1 -if(q){q=s?r:a.gW() -t.og.a(q) -p=A.l(q) -o=this.b -if(!o.q(0,p)){o.G(0,p) -this.c.push(q)}}return!0}, -$S:25} -A.N5.prototype={} -A.tM.prototype={ -K(a){var s,r,q,p=this.d -for(s=this.c,r=s.length,q=0;q"))}} -A.yA.prototype={ -ga1(){return this.$ti.i("f4<1,r>").a(A.b0.prototype.ga1.call(this))}, -glV(){var s,r=this,q=r.p2 -if(q===$){s=A.c([],t.lX) -r.p2!==$&&A.aK() -q=r.p2=new A.N1(r.gakS(),s)}return q}, -akT(){var s,r,q,p=this -if(p.p3)return -s=$.c6 -r=s.p2$ -A:{if(B.ej===r||B.o7===r){q=!0 -break A}if(B.HR===r||B.HS===r||B.fz===r){q=!1 -break A}q=null}if(!q){p.$ti.i("f4<1,r>").a(A.b0.prototype.ga1.call(p)).qi() -return}p.p3=!0 -s.N4(p.gact())}, -acu(a){var s=this -s.p3=!1 -if(s.e!=null)s.$ti.i("f4<1,r>").a(A.b0.prototype.ga1.call(s)).qi()}, -bB(a){var s=this.p1 -if(s!=null)a.$1(s)}, -ij(a){this.p1=null -this.jf(a)}, -ex(a,b){var s=this -s.mZ(a,b) -s.$ti.i("f4<1,r>").a(A.b0.prototype.ga1.call(s)).Vq(s.gTj())}, -cQ(a){var s,r=this,q=r.e -q.toString -s=r.$ti -s.i("ly<1>").a(q) -r.lF(a) -s=s.i("f4<1,r>") -s.a(A.b0.prototype.ga1.call(r)).Vq(r.gTj()) -r.R8=!0 -s.a(A.b0.prototype.ga1.call(r)).qi()}, -cL(){this.$ti.i("f4<1,r>").a(A.b0.prototype.ga1.call(this)).qi() -this.R8=!0}, -j8(){var s=this -s.$ti.i("f4<1,r>").a(A.b0.prototype.ga1.call(s)).qi() -s.R8=!0 -s.xS()}, -kD(){this.$ti.i("f4<1,r>").a(A.b0.prototype.ga1.call(this)).Ba$=null -this.Eg()}, -ak3(a){var s=this,r=s.$ti.i("f4<1,r>").a(A.b0.prototype.ga1.call(s)).ga_Q(),q=new A.aDI(s,r) -q=s.R8||!r.j(0,s.p4)?q:null -s.f.rm(s,q)}, -j0(a,b){this.$ti.i("f4<1,r>").a(A.b0.prototype.ga1.call(this)).sR(a)}, -io(a,b,c){}, -jR(a,b){this.$ti.i("f4<1,r>").a(A.b0.prototype.ga1.call(this)).sR(null)}} -A.aDI.prototype={ -$0(){var s,r,q,p,o,n,m,l,k=this,j=null -try{o=k.a -n=o.e -n.toString -j=o.$ti.i("ly<1>").a(n).gIx().$2(o,k.b) -o.e.toString}catch(m){s=A.aj(m) -r=A.b3(m) -l=A.vw(A.b0Z(A.bZ("building "+k.a.e.k(0)),s,r,new A.aDJ())) -j=l}try{o=k.a -o.p1=o.dZ(o.p1,j,null)}catch(m){q=A.aj(m) -p=A.b3(m) -o=k.a -l=A.vw(A.b0Z(A.bZ("building "+o.e.k(0)),q,p,new A.aDK())) -j=l -o.p1=o.dZ(null,j,o.c)}finally{o=k.a -o.R8=!1 -o.p4=k.b}}, -$S:0} -A.aDJ.prototype={ -$0(){var s=A.c([],t.D) -return s}, -$S:23} -A.aDK.prototype={ -$0(){var s=A.c([],t.D) -return s}, -$S:23} -A.f4.prototype={ -Vq(a){if(J.b(a,this.Ba$))return -this.Ba$=a -this.qi()}, -L_(){var s=this.Ba$ -s.toString -return s.$1(this.gab())}, -ga_Q(){return A.n(this).i("f4.0").a(this.gab())}} -A.yO.prototype={} -A.aNU.prototype={ -$1(a){return this.a.a=a}, -$S:114} -A.aNV.prototype={ -$1(a){return a.b}, -$S:457} -A.aNW.prototype={ -$1(a){var s,r,q,p -for(s=J.bk(a),r=this.a,q=this.b,p=0;ps.b?B.a43:B.a42}, -Ap(a,b,c,d){var s=this,r=b==null?s.gdO():b,q=a==null?s.r:a,p=d==null?s.w:d,o=c==null?s.f:c -return new A.CV(s.a,s.b,r,s.e,o,q,p,s.x,!1,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,!1,s.dx,s.dy,s.fr,s.fx)}, -aqK(a,b){return this.Ap(a,null,null,b)}, -XO(a){return this.Ap(null,a,null,null)}, -J_(a){return this.Ap(a,null,null,null)}, -aqM(a,b){return this.Ap(null,null,a,b)}, -a15(a,b,c,d){var s,r,q,p,o,n,m=this,l=null -if(!(b||d||c||a))return m -s=m.r -r=b?0:l -q=d?0:l -p=c?0:l -r=s.ny(a?0:l,r,p,q) -q=m.w -p=b?Math.max(0,q.a-s.a):l -o=d?Math.max(0,q.b-s.b):l -n=c?Math.max(0,q.c-s.c):l -return m.aqK(r,q.ny(a?Math.max(0,q.d-s.d):l,p,n,o))}, -a1a(a,b,c,d){var s=this,r=null,q=s.w,p=b?Math.max(0,q.a-s.f.a):r,o=d?Math.max(0,q.b-s.f.b):r,n=c?Math.max(0,q.c-s.f.c):r,m=s.f,l=Math.max(0,q.d-m.d) -q=q.ny(l,p,n,o) -p=b?0:r -o=d?0:r -n=c?0:r -return s.aqM(m.ny(0,p,n,o),q)}, -axW(a){return this.a1a(a,!1,!1,!1)}, -j(a,b){var s=this -if(b==null)return!1 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.CV&&b.a.j(0,s.a)&&b.b===s.b&&b.gdO().gkA()===s.gdO().gkA()&&b.e===s.e&&b.r.j(0,s.r)&&b.w.j(0,s.w)&&b.f.j(0,s.f)&&b.x.j(0,s.x)&&b.as===s.as&&b.at===s.at&&b.ax===s.ax&&b.Q===s.Q&&b.z===s.z&&b.ay===s.ay&&b.ch===s.ch&&b.CW===s.CW&&b.cx.j(0,s.cx)&&A.cV(b.cy,s.cy)&&b.dx==s.dx&&b.dy==s.dy&&b.fr==s.fr&&b.fx==s.fx}, -gt(a){var s=this -return A.N(s.a,s.b,s.gdO().gkA(),s.e,s.r,s.w,s.f,!1,s.as,s.at,s.ax,s.Q,s.z,s.ay,s.CW,s.cx,A.bh(s.cy),!1,A.N(s.dx,s.dy,s.fr,s.fx,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a),B.a)}, -k(a){var s=this -return"MediaQueryData("+B.b.bJ(A.c(["size: "+s.a.k(0),"devicePixelRatio: "+B.d.aq(s.b,1),"textScaler: "+s.gdO().k(0),"platformBrightness: "+s.e.k(0),"padding: "+s.r.k(0),"viewPadding: "+s.w.k(0),"viewInsets: "+s.f.k(0),"systemGestureInsets: "+s.x.k(0),"alwaysUse24HourFormat: false","accessibleNavigation: "+s.z,"highContrast: "+s.as,"onOffSwitchLabels: "+s.at,"disableAnimations: "+s.ax,"invertColors: "+s.Q,"boldText: "+s.ay,"navigationMode: "+s.CW.b,"gestureSettings: "+s.cx.k(0),"displayFeatures: "+A.j(s.cy),"supportsShowingSystemContextMenu: false","lineHeightScaleFactorOverride: "+A.j(s.dx),"letterSpacingOverride: "+A.j(s.dy),"wordSpacingOverride: "+A.j(s.fr),"paragraphSpacingOverride: "+A.j(s.fx)],t.s),", ")+")"}} -A.jP.prototype={ -cI(a){return!this.w.j(0,a.w)}, -Ml(a,b){return b.i8(0,new A.anN(this,a))}} -A.anP.prototype={ -$1(a){return A.CU(this.a,A.c0(a,null,t.l).w.XO(B.bz))}, -$S:176} -A.anO.prototype={ -$1(a){var s=A.c0(a,null,t.l).w -return A.CU(this.c,s.XO(s.gdO().Ad(0,this.b,this.a)))}, -$S:176} -A.anN.prototype={ -$1(a){var s=this,r=!1 -if(a instanceof A.dN)switch(a.a){case 0:r=!s.a.w.a.j(0,s.b.w.a) -break -case 1:r=s.a.w.a.a!==s.b.w.a.a -break -case 2:r=s.a.w.a.b!==s.b.w.a.b -break -case 3:r=s.a.w.gmr()!==s.b.w.gmr() -break -case 4:r=s.a.w.b!==s.b.w.b -break -case 5:r=s.a.w.gdO().gkA()!==s.b.w.gdO().gkA() -break -case 6:r=!s.a.w.gdO().j(0,s.b.w.gdO()) -break -case 7:r=s.a.w.e!==s.b.w.e -break -case 8:r=!s.a.w.r.j(0,s.b.w.r) -break -case 9:r=!s.a.w.f.j(0,s.b.w.f) -break -case 11:r=!s.a.w.w.j(0,s.b.w.w) -break -case 14:r=s.a.w.Q!==s.b.w.Q -break -case 15:r=s.a.w.as!==s.b.w.as -break -case 16:r=s.a.w.at!==s.b.w.at -break -case 17:r=s.a.w.ax!==s.b.w.ax -break -case 18:r=s.a.w.ay!==s.b.w.ay -break -case 19:r=s.a.w.ch!==s.b.w.ch -break -case 20:r=s.a.w.CW!==s.b.w.CW -break -case 21:r=!s.a.w.cx.j(0,s.b.w.cx) -break -case 22:r=s.a.w.cy!==s.b.w.cy -break -case 10:r=!s.a.w.x.j(0,s.b.w.x) -break -case 13:r=s.a.w.z!==s.b.w.z -break -case 12:break -case 23:break -case 24:r=s.a.w.dx!=s.b.w.dx -break -case 25:r=s.a.w.dy!=s.b.w.dy -break -case 26:r=s.a.w.fr!=s.b.w.fr -break -case 27:r=s.a.w.fx!=s.b.w.fx -break -default:r=null}return r}, -$S:462} -A.TI.prototype={ -N(){return"NavigationMode."+this.b}} -A.Iu.prototype={ -ah(){return new A.a3P()}, -gR(){return this.e}} -A.a3P.prototype={ -aw(){this.b3() -$.a1.bI$.push(this)}, -by(){this.du() -this.ang() -this.r9()}, -aV(a){var s,r=this -r.bm(a) -s=r.a -s.toString -if(r.e==null||a.c!==s.c)r.r9()}, -ang(){var s,r=this -r.a.toString -s=r.c -s.toString -s=A.c_(s,null) -r.d=s -r.e=null}, -r9(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=this,a1=null,a2=a0.a.c,a3=a0.d,a4=a2.gwF(),a5=$.dm(),a6=a5.d,a7=a6==null -a4=a4.d7(0,a7?a5.gcN():a6) -s=a7?a5.gcN():a6 -r=a3==null -q=r?a1:a3.gdO() -if(q==null){q=a2.b -q=new A.YA(q,q.c.e)}p=r?a1:a3.e -if(p==null)p=a2.b.c.d -o=A.agi(B.fJ,a7?a5.gcN():a6) -n=A.agi(B.fJ,a7?a5.gcN():a6) -m=a2.ay -m=A.agi(m,a7?a5.gcN():a6) -a5=A.agi(B.fJ,a7?a5.gcN():a6) -a6=r?a1:a3.z -if(a6==null)a6=(a2.b.c.a.a&1)!==0 -a7=r?a1:a3.Q -if(a7==null)a7=(a2.b.c.a.a&2)!==0 -l=r?a1:a3.ax -if(l==null)l=(a2.b.c.a.a&4)!==0 -k=r?a1:a3.ay -if(k==null)k=(a2.b.c.a.a&8)!==0 -j=r?a1:a3.ch -if(j==null)j=(a2.b.c.a.a&128)===0 -i=r?a1:a3.as -if(i==null)i=(a2.b.c.a.a&32)!==0 -h=r?a1:a3.at -if(h==null)h=(a2.b.c.a.a&64)!==0 -g=r&&a1 -f=r?a1:a3.CW -if(f==null)f=B.fp -e=r&&a1 -d=r?a1:a3.dx -if(d==null)d=a2.b.c.x -c=r?a1:a3.dy -if(c==null)c=a2.b.c.y -b=r?a1:a3.fr -if(b==null)b=a2.b.c.z -a3=r?a1:a3.fx -a2=a3==null?a2.b.c.Q:a3 -a=new A.CV(a4,s,q,p,m,o,n,a5,g===!0,a6,a7,i,h,l,k,j,f,new A.vl(a1),B.Xf,e===!0,d,c,b,a2) -if(!a.j(0,a0.e))a0.ar(new A.aEv(a0,a))}, -Yo(){if(this.d==null)this.r9()}, -vH(){this.r9()}, -Yr(){if(this.d==null)this.r9()}, -Yq(){if(this.d==null)this.r9()}, -l(){$.a1.is(this) -this.aQ()}, -K(a){var s=this.e -s.toString -return A.CU(this.a.e,s)}} -A.aEv.prototype={ -$0(){this.a.e=this.b}, -$S:0} -A.aLn.prototype={ -Ad(a,b,c){return A.a0(A.fc(null))}, -bi(a){return A.a0(A.fc(null))}, -gkA(){return A.a0(A.fc(null))}} -A.YA.prototype={ -bi(a){return a*this.a.c.e}, -j(a,b){var s,r,q,p -if(b==null)return!1 -if(this===b)return!0 -A:{s=b instanceof A.YA -r=null -if(s){r=b.b -q=r -q=typeof q=="number"}else q=!1 -if(q){p=s?r:b.b -q=this.b===p -break A}if(B.bz.j(0,b)){q=this.b===1 -break A}q=!1 -break A}return q}, -gt(a){return B.d.gt(this.b)}, -k(a){var s=this.b -return"SystemTextScaler ("+(s===1?"no scaling":A.j(s)+"x")+")"}, -gkA(){return this.b}} -A.aaJ.prototype={} -A.wf.prototype={ -K(a){var s,r,q,p,o,n,m,l,k,j=this,i=null -switch(A.aT().a){case 1:case 3:case 5:s=!1 -break -case 0:case 2:case 4:s=!0 -break -default:s=i}r=j.d&&s -q=new A.ao_(j,a) -p=r&&j.r!=null?q:i -o=r&&j.r!=null?q:i -n=r?j.r:i -m=r&&j.r!=null?a.aA(t.I).w:i -l=j.c -k=A.cz(i,A.ie(new A.dX(B.pE,l==null?i:A.v4(i,l,!0),i),B.ci,i,i,i,i),!1,i,i,!1,i,i,i,i,i,n,i,i,i,i,i,i,i,i,i,i,o,i,i,i,p,j.x,i,i,i,i,i,m,i,i,i,B.Y,i) -return A.b5M(new A.nN(!r,new A.a3V(k,q,i),i))}} -A.ao_.prototype={ -$0(){if(this.a.d)A.aRp(this.b) -else A.FI(B.aa_)}, -$S:0} -A.Mq.prototype={ -K(a){return A.aRm(!0,null,t.Bs.a(this.c).gp(),this.e,null,this.f,null)}} -A.y7.prototype={ -im(a){if(this.n==null)return!1 -return this.qt(a)}, -ZO(a){}, -ZQ(a,b){var s=this.n -if(s!=null)this.d0("onAnyTapUp",s)}, -BA(a,b,c){}} -A.a0v.prototype={ -XD(){var s=t.S -return new A.y7(B.bi,-1,-1,B.dY,A.t(s,t.SP),A.dv(s),null,null,A.LU(),A.t(s,t.g))}, -a_c(a){a.n=this.a}} -A.a3V.prototype={ -K(a){return new A.j5(this.c,A.aG([B.agt,new A.a0v(this.d)],t.u,t.xR),B.aG,!1,null)}, -gR(){return this.c}} -A.TJ.prototype={ -K(a){var s=this,r=a.aA(t.I).w,q=A.c([],t.p),p=s.c -if(p!=null)q.push(A.al_(p,B.lz)) -p=s.d -if(p!=null)q.push(A.al_(p,B.lA)) -p=s.e -if(p!=null)q.push(A.al_(p,B.lB)) -return new A.B_(new A.aKS(s.f,s.r,r),q,null)}} -A.Ky.prototype={ -N(){return"_ToolbarSlot."+this.b}} -A.aKS.prototype={ -a0v(a){var s,r,q,p,o,n,m,l,k,j,i,h=this -if(h.b.h(0,B.lz)!=null){s=a.a -r=a.b -q=h.f1(B.lz,new A.al(0,s,r,r)).a -switch(h.f.a){case 0:s-=q -break -case 1:s=0 -break -default:s=null}h.hM(B.lz,new A.h(s,0))}else q=0 -if(h.b.h(0,B.lB)!=null){p=h.f1(B.lB,A.adb(a)) -switch(h.f.a){case 0:s=0 -break -case 1:s=a.a-p.a -break -default:s=null}o=p.a -h.hM(B.lB,new A.h(s,(a.b-p.b)/2))}else o=0 -if(h.b.h(0,B.lA)!=null){s=a.a -r=h.e -n=Math.max(s-q-o-r*2,0) -m=h.f1(B.lA,A.adb(a).XM(n)) -l=q+r -if(h.d){k=m.a -j=(s-k)/2 -i=s-o -if(j+k>i)j=i-k-r -else if(j")),s=s.c;q.v();){r=q.d -if(r==null)r=s.a(r) -if(r.a===this)return!1 -r=r.d.a -if(r<=10&&r>=1)return!0}return!1}, -gBN(){var s=this.b -if(s==null)s=null -else{s=s.QM(A.b_U(this)) -s=s==null?null:s.ga_D()}return s===!0}} -A.as6.prototype={ -$1(a){var s=this.a -if(s.gtl()){s=s.b.y.ghp() -if(s!=null)s.it()}}, -$S:40} -A.as5.prototype={ -$1(a){var s=this.a.b -if(s!=null){s=s.y.ghp() -if(s!=null)s.it()}}, -$S:40} -A.jY.prototype={ -k(a){var s=this.a -s=s==null?"none":'"'+s+'"' -return"RouteSettings("+s+", "+A.j(this.b)+")"}} -A.rf.prototype={} -A.qG.prototype={ -cI(a){return a.f!=this.f}} -A.as4.prototype={} -A.YX.prototype={} -A.PH.prototype={} -A.Dj.prototype={ -ah(){var s=null,r=A.c([],t.uD),q=$.af(),p=t.Tp -return new A.jS(new A.a2Y(r,q),A.aU(t.Ez),new A.a2Z(q),A.o6(s,p),A.o6(s,p),A.lZ(!0,"Navigator",!0,!0,s,s,!1),new A.Ef(0,q,t.dZ),new A.cb(!1,q),A.aU(t.S),s,A.t(t.yb,t.M),s,!0,s,s,s)}, -awb(a,b){return this.at.$2(a,b)}} -A.aoM.prototype={ -$1(a){return a==null}, -$S:463} -A.fB.prototype={ -N(){return"_RouteLifecycle."+this.b}} -A.a66.prototype={} -A.iM.prototype={ -gey(){var s,r -if(this.c){s=t.sd.a(this.a.c) -s.gey() -r=A.j(s.gey()) -return"p+"+r}r=this.b -if(r!=null)return"r+"+r.ga1h() -return null}, -ata(a,b,c,d){var s,r,q,p=this,o=p.d,n=p.a -n.b=b -n.pF() -s=p.d -if(s===B.pm||s===B.pn){r=n.pj() -p.d=B.Kb -r.az8(new A.aGW(p,b))}else{if(c instanceof A.f3){s=n.CW -s.toString -q=c.CW.x -q===$&&A.a() -s.sp(q)}n.a5C(c) -p.d=B.iq}if(a)n.pi(null) -s=o===B.ak3||o===B.pn -q=b.w -if(s)q.he(new A.IG(n,d)) -else q.he(new A.yI(n,d))}, -Bt(a){var s=this,r=s.a -if(A.n(r).i("f3<1>").b(a)&&r.vn(a)&&!J.b(a.gjC(),r.gjC()))r.p1=a.gjC() -else r.p1=null -r.a69(a) -r.p9() -r.ahp() -s.f=new A.pq(new ($.Ma())(a)) -if(s.w!=null)a.f.a.c1(new A.aGV(s),t.a)}, -at9(a,b){var s,r=this -r.d=B.ak_ -s=r.a -if((s.e.a.a&30)!==0)return!0 -if(!s.m4(r.y)){r.d=B.iq -return!1}s.Ci(!0,r.y) -r.y=null -return!0}, -ax2(a,b){this.y=a -this.d=B.Kc -this.x=b}, -ax3(a,b){return this.ax2(a,b,t.z)}, -apL(a,b,c){var s=this -if(s.d.a>=10)return -s.z=!c -s.y=a -s.d=B.ak4 -s.x=b}, -Xv(a,b,c){return this.apL(a,b,c,t.z)}, -l(){var s,r,q,p,o,n,m,l=this,k={} -l.d=B.ak1 -s=l.a -r=s.r -q=new A.aGT() -p=new A.b1(r,q,A.a6(r).i("b1<1>")) -if(!p.gai(0).v()){l.d=B.lq -s.l() -return}k.a=p.gH(0) -o=s.b -o.f.G(0,l) -for(s=B.b.gai(r),q=new A.n5(s,q);q.v();){r=s.gT() -n=A.bQ() -m=new A.aGU(k,l,r,n,o) -n.b=m -r=r.e -if(r!=null)r.a9(m)}}, -gazb(){var s=this.d.a -return s<=7&&s>=1}, -ga_D(){var s=this.d.a -return s<=10&&s>=1}} -A.aGW.prototype={ -$0(){var s=this.a -if(s.d===B.Kb){s.d=B.iq -this.b.ur()}}, -$S:0} -A.aGV.prototype={ -$1(a){var s=0,r=A.I(t.a),q=this,p,o -var $async$$1=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:p=A.aT() -s=B.as===p?3:4 -break -case 3:o=q.a.w -s=5 -return A.p(A.vE(B.aM,null,t.H),$async$$1) -case 5:B.eB.hX(B.rv.D_(o)) -s=2 -break -case 4:if(B.U===p){B.eB.hX(B.rv.D_(q.a.w)) -s=2 -break}s=2 -break -case 2:return A.G(null,r)}}) -return A.H($async$$1,r)}, -$S:464} -A.aGT.prototype={ -$1(a){return a.ga05()}, -$S:465} -A.aGU.prototype={ -$0(){var s=this,r=s.a;--r.a -s.c.O(s.d.bc()) -if(r.a===0)return A.fE(new A.aGS(s.b,s.e))}, -$S:0} -A.aGS.prototype={ -$0(){var s=this.a -if(!this.b.f.J(0,s))return -s.d=B.lq -s.a.l()}, -$S:0} -A.aGX.prototype={ -$1(a){return a.a===this.a}, -$S:63} -A.pd.prototype={} -A.yI.prototype={ -pU(a){}} -A.yH.prototype={ -pU(a){}} -A.IF.prototype={ -pU(a){}} -A.IG.prototype={ -pU(a){}} -A.a2Y.prototype={ -a_(a,b){B.b.a_(this.a,b) -if(J.jt(b))this.a7()}, -h(a,b){return this.a[b]}, -gai(a){var s=this.a -return new J.cO(s,s.length,A.a6(s).i("cO<1>"))}, -k(a){return A.o_(this.a,"[","]")}, -$iae:1} -A.jS.prototype={ -aeh(){var s,r,q,p=this,o=!p.Xg() -if(o){s=p.uF(A.km()) -r=s!=null&&s.a.glk()===B.fy}else r=!1 -q=new A.oa(!o||r) -o=$.c6 -switch(o.p2$.a){case 4:p.c.em(q) -break -case 0:case 2:case 3:case 1:o.k4$.push(new A.aoJ(p,q)) -break}}, -aw(){var s,r,q,p,o=this -o.b3() -for(s=o.a.y,r=0;!1;++r){q=s[r] -p=$.kn() -A.Qe(q) -p.a.set(q,o)}o.as=o.a.y -s=o.c.fs(t.mS) -s=s==null?null:s.gW() -t._I.a(s) -o.HN(s==null?null:s.f) -o.a.toString -B.nY.j1("selectSingleEntryHistory",t.H) -$.ee.bU$.a9(o.gTl()) -o.e.a9(o.gRM())}, -ak7(){var s=this.e,r=A.jL(new A.b1(s,A.km(),A.n(s).i("b1"))) -if(r!=null)r.w=$.ee.bU$.a}, -h7(a,b){var s,r,q,p,o,n,m,l=this -l.kw(l.at,"id") -s=l.r -l.kw(s,"history") -l.QS() -l.d=new A.by(null,t._v) -r=l.e -r.a_(0,s.a1i(null,l)) -l.a.toString -q=r.a -p=0 -for(;!1;++p){o=B.Xc[p] -n=l.c -n.toString -m=new A.iM(o.J6(n),null,!0,B.pl,B.cG,new A.pq(new ($.Ma())(B.cG)),B.cG) -q.push(m) -r.a7() -n=s.a1i(m,l) -B.b.a_(q,n) -if(B.b.gc6(n))r.a7()}if(s.y==null){s=l.a -q=s.r -r.a_(0,J.ju(s.awb(l,q),new A.aoL(l),t.Ez))}l.ur()}, -Ju(a){var s,r=this -r.a5u(a) -s=r.r -if(r.bD$!=null)s.cQ(r.e) -else s.aa(0)}, -gey(){return this.a.z}, -by(){var s,r,q,p,o,n=this -n.a6z() -s=n.c.aA(t.mS) -n.HN(s==null?null:s.f) -for(r=n.e.a,q=A.a6(r),r=new J.cO(r,r.length,q.i("cO<1>")),q=q.c;r.v();){p=r.d -p=(p==null?q.a(p):p).a -if(p.b===n){p.Or() -o=p.x1 -o===$&&A.a() -o=o.r.gS() -if(o!=null)o.yO() -p=p.rx -if(p.gS()!=null)p.gS().QR()}}}, -QS(){var s,r,q -this.f.ym(new A.aoI(),!0) -for(s=this.e,r=s.a;!s.gan(0);){q=r.pop() -s.a7() -A.aX1(q,!1)}}, -HN(a){var s,r,q=this -if(q.Q!=a){if(a!=null)$.kn().m(0,a,q) -s=q.Q -if(s==null)s=null -else{r=$.kn() -A.qj(s) -s=r.a.get(s)}if(s===q){s=$.kn() -r=q.Q -r.toString -s.m(0,r,null)}q.Q=a -q.HM()}}, -HM(){var s=this,r=s.Q,q=s.a -if(r!=null)s.as=B.b.a8(q.y,A.c([r],t.tc)) -else s.as=q.y}, -aV(a){var s,r,q,p,o,n,m=this -m.a6A(a) -s=a.y -if(s!==m.a.y){for(r=0;!1;++r){q=s[r] -p=$.kn() -A.Qe(q) -p.a.set(q,null)}for(s=m.a.y,r=0;!1;++r){q=s[r] -p=$.kn() -A.Qe(q) -p.a.set(q,m)}m.HM()}m.a.toString -for(s=m.e.a,p=A.a6(s),s=new J.cO(s,s.length,p.i("cO<1>")),p=p.c;s.v();){o=s.d -o=(o==null?p.a(o):o).a -if(o.b===m){o.Or() -n=o.x1 -n===$&&A.a() -n=n.r.gS() -if(n!=null)n.yO() -o=o.rx -if(o.gS()!=null)o.gS().QR()}}}, -dA(){var s,r,q,p,o=this.as -o===$&&A.a() -s=o.length -r=0 -for(;r")),r=r.c;s.v();){q=s.d -B.b.a_(p,(q==null?r.a(q):q).a.r)}return p}, -FM(b4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2=this,b3=null -b2.CW=!0 -s=b2.e -r=s.gH(0)-1 -q=s.a -p=q[r] -o=r>0?q[r-1]:b3 -n=A.c([],t.uD) -A:for(m=b2.x,l=t.F,k=t.T,j=t.M,i=t.S,h=t.PD,g=b2.w,f=b3,e=f,d=!1,c=!1;r>=0;){b=!0 -a=!0 -switch(p.d.a){case 1:a0=b2.n8(r-1,A.km()) -a1=a0>=0?q[a0]:b3 -a1=a1==null?b3:a1.a -p.d=B.ak2 -g.he(new A.yI(p.a,a1)) -continue A -case 2:if(d||e==null){a1=p.a -a1.b=b2 -a1.Ot() -a2=A.fb.prototype.gjv.call(a1) -a3=new A.rF(new A.bp(A.c([],l),k),new A.eQ(A.t(j,i),h),0) -a3.c=a2 -if(a2==null){a3.a=B.Z -a3.b=0}a1.p3=a3 -a2=A.fb.prototype.gDF.call(a1) -a3=new A.rF(new A.bp(A.c([],l),k),new A.eQ(A.t(j,i),h),0) -a3.c=a2 -a1.p4=a3 -a2=a1.rx -a3=a2.gS()!=null -if(a3)a1.b.a.toString -if(a3){a3=a1.b.y -a4=a3.ay -if(a4==null){a5=a3.Q -a4=a3.ay=a5==null?b3:a5.gip()}if(a4!=null){a2=a2.gS().f -if(a2.Q==null)a4.uQ(a2) -if(a4.gc5())a2.k9(!0) -else a2.oT()}}a1.a66() -p.d=B.iq -if(e==null)a1.pi(b3) -continue A}break -case 3:case 4:case 6:a1=o==null?b3:o.a -a0=b2.n8(r-1,A.km()) -a2=a0>=0?q[a0]:b3 -a2=a2==null?b3:a2.a -p.ata(e==null,b2,a1,a2) -if(p.d===B.iq)continue A -break -case 5:if(!c&&f!=null)p.Bt(f) -c=a -break -case 7:if(!c&&f!=null)p.Bt(f) -c=a -d=b -break -case 8:a0=b2.n8(r,A.LR()) -a1=a0>=0?q[a0]:b3 -if(!p.at9(b2,a1==null?b3:a1.a))continue A -if(!c){if(f!=null)p.Bt(f) -f=p.a}a1=p.a -a0=b2.n8(r,A.LR()) -a2=a0>=0?q[a0]:b3 -m.he(new A.yH(a1,a2==null?b3:a2.a)) -if(p.d===B.lp)continue A -d=b -break -case 11:break -case 9:a1=p.a -a2=p.y -if(a2==null)a2=b3 -a1=a1.e.a -if((a1.a&30)!==0)A.a0(A.aL("Future already completed")) -a1.lI(a2) -p.y=null -p.d=B.ajZ -continue A -case 10:if(!c&&p.a.b!=null){if(f!=null)p.Bt(f) -f=b3}a0=b2.n8(r,A.LR()) -a1=a0>=0?q[a0]:b3 -a1=a1==null?b3:a1.a -a2=p.a -if(a2.b===b2)p.d=B.ak0 -else p.d=B.lp -if(p.z)m.he(new A.IF(a2,a1)) -continue A -case 12:if(!d&&e!=null)break -p.d=B.lp -continue A -case 13:a6=B.b.kx(q,r) -s.a7() -n.push(a6) -if(p.c&&p.x)b2.a.toString -p=e -break -case 14:case 15:case 0:break}--r -a7=r>0?q[r-1]:b3 -e=p -p=o -o=a7}b2.ack() -b2.acm() -a8=b2.uF(A.km()) -q=a8==null -if(!q&&b2.ax!==a8){m=b2.as -m===$&&A.a() -l=m.length -k=a8.a -a9=0 -for(;a9=0;){s=l[k] -r=s.d.a -if(!(r<=12&&r>=3)){--k -continue}q=this.ad_(k+1,A.b1U()) -r=q==null -p=r?m:q.a -if(p!=s.r){if(!((r?m:q.a)==null&&J.b(s.f.a.deref(),s.r))){p=r?m:q.a -s.a.pi(p)}s.r=r?m:q.a}--k -o=this.n8(k,A.b1U()) -n=o>=0?l[o]:m -r=n==null -p=r?m:n.a -if(p!=s.e){p=s.a -p.a5y(r?m:n.a) -p.p9() -s.e=r?m:n.a}}}, -Ri(a,b){a=this.n8(a,b) -return a>=0?this.e.a[a]:null}, -n8(a,b){var s=this.e.a -for(;;){if(!(a>=0&&!b.$1(s[a])))break;--a}return a}, -ad_(a,b){var s=this.e,r=s.a -for(;;){if(!(a?") -q=r.a(this.a.w.$1(s)) -return q==null&&!b?r.a(this.a.x.$1(s)):q}, -He(a,b,c){return this.ze(a,!1,b,c)}, -axc(a){var s=this.e -s.a.push(A.aGR(a,B.pm,!1,null)) -s.a7() -this.ur() -this.y8() -return a.e.a}, -o5(a){return this.axc(a,t.X)}, -axf(a,b){this.ajZ(A.aGR(a,B.pm,!1,null),b) -return a.e.a}, -LM(a,b){return this.axf(a,b,t.X)}, -ajZ(a,b){var s,r=this.e,q=r.gH(0)-1,p=r.a -p.push(a) -r.a7() -for(;;){if(!(q>=0&&!b.$1(p[q].a)))break -r=p[q] -s=r.d.a -if(s<=10&&s>=1)r.Xv(null,!0,!1);--q}this.ur() -this.y8()}, -Xg(){var s=this.e.gai(0),r=new A.n5(s,A.km()) -if(!r.v())return!1 -s=s.gT().a.m8$ -if(s!=null&&s.length!==0)return!0 -if(!r.v())return!1 -return!0}, -wr(a){var s=0,r=A.I(t.y),q,p=this,o,n -var $async$wr=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)A:switch(s){case 0:n=p.uF(A.km()) -if(n==null){q=!1 -s=1 -break}o=n.a -s=3 -return A.p(o.jW(),$async$wr) -case 3:if(c===B.fy){q=!0 -s=1 -break}if(p.c==null){q=!0 -s=1 -break}if(n!==p.uF(A.km())){q=!0 -s=1 -break}switch(o.glk().a){case 2:q=!1 -s=1 -break A -case 0:p.q0(a) -q=!0 -s=1 -break A -case 1:o.Ci(!1,a) -q=!0 -s=1 -break A}case 1:return A.G(q,r)}}) -return A.H($async$wr,r)}, -avC(a){return this.wr(a,t.X)}, -a01(){return this.wr(null,t.X)}, -a0y(a){var s=this,r=s.e.a_P(0,A.km()) -if(r.c)s.a.toString -r.ax3(a,!0) -if(r.d===B.Kc)s.FM(!1) -s.y8()}, -ct(){return this.a0y(null,t.X)}, -q0(a){return this.a0y(a,t.X)}, -Zc(a){var s=this,r=s.e.a,q=B.b.a_9(r,A.b_U(a),0),p=r[q] -if(p.c&&p.d.a<8){r=s.Ri(q-1,A.LR()) -r=r==null?null:r.a -s.x.he(new A.yH(a,r))}p.d=B.lp -if(!s.CW)s.FM(!1)}, -sW8(a){this.cx=a -this.cy.sp(a>0)}, -Yv(){var s,r,q,p,o,n,m=this -m.sW8(m.cx+1) -if(m.cx===1){s=m.e -r=m.n8(s.gH(0)-1,A.LR()) -q=s.a[r].a -s=q.m8$ -p=!(s!=null&&s.length!==0)&&r>0?m.Ri(r-1,A.LR()).a:null -s=m.as -s===$&&A.a() -o=s.length -n=0 -for(;n")),r=r.c;s.v();){q=s.d -if(q==null)q=r.a(q) -if(a.$1(q))return q}return null}, -uF(a){var s,r,q,p,o -for(s=this.e.a,r=A.a6(s),s=new J.cO(s,s.length,r.i("cO<1>")),r=r.c,q=null;s.v();){p=s.d -o=p==null?r.a(p):p -if(a.$1(o))q=o}return q}, -K(a){var s,r,q=this,p=null,o=q.gaf1(),n=A.nR(a),m=q.bD$,l=q.d -l===$&&A.a() -s=q.a.ay -if(l.gS()==null){r=q.gOV() -r=J.o0(r.slice(0),A.a6(r).c)}else r=B.Xd -return new A.qG(p,new A.dT(new A.aoK(q,a),A.Cz(B.b3,A.aca(!1,A.Qm(A.jH(!0,p,A.xX(m,new A.wp(r,s,l)),p,p,p,q.y,!1,p,p,p,p,p,!0),n)),o,q.gahS(),p,p,o),p,t.en),p)}} -A.aoJ.prototype={ -$1(a){var s=this.a.c -if(s==null)return -s.em(this.b)}, -$S:4} -A.aoL.prototype={ -$1(a){var s,r,q=a.c.a -if(q!=null){s=this.a.at -r=s.y -if(r==null)r=s.$ti.i("c3.T").a(r) -s.Oq(r+1) -q=new A.a41(r,q,null,B.po)}else q=null -return A.aGR(a,B.pl,!1,q)}, -$S:468} -A.aoI.prototype={ -$1(a){a.d=B.lq -a.a.l() -return!0}, -$S:63} -A.aoH.prototype={ -$0(){var s=this.a -if(s!=null)s.sWo(!0)}, -$S:0} -A.aoK.prototype={ -$1(a){if(a.a||!this.a.Xg())return!1 -this.b.em(B.a35) -return!0}, -$S:201} -A.Jv.prototype={ -N(){return"_RouteRestorationType."+this.b}} -A.a5Y.prototype={ -ga_F(){return!0}, -Ai(){return A.c([this.a.a],t.jl)}} -A.a41.prototype={ -Ai(){var s=this,r=s.a7_(),q=A.c([s.c,s.d],t.jl),p=s.e -if(p!=null)q.push(p) -B.b.a_(r,q) -return r}, -J6(a){var s=a.He(this.d,this.e,t.z) -s.toString -return s}, -ga1h(){return this.c}} -A.azg.prototype={ -ga_F(){return!1}, -Ai(){A.b9J(this.d)}, -J6(a){var s=a.c -s.toString -return this.d.$2(s,this.e)}, -ga1h(){return this.c}} -A.a2Z.prototype={ -cQ(a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=null,a=c.y==null -if(a)c.y=A.t(t.N,t.UX) -s=t.jl -r=A.c([],s) -q=c.y.h(0,b) -if(q==null)q=B.jQ -p=A.t(t.ob,t.UX) -o=c.y.gcd() -n=o.ix(o) -for(o=a0.a,m=A.a6(o),o=new J.cO(o,o.length,m.i("cO<1>")),m=m.c,l=b,k=a,j=!0;o.v();){i=o.d -h=i==null?m.a(i):i -if(h.d.a>7){i=h.a -i.d.sp(b) -continue}if(h.c){k=k||r.length!==J.cg(q) -if(r.length!==0){g=l==null?b:l.gey() -p.m(0,g,r) -n.J(0,g)}j=h.gey()!=null -i=h.a -f=j?h.gey():b -i.d.sp(f) -if(j){r=A.c([],s) -i=c.y -i.toString -q=i.h(0,h.gey()) -if(q==null)q=B.jQ}else{r=B.jQ -q=B.jQ}l=h -continue}if(j){i=h.b -i=i==null?b:i.ga_F() -j=i===!0}else j=!1 -i=h.a -f=j?h.gey():b -i.d.sp(f) -if(j){i=h.b -e=i.b -if(e==null)e=i.b=i.Ai() -if(!k){i=J.bk(q) -f=i.gH(q) -d=r.length -k=f<=d||!J.b(i.h(q,d),e)}else k=!0 -B.b.G(r,e)}}k=k||r.length!==J.cg(q) -c.ac9(r,l,p,n) -if(k||n.gc6(n)){c.y=p -c.a7()}}, -ac9(a,b,c,d){var s -if(a.length!==0){s=b==null?null:b.gey() -c.m(0,s,a) -d.J(0,s)}}, -aa(a){if(this.y==null)return -this.y=null -this.a7()}, -a1i(a,b){var s,r,q,p=A.c([],t.uD) -if(this.y!=null)s=a!=null&&a.gey()==null -else s=!0 -if(s)return p -s=this.y -s.toString -r=s.h(0,a==null?null:a.gey()) -if(r==null)return p -for(s=J.bG(r);s.v();){q=A.bdA(s.gT()) -p.push(new A.iM(q.J6(b),q,!1,B.pl,B.cG,new A.pq(new ($.Ma())(B.cG)),B.cG))}return p}, -As(){return null}, -rT(a){a.toString -return t.f.a(a).mn(0,new A.aCS(),t.ob,t.UX)}, -a_b(a){this.y=a}, -ts(){return this.y}, -gnK(){return this.y!=null}} -A.aCS.prototype={ -$2(a,b){return new A.aV(A.bH(a),A.jN(t.j.a(b),!0,t.K),t.qE)}, -$S:469} -A.oa.prototype={ -k(a){return"NavigationNotification canHandlePop: "+this.a}} -A.aET.prototype={ -$2(a,b){if(!a.a)a.O(b)}, -$S:44} -A.IH.prototype={ -bF(){this.cE() -this.cv() -this.eG()}, -l(){var s=this,r=s.bl$ -if(r!=null)r.O(s.geq()) -s.bl$=null -s.aQ()}} -A.II.prototype={ -aV(a){this.bm(a) -this.nF()}, -by(){var s,r,q,p,o=this -o.du() -s=o.bD$ -r=o.gmz() -q=o.c -q.toString -q=A.mF(q) -o.f_$=q -p=o.lR(q,r) -if(r){o.h7(s,o.dU$) -o.dU$=!1}if(p)if(s!=null)s.l()}, -l(){var s,r=this -r.eZ$.aL(0,new A.aET()) -s=r.bD$ -if(s!=null)s.l() -r.bD$=null -r.a6y()}} -A.aaH.prototype={} -A.TQ.prototype={ -k(a){var s=A.c([],t.s) -this.eu(s) -return"Notification("+B.b.bJ(s,", ")+")"}, -eu(a){}} -A.dT.prototype={ -cf(){return new A.IK(this,B.ae,this.$ti.i("IK<1>"))}} -A.IK.prototype={ -a0g(a){var s,r=this.e -r.toString -s=this.$ti -s.i("dT<1>").a(r) -if(s.c.b(a))return r.d.$1(a) -return!1}, -o_(a){}} -A.i9.prototype={} -A.aaN.prototype={} -A.oc.prototype={ -slh(a){var s -if(this.b===a)return -this.b=a -s=this.f -if(s!=null)s.Qf()}, -swp(a){if(this.c)return -this.c=!0 -this.f.Qf()}, -ga05(){var s=this.e -return(s==null?null:s.a)!=null}, -a9(a){var s=this.e -if(s!=null)s.a9(a)}, -O(a){var s=this.e -if(s!=null)s.O(a)}, -fI(a){var s,r=this.f -r.toString -this.f=null -if(r.c==null)return -B.b.J(r.d,this) -s=$.c6 -if(s.p2$===B.fz)s.k4$.push(new A.apa(r)) -else r.Sy()}, -cL(){var s=this.r.gS() -if(s!=null)s.yO()}, -l(){var s,r=this -r.w=!0 -if(!r.ga05()){s=r.e -if(s!=null){s.P$=$.af() -s.L$=0}r.e=null}}, -k(a){var s=this,r=A.bF(s),q=s.b,p=s.c,o=s.w?"(DISPOSED)":"" -return"#"+r+"(opaque: "+q+"; maintainState: "+p+")"+o}, -$iae:1} -A.apa.prototype={ -$1(a){this.a.Sy()}, -$S:4} -A.nf.prototype={ -ah(){return new A.IL()}} -A.IL.prototype={ -aj_(a){var s,r,q,p=this.e -if(p==null)p=this.e=new A.mb(t.oM) -s=p.b===0?null:p.gaC(0) -r=a.a -for(;;){q=s==null -if(!(!q&&s.a>r))break -s=s.gwJ()}if(q)p.nr(a) -else s.fl$.oL(s.h1$,a,!1)}, -gGZ(){var s,r=this,q=r.f -if(q===$){s=r.Fm(!1) -r.f!==$&&A.aK() -r.f=s -q=s}return q}, -Fm(a){return new A.hi(this.aaP(a),t.dQ)}, -aaP(a){var s=this -return function(){var r=a -var q=0,p=2,o=[],n,m,l -return function $async$Fm(b,c,d){if(c===1){o.push(d) -q=p}for(;;)switch(q){case 0:l=s.e -if(l==null||l.b===0){q=1 -break}n=r?l.gaC(0):l.gad(0) -case 3:if(!(n!=null)){q=4 -break}m=n.d -n=r?n.gwJ():n.gmo() -q=m!=null?5:6 -break -case 5:q=7 -return b.b=m,1 -case 7:case 6:q=3 -break -case 4:case 1:return 0 -case 2:return b.c=o.at(-1),3}}}}, -aw(){var s,r=this -r.b3() -r.a.c.e.sp(r) -s=r.c.nP(t.im) -s.toString -r.d=s}, -aV(a){var s,r=this -r.bm(a) -if(a.d!==r.a.d){s=r.c.nP(t.im) -s.toString -r.d=s}}, -l(){var s,r=this,q=r.a.c.e -if(q!=null)q.sp(null) -q=r.a.c -if(q.w){s=q.e -if(s!=null){s.P$=$.af() -s.L$=0}q.e=null}r.e=null -r.aQ()}, -K(a){var s=this.a,r=s.e,q=this.d -q===$&&A.a() -return A.aSd(new A.u9(q,this,new A.dO(s.c.a,null),null),r)}, -yO(){this.ar(new A.aF5())}} -A.aF5.prototype={ -$0(){}, -$S:0} -A.wp.prototype={ -ah(){return new A.Dt(A.c([],t.wi),null,null)}} -A.Dt.prototype={ -aw(){this.b3() -this.a_h(0,this.a.c)}, -Gt(a,b){if(a!=null)return B.b.ik(this.d,a) -return this.d.length}, -a_g(a,b,c){b.f=this -this.ar(new A.apf(this,c,null,b))}, -mg(a,b){return this.a_g(0,b,null)}, -a_h(a,b){var s,r=b.length -if(r===0)return -for(s=0;s"),s=new A.cu(s,r),s=new A.bf(s,s.gH(0),r.i("bf")),r=r.i("aE.E"),q=!0,p=0;s.v();){o=s.d -if(o==null)o=r.a(o) -if(q){++p -m.push(new A.nf(o,n,!0,o.r)) -o=o.b -q=!o}else if(o.c)m.push(new A.nf(o,n,!1,o.r))}s=m.length -r=n.a.d -o=t.MV -o=A.aa(new A.cu(m,o),o.i("aE.E")) -o.$flags=1 -return new A.Kw(s-p,r,o,null)}} -A.apf.prototype={ -$0(){var s=this,r=s.a -B.b.mh(r.d,r.Gt(s.b,s.c),s.d)}, -$S:0} -A.ape.prototype={ -$0(){var s=this,r=s.a -B.b.rY(r.d,r.Gt(s.b,s.c),s.d)}, -$S:0} -A.apg.prototype={ -$0(){var s,r,q=this,p=q.a,o=p.d -B.b.aa(o) -s=q.b -B.b.a_(o,s) -r=q.c -r.CM(s) -B.b.rY(o,p.Gt(q.d,q.e),r)}, -$S:0} -A.apd.prototype={ -$0(){}, -$S:0} -A.apc.prototype={ -$0(){}, -$S:0} -A.Kw.prototype={ -cf(){return new A.a9w(A.dv(t.Q),this,B.ae)}, -bf(a){var s=new A.u8(a.aA(t.I).w,this.e,this.f,A.at(),0,null,null,new A.b8(),A.at()) -s.be() -s.a_(0,null) -return s}, -bj(a,b){var s=this.e -if(b.a0!==s){b.a0=s -if(!b.a5)b.oF()}b.sce(a.aA(t.I).w) -s=this.f -if(s!==b.a3){b.a3=s -b.bb() -b.br()}}} -A.a9w.prototype={ -ga1(){return t.im.a(A.ii.prototype.ga1.call(this))}, -j0(a,b){var s,r -this.O1(a,b) -s=a.b -s.toString -t.i9.a(s) -r=this.e -r.toString -s.at=t.KJ.a(t.f2.a(r).c[b.b]).c}, -io(a,b,c){this.O2(a,b,c)}} -A.pi.prototype={ -eT(a){if(!(a.b instanceof A.f7))a.b=new A.f7(null,null,B.f)}, -hm(a){var s,r,q,p,o,n -for(s=this.lJ(),s=s.gai(s),r=t.B,q=null;s.v();){p=s.gT() -o=p.b -o.toString -r.a(o) -n=p.mL(a) -o=o.a -q=A.A6(q,n==null?null:n+o.b)}return q}, -f1(a,b){var s,r=a.b -r.toString -t.B.a(r) -s=this.gtr().gHb() -if(!r.gpK()){a.cs(b,!0) -r.a=B.f}else A.aXI(a,r,this.gC(),s)}, -da(a,b){var s,r,q,p=this.y9(),o=p.gai(p) -p=t.B -s=!1 -for(;;){if(!(!s&&o.v()))break -r=o.gT() -q=r.b -q.toString -s=a.kP(new A.aGC(r),p.a(q).a,b)}return s}, -b1(a,b){var s,r,q,p,o,n -for(s=this.lJ(),s=s.gai(s),r=t.B,q=b.a,p=b.b;s.v();){o=s.gT() -n=o.b -n.toString -n=r.a(n).a -a.e4(o,new A.h(n.a+q,n.b+p))}}} -A.aGC.prototype={ -$2(a,b){return this.a.cT(a,b)}, -$S:19} -A.z8.prototype={ -Mz(a){var s=this.at -if(s==null)s=null -else{s=s.e -s=s==null?null:s.a.gGZ().aL(0,a)}return s}} -A.u8.prototype={ -gtr(){return this}, -eT(a){if(!(a.b instanceof A.z8))a.b=new A.z8(null,null,B.f)}, -aP(a){var s,r,q,p,o -this.a7X(a) -s=this.al$ -for(r=t.i9;s!=null;){q=s.b -q.toString -r.a(q) -p=q.at -if(p==null)o=null -else{p=p.e -o=p==null?null:new A.nk(p.a.gGZ().a())}if(o!=null)while(o.v())o.b.aP(a) -s=q.aJ$}}, -az(){var s,r,q -this.a7Y() -s=this.al$ -for(r=t.i9;s!=null;){q=s.b -q.toString -r.a(q) -q.Mz(A.bkJ()) -s=q.aJ$}}, -h6(){return this.bB(this.gLU())}, -gHb(){var s=this.n -return s==null?this.n=B.aQ.af(this.U):s}, -sce(a){var s=this -if(s.U===a)return -s.U=a -s.n=null -if(!s.a5)s.oF()}, -Eu(a){var s=this -s.a5=!0 -s.i7(a) -s.bb() -s.a5=!1 -a.D.ag()}, -H2(a){var s=this -s.a5=!0 -s.m5(a) -s.bb() -s.a5=!1}, -ag(){if(!this.a5)this.oF()}, -gqO(){var s,r,q,p,o=this -if(o.a0===A.ao.prototype.gID.call(o))return null -s=A.ao.prototype.gasr.call(o) -for(r=o.a0,q=t.B;r>0;--r){p=s.b -p.toString -s=q.a(p).aJ$}return s}, -bP(a){return A.rP(this.gqO(),new A.aGG(a))}, -bH(a){return A.rP(this.gqO(),new A.aGE(a))}, -bO(a){return A.rP(this.gqO(),new A.aGF(a))}, -bG(a){return A.rP(this.gqO(),new A.aGD(a))}, -e2(a,b){var s,r,q,p,o=a.a,n=a.b,m=A.E(1/0,o,n),l=a.c,k=a.d,j=A.E(1/0,l,k) -if(isFinite(m)&&isFinite(j))s=new A.L(A.E(1/0,o,n),A.E(1/0,l,k)) -else{o=this.FI() -s=o.aO(B.S,a,o.gcu())}r=A.pM(s) -q=this.gHb() -for(o=new A.nk(this.lJ().a()),p=null;o.v();)p=A.A6(p,A.b_T(o.b,s,r,q,b)) -return p}, -dg(a){var s=a.a,r=a.b,q=A.E(1/0,s,r),p=a.c,o=a.d,n=A.E(1/0,p,o) -if(isFinite(q)&&isFinite(n))return new A.L(A.E(1/0,s,r),A.E(1/0,p,o)) -s=this.FI() -return s.aO(B.S,a,s.gcu())}, -lJ(){return new A.hi(this.aaj(),t.bm)}, -aaj(){var s=this -return function(){var r=0,q=1,p=[],o,n,m,l,k -return function $async$lJ(a,b,c){if(b===1){p.push(c) -r=q}for(;;)switch(r){case 0:k=s.gqO() -o=t.i9 -case 2:if(!(k!=null)){r=3 -break}r=4 -return a.b=k,1 -case 4:n=k.b -n.toString -o.a(n) -m=n.at -if(m==null)l=null -else{m=m.e -l=m==null?null:new A.nk(m.a.gGZ().a())}r=l!=null?5:6 -break -case 5:case 7:if(!l.v()){r=8 -break}r=9 -return a.b=l.b,1 -case 9:r=7 -break -case 8:case 6:k=n.aJ$ -r=2 -break -case 3:return 0 -case 1:return a.c=p.at(-1),3}}}}, -y9(){return new A.hi(this.aai(),t.bm)}, -aai(){var s=this -return function(){var r=0,q=1,p=[],o,n,m,l,k,j,i,h -return function $async$y9(a,b,c){if(b===1){p.push(c) -r=q}for(;;)switch(r){case 0:i=s.a0===A.ao.prototype.gID.call(s)?null:s.dn$ -h=s.dJ$-s.a0 -o=t.i9 -case 2:if(!(i!=null)){r=3 -break}n=i.b -n.toString -o.a(n) -m=n.at -l=null -if(!(m==null)){m=m.e -if(!(m==null)){m=m.a -k=m.r -if(k===$){j=m.Fm(!0) -m.r!==$&&A.aK() -m.r=j -k=j}m=new A.nk(k.a()) -l=m}}r=l!=null?4:5 -break -case 4:case 6:if(!l.v()){r=7 -break}r=8 -return a.b=l.b,1 -case 8:r=6 -break -case 7:case 5:r=9 -return a.b=i,1 -case 9:--h -i=h<=0?null:n.cS$ -r=2 -break -case 3:return 0 -case 1:return a.c=p.at(-1),3}}}}, -gkH(){return!1}, -c7(){var s,r,q=this,p=t.k,o=p.a(A.r.prototype.gab.call(q)),n=A.E(1/0,o.a,o.b) -o=A.E(1/0,o.c,o.d) -if(isFinite(n)&&isFinite(o)){p=p.a(A.r.prototype.gab.call(q)) -q.fy=new A.L(A.E(1/0,p.a,p.b),A.E(1/0,p.c,p.d)) -s=null}else{s=q.FI() -q.au=!0 -q.f1(s,p.a(A.r.prototype.gab.call(q))) -q.au=!1 -q.fy=s.gC()}r=A.pM(q.gC()) -for(p=new A.nk(q.lJ().a());p.v();){o=p.b -if(o!==s)q.f1(o,r)}}, -FI(){var s,r,q,p=this,o=p.a0===A.ao.prototype.gID.call(p)?null:p.dn$ -for(s=t.i9;o!=null;){r=o.b -r.toString -s.a(r) -q=r.at -q=q==null?null:q.d -if(q===!0&&!r.gpK())return o -o=r.cS$}throw A.i(A.nP(A.c([A.kz("Overlay was given infinite constraints and cannot be sized by a suitable child."),A.bZ("The constraints given to the overlay ("+p.gab().k(0)+") would result in an illegal infinite size ("+p.gab().gaoY().k(0)+"). To avoid that, the Overlay tried to size itself to one of its children, but no suitable non-positioned child that belongs to an OverlayEntry with canSizeOverlay set to true could be found."),A.Bw("Try wrapping the Overlay in a SizedBox to give it a finite size or use an OverlayEntry with canSizeOverlay set to true.")],t.D)))}, -b1(a,b){var s,r,q=this,p=q.L -if(q.a3!==B.v){s=q.cx -s===$&&A.a() -r=q.gC() -p.saR(a.ll(s,b,new A.w(0,0,0+r.a,0+r.b),A.pi.prototype.gf9.call(q),q.a3,p.a))}else{p.saR(null) -q.a6V(a,b)}}, -l(){this.L.saR(null) -this.fu()}, -bB(a){var s,r,q=this.al$ -for(s=t.i9;q!=null;){a.$1(q) -r=q.b -r.toString -s.a(r) -r.Mz(a) -q=r.aJ$}}, -fK(a){var s,r,q=this.gqO() -for(s=t.i9;q!=null;){a.$1(q) -r=q.b -r.toString -s.a(r) -r.Mz(a) -q=r.aJ$}}, -m3(a){var s -switch(this.a3.a){case 0:return null -case 1:case 2:case 3:s=this.gC() -return new A.w(0,0,0+s.a,0+s.b)}}} -A.aGG.prototype={ -$1(a){return a.aO(B.bR,this.a,a.gcG())}, -$S:45} -A.aGE.prototype={ -$1(a){return a.aO(B.aK,this.a,a.gc2())}, -$S:45} -A.aGF.prototype={ -$1(a){return a.aO(B.by,this.a,a.gcA())}, -$S:45} -A.aGD.prototype={ -$1(a){return a.aO(B.bg,this.a,a.gcp())}, -$S:45} -A.Ds.prototype={ -DR(){var s=this.a,r=$.aRv+1 -if(s!=null){$.aRv=r -s.a3o(r)}else this.b=$.aRv=r}, -fn(){var s=this.a -if(s!=null)s.fn() -else this.b=null}, -gKW(){var s=this.a -return s!=null?s.d!=null:this.b!=null}, -k(a){return"OverlayPortalController"+(this.a!=null?"":" DETACHED")}} -A.U3.prototype={ -N(){return"OverlayChildLocation."+this.b}} -A.ml.prototype={ -ah(){return new A.a4k()}, -gR(){return this.e}} -A.apb.prototype={ -$1(a){return new A.yK(this.a,null)}, -$S:470} -A.a4k.prototype={ -acQ(a,b){var s,r,q=this,p=q.f,o=A.yy(new A.aF6(q,b)) -if(p!=null)if(q.e){s=o.eF() -s=p.b===s.r&&p.c===s.f -r=s}else r=!0 -else r=!1 -q.e=!1 -if(r)return p -return q.f=new A.pg(a,o.eF().r,o.eF().f)}, -aw(){this.b3() -this.Ur(this.a.c)}, -Ur(a){var s,r=a.b,q=this.d -if(q!=null)s=r!=null&&r>q -else s=!0 -if(s)this.d=r -a.b=null -a.a=this}, -by(){this.du() -this.e=!0}, -aV(a){var s,r,q=this -q.bm(a) -q.e=q.e||a.f!==q.a.f -s=a.c -r=q.a.c -if(s!==r){s.a=null -q.Ur(r)}}, -bF(){this.cE()}, -l(){this.a.c.a=null -this.f=null -this.aQ()}, -a3o(a){this.ar(new A.aF8(this,a)) -this.f=null}, -fn(){this.ar(new A.aF7(this)) -this.f=null}, -K(a){var s,r,q=this,p=null,o=q.d -if(o==null)return new A.yL(p,A.cz(p,q.a.e,!1,p,p,!1,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,B.Y,p),p,p) -s=q.acQ(o,q.a.f) -r=q.a -return new A.yL(new A.a1U(q,new A.dO(r.d,p),p),A.cz(p,r.e,!1,p,p,!1,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q,B.Y,p),s,p)}} -A.aF6.prototype={ -$0(){var s=this.a.c -s.toString -return A.bdy(s,this.b===B.a45)}, -$S:471} -A.aF8.prototype={ -$0(){this.a.d=this.b}, -$S:0} -A.aF7.prototype={ -$0(){this.a.d=null}, -$S:0} -A.pg.prototype={ -OO(a){var s,r=this -r.d=a -r.b.aj_(r) -s=r.c -s.bb() -s.ld() -s.br()}, -Ty(a){var s,r=this -r.d=null -s=r.b.e -if(s!=null)s.J(0,r) -s=r.c -s.bb() -s.ld() -s.br()}, -k(a){var s=A.bF(this) -return"_OverlayEntryLocation["+s+"] "}} -A.u9.prototype={ -cI(a){return a.f!==this.f||a.r!==this.r}} -A.aGB.prototype={ -$1(a){this.a.a=A.alp(a,t.pR) -return!1}, -$S:25} -A.yL.prototype={ -cf(){return new A.a4j(this,B.ae)}, -bf(a){var s=new A.Jh(null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -gR(){return this.d}} -A.a4j.prototype={ -ga1(){return t.SN.a(A.b0.prototype.ga1.call(this))}, -ex(a,b){var s,r=this -r.mZ(a,b) -s=r.e -s.toString -t.eU.a(s) -r.p2=r.dZ(r.p2,s.d,null) -r.p1=r.dZ(r.p1,s.c,s.e)}, -cQ(a){var s=this -s.lF(a) -s.p2=s.dZ(s.p2,a.d,null) -s.p1=s.dZ(s.p1,a.c,a.e)}, -ij(a){this.p2=null -this.jf(a)}, -bB(a){var s=this.p2,r=this.p1 -if(s!=null)a.$1(s) -if(r!=null)a.$1(r)}, -bF(){var s,r -this.tZ() -s=this.p1 -s=s==null?null:s.ga1() -t.Kp.a(s) -if(s!=null){r=this.p1.c -r.toString -t.Vl.a(r) -r.c.Eu(s) -r.d=s}}, -dA(){var s,r=this.p1 -r=r==null?null:r.ga1() -t.Kp.a(r) -if(r!=null){s=this.p1.c -s.toString -t.Vl.a(s) -s.c.H2(r) -s.d=null}this.Om()}, -j0(a,b){var s,r=t.SN -if(b!=null){s=r.a(A.b0.prototype.ga1.call(this)) -t.Lj.a(a) -s.D=a -b.OO(a) -b.c.Eu(a) -r.a(A.b0.prototype.ga1.call(this)).br()}else r.a(A.b0.prototype.ga1.call(this)).sR(a)}, -io(a,b,c){var s=b.c,r=c.c -if(s!==r){s.H2(a) -r.Eu(a)}if(b.b!==c.b||b.a!==c.a){b.Ty(a) -c.OO(a)}t.SN.a(A.b0.prototype.ga1.call(this)).br()}, -jR(a,b){var s -if(b==null){t.SN.a(A.b0.prototype.ga1.call(this)).sR(null) -return}t.Lj.a(a) -b.Ty(a) -b.c.H2(a) -s=t.SN -s.a(A.b0.prototype.ga1.call(this)).D=null -s.a(A.b0.prototype.ga1.call(this)).br()}} -A.a1U.prototype={ -bf(a){var s,r=a.nP(t.SN) -r.toString -s=new A.ll(r,this.e,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return r.D=s}, -bj(a,b){b.sapw(this.e)}} -A.ll.prototype={ -sapw(a){return}, -lJ(){var s=this.u$ -return s==null?B.pM:A.aWp(1,new A.aG8(s),t.x)}, -y9(){return this.lJ()}, -gtr(){var s,r=this.d -A:{if(r instanceof A.u8){s=r -break A}s=A.a0(A.h_(A.j(r)+" of "+this.k(0)+" is not a _RenderTheater"))}return s}, -h6(){this.D.lo(this) -this.Oo()}, -gkH(){return!0}, -ag(){this.am=!0 -this.oF()}, -e2(a,b){var s=this.u$ -if(s==null)return null -return A.b_T(s,new A.L(A.E(1/0,a.a,a.b),A.E(1/0,a.c,a.d)),a,this.gtr().gHb(),b)}, -Qq(a,b){var s=this,r=s.am||!t.k.a(A.r.prototype.gab.call(s)).j(0,b) -s.bw=!0 -s.Ef(b,!1) -s.am=s.bw=!1 -if(r)a.wf(new A.aG9(s),t.k)}, -cs(a,b){var s=this.d -s.toString -this.Qq(s,a)}, -hu(a){return this.cs(a,!1)}, -q_(){var s=t.k.a(A.r.prototype.gab.call(this)) -this.fy=new A.L(A.E(1/0,s.a,s.b),A.E(1/0,s.c,s.d))}, -c7(){var s,r=this -if(r.bw){r.am=!1 -return}s=r.u$ -if(s==null){r.am=!1 -return}r.f1(s,t.k.a(A.r.prototype.gab.call(r))) -r.am=!1}, -eJ(a){this.jg(a) -a.sD4(this.a4)}, -dz(a,b){var s,r=a.b -r.toString -s=t.r.a(r).a -b.eh(s.a,s.b,0,1)}} -A.aG8.prototype={ -$1(a){return this.a}, -$S:127} -A.aG9.prototype={ -$1(a){var s=this.a -s.am=!0 -s.oF()}, -$S:473} -A.Jh.prototype={ -h6(){this.Oo() -var s=this.D -if(s!=null&&s.y!=null)this.lo(s)}, -c7(){var s,r,q,p,o,n,m,l,k -this.qv() -s=this.D -if(s==null)return -r=s.d -r.toString -t.im.a(r) -if(!r.au){q=t.k.a(A.r.prototype.gab.call(r)) -p=q.a -o=q.b -n=A.E(1/0,p,o) -m=q.c -l=q.d -k=A.E(1/0,m,l) -s.Qq(this,A.pM(isFinite(n)&&isFinite(k)?new A.L(A.E(1/0,p,o),A.E(1/0,m,l)):r.gC()))}}} -A.yK.prototype={ -bf(a){var s=new A.Jg(null,!0,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -gIx(){return this.d}} -A.Jg.prototype={ -lJ(){var s=this.u$ -return s==null?B.pM:A.aWp(1,new A.aGb(s),t.x)}, -y9(){return this.lJ()}, -gtr(){var s,r=this.d -A:{if(r instanceof A.ll){s=r.gtr() -break A}s=A.a0(A.h_(A.j(r)+" of "+this.k(0)+" is not a _RenderDeferredLayoutBox"))}return s}, -gkH(){return!0}, -q_(){var s=t.k.a(A.r.prototype.gab.call(this)) -return this.fy=new A.L(A.E(1/0,s.a,s.b),A.E(1/0,s.c,s.d))}, -dz(a,b){var s,r=a.b -r.toString -s=t.r.a(r).a -b.eh(s.a,s.b,0,1)}, -ga_Q(){var s=this.D -s.toString -return s}, -L_(){var s,r=this,q=r.gtr(),p=r.d -p.toString -s=t.Lj.a(p).D -r.D=new A.hL(s.gC(),s.bd(q),r.gC()) -r.a53()}, -c7(){var s,r=this -r.ayj() -s=r.u$ -if(s!=null)r.f1(s,t.k.a(A.r.prototype.gab.call(r))) -if(r.a4==null)r.a4=$.c6.a2H(r.gaj0(),!1)}, -bP(a){return 0}, -bH(a){return 0}, -bO(a){return 0}, -bG(a){return 0}, -dg(a){return B.Q}, -e2(a,b){return null}, -aj1(a){this.a4=null -this.ag()}, -l(){var s=this.a4 -if(A.np(s))$.c6.Xi(s) -this.fu()}} -A.aGb.prototype={ -$1(a){return this.a}, -$S:127} -A.a4l.prototype={ -bF(){this.cE() -this.cv() -this.eG()}, -l(){var s=this,r=s.bl$ -if(r!=null)r.O(s.geq()) -s.bl$=null -s.aQ()}} -A.aaV.prototype={} -A.aaW.prototype={} -A.aaX.prototype={} -A.aaY.prototype={ -qi(){var s,r=this -if(r.K_$)return -r.K_$=!0 -s=r.y -if(s!=null)s.r.push(r) -r.oF()}} -A.aaZ.prototype={} -A.Lv.prototype={ -aP(a){var s,r,q -this.eV(a) -s=this.al$ -for(r=t.B;s!=null;){s.aP(a) -q=s.b -q.toString -s=r.a(q).aJ$}}, -az(){var s,r,q -this.eW() -s=this.al$ -for(r=t.B;s!=null;){s.az() -q=s.b -q.toString -s=r.a(q).aJ$}}} -A.ab2.prototype={} -A.BT.prototype={ -ah(){var s=t.y -return new A.HZ(A.aG([!1,!0,!0,!0],s,s),null,null)}, -lf(a){return A.up().$1(a)}, -gR(){return this.w}} -A.HZ.prototype={ -aw(){var s,r,q=this -q.b3() -s=q.a -r=s.f -q.d=A.b_z(A.bg(s.e),r,q) -r=q.a -s=r.f -s=A.b_z(A.bg(r.e),s,q) -q.e=s -r=q.d -r.toString -q.f=new A.u1(A.c([r,s],t.Eo))}, -aV(a){var s,r=this -r.bm(a) -if(!a.f.j(0,r.a.f)||A.bg(a.e)!==A.bg(r.a.e)){s=r.d -s.toString -s.sdQ(r.a.f) -s=r.d -s.toString -s.sWZ(A.bg(r.a.e)) -s=r.e -s.toString -s.sdQ(r.a.f) -s=r.e -s.toString -s.sWZ(A.bg(r.a.e))}}, -GY(a){var s,r,q,p,o,n,m,l,k,j,i,h=this -if(!h.a.lf(a))return!1 -s=a.a -r=s.e -if(A.bg(r)!==A.bg(h.a.e))return!1 -q=h.d -q.toString -p=s.c -p.toString -o=s.a -o.toString -q.e=-Math.min(p-o,q.d) -o=h.e -o.toString -s=s.b -s.toString -o.e=-Math.min(s-p,o.d) -if(a instanceof A.jU){s=a.e -if(s<0)n=q -else if(s>0)n=o -else n=null -m=n===q -l=new A.od(m,0) -q=h.c -q.em(l) -q=h.w -q.m(0,m,l.c) -q=q.h(0,m) -q.toString -if(q)n.d=0 -q=h.w.h(0,m) -q.toString -if(q){q=a.f -if(q!==0){s=n.c -if(s!=null)s.bg() -n.c=null -k=A.E(Math.abs(q),100,1e4) -s=n.r -if(n.a===B.lk)r=0.3 -else{r=n.w -r===$&&A.a() -r=r.b.aj(r.a.gp())}s.a=r -r.toString -s.b=A.E(k*0.00006,r,0.5) -r=n.x -s=n.y -s===$&&A.a() -r.a=s.b.aj(s.a.gp()) -r.b=Math.min(0.025+75e-8*k*k,1) -r=n.b -r===$&&A.a() -r.e=A.cI(0,B.d.aY(0.15+k*0.02)) -r.kl(0) -n.at=0.5 -n.a=B.ajf}else{q=a.d -if(q!=null){p=a.b.ga1() -p.toString -t.x.a(p) -j=p.gC() -i=p.eC(q.a) -switch(A.bg(r).a){case 0:n.toString -r=j.b -n.a0O(Math.abs(s),j.a,A.E(i.b,0,r),r) -break -case 1:n.toString -r=j.a -n.a0O(Math.abs(s),j.b,A.E(i.a,0,r),r) -break}}}}}else{if(!(a instanceof A.j7&&a.d!=null))s=a instanceof A.k_&&a.d!=null -else s=!0 -if(s){if(q.a===B.ll)q.z6(B.eS) -s=h.e -if(s.a===B.ll)s.z6(B.eS)}}h.r=A.l(a) -return!1}, -l(){this.d.l() -this.e.l() -this.a7I()}, -K(a){var s=this,r=null,q=s.a,p=s.d,o=s.e,n=q.e,m=s.f -return new A.dT(s.gGX(),new A.j6(A.hY(new A.j6(q.w,r),new A.a2V(p,o,n,m),r,r,B.Q),r),r,t.WA)}} -A.yq.prototype={ -N(){return"_GlowState."+this.b}} -A.HY.prototype={ -sdQ(a){if(this.ay.j(0,a))return -this.ay=a -this.a7()}, -sWZ(a){if(this.ch===a)return -this.ch=a -this.a7()}, -l(){var s=this,r=s.b -r===$&&A.a() -r.l() -r=s.f -r===$&&A.a() -r.l() -r=s.z -r===$&&A.a() -r.x.dB$.J(0,r) -r.Os() -r=s.c -if(r!=null)r.bg() -s.d8()}, -a0O(a,b,c,d){var s,r,q,p=this,o=p.c -if(o!=null)o.bg() -p.ax=p.ax+a/200 -o=p.r -s=p.w -s===$&&A.a() -r=s.b -s=s.a -o.a=r.aj(s.gp()) -o.b=Math.min(r.aj(s.gp())+a/b*0.8,0.5) -q=Math.min(b,d*0.20096189432249995) -s=p.x -r=p.y -r===$&&A.a() -o=r.b -r=r.a -s.a=o.aj(r.gp()) -s.b=Math.max(1-1/(0.7*Math.sqrt(p.ax*q)),A.hP(o.aj(r.gp()))) -r=c/d -p.as=r -if(r!==p.at){o=p.z -o===$&&A.a() -if(!o.gauR())o.mV()}else{o=p.z -o===$&&A.a() -o.fg() -p.Q=null}o=p.b -o===$&&A.a() -o.e=B.eQ -if(p.a!==B.ll){o.kl(0) -p.a=B.ll}else{o=o.r -if(!(o!=null&&o.a!=null))p.a7()}p.c=A.ck(B.eQ,new A.aCH(p))}, -aa1(a){var s=this -if(a!==B.a9)return -switch(s.a.a){case 1:s.z6(B.eS) -break -case 3:s.a=B.lk -s.ax=0 -break -case 2:case 0:break}}, -z6(a){var s,r=this,q=r.a -if(q===B.K4||q===B.lk)return -q=r.c -if(q!=null)q.bg() -r.c=null -q=r.r -s=r.w -s===$&&A.a() -q.a=s.b.aj(s.a.gp()) -q.b=0 -q=r.x -s=r.y -s===$&&A.a() -q.a=s.b.aj(s.a.gp()) -q.b=0 -q=r.b -q===$&&A.a() -q.e=a -q.kl(0) -r.a=B.K4}, -amz(a){var s,r=this,q=r.Q -if(q!=null){q=q.a -s=r.as -r.at=s-(s-r.at)*Math.pow(2,-(a.a-q)/$.b3L().a) -r.a7()}if(A.LS(r.as,r.at,0.001)){q=r.z -q===$&&A.a() -q.fg() -r.Q=null}else r.Q=a}, -b1(a,b){var s,r,q,p,o,n,m,l=this,k=l.w -k===$&&A.a() -if(J.b(k.b.aj(k.a.gp()),0))return -s=b.a -r=b.b -q=s>r?r/s:1 -p=s*3/2 -o=Math.min(r,s*0.20096189432249995) -r=l.y -r===$&&A.a() -r=r.b.aj(r.a.gp()) -n=l.at -$.ab() -m=A.bt() -m.r=l.ay.aI(k.b.aj(k.a.gp())).gp() -k=a.a -J.b4(k.save()) -k.translate(0,l.d+l.e) -a.xp(1,r*q) -k.clipRect(A.d6(new A.w(0,0,0+s,0+o)),$.pD()[1],!0) -a.nI(new A.h(s/2*(0.5+n),o-p),p,m) -k.restore()}, -k(a){return"_GlowController(color: "+this.ay.k(0)+", axis: "+this.ch.b+")"}} -A.aCH.prototype={ -$0(){return this.a.z6(B.mu)}, -$S:0} -A.a2V.prototype={ -SZ(a,b,c,d,e){var s,r -if(c==null)return -switch(A.nr(d,e).a){case 0:c.b1(a,b) -break -case 2:s=a.a -J.b4(s.save()) -s.translate(0,b.b) -a.xp(1,-1) -c.b1(a,b) -s.restore() -break -case 3:s=a.a -J.b4(s.save()) -a.a1k(1.5707963267948966) -a.xp(1,-1) -c.b1(a,new A.L(b.b,b.a)) -s.restore() -break -case 1:s=a.a -J.b4(s.save()) -r=b.a -s.translate(r,0) -a.a1k(1.5707963267948966) -c.b1(a,new A.L(b.b,r)) -s.restore() -break}}, -b1(a,b){var s=this,r=s.d -s.SZ(a,b,s.b,r,B.rB) -s.SZ(a,b,s.c,r,B.jh)}, -eU(a){return a.b!=this.b||a.c!=this.c}, -k(a){return"_GlowingOverscrollIndicatorPainter("+A.j(this.b)+", "+A.j(this.c)+")"}} -A.FC.prototype={ -ah(){return new A.Kj(null,null)}, -lf(a){return A.up().$1(a)}, -gR(){return this.f}} -A.Kj.prototype={ -goV(){var s=this.d -return s===$?this.d=new A.a8S(this,new A.cb(0,$.af())):s}, -GY(a){var s,r,q,p,o,n,m,l,k=this -if(!k.a.lf(a))return!1 -s=a.a -r=s.e -q=A.bg(r) -p=k.a.c -if(q!==A.bg(p))return!1 -if(a instanceof A.jU){k.f=a -J.S(k.e) -r=a.e -o=new A.od(r<0,0) -q=k.c -q.em(o) -k.w=o.c -if(k.w){r=k.r+=r -q=a.f -if(q!==0)k.goV().ao1(q) -else if(a.d!=null){s=s.d -s.toString -n=A.E(r/s,-1,1) -s=k.goV() -r=s.b -if(r!=null){q=r.x -q===$&&A.a() -s.d=q -r.l() -s.b=null}m=Math.abs(n) -r=Math.exp(-m*8.237217661997105) -s.c.sp(A.E(J.ej(n)*(0.016*m+0.016*(1-r))+s.d,-1,1))}}}else if(a instanceof A.j7){switch(A.bg(p).a){case 1:s=a.d -s=s==null?null:s.c.a.b -if(s==null)s=0 -break -case 0:s=a.d -s=s==null?null:s.c.a.a -if(s==null)s=0 -break -default:s=null}l=r===B.bh||r===B.b_?-s:s -k.r=0 -k.goV().N7(l)}else if(a instanceof A.k_){k.r=0 -k.goV().N7(0)}k.e=a -return!1}, -l(){var s=this.goV(),r=s.b -if(r!=null)r.l() -s=s.c -s.P$=$.af() -s.L$=0 -this.a86()}, -K(a){return new A.dT(this.gGX(),A.hU(this.goV(),new A.aJO(this),null),null,t.WA)}} -A.aJO.prototype={ -$2(a,b){var s,r,q,p,o,n=null,m=this.a,l=m.goV().c.a -switch(A.bg(m.a.c).a){case 0:s=A.c0(a,B.pg,t.l).w.a.a -break -case 1:s=A.c0(a,B.K8,t.l).w.a.b -break -default:s=n}r=m.f -if(r==null)q=n -else{r=r.a.d -r.toString -q=r}if(q==null)q=s -p=-l -m=m.a -r=m.c -if(r===B.b_||r===B.bh)p=-p -r=A.bg(r) -o=m.f -m=l!==0&&q!==s?m.e:B.v -return A.Nl(new A.Yv(p,r,o,n),m,n)}, -$S:474} -A.a8S.prototype={ -a9(a){this.c.a9(a)}, -O(a){this.c.O(a)}, -ao1(a){var s -if(a===0)return -s=A.E(a*0.0003333333333333333,-1.25,1.25) -this.WE(new A.ts(0,A.uc($.aU6(),this.c.a,s*0.8),B.c6))}, -N7(a){var s,r=this -if(a===0&&r.c.a===0)return -s=A.E(-(a*0.00016666666666666666),-0.5,0.5) -if(r.b==null)r.WE(new A.ts(0,A.uc($.aU6(),r.c.a,s*0.8),B.c6))}, -WE(a){var s,r=this,q=A.aQ9(null,0,r.a) -q.bC() -q.d_$.G(0,new A.aJM(r)) -q.A2(a).a.a.h9(new A.aJN(r)) -s=r.b -if(s!=null)s.l() -r.b=q}, -k(a){return"_StretchController()"}} -A.aJM.prototype={ -$0(){var s,r=this.a,q=r.b -if(q==null)s=null -else{q=q.x -q===$&&A.a() -s=q}r.c.sp(A.E(s==null?0:s,-1,1))}, -$S:0} -A.aJN.prototype={ -$0(){var s=this.a -s.c.sp(A.E(0,-1,1)) -s.d=0 -s.b.l() -s.b=null}, -$S:13} -A.od.prototype={ -eu(a){this.a6C(a) -a.push("side: "+(this.a?"leading edge":"trailing edge"))}} -A.IO.prototype={ -eu(a){var s,r -this.Ec(a) -s=this.hs$ -r=s===0?"local":"remote" -a.push("depth: "+s+" ("+r+")")}} -A.Lh.prototype={ -bF(){this.cE() -this.cv() -this.eG()}, -l(){var s=this,r=s.bl$ -if(r!=null)r.O(s.geq()) -s.bl$=null -s.aQ()}} -A.LB.prototype={ -bF(){this.cE() -this.cv() -this.eG()}, -l(){var s=this,r=s.bl$ -if(r!=null)r.O(s.geq()) -s.bl$=null -s.aQ()}} -A.Ke.prototype={ -j(a,b){if(b==null)return!1 -if(J.S(b)!==A.l(this))return!1 -return b instanceof A.Ke&&A.cV(b.a,this.a)}, -gt(a){return A.bh(this.a)}, -k(a){return"StorageEntryIdentifier("+B.b.bJ(this.a,":")+")"}} -A.U4.prototype={ -OU(a){var s=A.c([],t.g8) -if(A.aXa(a,s))a.lv(new A.aph(s)) -return s}, -axB(a){var s -if(this.a==null)return null -s=this.OU(a) -return s.length!==0?this.a.h(0,new A.Ke(s)):null}} -A.aph.prototype={ -$1(a){return A.aXa(a,this.a)}, -$S:25} -A.wr.prototype={ -K(a){return this.c}, -gR(){return this.c}} -A.kQ.prototype={ -gjC(){return null}, -gmC(){return B.aM}} -A.Dv.prototype={ -glh(){return!0}, -gvh(){return!1}, -vn(a){return a instanceof A.hx}, -Iz(a){return a instanceof A.hx}, -gZy(){return this.bU}, -gp_(){return this.aK}} -A.anT.prototype={} -A.apE.prototype={} -A.PF.prototype={ -GK(a){return this.ahw(a)}, -ahw(a){var s=0,r=A.I(t.H),q,p=this,o,n,m -var $async$GK=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:n=A.eF(a.b) -m=p.a -if(!m.aN(n)){s=1 -break}m=m.h(0,n) -m.toString -o=a.a -if(o==="Menu.selectedCallback"){m.gazU().$0() -m.gawm() -o=$.a1.ap$.d.c.e -o.toString -A.b5v(o,m.gawm(),t.C)}else if(o==="Menu.opened")m.gazT().$0() -else if(o==="Menu.closed")m.gazS().$0() -case 1:return A.G(q,r)}}) -return A.H($async$GK,r)}} -A.wy.prototype={ -cI(a){return this.f!=a.f}} -A.xO.prototype={ -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.xO)if(b.a.j(0,r.a))if(b.b.j(0,r.b))if(b.c.j(0,r.c))if(b.f.j(0,r.f))s=b.d===r.d -return s}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.f,s.d,!0,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.axt.prototype={ -N(){return"TooltipTriggerMode."+this.b}} -A.a2r.prototype={ -bf(a){var s=new A.a5C(!0,this.e,null,this.r,B.b2,B.aG,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}} -A.a5C.prototype={ -cT(a,b){var s,r=this,q=$.aSI -$.aSI=!1 -if(r.gC().q(0,b)){s=r.da(a,b)||r.D===B.aG -if((s||r.D===B.cs)&&!$.aSH){$.aSH=!0 -a.G(0,new A.lI(b,r))}}else s=!1 -if(q){$.aSI=!0 -$.aSH=!1}return s}} -A.DJ.prototype={ -ah(){return new A.mz(new A.Ds(),A.aU(t.S),B.Z,null,null)}, -ayE(a,b){return this.d.$2(a,b)}, -gR(){return this.at}} -A.mz.prototype={ -glK(){var s,r=this,q=r.f -if(q==null){r.a.toString -q=A.bX(null,B.c2,B.iU,null,r) -q.bC() -s=q.cP$ -s.b=!0 -s.a.push(r.gafP()) -r.f=q}return q}, -afQ(a){var s,r,q,p,o,n,m,l=this,k=null -A:{s=l.z===B.Z -r=a===B.Z -q=!s -p=q -if(p){p=r -o=p -n=!0}else{o=k -n=!1 -p=!1}if(p){B.b.J($.rH,l) -l.d.fn() -break A}p=s -if(p){m=!1===(n?o:r) -p=m}else p=!1 -if(p){l.d.DR() -$.rH.push(l) -p=l.a.c -A.au7(p==null?"":p) -break A}break A}l.z=a}, -TX(a,b){var s,r=this,q=new A.aqn(r,a) -if(r.glK().gba()===B.Z&&b.a>0){s=r.e -if(s!=null)s.bg() -r.e=A.ck(b,q)}else q.$0()}, -TW(a){return this.TX(null,a)}, -Hg(a){var s=this,r=s.e -if(r!=null)r.bg() -s.e=null -r=s.f -r=r==null?null:r.gba().gt_() -if(r===!0)if(a.a>0)s.e=A.ck(a,s.glK().ga1j()) -else s.glK().d6()}, -Hf(){return this.Hg(B.z)}, -ak1(a){var s,r=this -switch(r.a.x.a){case 1:s=r.w -if(s==null)s=r.w=A.ali(r,null,B.If) -s.p1=r.gS2() -s.p2=r.gaeq() -s.R8=r.gaf3() -s.Id(a) -break -case 2:s=r.x -if(s==null)s=r.x=A.FP(r,-1,B.If) -s.a5=r.gS2() -s.a0=r.gafR() -s.Id(a) -break -case 0:break}}, -aef(a){var s=this,r=s.x -r=r==null?null:r.CW -if(r!==a.gbM()){r=s.w -r=r==null?null:r.CW -r=r===a.gbM()}else r=!0 -if(r)return -if(s.e==null&&s.glK().gba()===B.Z||!t.pY.b(a))return -s.S3()}, -S3(){this.a.toString -this.Hf() -this.y.aa(0)}, -afS(){var s,r=this,q=r.glK().gba()===B.Z -if(q)r.a.toString -if(q){s=r.c -s.toString -A.Qg(s)}s=r.a -s.toString -r.TX(r.y.a===0?s.f:null,B.z)}, -aer(){var s,r=this,q=r.glK().gba()===B.Z -if(q)r.a.toString -if(q){s=r.c -s.toString -A.ahL(s)}r.a.toString -r.TW(B.z)}, -af4(){if(this.y.a!==0)return -this.Hg(this.a.f)}, -aeA(a){var s,r,q,p -this.y.G(0,a.giX()) -s=A.a6($.rH).i("b1<1>") -r=A.aa(new A.b1($.rH,new A.aqm(),s),s.i("y.E")) -for(s=r.length,q=0;p=r.length,q")).aL(0,r.ganh())}r.Ju(q)}return!0}, -HU(a){var s,r=a.gnK(),q=this.bD$ -if(r){if(q!=null){r=a.b -r.toString -s=a.ts() -if(!J.b(q.gni().h(0,r),s)||!q.gni().aN(r)){q.gni().m(0,r,s) -q.qU()}}}else if(q!=null){r=a.b -r.toString -q.axO(0,r,t.K)}}, -amW(a){var s=this.eZ$.J(0,a) -s.toString -a.O(s) -a.c=a.b=null}} -A.arY.prototype={ -$0(){var s=this.a -if(s.bD$==null)return -s.HU(this.b)}, -$S:0} -A.aLU.prototype={ -$2(a,b){if(!a.a)a.O(b)}, -$S:44} -A.ab3.prototype={ -aV(a){this.bm(a) -this.nF()}, -by(){var s,r,q,p,o=this -o.du() -s=o.bD$ -r=o.gmz() -q=o.c -q.toString -q=A.mF(q) -o.f_$=q -p=o.lR(q,r) -if(r){o.h7(s,o.dU$) -o.dU$=!1}if(p)if(s!=null)s.l()}, -l(){var s,r=this -r.eZ$.aL(0,new A.aLU()) -s=r.bD$ -if(s!=null)s.l() -r.bD$=null -r.aQ()}} -A.c3.prototype={ -sp(a){var s=this.y -if(a==null?s!=null:a!==s){this.y=a -this.Jx(s)}}, -a_b(a){this.y=a}} -A.iL.prototype={ -As(){return this.cy}, -Jx(a){this.a7()}, -rT(a){return A.n(this).i("iL.T").a(a)}, -ts(){var s=this.y -return s==null?A.n(this).i("c3.T").a(s):s}} -A.Js.prototype={ -rT(a){return this.a6Y(a)}, -ts(){var s=this.a6Z() -s.toString -return s}} -A.Ef.prototype={} -A.mE.prototype={} -A.Vd.prototype={} -A.aLV.prototype={ -$2(a,b){if(!a.a)a.O(b)}, -$S:44} -A.ov.prototype={ -gjU(){return this.b}} -A.Vj.prototype={ -ah(){return new A.yZ(new A.a5W($.af()),null,A.t(t.yb,t.M),null,!0,null,this.$ti.i("yZ<1>"))}} -A.as2.prototype={ -N(){return"RouteInformationReportingType."+this.b}} -A.yZ.prototype={ -gey(){return this.a.r}, -aw(){var s,r=this -r.b3() -s=r.a.c -if(s!=null)s.a9(r.gyC()) -r.a.f.aoh(r.gG5()) -r.a.e.a9(r.gGd())}, -h7(a,b){var s,r,q=this,p=q.f -q.kw(p,"route") -s=p.y -r=s==null -if((r?A.n(p).i("c3.T").a(s):s)!=null){p=r?A.n(p).i("c3.T").a(s):s -p.toString -q.z4(p,new A.aH3(q))}else{p=q.a.c -if(p!=null)q.z4(p.a,new A.aH4(q))}}, -akV(){var s=this -if(s.w||s.a.c==null)return -s.w=!0 -$.c6.k4$.push(s.gakm())}, -akn(a){var s,r,q,p=this -if(p.c==null)return -p.w=!1 -s=p.f -r=s.y -q=r==null -if((q?A.n(s).i("c3.T").a(r):r)!=null){s=q?A.n(s).i("c3.T").a(r):r -s.toString -r=p.a.c -r.toString -q=p.e -q.toString -r.aA_(s,q)}p.e=B.HO}, -akB(){this.a.e.gazJ() -this.a.toString -return null}, -yS(){var s=this -s.f.sp(s.akB()) -if(s.e==null)s.e=B.HO -s.akV()}, -by(){var s,r,q,p=this -p.r=!0 -p.a7Z() -s=p.f -r=s.y -q=r==null?A.n(s).i("c3.T").a(r):r -if(q==null){s=p.a.c -q=s==null?null:s.a}if(q!=null&&p.r)p.z4(q,new A.aH2(p)) -p.r=!1 -p.yS()}, -aV(a){var s,r,q,p=this -p.a8_(a) -s=p.a.c -r=a.c -p.d=new A.Q() -if(s!=r){s=r==null -if(!s)r.O(p.gyC()) -q=p.a.c -if(q!=null)q.a9(p.gyC()) -s=s?null:r.a -r=p.a.c -if(s!=(r==null?null:r.a))p.RW()}s=a.f -if(p.a.f!==s){r=p.gG5() -s.axR(r) -p.a.f.aoh(r)}p.a.toString -s=p.gGd() -a.e.O(s) -p.a.e.a9(s) -p.yS()}, -l(){var s,r=this -r.f.l() -s=r.a.c -if(s!=null)s.O(r.gyC()) -r.a.f.axR(r.gG5()) -r.a.e.O(r.gGd()) -r.d=null -r.a80()}, -z4(a,b){var s,r,q=this -q.r=!1 -q.d=new A.Q() -s=q.a.d -s.toString -r=q.c -r.toString -s.azV(a,r).c1(q.ajY(q.d,b),t.H)}, -ajY(a,b){return new A.aH0(this,a,b)}, -RW(){var s=this -s.r=!0 -s.z4(s.a.c.a,new A.aGY(s))}, -adj(){var s=this -s.d=new A.Q() -return s.a.e.azW().c1(s.afa(s.d),t.y)}, -afa(a){return new A.aGZ(this,a)}, -TM(){this.ar(new A.aH1()) -this.yS() -return new A.cF(null,t.b6)}, -afb(){this.ar(new A.aH_()) -this.yS()}, -K(a){var s=this.bD$,r=this.a,q=r.c,p=r.f,o=r.d -r=r.e -return A.xX(s,new A.a67(q,p,o,r,this,new A.dO(r.gazH(),null),null))}} -A.aH3.prototype={ -$0(){return this.a.a.e.gazq()}, -$S(){return this.a.$ti.i("av<~>(1)()")}} -A.aH4.prototype={ -$0(){return this.a.a.e.gazp()}, -$S(){return this.a.$ti.i("av<~>(1)()")}} -A.aH2.prototype={ -$0(){return this.a.a.e.ga38()}, -$S(){return this.a.$ti.i("av<~>(1)()")}} -A.aH0.prototype={ -$1(a){var s=0,r=A.I(t.H),q,p=this,o,n -var $async$$1=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:o=p.a -n=p.b -if(o.d!=n){s=1 -break}s=3 -return A.p(p.c.$0().$1(a),$async$$1) -case 3:if(o.d==n)o.TM() -case 1:return A.G(q,r)}}) -return A.H($async$$1,r)}, -$S(){return this.a.$ti.i("av<~>(1)")}} -A.aGY.prototype={ -$0(){return this.a.a.e.ga38()}, -$S(){return this.a.$ti.i("av<~>(1)()")}} -A.aGZ.prototype={ -$1(a){var s=this.a -if(this.b!=s.d)return new A.cF(!0,t.d9) -s.TM() -return new A.cF(a,t.d9)}, -$S:479} -A.aH1.prototype={ -$0(){}, -$S:0} -A.aH_.prototype={ -$0(){}, -$S:0} -A.a67.prototype={ -cI(a){return!0}} -A.a5W.prototype={ -As(){return null}, -Jx(a){this.a7()}, -rT(a){var s,r -if(a==null)return null -t.Dn.a(a) -s=J.d5(a) -r=A.bH(s.gad(a)) -if(r==null)return null -return new A.ov(A.iD(r,0,null),s.gaC(a))}, -ts(){var s,r=this,q=r.y,p=q==null -if((p?A.n(r).i("c3.T").a(q):q)==null)q=null -else{q=(p?A.n(r).i("c3.T").a(q):q).gjU().k(0) -s=r.y -q=[q,(s==null?A.n(r).i("c3.T").a(s):s).c]}return q}} -A.zh.prototype={ -aV(a){this.bm(a) -this.nF()}, -by(){var s,r,q,p,o=this -o.du() -s=o.bD$ -r=o.gmz() -q=o.c -q.toString -q=A.mF(q) -o.f_$=q -p=o.lR(q,r) -if(r){o.h7(s,o.dU$) -o.dU$=!1}if(p)if(s!=null)s.l()}, -l(){var s,r=this -r.eZ$.aL(0,new A.aLV()) -s=r.bD$ -if(s!=null)s.l() -r.bD$=null -r.aQ()}} -A.wq.prototype={ -pF(){var s,r=this,q=A.rq(r.ga9z(),!1,!1) -r.x1=q -r.gwp() -s=A.rq(r.ga9B(),r.glh(),!0) -r.xr=s -B.b.a_(r.r,A.c([q,s],t.wi)) -r.a5E()}, -m4(a){var s=this -s.a5z(a) -if(s.CW.gba()===B.Z&&!s.ay)s.b.Zc(s) -return!0}, -l(){var s,r,q -for(s=this.r,r=s.length,q=0;q"))}} -A.pb.prototype={ -aw(){var s,r,q=this -q.b3() -s=A.c([],t.Eo) -r=q.a.c.p3 -if(r!=null)s.push(r) -r=q.a.c.p4 -if(r!=null)s.push(r) -q.e=new A.u1(s)}, -aV(a){this.bm(a) -this.VF()}, -by(){this.du() -this.d=null -this.VF()}, -VF(){var s,r=this.a.c,q=r.b.a.Q,p=this.f -p.fr=q -p.fx=B.JL -if(r.gjL()&&this.a.c.gtl()){s=r.b.y.ghp() -if(s!=null)s.DJ(p)}}, -QR(){this.ar(new A.aEL(this))}, -l(){this.f.l() -this.r.l() -this.aQ()}, -gUx(){var s=this.a.c,r=s.p3 -if((r==null?null:r.gba())!==B.c7){s=s.b -s=s==null?null:s.cy.a -s=s===!0}else s=!0 -return s}, -K(a){var s,r,q,p,o,n,m=this,l=null -m.f.shd(!m.a.c.gjL()) -s=m.a.c -r=s.gjL() -q=m.a.c -if(!q.gKx()){q=q.m8$ -q=q!=null&&q.length!==0}else q=!0 -p=m.a.c.glh() -o=m.a.c -o=o.gKx()||o.Bb$>0 -n=m.a.c -return A.hU(s.d,new A.aEP(m),new A.Iz(r,q,o,p,s,new A.wn(n.p2,new A.wr(new A.dO(new A.aEQ(m),l),n.to,l),l),l))}} -A.aEL.prototype={ -$0(){this.a.d=null}, -$S:0} -A.aEP.prototype={ -$2(a,b){var s=this.a.a.c.d.a -b.toString -return new A.ot(b,s,null)}, -$S:481} -A.aEQ.prototype={ -$1(a){var s,r=null,q=A.aG([B.oY,new A.a24(a,new A.bp(A.c([],t.e),t.d))],t.u,t.od),p=this.a,o=p.e -o===$&&A.a() -s=p.d -if(s==null)s=p.d=new A.j6(new A.dO(new A.aEN(p),r),p.a.c.ry) -return A.uB(q,new A.wy(p.r,B.L,B.a6s,A.b_x(new A.j6(new A.ib(new A.aEO(p),s,o,r),r),p.f,!0),r))}, -$S:482} -A.aEO.prototype={ -$2(a,b){var s,r,q=this.a,p=q.a.c,o=p.p3 -o.toString -s=p.p4 -s.toString -r=p.b -r=r==null?null:r.cy -if(r==null)r=new A.cb(!1,$.af()) -return p.a9t(a,o,s,new A.ib(new A.aEM(q),b,r,null))}, -$S:48} -A.aEM.prototype={ -$2(a,b){var s=this.a,r=s.gUx() -s.f.skU(!r) -return A.jK(b,r,null)}, -$S:483} -A.aEN.prototype={ -$1(a){var s,r=this.a.a.c,q=r.p3 -q.toString -s=r.p4 -s.toString -return r.X7(a,q,s)}, -$S:15} -A.f3.prototype={ -ar(a){var s,r=this.rx -if(r.gS()!=null){r=r.gS() -if(r.a.c.gjL()&&!r.gUx()&&r.a.c.gtl()){s=r.a.c.b.y.ghp() -if(s!=null)s.DJ(r.f)}r.ar(a)}else a.$0()}, -Aa(a,b,c,d){return d}, -gjC(){return null}, -a9t(a,b,c,d){var s,r,q=this -if(q.p1==null||c.gba()===B.Z)return q.Aa(a,b,c,d) -s=q.Aa(a,b,A.mw(null),d) -r=q.p1 -r.toString -r=r.$5(a,b,c,q.gp_(),s) -return r==null?s:r}, -pF(){var s=this -s.Ot() -s.p3=A.mw(A.fb.prototype.gjv.call(s)) -s.p4=A.mw(A.fb.prototype.gDF.call(s))}, -pj(){var s=this,r=s.rx,q=r.gS()!=null -if(q)s.b.a.toString -if(q){q=s.b.y.ghp() -if(q!=null)q.DJ(r.gS().f)}return s.a6a()}, -ga0z(){var s,r=this -if(r.gwh())return!1 -s=r.m8$ -if(s!=null&&s.length!==0)return!1 -if(r.R8.length!==0||r.glk()===B.fy)return!1 -if(r.p3.gba()!==B.a9)return!1 -return!0}, -sC2(a){var s,r=this -if(r.p2===a)return -r.ar(new A.ao2(r,a)) -s=r.p3 -s.toString -s.sbk(r.p2?B.fZ:A.fb.prototype.gjv.call(r)) -s=r.p4 -s.toString -s.sbk(r.p2?B.dQ:A.fb.prototype.gDF.call(r)) -r.p9()}, -jW(){var s=0,r=A.I(t.oj),q,p=this,o,n,m -var $async$jW=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:p.rx.gS() -o=A.aa(p.R8,t.Ev) -n=o.length -m=0 -case 3:if(!(m").b(a)&&s.vn(a)&&!J.b(a.gjC(),s.gjC()))s.p1=a.gjC() -else s.p1=null -s.a67(a) -s.p9()}, -p9(){var s,r=this -r.a5v() -if($.c6.p2$!==B.fz){r.ar(new A.ao1()) -s=r.x1 -s===$&&A.a() -s.cL()}s=r.xr -s===$&&A.a() -r.gwp() -s.swp(!0)}, -gZy(){return!1}, -a9A(a){var s,r,q,p,o,n=this,m=null -if(n.gvg()!=null&&(n.gvg().A()>>>24&255)!==0&&!n.p2){s=n.p3 -s.toString -r=n.gvg() -r=A.ar(0,r.A()>>>16&255,r.A()>>>8&255,r.A()&255) -q=n.gvg() -p=t.IC.i("eE") -t.v.a(s) -o=new A.Mq(n.gvh(),n.gIq(),!0,new A.aw(s,new A.eE(new A.fm(B.bE),new A.fV(r,q),p),p.i("aw")),m)}else o=A.aRm(!0,m,m,n.gvh(),m,n.gIq(),m) -o=A.jK(o,!n.p3.gba().gt_(),m) -s=n.gvh() -return s?A.cz(m,o,!1,m,m,!1,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,B.a41,m,m,m,m,m,B.Y,m):o}, -a9C(a){var s=this,r=null,q=s.x2 -return q==null?s.x2=A.cz(r,new A.yG(s,s.rx,A.n(s).i("yG<1>")),!1,r,r,!1,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,B.a40,r,r,r,r,r,B.Y,r):q}, -k(a){return"ModalRoute("+this.c.k(0)+", animation: "+A.j(this.ch)+")"}} -A.ao2.prototype={ -$0(){this.a.p2=this.b}, -$S:0} -A.ao0.prototype={ -$1(a){var s=this.a.ry,r=$.a1.ap$.x.h(0,s) -r=r==null?null:r.e!=null -if(r!==!0)return -s=$.a1.ap$.x.h(0,s) -if(s!=null)s.em(this.b)}, -$S:4} -A.ao1.prototype={ -$0(){}, -$S:0} -A.DC.prototype={ -glh(){return!1}, -gwp(){return!0}, -gp_(){return!1}} -A.u2.prototype={ -jW(){var s=0,r=A.I(t.oj),q,p=this,o -var $async$jW=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:o=p.m8$ -if(o!=null&&o.length!==0){q=B.kL -s=1 -break}q=p.a5G() -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$jW,r)}, -glk(){var s=this.m8$ -if(s!=null&&s.length!==0)return B.kL -return A.d4.prototype.glk.call(this)}, -m4(a){var s,r,q=this,p=q.m8$ -if(p!=null&&p.length!==0){s=p.pop() -s.b=null -s.azx() -r=s.c&&--q.Bb$===0 -if(q.m8$.length===0||r)q.p9() -return!1}q.a68(a) -return!0}} -A.Vl.prototype={ -K(a){var s,r,q,p=t.l,o=A.c0(a,B.bS,p).w.r,n=Math.max(o.a,0),m=this.d,l=m?o.b:0 -l=Math.max(l,0) -s=Math.max(o.c,0) -r=this.f -q=r?o.d:0 -return new A.bR(new A.a2(n,l,s,Math.max(q,0)),new A.jP(A.c0(a,null,p).w.a15(r,!0,!0,m),this.x,null),null)}, -gR(){return this.x}} -A.Vx.prototype={ -a1e(){}, -Yy(a,b){if(b!=null)b.em(new A.rZ(null,a,b,0))}, -Yz(a,b,c){b.em(A.aRM(b,null,null,a,c))}, -AN(a,b,c){b.em(new A.jU(null,c,0,a,b,0))}, -Yx(a,b){b.em(new A.j7(null,a,b,0))}, -vd(){}, -l(){this.b=!0}, -k(a){return"#"+A.bF(this)}} -A.nV.prototype={ -vd(){this.a.iB(0)}, -glC(){return!1}, -gkr(){return!1}, -giy(){return 0}} -A.ajQ.prototype={ -glC(){return!1}, -gkr(){return!1}, -giy(){return 0}, -l(){this.c.$0() -this.xU()}} -A.asB.prototype={ -a8Z(a,b){var s,r,q=this -if(b==null)return a -if(a===0){s=!1 -if(q.d!=null)if(q.r==null){s=q.e -s=b.a-s.a>5e4}if(s)q.r=0 -return 0}else{s=q.r -if(s==null)return a -else{s+=a -q.r=s -r=q.d -r.toString -if(Math.abs(s)>r){q.r=null -s=Math.abs(a) -if(s>24)return a -else return Math.min(r/3,s)*J.ej(a)}else return 0}}}, -cQ(a){var s,r,q,p,o,n=this -n.x=a -s=a.e -s.toString -r=s===0 -if(!r)n.e=a.c -q=a.c -p=!1 -if(n.f)if(r)if(q!=null){r=n.e -r=q.a-r.a>2e4}else r=!0 -else r=p -else r=p -if(r)n.f=!1 -o=n.a8Z(s,q) -if(o===0)return -s=n.a -if(A.LO(s.w.a.c))o=-o -s.Mn(o>0?B.o8:B.o9) -r=s.at -r.toString -s.El(r-s.r.Im(s,o))}, -YR(a){var s,r,q=this,p=a.d -p.toString -s=-p -if(A.LO(q.a.w.a.c))s=-s -q.x=a -if(q.f){p=q.c -r=Math.abs(s)>Math.abs(p)*0.5 -if(J.ej(s)===J.ej(p)&&r)s+=p}q.a.iB(s)}, -l(){this.x=null -this.b.$0()}, -k(a){return"#"+A.bF(this)}} -A.agb.prototype={ -Yy(a,b){var s=t.uL.a(this.c.x) -if(b!=null)b.em(new A.rZ(s,a,b,0))}, -Yz(a,b,c){b.em(A.aRM(b,null,t.zk.a(this.c.x),a,c))}, -AN(a,b,c){b.em(new A.jU(t.zk.a(this.c.x),c,0,a,b,0))}, -Yx(a,b){var s=this.c.x -b.em(new A.j7(s instanceof A.hu?s:null,a,b,0))}, -glC(){var s=this.c -return(s==null?null:s.w)!==B.bt}, -gkr(){return!0}, -giy(){return 0}, -l(){this.c=null -this.xU()}, -k(a){return"#"+A.bF(this)+"("+A.j(this.c)+")"}} -A.MF.prototype={ -a1e(){var s=this.a,r=this.c -r===$&&A.a() -s.iB(r.giy())}, -vd(){var s=this.a,r=this.c -r===$&&A.a() -s.iB(r.giy())}, -Hz(){var s=this.c -s===$&&A.a() -s=s.x -s===$&&A.a() -if(!(Math.abs(this.a.El(s))<1e-10)){s=this.a -s.jx(new A.nV(s))}}, -Hi(){if(!this.b)this.a.iB(0)}, -AN(a,b,c){var s=this.c -s===$&&A.a() -b.em(new A.jU(null,c,s.giy(),a,b,0))}, -gkr(){return!0}, -giy(){var s=this.c -s===$&&A.a() -return s.giy()}, -l(){var s=this.c -s===$&&A.a() -s.l() -this.xU()}, -k(a){var s=A.bF(this),r=this.c -r===$&&A.a() -return"#"+s+"("+r.k(0)+")"}, -glC(){return this.d}} -A.Q1.prototype={ -Hz(){var s=this.d -s===$&&A.a() -s=s.x -s===$&&A.a() -if(!(Math.abs(this.a.El(s))<1e-10)){s=this.a -s.jx(new A.nV(s))}}, -Hi(){var s,r -if(!this.b){s=this.a -r=this.d -r===$&&A.a() -s.iB(r.giy())}}, -AN(a,b,c){var s=this.d -s===$&&A.a() -b.em(new A.jU(null,c,s.giy(),a,b,0))}, -glC(){return!0}, -gkr(){return!0}, -giy(){var s=this.d -s===$&&A.a() -return s.giy()}, -l(){var s=this.c -s===$&&A.a() -s.fW() -s=this.d -s===$&&A.a() -s.l() -this.xU()}, -k(a){var s=A.bF(this),r=this.d -r===$&&A.a() -return"#"+s+"("+r.k(0)+")"}} -A.Vy.prototype={ -aqV(a,b,c,d,e,f,g,h){return new A.aLN(this,h,d,e,f,b,a,c,g)}, -XU(a,b){var s=null -return this.aqV(s,s,s,a,s,s,s,b)}, -kE(a){return A.aT()}, -gpl(){return B.Ig}, -om(a){switch(this.kE(a).a){case 4:case 2:return B.nR -case 3:case 5:case 0:case 1:return B.fo}}, -gCy(){return A.cy([B.dt,B.e5],t.bd)}, -vl(a,b,c){var s=null -switch(this.kE(a).a){case 3:case 4:case 5:return A.aXz(b,c.b,B.aM,s,s,0,A.up(),s,B.z,s,s,s,s,B.eS,s) -case 0:case 1:case 2:return b}}, -A8(a,b,c){switch(this.kE(a).a){case 2:case 3:case 4:case 5:return b -case 0:case 1:return A.aWb(c.a,b,B.l)}}, -Dh(a){switch(this.kE(a).a){case 2:return new A.asy() -case 4:return new A.asz() -case 0:case 1:case 3:case 5:return new A.asA()}}, -qf(a){switch(this.kE(a).a){case 2:return B.KN -case 4:return B.KO -case 0:case 1:case 3:case 5:return B.MC}}, -k(a){return"ScrollBehavior"}} -A.asy.prototype={ -$1(a){return A.b8o(a.gdd())}, -$S:484} -A.asz.prototype={ -$1(a){var s=a.gdd(),r=t.av -return new A.w2(A.bO(20,null,!1,r),s,A.bO(20,null,!1,r))}, -$S:485} -A.asA.prototype={ -$1(a){return new A.kc(a.gdd(),A.bO(20,null,!1,t.av))}, -$S:175} -A.aLN.prototype={ -gpl(){var s=this.r -return s==null?B.Ig:s}, -gCy(){var s=this.x -return s==null?A.cy([B.dt,B.e5],t.bd):s}, -om(a){var s=this.a.om(a) -return s}, -A8(a,b,c){if(this.c)return this.a.A8(a,b,c) -return b}, -vl(a,b,c){if(this.b)return this.a.vl(a,b,c) -return b}, -qf(a){var s=this.a.qf(a) -return s}, -Dh(a){return this.a.Dh(a)}, -k(a){return"_WrappedScrollBehavior"}} -A.Ev.prototype={ -cI(a){var s=A.l(this.f),r=A.l(a.f) -return s!==r}} -A.Ew.prototype={ -kQ(a,b,c){return this.aoD(a,b,c)}, -aoD(a,b,c){var s=0,r=A.I(t.H),q=this,p,o,n -var $async$kQ=A.J(function(d,e){if(d===1)return A.F(e,r) -for(;;)switch(s){case 0:n=A.c([],t.mo) -for(p=q.f,o=0;o#"+A.bF(this)+"("+B.b.bJ(s,", ")+")"}} -A.avz.prototype={ -k(a){var s=A.c([],t.s) -this.eu(s) -return"#"+A.bF(this)+"("+B.b.bJ(s,", ")+")"}, -eu(a){var s,r,q -try{s=this.b -if(s!=null)a.push("estimated child count: "+A.j(s))}catch(q){r=A.aj(q) -a.push("estimated child count: EXCEPTION ("+J.S(r).k(0)+")")}}} -A.Jx.prototype={} -A.Y7.prototype={ -asp(a){var s=this.w -if(s==null)return null -return s.$1(a instanceof A.Jx?a.a:a)}, -X5(a,b){var s,r,q,p,o,n,m,l,k=null -if(b>=0)p=b>=this.b -else p=!0 -if(p)return k -s=null -try{s=this.a.$2(a,b)}catch(o){r=A.aj(o) -q=A.b3(o) -n=new A.c9(r,q,"widgets library",A.bZ("building"),k,!1) -A.dE(n) -s=A.vw(n)}if(s==null)return k -if(s.a!=null){p=s.a -p.toString -m=new A.Jx(p)}else m=k -p=s -s=new A.j6(p,k) -p=s -l=this.r.$2(p,b) -if(l!=null)s=new A.R8(l,s,k) -p=s -s=new A.A2(new A.JP(p,k),k) -return new A.o3(s,m)}} -A.JP.prototype={ -ah(){return new A.JQ(null)}, -gR(){return this.c}} -A.JQ.prototype={ -gjV(){return this.r}, -av1(a){return new A.aHi(this,a)}, -zB(a,b){var s,r=this -if(b){s=r.d;(s==null?r.d=A.aU(t.x9):s).G(0,a)}else{s=r.d -if(s!=null)s.J(0,a)}s=r.d -s=s==null?null:s.a!==0 -s=s===!0 -if(r.r!==s){r.r=s -r.oe()}}, -by(){var s,r,q,p=this -p.du() -s=p.c -s.toString -r=A.EE(s) -s=p.f -if(s!=r){if(s!=null){q=p.e -if(q!=null)new A.bD(q,A.n(q).i("bD<1>")).aL(0,s.gth(s))}p.f=r -if(r!=null){s=p.e -if(s!=null)new A.bD(s,A.n(s).i("bD<1>")).aL(0,r.gke(r))}}}, -G(a,b){var s,r=this,q=r.av1(b) -b.a9(q) -s=r.e;(s==null?r.e=A.t(t.x9,t.M):s).m(0,b,q) -r.f.G(0,b) -if(b.gp().c!==B.dA)r.zB(b,!0)}, -J(a,b){var s=this.e -if(s==null)return -s=s.J(0,b) -s.toString -b.O(s) -this.f.J(0,b) -this.zB(b,!1)}, -l(){var s,r,q=this,p=q.e -if(p!=null){for(p=new A.eS(p,p.r,p.e);p.v();){s=p.d -q.f.J(0,s) -r=q.e.h(0,s) -r.toString -s.O(r)}q.e=null}q.d=null -q.aQ()}, -K(a){var s=this -s.lD(a) -if(s.f==null)return s.a.c -return A.aXR(s.a.c,s)}} -A.aHi.prototype={ -$0(){var s=this.b,r=this.a -if(s.gp().c!==B.dA)r.zB(s,!0) -else r.zB(s,!1)}, -$S:0} -A.ab8.prototype={ -aw(){this.b3() -if(this.r)this.ka()}, -dA(){var s=this.dh$ -if(s!=null){s.a7() -s.d8() -this.dh$=null}this.iF()}} -A.VC.prototype={ -lY(){var s=this,r=null,q=s.gKz()?s.gj5():r,p=s.gKz()?s.gj4():r,o=s.gZX()?s.gep():r,n=s.gZZ()?s.gx9():r,m=s.ghD(),l=s.gnD() -return new A.ahP(q,p,o,n,m,l)}, -gwA(){var s=this -return s.gep()s.gj4()}, -gpo(){var s=this -return s.gx9()-A.E(s.gj5()-s.gep(),0,s.gx9())-A.E(s.gep()-s.gj4(),0,s.gx9())}} -A.ahP.prototype={ -gj5(){var s=this.a -s.toString -return s}, -gj4(){var s=this.b -s.toString -return s}, -gKz(){return this.a!=null&&this.b!=null}, -gep(){var s=this.c -s.toString -return s}, -gZX(){return this.c!=null}, -gx9(){var s=this.d -s.toString -return s}, -gZZ(){return this.d!=null}, -k(a){var s=this -return"FixedScrollMetrics("+B.d.aq(Math.max(s.gep()-s.gj5(),0),1)+"..["+B.d.aq(s.gpo(),1)+"].."+B.d.aq(Math.max(s.gj4()-s.gep(),0),1)+")"}, -ghD(){return this.e}, -gnD(){return this.f}} -A.a2z.prototype={} -A.hH.prototype={} -A.Zd.prototype={ -a0g(a){if(t.rS.b(a))++a.hs$ -return!1}} -A.h8.prototype={ -eu(a){this.a77(a) -a.push(this.a.k(0))}} -A.rZ.prototype={ -eu(a){var s -this.u1(a) -s=this.d -if(s!=null)a.push(s.k(0))}} -A.k_.prototype={ -eu(a){var s -this.u1(a) -a.push("scrollDelta: "+A.j(this.e)) -s=this.d -if(s!=null)a.push(s.k(0))}} -A.jU.prototype={ -eu(a){var s,r=this -r.u1(a) -a.push("overscroll: "+B.d.aq(r.e,1)) -a.push("velocity: "+B.d.aq(r.f,1)) -s=r.d -if(s!=null)a.push(s.k(0))}} -A.j7.prototype={ -eu(a){var s -this.u1(a) -s=this.d -if(s!=null)a.push(s.k(0))}} -A.Z6.prototype={ -eu(a){this.u1(a) -a.push("direction: "+this.d.k(0))}} -A.JF.prototype={ -eu(a){var s,r -this.Ec(a) -s=this.hs$ -r=s===0?"local":"remote" -a.push("depth: "+s+" ("+r+")")}} -A.JE.prototype={ -cI(a){return this.f!==a.f}} -A.lj.prototype={ -av0(a){return this.a.$1(a)}} -A.Ey.prototype={ -ah(){return new A.VD(new A.mb(t.y4))}, -gR(){return this.c}} -A.VD.prototype={ -O(a){var s,r,q=this.d -q.toString -q=A.aSC(q,q.$ti.c) -s=q.$ti.c -while(q.v()){r=q.c -if(r==null)r=s.a(r) -if(J.b(r.a,a)){q=r.fl$ -q.toString -q.v0(A.n(r).i("ft.E").a(r)) -return}}}, -SI(a){var s,r,q,p,o,n,m,l,k=this.d -if(k.b===0)return -p=A.aa(k,t.Sx) -for(k=p.length,o=0;o "+s.k(0)}} -A.Uy.prototype={ -ns(a){return new A.Uy(this.p8(a))}, -zZ(a,b,c,d){var s,r,q,p,o,n,m=d===0,l=c.a -l.toString -s=b.a -s.toString -if(l===s){r=c.b -r.toString -q=b.b -q.toString -q=r===q -r=q}else r=!1 -p=r?!1:m -r=c.c -r.toString -q=b.c -q.toString -if(r!==q){q=!1 -if(isFinite(l)){o=c.b -o.toString -if(isFinite(o))if(isFinite(s)){q=b.b -q.toString -q=isFinite(q)}}if(q)m=!1 -p=!1}q=ro}else o=!0 -if(o)m=!1 -if(p){if(q&&s>l)return s-(l-r) -l=c.b -l.toString -if(r>l){q=b.b -q.toString -q=q0&&b<0))n=p>0&&b>0 -else n=!0 -s=a.ax -if(n){s.toString -m=this.Zw((o-Math.abs(b))/s)}else{s.toString -m=this.Zw(o/s)}l=J.ej(b) -if(n&&this.b===B.HT)return l*Math.abs(b) -return l*A.b5Q(o,Math.abs(b),m)}, -vc(a,b){return 0}, -Ar(a,b){var s,r,q,p,o,n,m,l=this.D1(a) -if(Math.abs(b)>=l.c||a.gwA()){s=this.gtT() -r=a.at -r.toString -q=a.z -q.toString -p=a.Q -p.toString -switch(this.b.a){case 1:o=1400 -break -case 0:o=0 -break -default:o=null}n=new A.ad9(q,p,s,l) -if(rp){n.f=new A.rY(p,A.uc(s,r-p,b),B.c6) -n.r=-1/0}else{r=n.e=A.b8c(0.135,r,b,o) -m=r.gBj() -if(b>0&&m>p){q=r.a1t(p) -n.r=q -n.f=new A.rY(p,A.uc(s,p-p,Math.min(r.h0(q),5000)),B.c6)}else if(b<0&&mr)q=r -else q=o -r=a.z -r.toString -if(s0){r=a.at -r.toString -p=a.Q -p.toString -p=r>=p -r=p}else r=!1 -if(r)return o -if(b<0){r=a.at -r.toString -p=a.z -p.toString -p=r<=p -r=p}else r=!1 -if(r)return o -r=a.at -r.toString -r=new A.aek(r,b,n) -p=$.aPJ() -s=p*0.35*Math.pow(s/2223.8657884799995,1/(p-1)) -r.e=s -r.f=b*s/p -return r}} -A.Mn.prototype={ -ns(a){return new A.Mn(this.p8(a))}, -mS(a){return!0}} -A.TM.prototype={ -ns(a){return new A.TM(this.p8(a))}, -gIh(){return!1}, -goZ(){return!1}} -A.rX.prototype={ -N(){return"ScrollPositionAlignmentPolicy."+this.b}} -A.mG.prototype={ -a8s(a,b,c,d,e){var s,r,q,p=this -if(d!=null)p.rb(d) -if(p.at==null){s=p.w -r=s.c -r.toString -r=A.aXc(r) -if(r==null)q=null -else{s=s.c -s.toString -q=r.axB(s)}if(q!=null)p.at=q}}, -gj5(){var s=this.z -s.toString -return s}, -gj4(){var s=this.Q -s.toString -return s}, -gKz(){return this.z!=null&&this.Q!=null}, -gep(){var s=this.at -s.toString -return s}, -gZX(){return this.at!=null}, -gx9(){var s=this.ax -s.toString -return s}, -gZZ(){return this.ax!=null}, -rb(a){var s=this,r=a.z -if(r!=null&&a.Q!=null){s.z=r -r=a.Q -r.toString -s.Q=r}r=a.at -if(r!=null)s.at=r -r=a.ax -if(r!=null)s.ax=r -s.fr=a.fr -a.fr=null -if(A.l(a)!==A.l(s))s.fr.a1e() -s.w.DL(s.fr.glC()) -s.dy.sp(s.fr.gkr())}, -gnD(){var s=this.w.f -s===$&&A.a() -return s}, -a39(a){var s,r,q,p=this,o=p.at -o.toString -if(a!==o){s=p.r.vc(p,a) -o=p.at -o.toString -r=a-s -p.at=r -if(r!==o){if(p.gwA())p.w.DL(!1) -p.HZ() -p.NK() -r=p.at -r.toString -p.Jv(r-o)}if(Math.abs(s)>1e-10){o=p.fr -o.toString -r=p.lY() -q=$.a1.ap$.x.h(0,p.w.Q) -q.toString -o.AN(r,q,s) -return s}}return 0}, -J4(a){var s=this.at -s.toString -this.at=s+a -this.ch=!0}, -Zr(a){var s=this -s.at.toString -s.at=a -s.HZ() -s.NK() -$.c6.k4$.push(new A.asF(s))}, -ve(a){if(this.ax!==a){this.ax=a -this.ch=!0}return!0}, -ri(a,b){var s,r,q=this -if(!A.LS(q.z,a,0.001)||!A.LS(q.Q,b,0.001)||q.ch||q.db!==A.bg(q.ghD())){q.z=a -q.Q=b -q.db=A.bg(q.ghD()) -s=q.ay -r=s?q.lY():null -q.ch=!1 -q.CW=!0 -if(s){s=q.cx -s.toString -r.toString -s=!q.aqW(s,r)}else s=!1 -if(s)return!1 -q.ay=!0}if(q.CW){q.a5K() -q.w.a2Y(q.r.mS(q)) -q.CW=!1}r=q.lY() -s=q.cx -if(s!=null)s=!(Math.max(r.gep()-r.gj5(),0)===Math.max(s.gep()-s.gj5(),0)&&r.gpo()===s.gpo()&&Math.max(r.gj4()-r.gep(),0)===Math.max(s.gj4()-s.gep(),0)&&r.e===s.e) -else s=!0 -if(s){if(!q.cy){A.fE(q.garu()) -q.cy=!0}q.cx=q.lY()}return!0}, -aqW(a,b){var s=this,r=s.r.zZ(s.fr.gkr(),b,a,s.fr.giy()),q=s.at -q.toString -if(r!==q){s.at=r -return!1}return!0}, -vd(){this.fr.vd() -this.HZ()}, -HZ(){var s,r,q,p,o,n,m=this,l=m.w -switch(l.a.c.a){case 0:s=B.a5l -break -case 2:s=B.a5h -break -case 3:s=B.a5b -break -case 1:s=B.a5a -break -default:s=null}r=s.a -q=null -p=s.b -q=p -s=A.aU(t._S) -o=m.at -o.toString -n=m.z -n.toString -if(o>n)s.G(0,q) -o=m.at -o.toString -n=m.Q -n.toString -if(on)k=n -break -default:k=null}n=p.at -n.toString -if(k===n){s=1 -break}if(e.a===0){p.f7(k) -s=1 -break}q=p.kQ(k,d,e) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$JQ,r)}, -wu(a,b,c){var s,r=this.z -r.toString -s=this.Q -s.toString -a=A.E(a,r,s) -return this.a6c(a,b,c)}, -jx(a){var s,r,q=this,p=q.fr -if(p!=null){s=p.glC() -r=q.fr.gkr() -if(r&&!a.gkr())q.Jo() -q.fr.l()}else{r=!1 -s=!1}q.fr=a -if(s!==a.glC())q.w.DL(q.fr.glC()) -q.dy.sp(q.fr.gkr()) -if(!r&&q.fr.gkr())q.Jt()}, -Jt(){var s=this.fr -s.toString -s.Yy(this.lY(),$.a1.ap$.x.h(0,this.w.Q))}, -Jv(a){var s,r,q=this.fr -q.toString -s=this.lY() -r=$.a1.ap$.x.h(0,this.w.Q) -r.toString -q.Yz(s,r,a)}, -Jo(){var s,r,q,p=this,o=p.fr -o.toString -s=p.lY() -r=p.w -q=$.a1.ap$.x.h(0,r.Q) -q.toString -o.Yx(s,q) -q=p.at -q.toString -r.r.sp(q) -q=$.ee.aK$ -q===$&&A.a() -q.asv() -o=r.c -o.toString -o=A.aXc(o) -if(o!=null){s=r.c -s.toString -r=p.at -r.toString -if(o.a==null)o.a=A.t(t.K,t.z) -s=o.OU(s) -if(s.length!==0)o.a.m(0,new A.Ke(s),r)}}, -arv(){var s,r,q -this.cy=!1 -s=this.w.Q -if($.a1.ap$.x.h(0,s)!=null){r=this.lY() -q=$.a1.ap$.x.h(0,s) -q.toString -s=$.a1.ap$.x.h(0,s) -if(s!=null)s.em(new A.rV(r,q,0))}}, -l(){var s=this,r=s.fr -if(r!=null)r.l() -s.fr=null -r=s.dy -r.P$=$.af() -r.L$=0 -s.d8()}, -eu(a){var s,r,q=this -q.a6b(a) -s=q.z -s=s==null?null:B.d.aq(s,1) -r=q.Q -r=r==null?null:B.d.aq(r,1) -a.push("range: "+A.j(s)+".."+A.j(r)) -r=q.ax -a.push("viewport: "+A.j(r==null?null:B.d.aq(r,1)))}} -A.asF.prototype={ -$1(a){}, -$S:4} -A.rV.prototype={ -WS(){return A.aRM(this.b,this.hs$,null,this.a,null)}, -eu(a){this.a76(a) -a.push(this.a.k(0))}} -A.JD.prototype={ -eu(a){var s,r -this.Ec(a) -s=this.hs$ -r=s===0?"local":"remote" -a.push("depth: "+s+" ("+r+")")}} -A.a6c.prototype={} -A.Ez.prototype={ -ghD(){return this.w.a.c}, -rb(a){var s,r=this -r.a5J(a) -r.fr.a=r -r.k4=a.k4 -s=a.ok -if(s!=null){r.ok=s -s.a=r -a.ok=null}}, -jx(a){var s,r=this -r.k3=0 -r.a5L(a) -s=r.ok -if(s!=null)s.l() -r.ok=null -if(!r.fr.gkr())r.Mn(B.kN)}, -iB(a){var s,r,q=this,p=q.r.Ar(q,a) -if(p!=null){if(!q.gwA()){s=q.fr -s=s==null?null:s.glC() -s=s!==!1}else s=!1 -s=new A.MF(s,q) -r=A.aQ9(null,0,q.w) -r.bC() -r.d_$.G(0,s.gHy()) -r.A2(p).a.a.h9(s.gHh()) -s.c=r -q.jx(s)}else q.jx(new A.nV(q))}, -Mn(a){var s,r,q,p=this -if(p.k4===a)return -p.k4=a -s=p.lY() -r=p.w.Q -q=$.a1.ap$.x.h(0,r) -q.toString -r=$.a1.ap$.x.h(0,r) -if(r!=null)r.em(new A.Z6(a,s,q,0))}, -kQ(a,b,c){var s,r,q=this,p=q.at -p.toString -if(A.LS(a,p,q.r.D1(q).a)){q.f7(a) -return A.di(null,t.H)}s=new A.Q1(q) -r=new A.ax($.as,t.c) -s.c=new A.bC(r,t.R) -p=A.aQ9("DrivenScrollActivity",p,q.w) -p.bC() -p.d_$.G(0,s.gHy()) -p.z=B.aP -p.iG(a,b,c).a.a.h9(s.gHh()) -s.d!==$&&A.bs() -s.d=p -q.jx(s) -return r}, -f7(a){var s,r,q=this -q.jx(new A.nV(q)) -s=q.at -s.toString -if(s!==a){q.Zr(a) -q.Jt() -r=q.at -r.toString -q.Jv(r-s) -q.Jo()}q.iB(0)}, -LJ(a){var s,r,q,p,o=this -if(a===0){o.iB(0) -return}s=o.at -s.toString -r=o.z -r.toString -r=Math.max(s+a,r) -q=o.Q -q.toString -p=Math.min(r,q) -if(p!==s){o.jx(new A.nV(o)) -o.Mn(-a>0?B.o8:B.o9) -s=o.at -s.toString -o.dy.sp(!0) -o.Zr(p) -o.Jt() -r=o.at -r.toString -o.Jv(r-s) -o.Jo() -o.iB(0)}}, -BI(a){var s=this,r=s.fr.giy(),q=new A.ajQ(a,s) -s.jx(q) -s.k3=r -return q}, -YF(a,b){var s,r,q=this,p=q.r,o=p.IC(q.k3) -p=p.gJB() -s=p==null?null:0 -r=new A.asB(q,b,o,p,a.c,o!==0,s,a.d,a) -q.jx(new A.agb(r,q)) -return q.ok=r}, -l(){var s=this.ok -if(s!=null)s.l() -this.ok=null -this.a5N()}} -A.ad9.prototype={ -Hp(a){var s,r=this,q=r.r -q===$&&A.a() -if(a>q){if(!isFinite(q))q=0 -r.w=q -q=r.f -q===$&&A.a() -s=q}else{r.w=0 -q=r.e -q===$&&A.a() -s=q}s.a=r.a -return s}, -fb(a){return this.Hp(a).fb(a-this.w)}, -h0(a){return this.Hp(a).h0(a-this.w)}, -mi(a){return this.Hp(a).mi(a-this.w)}, -k(a){return"BouncingScrollSimulation(leadingExtent: "+A.j(this.b)+", trailingExtent: "+A.j(this.c)+")"}} -A.aek.prototype={ -fb(a){var s,r=this.e -r===$&&A.a() -s=A.E(a/r,0,1) -r=this.f -r===$&&A.a() -return this.b+r*(1-Math.pow(1-s,$.aPJ()))}, -h0(a){var s=this.e -s===$&&A.a() -return this.c*Math.pow(1-A.E(a/s,0,1),$.aPJ()-1)}, -mi(a){var s=this.e -s===$&&A.a() -return a>=s}} -A.asG.prototype={ -N(){return"ScrollViewKeyboardDismissBehavior."+this.b}} -A.VE.prototype={ -ap9(a,b,c,d){var s=this -if(s.x)return new A.XW(c,b,B.J9,s.CW,d,null) -return new A.Gz(c,0,b,null,s.Q,B.J9,s.CW,d,null)}, -K(a){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=i.ap5(a),f=i.db -if(f==null){s=A.c_(a,h) -if(s!=null){r=s.r -q=r.aqA(0,0) -p=r.aqH(0,0) -r=i.c===B.L -f=r?p:q -g=A.CU(g,s.J_(r?q:p))}}o=A.c([f!=null?new A.Yc(f,g,h):g],t.p) -r=i.c -n=A.b1I(a,r,!1) -m=i.f -m=A.aXn(a,r) -l=m?A.Up(a):i.e -k=A.aRN(n,i.CW,l,i.ax,!1,i.cx,h,i.r,i.ch,h,i.as,new A.asH(i,n,o)) -j=m&&l!=null?A.aXm(k):k -A.kX(a) -return j}} -A.asH.prototype={ -$2(a,b){return this.a.ap9(a,b,this.b,this.c)}, -$S:489} -A.MT.prototype={} -A.Cx.prototype={ -ap5(a){return new A.Ya(this.x1,null)}} -A.al7.prototype={ -$2(a,b){var s=B.j.el(b,2) -if((b&1)===0)return this.a.$2(a,s) -return this.b.$2(a,s)}, -$S:490} -A.al8.prototype={ -$2(a,b){return(b&1)===0?B.j.el(b,2):null}, -$S:491} -A.aHd.prototype={ -$2(a,b){if(!a.a)a.O(b)}, -$S:44} -A.EA.prototype={ -ah(){var s=null,r=t.A -return new A.t_(new A.a5X($.af()),new A.by(s,r),new A.by(s,t.LZ),new A.by(s,r),B.DL,s,A.t(t.yb,t.M),s,!0,s,s,s)}, -az3(a,b){return this.f.$2(a,b)}} -A.asN.prototype={ -$1(a){return null}, -$S:492} -A.JG.prototype={ -cI(a){return this.r!==a.r}} -A.t_.prototype={ -gYh(){var s,r=this -switch(r.a.c.a){case 0:s=r.d.at -s.toString -s=new A.h(0,-s) -break -case 2:s=r.d.at -s.toString -s=new A.h(0,s) -break -case 3:s=r.d.at -s.toString -s=new A.h(-s,0) -break -case 1:s=r.d.at -s.toString -s=new A.h(s,0) -break -default:s=null}return s}, -gul(){var s=this.a.d -if(s==null){s=this.x -s.toString}return s}, -gey(){return this.a.Q}, -VP(){var s,r,q,p=this,o=null,n=p.a.as -if(n==null){n=p.c -n.toString -n=A.kX(n)}p.w=n -n=p.a -s=n.e -if(s==null){n=n.as -if(n==null)s=o -else{r=p.c -r.toString -r=n.qf(r) -s=r}}n=p.w -r=p.c -r.toString -r=n.qf(r) -p.e=r -n=s==null?o:s.ns(r) -p.e=n==null?p.e:n -q=p.d -if(q!=null){p.gul().vG(q) -A.fE(q.gdm())}p.gul() -n=p.e -n.toString -r=$.af() -r=new A.Ez(B.kN,n,p,!0,o,new A.cb(!1,r),r) -r.a8s(p,o,!0,q,n) -n=r.at -if(n==null)r.at=0 -if(r.fr==null)r.jx(new A.nV(r)) -p.d=r -p.gul().aP(r)}, -h7(a,b){var s,r,q,p=this.r -this.kw(p,"offset") -s=p.y -r=s==null -if((r?A.n(p).i("c3.T").a(s):s)!=null){q=this.d -q.toString -p=r?A.n(p).i("c3.T").a(s):s -p.toString -if(b)q.at=p -else q.f7(p)}}, -aw(){if(this.a.d==null)this.x=A.Vz() -this.b3()}, -by(){var s,r=this,q=r.c -q.toString -q=A.c_(q,B.lm) -r.y=q==null?null:q.cx -q=r.c -q.toString -q=A.c_(q,B.dJ) -q=q==null?null:q.b -if(q==null){q=r.c -q.toString -A.ld(q).toString -q=$.dm() -s=q.d -q=s==null?q.gcN():s}r.f=q -r.VP() -r.a79()}, -alE(a){var s,r,q=this,p=null,o=q.a.as,n=o==null,m=a.as,l=m==null -if(n!==l)return!0 -if(!n)if(!l){n=!0 -if(A.l(m.a)===A.l(o.a))if(m.b===o.b)if(m.c===o.c)if(A.pC(m.gpl(),o.gpl())){o=A.pC(m.gCy(),o.gCy()) -o=!o}else o=n -else o=n -else o=n -else o=n}else o=!1 -else o=!1 -if(o)return!0 -o=q.a -s=o.e -if(s==null){o=o.as -if(o==null)s=p -else{n=q.c -n.toString -n=o.qf(n) -s=n}}r=a.e -if(r==null)if(l)r=p -else{o=q.c -o.toString -o=m.qf(o) -r=o}do{o=s==null -n=o?p:A.l(s) -m=r==null -if(n!=(m?p:A.l(r)))return!0 -s=o?p:s.a -r=m?p:r.a}while(s!=null||r!=null) -o=q.a.d -o=o==null?p:A.l(o) -n=a.d -return o!=(n==null?p:A.l(n))}, -aV(a){var s,r,q=this -q.a7a(a) -s=a.d -if(q.a.d!=s){if(s==null){s=q.x -s.toString -r=q.d -r.toString -s.vG(r) -q.x.l() -q.x=null}else{r=q.d -r.toString -s.vG(r) -if(q.a.d==null)q.x=A.Vz()}s=q.gul() -r=q.d -r.toString -s.aP(r)}if(q.alE(a))q.VP()}, -l(){var s,r=this,q=r.a.d -if(q!=null){s=r.d -s.toString -q.vG(s)}else{q=r.x -if(q!=null){s=r.d -s.toString -q.vG(s)}q=r.x -if(q!=null)q.l()}r.d.l() -r.r.l() -r.a7b()}, -a2Y(a){var s,r,q=this -if(a===q.ay)s=!a||A.bg(q.a.c)===q.ch -else s=!1 -if(s)return -if(!a){q.at=B.DL -q.U0()}else{switch(A.bg(q.a.c).a){case 1:q.at=A.aG([B.p3,new A.cK(new A.asJ(q),new A.asK(q),t.ok)],t.u,t.xR) -break -case 0:q.at=A.aG([B.p2,new A.cK(new A.asL(q),new A.asM(q),t.Uv)],t.u,t.xR) -break}a=!0}q.ay=a -q.ch=A.bg(q.a.c) -s=q.Q -if(s.gS()!=null){s=s.gS() -s.Hu(q.at) -if(!s.a.f){r=s.c.ga1() -r.toString -t.Wx.a(r) -s.e.aoO(r)}}}, -DL(a){var s,r=this -if(r.ax===a)return -r.ax=a -s=r.as -if($.a1.ap$.x.h(0,s)!=null){s=$.a1.ap$.x.h(0,s).ga1() -s.toString -t.f1.a(s).sa_7(r.ax)}}, -adR(a){this.cx=this.d.BI(this.gabl())}, -al0(a){var s=this -s.CW=s.d.YF(a,s.gabj()) -if(s.cx!=null)s.cx=null}, -al1(a){var s=this.CW -if(s!=null)s.cQ(a)}, -al_(a){var s=this.CW -if(s!=null)s.YR(a)}, -U0(){if($.a1.ap$.x.h(0,this.Q)==null)return -var s=this.cx -if(s!=null)s.a.iB(0) -s=this.CW -if(s!=null)s.a.iB(0)}, -abm(){this.cx=null}, -abk(){this.CW=null}, -U5(a){var s,r=this.d,q=r.at -q.toString -s=r.z -s.toString -s=Math.max(q+a,s) -r=r.Q -r.toString -return Math.min(s,r)}, -U4(a){var s,r,q,p=$.ee.bz$ -p===$&&A.a() -p=p.a -s=A.n(p).i("bo<2>") -r=A.ep(new A.bo(p,s),s.i("y.E")) -p=this.w -p===$&&A.a() -p=p.gCy() -q=r.i8(0,p.glX(p))&&a.gdd()===B.c5 -p=this.a -switch((q?A.b1E(A.bg(p.c)):A.bg(p.c)).a){case 0:p=a.gtM().a -break -case 1:p=a.gtM().b -break -default:p=null}return A.LO(this.a.c)?-p:p}, -ak5(a){var s,r,q,p,o=this -if(t.Mj.b(a)&&o.d!=null){s=o.e -if(s!=null){r=o.d -r.toString -r=!s.mS(r) -s=r}else s=!1 -if(s){a.o8(!0) -return}q=o.U4(a) -p=o.U5(q) -if(q!==0){s=o.d.at -s.toString -s=p!==s}else s=!1 -if(s){$.fq.U$.o7(a,o.gal2()) -return}a.o8(!0)}else if(t.xb.b(a))o.d.LJ(0)}, -al3(a){var s,r=this,q=r.U4(a),p=r.U5(q) -if(q!==0){s=r.d.at -s.toString -s=p!==s}else s=!1 -if(s)r.d.LJ(q)}, -aff(a){var s,r -if(a.hs$===0){s=$.a1.ap$.x.h(0,this.z) -r=s==null?null:s.ga1() -if(r!=null)r.br()}return!1}, -K(a){var s,r,q,p,o,n,m,l,k=this,j=null,i=k.d -i.toString -s=k.at -r=k.a -q=r.x -p=r.w -o=k.ax -n=new A.JG(k,i,A.Cz(B.b3,new A.j5(A.cz(j,A.jK(r.az3(a,i),o,k.as),!1,j,j,!p,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,B.Y,j),s,q,p,k.Q),j,j,j,k.gak4(),j),j) -i=k.a -if(!i.w){i=k.d -i.toString -s=k.e.goZ() -r=k.a -q=A.bg(r.c) -n=new A.dT(k.gafe(),new A.a6d(i,s,r.y,q,n,k.z),j,t.ji) -i=r}s=k.gul() -m=new A.VF(i.c,s,i.at) -i=k.w -i===$&&A.a() -n=i.vl(a,i.A8(a,n,m),m) -l=A.EE(a) -if(l!=null){i=k.d -i.toString -n=new A.JI(k,i,n,l,j)}return n}} -A.asJ.prototype={ -$0(){var s=this.a.w -s===$&&A.a() -return A.b_c(null,s.gpl())}, -$S:188} -A.asK.prototype={ -$1(a){var s,r,q=this.a -a.ay=q.gRC() -a.ch=q.gU2() -a.CW=q.gU3() -a.cx=q.gU1() -a.cy=q.gU_() -s=q.e -r=s==null -a.db=r?null:s.gLd() -a.dx=r?null:s.gC_() -s=q.e -a.dy=s==null?null:s.gwq() -s=q.w -s===$&&A.a() -r=q.c -r.toString -a.fx=s.Dh(r) -a.at=q.a.z -r=q.w -s=q.c -s.toString -a.ax=r.om(s) -a.b=q.y -a.c=q.w.gpl()}, -$S:187} -A.asL.prototype={ -$0(){var s=this.a.w -s===$&&A.a() -return A.aR1(null,s.gpl())}, -$S:184} -A.asM.prototype={ -$1(a){var s,r,q=this.a -a.ay=q.gRC() -a.ch=q.gU2() -a.CW=q.gU3() -a.cx=q.gU1() -a.cy=q.gU_() -s=q.e -r=s==null -a.db=r?null:s.gLd() -a.dx=r?null:s.gC_() -s=q.e -a.dy=s==null?null:s.gwq() -s=q.w -s===$&&A.a() -r=q.c -r.toString -a.fx=s.Dh(r) -a.at=q.a.z -r=q.w -s=q.c -s.toString -a.ax=r.om(s) -a.b=q.y -a.c=q.w.gpl()}, -$S:183} -A.JI.prototype={ -ah(){return new A.a6e()}, -gR(){return this.e}} -A.a6e.prototype={ -aw(){var s,r,q,p -this.b3() -s=this.a -r=s.c -s=s.d -q=t.x9 -p=t.i -q=new A.JH(r,new A.agh(r,30),s,A.t(q,p),A.t(q,p),A.c([],t.D1),A.aU(q),B.I1,$.af()) -s.a9(q.gTR()) -this.d=q}, -aV(a){var s,r -this.bm(a) -s=this.a.d -if(a.d!==s){r=this.d -r===$&&A.a() -r.sbV(s)}}, -l(){var s=this.d -s===$&&A.a() -s.l() -this.aQ()}, -K(a){var s=this.a,r=s.f,q=this.d -q===$&&A.a() -return new A.t0(r,s.e,q,null)}} -A.JH.prototype={ -sbV(a){var s,r=this.id -if(a===r)return -s=this.gTR() -r.O(s) -this.id=a -a.a9(s)}, -akP(){if(this.fr)return -this.fr=!0 -$.c6.k4$.push(new A.aHa(this))}, -AF(){var s=this,r=s.b,q=A.vY(r,A.a6(r).c) -s.k1.f4(0,new A.aHb(q)) -s.k2.f4(0,new A.aHc(q)) -s.O3()}, -Br(a){var s=this -s.k1.aa(0) -s.k2.aa(0) -s.fy=s.fx=null -s.go=!1 -return s.O5(a)}, -l9(a){var s,r,q,p,o,n,m=this -if(m.fy==null&&m.fx==null)m.go=m.Rs(a.b) -s=A.abH(m.dx) -r=a.b -q=a.c -p=-s.a -o=-s.b -if(a.a===B.dz){r=m.fy=m.Se(r) -a=A.asP(new A.h(r.a+p,r.b+o),q)}else{r=m.fx=m.Se(r) -a=A.asQ(new A.h(r.a+p,r.b+o),q)}n=m.O8(a) -if(n===B.od){m.dy.e=!1 -return n}if(m.go){r=m.dy -r.a3G(A.aXC(a.b,0,0)) -if(r.e)return B.od}return n}, -Se(a){var s,r,q,p=this.dx,o=p.c.ga1() -o.toString -t.x.a(o) -s=o.eC(a) -if(!this.go){r=s.b -if(r<0||s.a<0)return A.bA(o.bd(null),B.f) -if(r>o.gC().b||s.a>o.gC().a)return B.a3U}q=A.abH(p) -return A.bA(o.bd(null),new A.h(s.a+q.a,s.b+q.b))}, -HL(a,b){var s,r,q,p=this,o=p.dx,n=A.abH(o) -o=o.c.ga1() -o.toString -t.x.a(o) -s=o.bd(null) -r=p.d -if(r!==-1)q=p.fx==null||b -else q=!1 -if(q){r=p.b[r].gp().a -r.toString -p.fx=A.bA(s,A.bA(p.b[p.d].bd(o),r.a.a8(0,new A.h(0,-r.b/2))).a8(0,n))}r=p.c -if(r!==-1){r=p.b[r].gp().b -r.toString -p.fy=A.bA(s,A.bA(p.b[p.c].bd(o),r.a.a8(0,new A.h(0,-r.b/2))).a8(0,n))}}, -VC(){return this.HL(!0,!0)}, -Bx(a){var s=this.O6(a) -if(this.d!==-1)this.VC() -return s}, -Bz(a){var s,r=this -r.go=r.Rs(a.gMX()) -s=r.O7(a) -r.VC() -return s}, -Ki(a){var s=this,r=s.a4N(a),q=a.gkq() -s.HL(a.gkq(),!q) -if(s.go)s.Ss(a.gkq()) -return r}, -Kh(a){var s=this,r=s.a4M(a),q=a.gkq() -s.HL(a.gkq(),!q) -if(s.go)s.Ss(a.gkq()) -return r}, -Ss(a){var s,r,q,p,o,n,m,l,k=this,j=k.b -if(a){s=j[k.c] -r=s.gp().b -q=s.gp().b.b}else{s=j[k.d] -r=s.gp().a -j=s.gp().a -q=j==null?null:j.b}if(q==null||r==null)return -j=k.dx -p=j.c.ga1() -p.toString -t.x.a(p) -o=A.bA(s.bd(p),r.a) -n=p.gC().a -p=p.gC().b -switch(j.a.c.a){case 0:m=o.b -l=m-q -if(m>=p&&l<=0)return -if(m>p){j=k.id -n=j.at -n.toString -j.f7(n+p-m) -return}if(l<0){j=k.id -p=j.at -p.toString -j.f7(p+0-l)}return -case 1:r=o.a -if(r>=n&&r<=0)return -if(r>n){j=k.id -p=j.at -p.toString -j.f7(p+r-n) -return}if(r<0){j=k.id -p=j.at -p.toString -j.f7(p+r)}return -case 2:m=o.b -l=m-q -if(m>=p&&l<=0)return -if(m>p){j=k.id -n=j.at -n.toString -j.f7(n+m-p) -return}if(l<0){j=k.id -p=j.at -p.toString -j.f7(p+l)}return -case 3:r=o.a -if(r>=n&&r<=0)return -if(r>n){j=k.id -p=j.at -p.toString -j.f7(p+n-r) -return}if(r<0){j=k.id -p=j.at -p.toString -j.f7(p+0-r)}return}}, -Rs(a){var s,r=this.dx.c.ga1() -r.toString -t.x.a(r) -s=r.eC(a) -return new A.w(0,0,0+r.gC().a,0+r.gC().b).q(0,s)}, -eK(a,b){var s,r,q=this -switch(b.a.a){case 0:s=q.dx.d.at -s.toString -q.k1.m(0,a,s) -q.nL(a) -break -case 1:s=q.dx.d.at -s.toString -q.k2.m(0,a,s) -q.nL(a) -break -case 6:case 7:q.nL(a) -s=q.dx -r=s.d.at -r.toString -q.k1.m(0,a,r) -s=s.d.at -s.toString -q.k2.m(0,a,s) -break -case 2:q.k2.J(0,a) -q.k1.J(0,a) -break -case 3:case 4:case 5:s=q.dx -r=s.d.at -r.toString -q.k2.m(0,a,r) -s=s.d.at -s.toString -q.k1.m(0,a,s) -break}return q.O4(a,b)}, -nL(a){var s,r,q,p,o,n,m=this,l=m.dx,k=l.d.at -k.toString -s=m.k1 -r=s.h(0,a) -q=m.fx -if(q!=null)p=r==null||Math.abs(k-r)>1e-10 -else p=!1 -if(p){o=A.abH(l) -a.nG(A.asQ(new A.h(q.a+-o.a,q.b+-o.b),null)) -q=l.d.at -q.toString -s.m(0,a,q)}s=m.k2 -n=s.h(0,a) -q=m.fy -if(q!=null)k=n==null||Math.abs(k-n)>1e-10 -else k=!1 -if(k){o=A.abH(l) -a.nG(A.asP(new A.h(q.a+-o.a,q.b+-o.b),null)) -l=l.d.at -l.toString -s.m(0,a,l)}}, -l(){var s=this -s.k1.aa(0) -s.k2.aa(0) -s.fr=!1 -s.dy.e=!1 -s.Eb()}} -A.aHa.prototype={ -$1(a){var s=this.a -if(!s.fr)return -s.fr=!1 -s.zC()}, -$S:4} -A.aHb.prototype={ -$2(a,b){return!this.a.q(0,a)}, -$S:169} -A.aHc.prototype={ -$2(a,b){return!this.a.q(0,a)}, -$S:169} -A.a6d.prototype={ -bf(a){var s=this,r=s.e,q=new A.Jn(r,s.f,s.w,s.r,null,new A.b8(),A.at()) -q.be() -q.sR(null) -r.a9(q.ga0_()) -return q}, -bj(a,b){var s=this -b.soZ(s.f) -b.am=s.w -b.sbV(s.e) -b.sa2S(s.r)}} -A.Jn.prototype={ -sbV(a){var s,r=this,q=r.D -if(a===q)return -s=r.ga0_() -q.O(s) -r.D=a -a.a9(s) -r.br()}, -soZ(a){if(a===this.a4)return -this.a4=a -this.br()}, -sa2S(a){if(a==this.bw)return -this.bw=a -this.br()}, -aiA(a){var s -switch(this.am.a){case 0:s=a.a -break -case 1:s=a.b -break -default:s=null}this.D.f7(s)}, -eJ(a){var s,r,q=this -q.jg(a) -a.a=!0 -s=q.D -if(s.ay){r=q.a4 -a.u=a.u.aq2(r) -a.r=!0 -r=s.at -r.toString -a.bL=r -r=s.Q -r.toString -a.bz=r -s=s.z -s.toString -a.bE=s -a.sa2K(q.bw) -s=q.D -r=s.Q -r.toString -s=s.z -s.toString -if(r>s&&q.a4)a.sawh(q.gaiz())}}, -rk(a,b,c){var s,r,q,p,o,n,m,l=this -if(c.length!==0){s=B.b.gad(c).fx -s=!(s!=null&&s.q(0,B.Ic))}else s=!0 -if(s){l.bQ=null -l.Ok(a,b,c) -return}s=l.bQ -if(s==null)s=l.bQ=A.EN(null,l.gql()) -s.sbS(a.f) -s=l.bQ -s.toString -r=t.QF -q=A.c([s],r) -p=A.c([],r) -for(s=c.length,o=null,n=0;n#"+A.bF(r)+"("+B.b.bJ(q,", ")+")"}, -gt(a){return A.N(this.a,this.b,null,this.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.VF)if(b.a===r.a)if(b.b===r.b)s=b.d===r.d -return s}} -A.asI.prototype={ -$2(a,b){if(b!=null)this.a.push(a+b.k(0))}, -$S:497} -A.agh.prototype={ -GR(a,b){var s -switch(b.a){case 0:s=a.a -break -case 1:s=a.b -break -default:s=null}return s}, -alV(a,b){var s -switch(b.a){case 0:s=a.a -break -case 1:s=a.b -break -default:s=null}return s}, -a3G(a){var s=this,r=s.a.gYh() -s.d=a.lu(r.a,r.b) -if(s.e)return -s.r2()}, -r2(){var s=0,r=A.I(t.H),q,p=this,o,n,m,l,k,j,i,h,g,f,e,d,c,b -var $async$r2=A.J(function(a,a0){if(a===1)return A.F(a0,r) -for(;;)switch(s){case 0:c=p.a -b=c.c.ga1() -b.toString -t.x.a(b) -o=b.bd(null) -n=A.e0(o,new A.w(0,0,0+b.gC().a,0+b.gC().b)) -b=p.d -b===$&&A.a() -A.e0(o,b) -p.e=!0 -m=c.gYh() -b=n.a -l=n.b -k=c.a.c -j=p.GR(new A.h(b+m.a,l+m.b),A.bg(k)) -i=j+p.alV(new A.L(n.c-b,n.d-l),A.bg(k)) -l=p.d -h=p.GR(new A.h(l.a,l.b),A.bg(k)) -g=p.GR(new A.h(l.c,l.d),A.bg(k)) -f=null -switch(k.a){case 0:case 3:if(g>i){b=c.d -l=b.at -l.toString -b=b.z -b.toString -b=l>b}else b=!1 -if(b){e=Math.min(g-i,20) -b=c.d -l=b.z -l.toString -b=b.at -b.toString -f=Math.max(l,b-e)}else{if(hb}else b=!1 -if(b){e=Math.min(j-h,20) -b=c.d -l=b.z -l.toString -b=b.at -b.toString -f=Math.max(l,b-e)}else{if(g>i){b=c.d -l=b.at -l.toString -b=b.Q -b.toString -b=l1e-10 -s=r}else s=!1 -return s}, -T0(a){var s,r,q=this -if(a){$.ab() -s=A.bt() -r=q.c -s.r=r.aI(r.gdY()*q.r.gp()).gp() -s.b=B.bK -s.c=1 -return s}$.ab() -s=A.bt() -r=q.b -s.r=r.aI(r.gdY()*q.r.gp()).gp() -return s}, -aje(){return this.T0(!1)}, -ajb(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null -g.gHc() -switch(g.gHc().a){case 0:s=g.f -r=g.db -r===$&&A.a() -q=new A.L(s,r) -r=g.x -s+=2*r -p=g.dx.d -p.toString -o=new A.L(s,p-g.gfz()) -n=r+g.CW.a -m=g.cy -m===$&&A.a() -r=n-r -l=g.guG() -k=new A.h(r,l) -j=k.a8(0,new A.h(s,0)) -i=new A.h(r+s,l+(p-g.gfz())) -h=m -break -case 1:s=g.f -r=g.db -r===$&&A.a() -q=new A.L(s,r) -r=g.x -p=g.dx.d -p.toString -o=new A.L(s+2*r,p-g.gfz()) -n=b.a-s-r-g.CW.c -s=g.cy -s===$&&A.a() -r=n-r -m=g.guG() -k=new A.h(r,m) -i=new A.h(r,m+(p-g.gfz())) -j=k -h=s -break -case 2:s=g.db -s===$&&A.a() -r=g.f -q=new A.L(s,r) -s=g.dx.d -s.toString -p=g.gfz() -m=g.x -r+=2*m -o=new A.L(s-p,r) -p=g.cy -p===$&&A.a() -h=m+g.CW.b -l=g.guG() -m=h-m -k=new A.h(l,m) -j=k.a8(0,new A.h(0,r)) -i=new A.h(l+(s-g.gfz()),m+r) -n=p -break -case 3:s=g.db -s===$&&A.a() -r=g.f -q=new A.L(s,r) -s=g.dx.d -s.toString -p=g.gfz() -m=g.x -o=new A.L(s-p,r+2*m) -p=g.cy -p===$&&A.a() -h=b.b-r-m-g.CW.d -r=g.guG() -m=h-m -k=new A.h(r,m) -i=new A.h(r+(s-g.gfz()),m) -j=k -n=p -break -default:i=f -j=i -k=j -o=k -q=o -h=q -n=h}s=k.a -r=k.b -g.ch=new A.w(s,r,s+o.a,r+o.b) -g.cx=new A.w(n,h,n+q.a,h+q.b) -if(g.r.gp()!==0){s=g.ch -s.toString -a.h_(s,g.aje()) -a.nJ(j,i,g.T0(!0)) -s=g.y -if(s!=null){r=g.cx -r.toString -a.eL(A.kT(r,s),g.gT_()) -return}s=g.cx -s.toString -a.h_(s,g.gT_()) -return}}, -b1(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=e.dy -if(d==null||!e.GN(e.dx))return -s=e.dx -r=s.d -r.toString -q=e.gfz() -p=e.w -o=2*p -if(r-q-o<=0)return -q=s.b -q.toString -if(q==1/0||q==-1/0)return -n=s.gpo() -m=e.gfz() -l=s.a -l.toString -q-=l -k=A.E((n-m)/(q+r-e.gfz()),0,1) -j=Math.max(Math.min(r-e.gfz()-o,e.at),(r-e.gfz()-o)*k) -m=s.gpo() -i=Math.min(e.as,r-e.gfz()-o) -n=d!==B.b_ -if((!n||d===B.bh?Math.max(s.gj4()-s.gep(),0):Math.max(s.gep()-s.gj5(),0))>0)h=(!n||d===B.bh?Math.max(s.gep()-s.gj5(),0):Math.max(s.gj4()-s.gep(),0))>0 -else h=!1 -g=h?i:i*(1-A.E(1-m/r,0,0.2)/0.2) -m=A.E(j,g,r-e.gfz()-o) -e.db=m -if(q>0){s=s.c -s.toString -f=A.E((s-l)/q,0,1)}else f=0 -d=!n||d===B.bh?1-f:f -e.cy=d*(r-e.gfz()-o-m)+(e.guG()+p) -return e.ajb(a,b)}, -MU(a){var s,r,q,p,o=this,n=o.dx,m=n.b -m.toString -s=n.a -s.toString -n=n.d -n.toString -r=o.gfz() -q=o.w -p=o.db -p===$&&A.a() -return(m-s)*a/(n-r-2*q-p)}, -pA(a){var s,r,q=this -if(q.cx==null)return null -s=!0 -if(!q.ay)if(q.r.gp()!==0){s=q.dx -r=s.a -r.toString -s=s.b -s.toString -s=r===s}if(s)return!1 -return q.ch.q(0,a)}, -a_2(a,b,c){var s,r,q,p=this,o=p.ch -if(o==null)return!1 -if(p.ay)return!1 -s=p.dx -r=s.a -r.toString -s=s.b -s.toString -if(r===s)return!1 -q=o.hr(A.oo(p.cx.gbp(),24)) -if(p.r.gp()===0){if(c&&b===B.c5)return q.q(0,a) -return!1}switch(b.a){case 0:case 4:return q.q(0,a) -case 1:case 2:case 3:case 5:return o.q(0,a)}}, -atY(a,b){return this.a_2(a,b,!1)}, -a_3(a,b){var s,r,q=this -if(q.cx==null)return!1 -if(q.ay)return!1 -if(q.r.gp()===0)return!1 -s=q.dx -r=s.a -r.toString -s=s.b -s.toString -if(r===s)return!1 -switch(b.a){case 0:case 4:s=q.cx -return s.hr(A.oo(s.gbp(),24)).q(0,a) -case 1:case 2:case 3:case 5:return q.cx.q(0,a)}}, -eU(a){var s=this,r=!0 -if(s.a.j(0,a.a))if(s.b.j(0,a.b))if(s.c.j(0,a.c))if(s.e==a.e)if(s.f===a.f)if(s.r===a.r)if(s.w===a.w)if(s.x===a.x)if(J.b(s.y,a.y))if(s.Q.j(0,a.Q))if(s.as===a.as)if(s.at===a.at)r=s.ay!==a.ay -return r}, -DP(a){return!1}, -gxy(){return null}, -k(a){return"#"+A.bF(this)}, -l(){this.r.a.O(this.gdN()) -this.d8()}} -A.wH.prototype={ -ah(){return A.bae(t.jU)}, -lf(a){return this.cx.$1(a)}, -gR(){return this.c}} -A.kU.prototype={ -gjl(){var s=this.a.d -return s}, -gqn(){var s=this.a.e -return s===!0}, -gUz(){if(this.gqn())this.a.toString -return!1}, -gpm(){this.a.toString -return!0}, -aw(){var s,r,q,p,o,n=this,m=null -n.b3() -s=A.bX(m,n.a.ay,m,m,n) -s.bC() -r=s.cP$ -r.b=!0 -r.a.push(n.ganE()) -n.x=s -s=n.y=A.cQ(B.aL,s,m) -r=n.a -q=r.w -if(q==null)q=6 -p=r.r -o=r.db -r=r.dx -r=new A.wW(B.m5,B.D,B.D,m,q,s,r,0,p,m,B.ap,18,18,o,B.ap,$.af()) -s.a.a9(r.gdN()) -n.CW!==$&&A.bs() -n.CW=r}, -by(){this.du()}, -anF(a){var s,r=this -if(a!==B.Z)if(r.gjl()!=null&&r.gpm()){s=r.x -s===$&&A.a() -s=s.Q -s===$&&A.a() -if(s===B.bC){s=r.a.e -s=s===!0}else s=!1 -if(s)return}}, -x5(){var s,r=this,q=r.c.aA(t.I).w,p=r.CW -p===$&&A.a() -r.a.toString -p.sdQ(B.m5) -r.a.toString -p.sayG(null) -if(r.gUz()){r.a.toString -s=B.N9}else s=B.D -p.slt(s) -if(r.gUz()){r.a.toString -s=B.h9}else s=B.D -p.sa1H(s) -p.sce(q) -s=r.a.w -p.sM5(s==null?6:s) -p.swM(r.a.r) -s=r.a.fr -if(s==null){s=r.c -s.toString -s=A.c0(s,B.bS,t.l).w.r}p.scH(s) -p.sDE(r.a.db) -p.sL5(r.a.dx) -r.a.toString -p.sdt(null) -r.a.toString -p.sJ8(0) -r.a.toString -p.sLf(18) -r.a.toString -p.sa04(18) -p.sa_6(!r.gpm())}, -aV(a){var s,r=this -r.bm(a) -s=r.a.e -if(s!=a.e)if(s===!0){s=r.w -if(s!=null)s.bg() -s=r.x -s===$&&A.a() -s.z=B.aP -s.iG(1,B.a7,null)}else{s=r.x -s===$&&A.a() -s.d6()}}, -yT(){var s,r=this -if(!r.gqn()){s=r.w -if(s!=null)s.bg() -r.w=A.ck(r.a.ch,new A.aqj(r))}}, -abq(){this.as=null}, -abs(){this.ax=null}, -acY(a){var s,r,q,p,o,n=this,m=B.b.gcM(n.r.f),l=A.bQ(),k=A.bQ(),j=m.w -switch(j.a.c.a){case 0:s=a.b -l.b=n.d.b-s -k.b=n.e.b-s -break -case 1:s=a.a -l.b=s-n.d.a -k.b=s-n.e.a -break -case 2:s=a.b -l.b=s-n.d.b -k.b=s-n.e.b -break -case 3:s=a.a -l.b=n.d.a-s -k.b=n.e.a-s -break}s=n.CW -s===$&&A.a() -r=n.f -r.toString -q=s.MU(r+l.bc()) -if(l.bc()>0){r=m.at -r.toString -r=qr}else r=!1 -else r=!0 -if(r){r=m.at -r.toString -q=r+s.MU(k.bc())}s=m.at -s.toString -if(q!==s){p=q-m.r.vc(m,q) -s=n.c -s.toString -s=A.kX(s) -r=n.c -r.toString -switch(s.kE(r).a){case 1:case 3:case 4:case 5:s=m.z -s.toString -r=m.Q -r.toString -p=A.E(p,s,r) -break -case 2:case 0:break}o=A.LO(j.a.c) -j=m.at -if(o){j.toString -j=p-j}else{j.toString -j-=p}return j}return null}, -Ku(){var s,r=this -r.r=r.gjl() -if(r.ay==null)return -s=r.w -if(s!=null)s.bg() -r.ax=B.b.gcM(r.r.f).BI(r.gabr())}, -BC(a){var s,r,q,p,o,n,m,l,k=this -if(k.ay==null)return -s=k.w -if(s!=null)s.bg() -s=k.x -s===$&&A.a() -s.cc() -r=B.b.gcM(k.r.f) -s=$.a1.ap$.x.h(0,k.z).ga1() -s.toString -s=A.bA(t.x.a(s).bd(null),a) -k.as=r.YF(new A.i_(s,a,null,null),k.gabp()) -k.e=k.d=a -s=k.CW -s===$&&A.a() -q=s.dx -p=q.b -p.toString -o=q.a -o.toString -n=p-o -if(n>0){m=q.c -m.toString -l=A.E(m/n,o/n,p/n)}else l=0 -q=q.d -q.toString -p=s.gfz() -o=s.w -s=s.db -s===$&&A.a() -k.f=l*(q-p-2*o-s)}, -atA(a){var s,r,q,p,o,n,m=this,l=null -if(J.b(m.e,a))return -s=B.b.gcM(m.r.f) -if(!s.r.mS(s))return -r=m.ay -if(r==null)return -if(m.as==null)return -q=m.acY(a) -if(q==null)return -switch(r.a){case 0:p=new A.h(q,0) -break -case 1:p=new A.h(0,q) -break -default:p=l}o=$.a1.ap$.x.h(0,m.z).ga1() -o.toString -n=A.Bg(p,A.bA(t.x.a(o).bd(l),a),l,a,q,l) -m.as.cQ(n) -m.e=a}, -BB(a,b){var s,r,q,p,o,n=this,m=n.ay -if(m==null)return -n.yT() -n.e=n.r=null -if(n.as==null)return -s=n.c -s.toString -s=A.kX(s) -r=n.c -r.toString -q=s.kE(r) -A:{if(B.U===q||B.as===q){s=b.a -s=new A.iE(new A.h(-s.a,-s.b)) -break A}s=B.dG -break A}r=$.a1.ap$.x.h(0,n.z).ga1() -r.toString -r=A.bA(t.x.a(r).bd(null),a) -switch(m.a){case 0:p=s.a.a -break -case 1:p=s.a.b -break -default:p=null}o=n.as -if(o!=null)o.YR(new A.hu(r,a,s,p)) -n.r=n.f=n.e=n.d=null}, -BD(a){var s,r,q,p,o,n=this,m=n.gjl() -n.r=m -s=B.b.gcM(m.f) -if(!s.r.mS(s))return -m=s.w -switch(A.bg(m.a.c).a){case 1:r=n.CW -r===$&&A.a() -r=r.cy -r===$&&A.a() -q=a.b.b>r?B.aV:B.b_ -break -case 0:r=n.CW -r===$&&A.a() -r=r.cy -r===$&&A.a() -q=a.b.a>r?B.cl:B.bh -break -default:q=null}m=$.a1.ap$.x.h(0,m.Q) -m.toString -p=A.iq(m,null) -p.toString -o=A.asx(p,new A.eW(q,B.hY)) -m=B.b.gcM(n.r.f) -r=B.b.gcM(n.r.f).at -r.toString -m.wu(r+o,B.mk,B.bi)}, -Hn(a){var s,r,q=this.gjl() -if(q==null)return!0 -s=q.f -r=s.length -if(r>1)return!1 -return r===0||A.bg(B.b.gcM(s).ghD())===a}, -al6(a){var s,r,q=this,p=q.a -p.toString -if(!p.lf(a.WS()))return!1 -if(q.gqn()){p=q.x -p===$&&A.a() -p=!p.gba().gt_()}else p=!1 -if(p){p=q.x -p===$&&A.a() -p.cc()}s=a.a -p=s.e -if(q.Hn(A.bg(p))){r=q.CW -r===$&&A.a() -r.cW(s,p)}if(A.bg(p)!==q.ay)q.ar(new A.aqh(q,s)) -p=q.at -r=s.b -r.toString -if(p!==r>0)q.ar(new A.aqi(q)) -return!1}, -afh(a){var s,r,q,p=this -if(!p.a.lf(a))return!1 -s=a.a -r=s.b -r.toString -q=s.a -q.toString -if(r<=q){r=p.x -r===$&&A.a() -if(r.gba().gt_())r.d6() -r=s.e -if(p.Hn(A.bg(r))){q=p.CW -q===$&&A.a() -q.cW(s,r)}return!1}if(a instanceof A.k_||a instanceof A.jU){r=p.x -r===$&&A.a() -if(!r.gba().gt_())r.cc() -r=p.w -if(r!=null)r.bg() -r=s.e -if(p.Hn(A.bg(r))){q=p.CW -q===$&&A.a() -q.cW(s,r)}}else if(a instanceof A.j7)if(p.as==null)p.yT() -return!1}, -ag7(a){this.Ku()}, -G2(a){var s=$.a1.ap$.x.h(0,this.z).ga1() -s.toString -return t.x.a(s).eC(a)}, -agb(a){this.BC(this.G2(a.a))}, -agd(a){this.atA(this.G2(a.a))}, -ag9(a){this.BB(this.G2(a.a),a.c)}, -ag5(){if($.a1.ap$.x.h(0,this.ch)==null)return -var s=this.ax -if(s!=null)s.a.iB(0) -s=this.as -if(s!=null)s.a.iB(0)}, -agD(a){var s=this -a.ay=s.gag6() -a.ch=s.gaga() -a.CW=s.gagc() -a.cx=s.gag8() -a.cy=s.gag4() -a.b=B.Oe -a.at=B.ms}, -gacw(){var s,r=this,q=A.t(t.u,t.xR),p=!1 -if(r.gpm())if(r.gjl()!=null)if(r.gjl().f.length===1){s=B.b.gcM(r.gjl().f) -if(s.z!=null&&s.Q!=null){p=B.b.gcM(r.gjl().f).Q -p.toString -s=B.b.gcM(r.gjl().f).z -s.toString -s=p-s>1e-10 -p=s}}if(!p)return q -switch(A.bg(B.b.gcM(r.gjl().f).ghD()).a){case 0:q.m(0,B.agB,new A.cK(new A.aqd(r),r.gSi(),t.lh)) -break -case 1:q.m(0,B.agr,new A.cK(new A.aqe(r),r.gSi(),t.Pw)) -break}q.m(0,B.agv,new A.cK(new A.aqf(r),new A.aqg(r),t.Bk)) -return q}, -a_C(a,b,c){var s,r=this.z -if($.a1.ap$.x.h(0,r)==null)return!1 -s=A.aT2(r,a) -r=this.CW -r===$&&A.a() -return r.a_2(s,b,!0)}, -Kj(a){var s,r=this -if(r.a_C(a.gbV(),a.gdd(),!0)){r.Q=!0 -s=r.x -s===$&&A.a() -s.cc() -s=r.w -if(s!=null)s.bg()}else if(r.Q){r.Q=!1 -r.yT()}}, -Kk(a){this.Q=!1 -this.yT()}, -T8(a){var s=A.bg(B.b.gcM(this.r.f).ghD())===B.am?a.gtM().a:a.gtM().b -return A.LO(B.b.gcM(this.r.f).w.a.c)?s*-1:s}, -UU(a){var s,r=B.b.gcM(this.r.f).at -r.toString -s=B.b.gcM(this.r.f).z -s.toString -s=Math.max(r+a,s) -r=B.b.gcM(this.r.f).Q -r.toString -return Math.min(s,r)}, -af0(a){var s,r,q,p=this -p.r=p.gjl() -s=p.T8(a) -r=p.UU(s) -if(s!==0){q=B.b.gcM(p.r.f).at -q.toString -q=r!==q}else q=!1 -if(q)B.b.gcM(p.r.f).LJ(s)}, -al8(a){var s,r,q,p,o,n=this -n.r=n.gjl() -s=n.CW -s===$&&A.a() -s=s.pA(a.gdD()) -r=!1 -if(s===!0){s=n.r -if(s!=null)s=s.f.length!==0 -else s=r}else s=r -if(s){q=B.b.gcM(n.r.f) -if(t.Mj.b(a)){if(!q.r.mS(q))return -p=n.T8(a) -o=n.UU(p) -if(p!==0){s=q.at -s.toString -s=o!==s}else s=!1 -if(s)$.fq.U$.o7(a,n.gaf_())}else if(t.xb.b(a)){s=q.at -s.toString -q.f7(s)}}}, -l(){var s=this,r=s.x -r===$&&A.a() -r.l() -r=s.w -if(r!=null)r.bg() -r=s.CW -r===$&&A.a() -r.r.a.O(r.gdN()) -r.d8() -r=s.y -r===$&&A.a() -r.l() -s.a6D()}, -K(a){var s,r,q=this,p=null -q.x5() -s=q.gacw() -r=q.CW -r===$&&A.a() -return new A.dT(q.gal5(),new A.dT(q.gafg(),new A.j6(A.Cz(B.b3,new A.j5(A.ie(A.hY(new A.j6(q.a.c,p),r,q.z,p,B.Q),B.b2,p,p,new A.aqk(q),new A.aql(q)),s,p,!1,q.ch),p,p,p,q.gal7(),p),p),p,t.WA),p,t.ji)}} -A.aqj.prototype={ -$0(){var s=this.a,r=s.x -r===$&&A.a() -r.d6() -s.w=null}, -$S:0} -A.aqh.prototype={ -$0(){this.a.ay=A.bg(this.b.e)}, -$S:0} -A.aqi.prototype={ -$0(){var s=this.a -s.at=!s.at}, -$S:0} -A.aqd.prototype={ -$0(){var s=this.a,r=t.S -return new A.p4(s.z,B.W,B.fo,A.abS(),B.d0,A.t(r,t.GY),A.t(r,t.o),B.f,A.c([],t.t),A.t(r,t.SP),A.dv(r),s,null,A.abT(),A.t(r,t.g))}, -$S:499} -A.aqe.prototype={ -$0(){var s=this.a,r=t.S -return new A.pp(s.z,B.W,B.fo,A.abS(),B.d0,A.t(r,t.GY),A.t(r,t.o),B.f,A.c([],t.t),A.t(r,t.SP),A.dv(r),s,null,A.abT(),A.t(r,t.g))}, -$S:500} -A.aqf.prototype={ -$0(){var s=this.a,r=t.S -return new A.lo(s.z,B.bi,-1,-1,B.dY,A.t(r,t.SP),A.dv(r),s,null,A.LU(),A.t(r,t.g))}, -$S:501} -A.aqg.prototype={ -$1(a){a.n=this.a.gZR()}, -$S:502} -A.aqk.prototype={ -$1(a){var s -switch(a.gdd().a){case 1:case 4:s=this.a -if(s.gpm())s.Kk(a) -break -case 2:case 3:case 5:case 0:break}}, -$S:34} -A.aql.prototype={ -$1(a){var s -switch(a.gdd().a){case 1:case 4:s=this.a -if(s.gpm())s.Kj(a) -break -case 2:case 3:case 5:case 0:break}}, -$S:503} -A.lo.prototype={ -im(a){return A.bii(this.bQ,a)&&this.a62(a)}} -A.pp.prototype={ -KT(a){return!1}, -im(a){return A.b0L(this.ec,a)&&this.NQ(a)}} -A.p4.prototype={ -KT(a){return!1}, -im(a){return A.b0L(this.ec,a)&&this.NQ(a)}} -A.yR.prototype={ -bF(){this.cE() -this.cv() -this.eG()}, -l(){var s=this,r=s.bl$ -if(r!=null)r.O(s.geq()) -s.bl$=null -s.aQ()}} -A.xs.prototype={ -Js(a,b){var s=this -switch(a){case!0:s.dy.G(0,b) -break -case!1:s.dx.G(0,b) -break -case null:case void 0:s.dx.G(0,b) -s.dy.G(0,b) -break}}, -Yu(a){return this.Js(null,a)}, -AH(){var s,r,q,p,o,n,m=this,l=m.d -if(l===-1||m.c===-1)return -s=m.c -r=Math.min(l,s) -q=Math.max(l,s) -for(p=r;p<=q;++p)m.Yu(m.b[p]) -l=m.d -if(l!==-1&&m.b[l].gp().c!==B.dA){r=m.b[m.d] -o=r.gp().a.a.a8(0,new A.h(0,-r.gp().a.b/2)) -m.fr=A.bA(r.bd(null),o)}l=m.c -if(l!==-1&&m.b[l].gp().c!==B.dA){q=m.b[m.c] -n=q.gp().b.a.a8(0,new A.h(0,-q.gp().b.b/2)) -m.fx=A.bA(q.bd(null),n)}}, -IH(){var s=this -B.b.aL(s.b,s.gapA()) -s.fx=s.fr=null}, -II(a){this.dx.J(0,a) -this.dy.J(0,a)}, -J(a,b){this.II(b) -this.a4P(0,b)}, -Bx(a){var s=this.O6(a) -this.AH() -return s}, -Bz(a){var s=this.O7(a) -this.AH() -return s}, -By(a){var s=this.a4O(a) -this.AH() -return s}, -Br(a){var s=this.O5(a) -this.IH() -return s}, -l9(a){var s=a.b -if(a.a===B.dz)this.fx=s -else this.fr=s -return this.O8(a)}, -l(){this.IH() -this.Eb()}, -eK(a,b){var s=this -switch(b.a.a){case 0:s.Js(!1,a) -s.nL(a) -break -case 1:s.Js(!0,a) -s.nL(a) -break -case 2:s.II(a) -break -case 3:case 4:case 5:break -case 6:case 7:s.Yu(a) -s.nL(a) -break}return s.O4(a,b)}, -nL(a){var s,r,q=this -if(q.fx!=null&&q.dy.G(0,a)){s=q.fx -s.toString -r=A.asP(s,null) -if(q.c===-1)q.l9(r) -a.nG(r)}if(q.fr!=null&&q.dx.G(0,a)){s=q.fr -s.toString -r=A.asQ(s,null) -if(q.d===-1)q.l9(r) -a.nG(r)}}, -AF(){var s,r=this,q=r.fx -if(q!=null)r.l9(A.asP(q,null)) -q=r.fr -if(q!=null)r.l9(A.asQ(q,null)) -q=r.b -s=A.vY(q,A.a6(q).c) -r.dy.ym(new A.avX(s),!0) -r.dx.ym(new A.avY(s),!0) -r.O3()}} -A.avX.prototype={ -$1(a){return!this.a.q(0,a)}, -$S:65} -A.avY.prototype={ -$1(a){return!this.a.q(0,a)}, -$S:65} -A.wh.prototype={ -G(a,b){this.Q.G(0,b) -this.TV()}, -J(a,b){var s,r,q=this -if(q.Q.J(0,b))return -s=B.b.ik(q.b,b) -B.b.kx(q.b,s) -r=q.c -if(s<=r)q.c=r-1 -r=q.d -if(s<=r)q.d=r-1 -b.O(q.gGe()) -q.TV()}, -TV(){var s,r -if(!this.y){this.y=!0 -s=new A.aom(this) -r=$.c6 -if(r.p2$===B.o7)A.fE(s) -else r.k4$.push(s)}}, -aci(){var s,r,q,p,o,n,m,l,k=this,j=k.Q,i=A.aa(j,A.n(j).c) -B.b.fO(i,k.gvu()) -s=k.b -k.b=A.c([],t.D1) -r=k.d -q=k.c -j=k.gGe() -p=0 -o=0 -for(;;){n=i.length -if(!(pMath.min(n,l))k.nL(m) -m.a9(j) -B.b.G(k.b,m);++p}}k.c=q -k.d=r -k.Q=A.aU(t.x9)}, -AF(){this.zC()}, -zC(){var s=this,r=s.a2w() -if(!s.at.j(0,r)){s.at=r -s.a7()}s.an5()}, -gvu(){return A.bkT()}, -afl(){if(this.x)return -this.zC()}, -a2w(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=null,a=c.c -if(a===-1||c.d===-1||c.b.length===0)return new A.ox(b,b,B.dA,B.np,c.b.length!==0) -if(!c.as){a=c.OS(c.d,a) -c.d=a -c.c=c.OS(c.c,a)}s=c.b[c.d].gp() -a=c.c -r=c.d -q=a>=r -for(;;){if(!(r!==c.c&&s.a==null))break -r+=q?1:-1 -s=c.b[r].gp()}a=s.a -if(a!=null){p=c.b[r] -o=c.a.ga1() -o.toString -n=A.bA(p.bd(t.x.a(o)),a.a) -m=isFinite(n.a)&&isFinite(n.b)?new A.t2(n,a.b,a.c):b}else m=b -l=c.b[c.c].gp() -k=c.c -for(;;){if(!(k!==c.d&&l.b==null))break -k+=q?-1:1 -l=c.b[k].gp()}a=l.b -if(a!=null){p=c.b[k] -o=c.a.ga1() -o.toString -j=A.bA(p.bd(t.x.a(o)),a.a) -i=isFinite(j.a)&&isFinite(j.b)?new A.t2(j,a.b,a.c):b}else i=b -h=A.c([],t.AO) -g=c.gatG()?new A.w(0,0,0+c.gXE().a,0+c.gXE().b):b -for(f=c.d;f<=c.c;++f){e=c.b[f].gp().d -a=new A.am(e,new A.aon(c,f,g),A.a6(e).i("am<1,w>")).Ea(0,new A.aoo()) -d=A.aa(a,a.$ti.i("y.E")) -B.b.a_(h,d)}return new A.ox(m,i,!s.j(0,l)?B.oe:s.c,h,!0)}, -OS(a,b){var s=b>a -for(;;){if(!(a!==b&&this.b[a].gp().c!==B.oe))break -a+=s?1:-1}return a}, -lm(a,b){return}, -an5(){var s,r=this,q=null,p=r.e,o=r.r,n=r.d -if(n===-1||r.c===-1){n=r.f -if(n!=null){n.lm(q,q) -r.f=null}n=r.w -if(n!=null){n.lm(q,q) -r.w=null}return}n=r.b[n] -s=r.f -if(n!==s)if(s!=null)s.lm(q,q) -n=r.b[r.c] -s=r.w -if(n!==s)if(s!=null)s.lm(q,q) -n=r.b -s=r.d -n=r.f=n[s] -if(s===r.c){r.w=n -n.lm(p,o) -return}n.lm(p,q) -n=r.b[r.c] -r.w=n -n.lm(q,o)}, -Ua(){var s,r,q,p=this,o=p.d,n=o===-1 -if(n&&p.c===-1)return -if(n||p.c===-1){if(n)o=p.c -n=p.b -new A.b1(n,new A.aoi(p,o),A.a6(n).i("b1<1>")).aL(0,new A.aoj(p)) -return}n=p.c -s=Math.min(o,n) -r=Math.max(o,n) -for(q=0;n=p.b,q=s&&q<=r)continue -p.eK(n[q],B.h2)}}, -Bx(a){var s,r,q,p=this -for(s=p.b,r=s.length,q=0;q")).aL(0,new A.aol(i)) -i.d=i.c=r}return B.a1}else if(s===B.P){i.d=i.c=r-1 -return B.a1}}return B.a1}, -Bz(a){return this.RY(a)}, -By(a){return this.RY(a)}, -Br(a){var s,r,q,p=this -for(s=p.b,r=s.length,q=0;q0&&r===B.X))break;--s -r=p.eK(p.b[s],a)}if(a.gkq())p.c=s -else p.d=s -return r}, -Kh(a){var s,r,q,p=this -if(p.d===-1){a.gAL() -p.d=p.c=null}s=a.gkq()?p.c:p.d -r=p.eK(p.b[s],a) -switch(a.gAL()){case B.ob:if(r===B.X)if(s>0){--s -r=p.eK(p.b[s],a.aq_(B.kR))}break -case B.oc:if(r===B.P){q=p.b -if(s=0&&a==null))break -a0=d.b=a1.eK(a3[b],a6) -switch(a0.a){case 2:case 3:case 4:a=a0 -break -case 0:if(c===!1){++b -a=B.a1}else if(b===a1.b.length-1)a=a0 -else{++b -c=!0}break -case 1:if(c===!0){--b -a=B.a1}else if(b===0)a=a0 -else{--b -c=!1}break}}if(a7)a1.c=b -else a1.d=b -a1.Ua() -a.toString -return a}, -Xu(a,b){return this.gvu().$2(a,b)}} -A.aom.prototype={ -$1(a){var s=this.a -if(!s.y)return -s.y=!1 -if(s.Q.a!==0)s.aci() -s.AF()}, -$0(){return this.$1(null)}, -$S:199} -A.aon.prototype={ -$1(a){var s,r=this.a,q=r.b[this.b] -r=r.a.ga1() -r.toString -s=A.e0(q.bd(t.x.a(r)),a) -r=this.c -r=r==null?null:r.f0(s) -return r==null?s:r}, -$S:505} -A.aoo.prototype={ -$1(a){return a.gwg(0)&&!a.gan(0)}, -$S:506} -A.aoi.prototype={ -$1(a){return a!==this.a.b[this.b]}, -$S:65} -A.aoj.prototype={ -$1(a){return this.a.eK(a,B.h2)}, -$S:42} -A.aok.prototype={ -$1(a){return a!==this.a.b[this.b]}, -$S:65} -A.aol.prototype={ -$1(a){return this.a.eK(a,B.h2)}, -$S:42} -A.a4_.prototype={} -A.t0.prototype={ -ah(){return new A.a6n(A.aU(t.M),null,!1)}, -gR(){return this.d}} -A.a6n.prototype={ -aw(){var s,r,q,p=this -p.b3() -s=p.a -r=s.e -if(r!=null){q=p.c -q.toString -r.a=q -s=s.c -if(s!=null)p.sq4(s)}}, -aV(a){var s,r,q,p,o,n=this -n.bm(a) -s=a.e -if(s!=n.a.e){r=s==null -if(!r){s.a=null -n.d.aL(0,s.ga14())}q=n.a.e -if(q!=null){p=n.c -p.toString -q.a=p -n.d.aL(0,q.gaoq())}s=r?null:s.at -r=n.a.e -if(!J.b(s,r==null?null:r.at)){s=n.d -s=A.aa(s,A.n(s).c) -s.$flags=1 -s=s -r=s.length -o=0 -for(;o") -r=A.ep(new A.bo(s,r),r.i("y.E")) -s=r.il($.aU8()) -q=!1 -if(p.b===s.gc6(s)){s=r.il($.aUl()) -if(p.c===s.gc6(s)){s=r.il($.aU7()) -if(p.d===s.gc6(s)){s=r.il($.aUj()) -s=p.e===s.gc6(s)}else s=q}else s=q}else s=q -s=s&&p.Uv(b)}else s=r -else s=r -return s}, -$ixg:1} -A.oZ.prototype={} -A.xh.prototype={ -smR(a){var s=this -if(!A.uo(s.b,a)){s.b=a -s.c=null -s.a7()}}, -gSd(){var s=this.c -return s==null?this.c=A.bb0(this.b):s}, -aca(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g=a.b,f=this.gSd().h(0,g) -if(f==null)f=A.c([],t.Na) -f=A.aa(f,t.J_) -s=this.gSd().h(0,null) -B.b.a_(f,s==null?A.c([],t.Na):s) -s=f.length -r=!(a instanceof A.kJ) -q=a instanceof A.qP -p=t.w3 -o=b.a -n=A.n(o).i("bo<2>") -m=n.i("y.E") -l=0 -for(;l")).gai(0);s.v();)r.a_(0,s.d.b) -return r}, -$iae:1} -A.Fh.prototype={ -ah(){var s=$.af() -return new A.K3(new A.Fi(A.t(t.yE,t.kY),s),new A.xh(B.kk,s))}, -gR(){return this.c}} -A.K3.prototype={ -aw(){this.b3() -this.d.a9(this.gUu())}, -alx(){this.e.smR(this.d.gmR())}, -l(){var s=this,r=s.d -r.O(s.gUu()) -r.d8() -r=s.e -r.P$=$.af() -r.L$=0 -s.aQ()}, -K(a){return new A.a8C(this.d,new A.tq(this.e,B.kk,this.a.c,null,null),null)}} -A.a8C.prototype={ -cI(a){return this.f!==a.f}} -A.a8A.prototype={} -A.a8B.prototype={} -A.a8D.prototype={} -A.a8F.prototype={} -A.a8G.prototype={} -A.aaB.prototype={} -A.oI.prototype={ -K(a){var s,r,q,p,o=this,n=null,m={},l=o.c,k=A.b1I(a,l,!1),j=o.x -m.a=j -s=o.e -if(s!=null)m.a=new A.bR(s,j,n) -r=o.f==null&&A.aXn(a,l) -q=r?A.Up(a):o.f -p=A.aRN(k,B.N,q,B.W,!1,B.aG,n,o.w,n,n,n,new A.avr(m,o,k)) -A.kX(a) -return r&&q!=null?A.aXm(p):p}, -gR(){return this.x}} -A.avr.prototype={ -$2(a,b){return new A.z0(this.c,b,B.N,this.a.a,null)}, -$S:512} -A.z0.prototype={ -bf(a){var s=new A.Jp(this.e,this.f,this.r,A.at(),null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){var s -b.shD(this.e) -b.scU(this.f) -s=this.r -if(s!==b.a0){b.a0=s -b.bb() -b.br()}}, -cf(){return new A.a8I(this,B.ae)}} -A.a8I.prototype={} -A.Jp.prototype={ -shD(a){if(a===this.n)return -this.n=a -this.ag()}, -scU(a){var s=this,r=s.U -if(a===r)return -if(s.y!=null)r.O(s.gyF()) -s.U=a -if(s.y!=null)a.a9(s.gyF()) -s.ag()}, -ags(){this.bb() -this.br()}, -eT(a){if(!(a.b instanceof A.cE))a.b=new A.cE()}, -aP(a){this.a7V(a) -this.U.a9(this.gyF())}, -az(){this.U.O(this.gyF()) -this.a7W()}, -gfp(){return!0}, -galU(){switch(A.bg(this.n).a){case 0:var s=this.gC().a -break -case 1:s=this.gC().b -break -default:s=null}return s}, -gyQ(){var s=this,r=s.u$ -if(r==null)return 0 -switch(A.bg(s.n).a){case 0:r=r.gC().a-s.gC().a -break -case 1:r=r.gC().b-s.gC().b -break -default:r=null}return Math.max(0,A.hP(r))}, -UB(a){var s -switch(A.bg(this.n).a){case 0:s=new A.al(0,1/0,a.c,a.d) -break -case 1:s=new A.al(a.a,a.b,0,1/0) -break -default:s=null}return s}, -bP(a){var s=this.u$ -s=s==null?null:s.aO(B.bR,a,s.gcG()) -return s==null?0:s}, -bH(a){var s=this.u$ -s=s==null?null:s.aO(B.aK,a,s.gc2()) -return s==null?0:s}, -bO(a){var s=this.u$ -s=s==null?null:s.aO(B.by,a,s.gcA()) -return s==null?0:s}, -bG(a){var s=this.u$ -s=s==null?null:s.aO(B.bg,a,s.gcp()) -return s==null?0:s}, -dg(a){var s=this.u$ -if(s==null)return new A.L(A.E(0,a.a,a.b),A.E(0,a.c,a.d)) -return a.bx(s.aO(B.S,this.UB(a),s.gcu()))}, -c7(){var s,r,q=this,p=t.k.a(A.r.prototype.gab.call(q)),o=q.u$ -if(o==null)q.fy=new A.L(A.E(0,p.a,p.b),A.E(0,p.c,p.d)) -else{o.cs(q.UB(p),!0) -q.fy=p.bx(q.u$.gC())}o=q.U.at -if(o!=null)if(o>q.gyQ()){o=q.U -s=q.gyQ() -r=q.U.at -r.toString -o.J4(s-r)}else{o=q.U -s=o.at -s.toString -if(s<0)o.J4(0-s)}q.U.ve(q.galU()) -q.U.ri(0,q.gyQ())}, -uM(a){var s,r=this -switch(r.n.a){case 0:s=new A.h(0,a-r.u$.gC().b+r.gC().b) -break -case 3:s=new A.h(a-r.u$.gC().a+r.gC().a,0) -break -case 1:s=new A.h(-a,0) -break -case 2:s=new A.h(0,-a) -break -default:s=null}return s}, -Uw(a){var s,r,q=this -switch(q.a0.a){case 0:return!1 -case 1:case 2:case 3:s=a.a -if(!(s<0)){r=a.b -s=r<0||s+q.u$.gC().a>q.gC().a||r+q.u$.gC().b>q.gC().b}else s=!0 -return s}}, -b1(a,b){var s,r,q,p,o,n=this -if(n.u$!=null){s=n.U.at -s.toString -r=n.uM(s) -s=new A.aGt(n,r) -q=n.a3 -if(n.Uw(r)){p=n.cx -p===$&&A.a() -o=n.gC() -q.saR(a.ll(p,b,new A.w(0,0,0+o.a,0+o.b),s,n.a0,q.a))}else{q.saR(null) -s.$2(a,b)}}}, -l(){this.a3.saR(null) -this.fu()}, -dz(a,b){var s,r=this.U.at -r.toString -s=this.uM(r) -b.eh(s.a,s.b,0,1)}, -m3(a){var s=this,r=s.U.at -r.toString -r=s.Uw(s.uM(r)) -if(r){r=s.gC() -return new A.w(0,0,0+r.a,0+r.b)}return null}, -da(a,b){var s,r=this -if(r.u$!=null){s=r.U.at -s.toString -return a.kP(new A.aGs(r),r.uM(s),b)}return!1}, -qe(a,b,c,d){var s,r,q,p,o,n,m,l,k,j,i=this,h=null -A.bg(i.n) -if(d==null)d=a.glj() -if(!(a instanceof A.A)){s=i.U.at -s.toString -return new A.ou(s,d)}r=A.e0(a.bd(i.u$),d) -q=i.u$.gC() -switch(i.n.a){case 0:s=r.d -s=new A.hL(i.gC().b,q.b-s,s-r.b) -break -case 3:s=r.c -s=new A.hL(i.gC().a,q.a-s,s-r.a) -break -case 1:s=r.a -s=new A.hL(i.gC().a,s,r.c-s) -break -case 2:s=r.b -s=new A.hL(i.gC().b,s,r.d-s) -break -default:s=h}p=s.a -o=h -n=h -m=s.b -l=s.c -n=l -o=m -k=p -j=o-(k-n)*b -return new A.ou(j,r.e0(i.uM(j)))}, -Dw(a,b,c){return this.qe(a,b,null,c)}, -ff(a,b,c,d){var s=this -if(!s.U.r.goZ())return s.xR(a,b,c,d) -s.xR(a,null,c,A.aXJ(a,b,c,s.U,d,s))}, -tS(){return this.ff(B.bE,null,B.z,null)}, -ov(a){return this.ff(B.bE,null,B.z,a)}, -qm(a,b,c){return this.ff(a,null,b,c)}, -ow(a,b){return this.ff(B.bE,a,B.z,b)}, -Jk(a){var s,r,q=this,p=q.gyQ(),o=q.U.at -o.toString -s=p-o -switch(q.n.a){case 0:q.gC() -q.gC() -p=q.gC() -o=q.gC() -r=q.U.at -r.toString -return new A.w(0,0-s,0+p.a,0+o.b+r) -case 1:q.gC() -p=q.U.at -p.toString -q.gC() -return new A.w(0-p,0,0+q.gC().a+s,0+q.gC().b) -case 2:q.gC() -q.gC() -p=q.U.at -p.toString -return new A.w(0,0-p,0+q.gC().a,0+q.gC().b+s) -case 3:q.gC() -q.gC() -p=q.gC() -o=q.U.at -o.toString -return new A.w(0-s,0,0+p.a+o,0+q.gC().b)}}, -$iDP:1} -A.aGt.prototype={ -$2(a,b){var s=this.a.u$ -s.toString -a.e4(s,b.a8(0,this.b))}, -$S:17} -A.aGs.prototype={ -$2(a,b){return this.a.u$.cT(a,b)}, -$S:19} -A.Lu.prototype={ -aP(a){var s -this.eV(a) -s=this.u$ -if(s!=null)s.aP(a)}, -az(){this.eW() -var s=this.u$ -if(s!=null)s.az()}} -A.aba.prototype={} -A.abb.prototype={} -A.XZ.prototype={} -A.Y_.prototype={ -bf(a){var s=new A.a5K(new A.avu(a),null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}} -A.avu.prototype={ -$0(){this.a.em(B.M2)}, -$S:0} -A.a5K.prototype={ -c7(){var s=this -s.qv() -if(s.a4!=null&&!s.gC().j(0,s.a4))s.D.$0() -s.a4=s.gC()}} -A.Yd.prototype={} -A.xl.prototype={ -cf(){return A.aZv(this,!1)}} -A.Ya.prototype={ -cf(){return A.aZv(this,!0)}, -bf(a){var s=new A.V5(t.dq.a(a),A.t(t.S,t.x),0,null,null,A.at()) -s.be() -return s}} -A.xk.prototype={ -ga1(){return t.kl.a(A.b0.prototype.ga1.call(this))}, -cQ(a){var s,r,q=this.e -q.toString -t.M0.a(q) -this.lF(a) -s=a.d -r=q.d -q=s!==r -if(q){A.l(s) -A.l(r)}if(q)this.j8()}, -j8(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0=null,a1={} -a.xS() -a.p3=null -a1.a=!1 -try{i=t.S -s=A.aZy(i,t.Dv) -r=A.h0(a0,a0,a0,i,t.i) -i=a.e -i.toString -q=t.M0.a(i) -p=new A.avD(a1,a,s,q,r) -i=a.p2 -h=i.$ti.i("ni<1,hg<1,2>>") -h=A.aa(new A.ni(i,h),h.i("y.E")) -g=h.length -f=t.MR -e=a.p1 -d=0 -for(;d>")).aL(0,p) -if(!a1.a&&a.R8){b=i.a_O() -k=b==null?-1:b -j=k+1 -J.lw(s,j,i.h(0,j)) -p.$1(j)}}finally{a.p4=null -a.ga1()}}, -aqZ(a,b){this.f.rm(this,new A.avA(this,b,a))}, -dZ(a,b,c){var s,r,q,p,o=null -if(a==null)s=o -else{s=a.ga1() -s=s==null?o:s.b}r=t.MR -r.a(s) -q=this.a4h(a,b,c) -if(q==null)p=o -else{p=q.ga1() -p=p==null?o:p.b}r.a(p) -if(s!=p&&s!=null&&p!=null)p.a=s.a -return q}, -ij(a){this.p2.J(0,a.c) -this.jf(a)}, -a12(a){var s,r=this -r.ga1() -s=a.b -s.toString -s=t.W.a(s).b -s.toString -r.f.rm(r,new A.avE(r,s))}, -arX(a,b,c,d,e){var s=this.e -s.toString -t.M0.a(s) -d.toString -s=A.bb6(b,c,d,e,s.d.b) -return s}, -Jq(){var s=this.p2 -s.ass() -s.a_O() -s=this.e -s.toString -t.M0.a(s)}, -Jn(a){var s=a.b -s.toString -t.W.a(s).b=this.p4}, -j0(a,b){this.ga1().E3(0,t.x.a(a),this.p3)}, -io(a,b,c){this.ga1().t3(t.x.a(a),this.p3)}, -jR(a,b){this.ga1().J(0,t.x.a(a))}, -bB(a){var s=this.p2,r=s.$ti.i("ub<1,2>") -r=A.nE(new A.ub(s,r),r.i("y.E"),t.Q) -s=A.aa(r,A.n(r).i("y.E")) -B.b.aL(s,a)}} -A.avD.prototype={ -$1(a){var s,r,q,p,o=this,n=o.b -n.p4=a -q=n.p2 -if(q.h(0,a)!=null&&!J.b(q.h(0,a),o.c.h(0,a))){q.m(0,a,n.dZ(q.h(0,a),null,a)) -o.a.a=!0}s=n.dZ(o.c.h(0,a),o.d.d.X5(n,a),a) -if(s!=null){p=o.a -p.a=p.a||!J.b(q.h(0,a),s) -q.m(0,a,s) -q=s.ga1().b -q.toString -r=t.W.a(q) -if(a===0)r.a=0 -else{q=o.e -if(q.aN(a))r.a=q.h(0,a)}if(!r.c)n.p3=t.Qv.a(s.ga1())}else{o.a.a=!0 -q.J(0,a)}}, -$S:24} -A.avB.prototype={ -$0(){return null}, -$S:13} -A.avC.prototype={ -$0(){return this.a.p2.h(0,this.b)}, -$S:514} -A.avA.prototype={ -$0(){var s,r,q,p=this,o=p.a -o.p3=p.b==null?null:t.Qv.a(o.p2.h(0,p.c-1).ga1()) -s=null -try{q=o.e -q.toString -r=t.M0.a(q) -q=o.p4=p.c -s=o.dZ(o.p2.h(0,q),r.d.X5(o,q),q)}finally{o.p4=null}q=p.c -o=o.p2 -if(s!=null)o.m(0,q,s) -else o.J(0,q)}, -$S:0} -A.avE.prototype={ -$0(){var s,r,q=this -try{s=q.a -r=s.p4=q.b -s.dZ(s.p2.h(0,r),null,r)}finally{q.a.p4=null}q.a.p2.J(0,q.b)}, -$S:0} -A.Cl.prototype={ -p0(a){var s,r=a.b -r.toString -t.Cl.a(r) -s=this.f -if(r.w0$!==s){r.w0$=s -if(!s){r=a.gbk() -if(r!=null)r.ag()}}}} -A.Fs.prototype={} -A.k3.prototype={ -cf(){var s=A.n(this),r=t.Q -return new A.Ft(A.t(s.i("k3.0"),r),A.t(t.D2,r),this,B.ae,s.i("Ft"))}} -A.oN.prototype={ -h6(){B.b.aL(this.gnw(),this.gLU())}, -bB(a){B.b.aL(this.gnw(),a)}, -zi(a,b){var s=this.ht$,r=s.h(0,b) -if(r!=null){this.m5(r) -s.J(0,b)}if(a!=null){s.m(0,b,a) -this.i7(a)}}} -A.Ft.prototype={ -ga1(){return this.$ti.i("oN<1,2>").a(A.b0.prototype.ga1.call(this))}, -bB(a){var s=this.p1 -new A.bo(s,A.n(s).i("bo<2>")).aL(0,a)}, -ij(a){this.p1.J(0,a.c) -this.jf(a)}, -ex(a,b){this.mZ(a,b) -this.Vu()}, -cQ(a){this.lF(a) -this.Vu()}, -Vu(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=g.e -f.toString -s=g.$ti -s.i("k3<1,2>").a(f) -r=g.p2 -q=t.Q -g.p2=A.t(t.D2,q) -p=g.p1 -s=s.c -g.p1=A.t(s,q) -for(o=0;o<11;++o){n=B.U6[o] -m=f.apv(n) -l=m==null?null:m.a -k=p.h(0,n) -j=r.h(0,l) -if(j!=null)i=p.J(0,s.a(j.c)) -else i=(k==null?null:k.gW().a)==null?p.J(0,n):null -h=g.dZ(i,m,n) -if(h!=null){g.p1.m(0,n,h) -if(l!=null)g.p2.m(0,l,h)}}new A.bo(p,A.n(p).i("bo<2>")).aL(0,g.garb())}, -j0(a,b){this.$ti.i("oN<1,2>").a(A.b0.prototype.ga1.call(this)).zi(a,b)}, -jR(a,b){var s=this.$ti.i("oN<1,2>") -if(s.a(A.b0.prototype.ga1.call(this)).ht$.h(0,b)===a)s.a(A.b0.prototype.ga1.call(this)).zi(null,b)}, -io(a,b,c){var s=this.$ti.i("oN<1,2>").a(A.b0.prototype.ga1.call(this)) -if(s.ht$.h(0,b)===a)s.zi(null,b) -s.zi(a,c)}} -A.K5.prototype={ -bj(a,b){return this.On(a,b)}} -A.Fv.prototype={ -N(){return"SnapshotMode."+this.b}} -A.Fu.prototype={ -sp_(a){if(a===this.a)return -this.a=a -this.a7()}} -A.Yi.prototype={ -bf(a){var s=new A.yW(A.c0(a,B.dJ,t.l).w.b,this.w,this.e,this.f,!0,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){t.xL.a(b) -b.scJ(this.e) -b.savL(this.f) -b.snD(A.c0(a,B.dJ,t.l).w.b) -b.spX(this.w) -b.saoR(!0)}} -A.yW.prototype={ -snD(a){var s,r=this -if(a===r.D)return -r.D=a -s=r.bR -if(s==null)return -else{s.l() -r.bR=null -r.bb()}}, -spX(a){var s,r=this,q=r.a4 -if(a===q)return -s=r.geP() -q.O(s) -r.a4=a -if(A.l(q)!==A.l(r.a4)||r.a4.eU(q))r.bb() -if(r.y!=null)r.a4.a9(s)}, -scJ(a){var s,r,q=this,p=q.am -if(a===p)return -s=q.gz_() -p.O(s) -r=q.am.a -q.am=a -if(q.y!=null){a.a9(s) -if(r!==q.am.a)q.SQ()}}, -savL(a){if(a===this.bw)return -this.bw=a -this.bb()}, -saoR(a){return}, -aP(a){var s=this -s.am.a9(s.gz_()) -s.a4.a9(s.geP()) -s.qw(a)}, -az(){var s,r=this -r.h2=!1 -r.am.O(r.gz_()) -r.a4.O(r.geP()) -s=r.bR -if(s!=null)s.l() -r.ec=r.bR=null -r.n0()}, -l(){var s,r=this -r.am.O(r.gz_()) -r.a4.O(r.geP()) -s=r.bR -if(s!=null)s.l() -r.ec=r.bR=null -r.fu()}, -SQ(){var s,r=this -r.h2=!1 -s=r.bR -if(s!=null)s.l() -r.ec=r.bR=null -r.bb()}, -aj4(){var s,r=this,q=A.aX7(B.f),p=r.gC(),o=new A.rr(q,new A.w(0,0,0+p.a,0+p.b)) -r.iE(o,B.f) -o.tX() -if(r.bw!==B.a9B&&!q.Eq()){q.l() -if(r.bw===B.a9A)throw A.i(A.h_("SnapshotWidget used with a child that contains a PlatformView.")) -r.h2=!0 -return null}p=r.gC() -s=q.ayv(new A.w(0,0,0+p.a,0+p.b),r.D) -q.l() -r.fF=r.gC() -return s}, -b1(a,b){var s,r,q,p,o=this -if(o.gC().gan(0)){s=o.bR -if(s!=null)s.l() -o.ec=o.bR=null -return}if(!o.am.a||o.h2){s=o.bR -if(s!=null)s.l() -o.ec=o.bR=null -o.a4.t9(a,b,o.gC(),A.f5.prototype.gf9.call(o)) -return}s=o.gC() -r=o.fF -s=!s.j(0,r)&&r!=null -if(s){s=o.bR -if(s!=null)s.l() -o.bR=null}if(o.bR==null){o.bR=o.aj4() -o.ec=o.gC().ak(0,o.D)}s=o.bR -r=o.a4 -if(s==null)r.t9(a,b,o.gC(),A.f5.prototype.gf9.call(o)) -else{s=o.gC() -q=o.bR -q.toString -p=o.ec -p.toString -r.a0t(a,b,s,q,p,o.D)}}} -A.Yh.prototype={} -A.Hx.prototype={ -geE(){return A.a0(A.kP(this,A.o1(B.a9U,"gazA",1,[],[],0)))}, -seE(a){A.a0(A.kP(this,A.o1(B.a9R,"sazu",2,[a],[],0)))}, -gdG(){return A.a0(A.kP(this,A.o1(B.a9V,"gazB",1,[],[],0)))}, -sdG(a){A.a0(A.kP(this,A.o1(B.a9Z,"sazv",2,[a],[],0)))}, -glN(){return A.a0(A.kP(this,A.o1(B.a9W,"gazC",1,[],[],0)))}, -slN(a){A.a0(A.kP(this,A.o1(B.a9T,"sazw",2,[a],[],0)))}, -gnj(){return A.a0(A.kP(this,A.o1(B.a9X,"gazD",1,[],[],0)))}, -snj(a){A.a0(A.kP(this,A.o1(B.a9S,"sazz",2,[a],[],0)))}, -Tw(a){return A.a0(A.kP(this,A.o1(B.a9Y,"azE",0,[a],[],0)))}, -a9(a){}, -l(){}, -O(a){}, -$iae:1, -$iaZ:1} -A.Fw.prototype={ -aqR(a,b,c,d){var s=this -if(!s.e)return B.i9 -return new A.Fw(c,s.b,s.c,s.d,!0)}, -aqv(a){return this.aqR(null,null,a,null)}, -k(a){var s=this,r=s.e?"enabled":"disabled" -return"SpellCheckConfiguration("+r+", service: "+A.j(s.a)+", text style: "+A.j(s.c)+", toolbar builder: "+A.j(s.d)+")"}, -j(a,b){var s -if(b==null)return!1 -if(J.S(b)!==A.l(this))return!1 -s=!1 -if(b instanceof A.Fw)if(b.a==this.a)s=b.e===this.e -return s}, -gt(a){var s=this -return A.N(s.a,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.tt.prototype={ -N(){return"StandardComponentType."+this.b}} -A.Yv.prototype={ -acx(a){var s=this.c>0 -if(this.d===B.L)return s?B.Kk:B.Kj -if(a===B.aj)return s?B.pt:B.lF -else return s?B.lF:B.pt}, -K(a){var s,r,q,p=this,o=a.aA(t.I).w,n=1,m=1 -switch(p.d.a){case 0:n=1+Math.abs(p.c) -break -case 1:m=1+Math.abs(p.c) -break}s=p.acx(o) -r=A.wc(n,m,1) -q=p.c===0?null:B.j9 -return A.YV(s,p.e,q,r,!0)}, -gR(){return this.e}} -A.FH.prototype={ -ah(){return new A.a93()}} -A.awm.prototype={ -$0(){return this.a.km(!1)}, -$S:0} -A.a93.prototype={ -aw(){var s,r=this -r.b3() -s=new A.awk(r.a.e,A.t(t.N,t.M)) -$.ee.bo$=s -r.d!==$&&A.bs() -r.d=s}, -l(){var s=this.d -s===$&&A.a() -s.fn() -s.f=!0 -this.aQ()}, -K(a){var s,r,q,p,o=this -if(o.a.d.length!==0){s=A.j2(a,B.JO,t.Uh) -s.toString -r=o.a.d -q=A.a6(r).i("am<1,fr>") -p=A.aa(new A.am(r,new A.aK7(s),q),q.i("aE.E")) -s=o.d -s===$&&A.a() -s.a3v(o.a.c,p)}return B.aE}} -A.aK7.prototype={ -$1(a){return a.mK(this.a)}, -$S:515} -A.h1.prototype={ -ghQ(){return null}, -gt(a){return B.rQ.gt(this.ghQ())}, -j(a,b){var s -if(b==null)return!1 -if(this===b)return!0 -if(J.S(b)!==A.l(this))return!1 -s=b instanceof A.h1 -if(s){b.ghQ() -this.ghQ()}return s}} -A.QP.prototype={ -mK(a){return B.Lt}} -A.QQ.prototype={ -mK(a){return B.Lu}} -A.R0.prototype={ -mK(a){return B.Lw}} -A.R2.prototype={ -mK(a){return B.Lx}} -A.R_.prototype={ -mK(a){var s=a.gB() -return new A.QU(s)}, -ghQ(){return null}} -A.R1.prototype={ -mK(a){var s=a.gI() -return new A.QW(s)}, -ghQ(){return null}} -A.R3.prototype={ -mK(a){var s=a.gF() -return new A.QY(s)}, -ghQ(){return null}} -A.QZ.prototype={ -mK(a){return B.Lv}} -A.a36.prototype={} -A.a37.prototype={} -A.a38.prototype={} -A.YC.prototype={ -bf(a){var s=new A.Ea(new A.vy(new WeakMap()),A.aU(t.Cn),A.t(t.X,t.hi),B.b3,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){}} -A.Ea.prototype={ -Db(a){var s,r -this.dI.J(0,a) -s=a.fk -if(s!=null){r=this.bX -r.h(0,s).J(0,a) -if(r.h(0,a.fk).a===0)r.J(0,a.fk)}}, -cT(a,b){var s,r,q=this -if(!q.gC().q(0,b))return!1 -s=q.da(a,b)||q.D===B.aG -if(s){r=new A.lI(b,q) -q.cg.m(0,r,a) -a.G(0,r)}return s}, -jF(a,b){var s,r,q,p,o,n,m,l,k,j,i=this,h=t.pY.b(a) -if(!h&&!t.oN.b(a))return -s=i.dI -if(s.a===0)return -A.qj(b) -r=i.cg.a.get(b) -if(r==null)return -q=i.acZ(s,r.a) -p=t.Cn -o=A.aXU(q,q.gSF(),A.n(q).c,p).PK() -p=A.aU(p) -for(q=o.gai(o),n=i.bX;q.v();){m=q.gT() -l=m.fk -if(l==null)p.G(0,m) -else{m=n.h(0,l) -m.toString -p.a_(0,m)}}k=s.fY(p) -for(s=k.gai(k),q=t.oN.b(a),j=!1;s.v();){n=s.gT() -if(h){m=n.dI -if(m!=null)m.$1(a)}else if(q){m=n.ci -if(m!=null)m.$1(a)}if(n.fE)j=!0}for(s=A.cl(p,p.r,p.$ti.c),q=s.$ti.c;s.v();){p=s.d -if(p==null)q.a(p)}if(j&&h){h=$.fq.n$.I8(0,a.gbM(),new A.a2e()) -h.a.r1(h.b,h.c,B.cr)}}, -acZ(a,b){var s,r,q,p,o=A.aU(t.zE) -for(s=b.length,r=this.dI,q=0;q=0&&i==null))break -h=l.b=g.eK(s[j],a) -switch(h.a){case 2:case 3:case 4:i=h -break -case 0:if(k===!1){++j -i=B.a1}else if(j===g.b.length-1)i=h -else{++j -k=!0}break -case 1:if(k===!0){--j -i=B.a1}else if(j===0)i=h -else{--j -k=!1}break}}if(b)g.c=j -else g.d=j -g.QO() -i.toString -return i}, -OR(a7,a8){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=this,a3=null,a4=a2.at,a5=a8?a4.b!=null:a4.a!=null,a6=a8?a4.a!=null:a4.b!=null -A:{s=a3 -r=a3 -a4=!1 -if(a8){if(a5){a4=a6 -r=a4 -s=r}q=a5 -p=q -o=p -n=o}else{o=a3 -n=o -p=!1 -q=!1}m=0 -if(a4){a4=a2.c -break A}l=a3 -k=!1 -a4=!1 -if(a8)if(n){if(q)a4=r -else{a4=a6 -r=a4 -q=!0}l=!1===a4 -a4=l -k=!0}if(a4){a4=a2.c -break A}j=a3 -a4=!1 -if(a8){j=!1===o -i=j -if(i)if(p)a4=s -else{if(q)a4=r -else{a4=a6 -r=a4 -q=!0}s=!0===a4 -a4=s -p=!0}}if(a4){a4=a2.d -break A}a4=!1 -if(a8)if(j)if(k)a4=l -else{if(q)a4=r -else{a4=a6 -r=a4 -q=!0}l=!1===a4 -a4=l -k=!0}if(a4){a4=m -break A}h=!a8 -a4=h -i=!1 -if(a4){if(a8){a4=n -g=a8 -f=g}else{n=!0===a5 -a4=n -o=a5 -f=!0 -g=!0}if(a4)if(p)a4=s -else{if(q)a4=r -else{a4=a6 -r=a4 -q=!0}s=!0===a4 -a4=s -p=!0}else a4=i}else{a4=i -g=a8 -f=g}if(a4){a4=a2.d -break A}a4=!1 -if(h){if(f)i=n -else{if(g)i=o -else{i=a5 -o=i -g=!0}n=!0===i -i=n}if(i)if(k)a4=l -else{if(q)a4=r -else{a4=a6 -r=a4 -q=!0}l=!1===a4 -a4=l -k=!0}}if(a4){a4=a2.d -break A}a4=!1 -if(h){if(a8){i=j -e=a8}else{if(g)i=o -else{i=a5 -o=i -g=!0}j=!1===i -i=j -e=!0}if(i)if(p)a4=s -else{if(q)a4=r -else{a4=a6 -r=a4 -q=!0}s=!0===a4 -a4=s}}else e=a8 -if(a4){a4=a2.c -break A}a4=!1 -if(h){if(e)i=j -else{j=!1===(g?o:a5) -i=j}if(i)if(k)a4=l -else{l=!1===(q?r:a6) -a4=l}}if(a4){a4=m -break A}a4=a3}d=A.bQ() -c=a3 -b=a4 -a=c -for(;;){a4=a2.b -if(!(b=0&&a==null))break -a0=d.b=a2.eK(a4[b],a7) -switch(a0.a){case 2:case 3:case 4:a=a0 -break -case 0:if(c===!1){++b -a=B.a1}else if(b===a2.b.length-1)a=a0 -else{++b -c=!0}break -case 1:if(c===!0){--b -a=B.a1}else if(b===0)a=a0 -else{--b -c=!1}break}}a4=a2.c -m=a2.d -a1=a4>=m -if(a8){if(c!=null)if(!(!a1&&c&&b>=m))m=a1&&!c&&b<=m -else m=!0 -else m=!1 -if(m)a2.d=a4 -a2.c=b}else{if(c!=null)if(!(!a1&&!c&&b<=a4))a4=a1&&c&&b>=a4 -else a4=!0 -else a4=!1 -if(a4)a2.c=m -a2.d=b}a2.QO() -a.toString -return a}, -gvu(){return A.bl_()}, -QO(){var s,r,q,p=this,o=p.d,n=o===-1 -if(n&&p.c===-1)return -if(n||p.c===-1){if(n)o=p.c -n=p.b -new A.b1(n,new A.aHe(p,o),A.a6(n).i("b1<1>")).aL(0,new A.aHf(p)) -return}n=p.c -s=Math.min(o,n) -r=Math.max(o,n) -for(q=0;n=p.b,q=s&&q<=r)continue -p.eK(n[q],B.h2)}}, -l9(a){var s,r,q=this -if(a.c!==B.Js)return q.a61(a) -s=a.b -r=a.a===B.dz -if(r)q.fx=s -else q.fr=s -if(r)return q.c===-1?q.Sh(a,!0):q.OR(a,!0) -return q.d===-1?q.Sh(a,!1):q.OR(a,!1)}, -Xu(a,b){return this.gvu().$2(a,b)}} -A.aHe.prototype={ -$1(a){return a!==this.a.b[this.b]}, -$S:65} -A.aHf.prototype={ -$1(a){return this.a.eK(a,B.h2)}, -$S:42} -A.aF9.prototype={ -$1(a){if(a instanceof A.f9&&A.l(a)===B.JN)return A.b_F(this.a,a) -return a}, -$S:194} -A.Bc.prototype={} -A.PS.prototype={} -A.q6.prototype={} -A.q8.prototype={} -A.q7.prototype={} -A.B7.prototype={} -A.lU.prototype={} -A.lX.prototype={} -A.ql.prototype={} -A.qh.prototype={} -A.qi.prototype={} -A.i1.prototype={} -A.nO.prototype={} -A.lY.prototype={} -A.lW.prototype={} -A.qk.prototype={} -A.lV.prototype={} -A.mH.prototype={} -A.mI.prototype={} -A.kt.prototype={} -A.mm.prototype={} -A.op.prototype={} -A.jX.prototype={} -A.oW.prototype={} -A.jf.prototype={} -A.oU.prototype={} -A.kx.prototype={} -A.ky.prototype={} -A.fP.prototype={ -k(a){return this.xN(0)+"; shouldPaint="+this.e}} -A.ax8.prototype={} -A.YP.prototype={ -I_(){var s=this,r=s.z&&s.b.bv.a -s.w.sp(r) -r=s.z&&s.b.bU.a -s.x.sp(r) -r=s.b -r=r.bv.a||r.bU.a -s.y.sp(r)}, -sZT(a){if(this.z===a)return -this.z=a -this.I_()}, -hY(){var s,r,q=this -q.oW() -s=q.f -if(s==null)return -r=q.e -r===$&&A.a() -r.DS(q.a,s) -return}, -cQ(a){var s,r=this -if(r.r.j(0,a))return -r.r=a -r.oW() -s=r.e -s===$&&A.a() -s.cL()}, -oW(){var s,r,q,p,o,n,m,l,k,j=this,i=null,h=j.e -h===$&&A.a() -s=j.b -r=s.aK -q=r.w -q.toString -h.sa3J(j.PD(q,B.l9,B.la)) -q=j.d -p=q.a.c.a.a -if(r.gku()===p){o=j.r.b -o=o.gca()&&o.a!==o.b}else o=!1 -if(o){o=j.r.b -n=B.c.a6(p,o.a,o.b) -o=(n.length===0?B.cT:new A.f8(n)).gad(0) -m=j.r.b.a -l=s.tI(new A.bI(m,m+o.length))}else l=i -o=l==null?i:l.d-l.b -h.sauZ(o==null?r.df().gbY():o) -o=r.w -o.toString -h.sarO(j.PD(o,B.la,B.l9)) -p=q.a.c.a.a -if(r.gku()===p){q=j.r.b -q=q.gca()&&q.a!==q.b}else q=!1 -if(q){q=j.r.b -n=B.c.a6(p,q.a,q.b) -q=(n.length===0?B.cT:new A.f8(n)).gaC(0) -o=j.r.b.b -k=s.tI(new A.bI(o-q.length,o))}else k=i -q=k==null?i:k.d-k.b -h.sauY(q==null?r.df().gbY():q) -h.sa2R(s.xh(j.r.b)) -h.sayC(s.w1)}, -l(){var s,r,q,p=this,o=p.e -o===$&&A.a() -o.fn() -s=o.b -r=s.P$=$.af() -s.L$=0 -s=p.b -q=p.gW2() -s.bv.O(q) -s.bU.O(q) -q=p.y -q.P$=r -q.L$=0 -q=p.w -q.P$=r -q.L$=0 -q=p.x -q.P$=r -q.L$=0 -o.fG()}, -kK(a,b,c){var s=c.tG(a),r=c.jX(new A.ap(s.c,B.k)),q=r.a,p=c.jX(new A.ap(s.d,B.at)),o=p.a,n=A.rI(new A.h(q+(r.c-q)/2,r.b),new A.h(o+(p.c-o)/2,p.d)),m=t.Qv.a(A.Du(this.a,!0).c.ga1()),l=c.bd(m),k=A.e0(l,n),j=A.e0(l,c.jX(a)),i=m==null?null:m.eC(b) -if(i==null)i=b -r=c.gC() -return new A.me(i,k,j,A.e0(l,new A.w(0,0,0+r.a,0+r.b)))}, -afn(a){var s,r,q,p,o,n,m,l=this,k=l.b -if(k.y==null)return -s=a.a -r=s.b -l.Q=r -q=l.e -q===$&&A.a() -p=B.b.gaC(q.dx) -o=k.aK.df().gbY() -n=A.bA(k.bd(null),new A.h(0,p.a.b-o/2)).b -l.as=n-r -m=k.ha(new A.h(s.a,n)) -if(A.aT()===B.U||A.aT()===B.b5)if(l.at==null)l.at=l.r.b -q.tR(l.kK(m,s,k))}, -R3(a,b){var s=a-b,r=s<0?-1:1,q=this.b.aK -return b+r*B.d.ih(Math.abs(s)/q.df().gbY())*q.df().gbY()}, -afp(a){var s,r,q,p,o,n,m,l=this,k=l.b -if(k.y==null)return -s=a.a -r=k.eC(s) -q=l.Q -q===$&&A.a() -p=l.R3(r.b,k.eC(new A.h(0,q)).b) -q=A.bA(k.bd(null),new A.h(0,p)).b -l.Q=q -o=l.as -o===$&&A.a() -n=k.ha(new A.h(s.a,q+o)) -switch(A.aT().a){case 2:case 4:q=l.at -if(q.a===q.b){q=l.e -q===$&&A.a() -q.q8(l.kK(n,s,k)) -l.qR(A.oT(n)) -return}o=q.d -q=q.c -q=o>=q?q:o -m=A.cp(B.k,q,n.a,!1) -break -case 0:case 1:case 3:case 5:q=l.r.b -if(q.a===q.b){q=l.e -q===$&&A.a() -q.q8(l.kK(n,s,k)) -l.qR(A.oT(n)) -return}m=A.cp(B.k,q.c,n.a,!1) -if(m.c>=m.d)return -break -default:m=null}l.qR(m) -q=l.e -q===$&&A.a() -q.q8(l.kK(m.gdT(),s,k))}, -aft(a){var s,r,q,p,o,n,m,l=this,k=l.b -if(k.y==null)return -s=a.a -r=s.b -l.ax=r -q=l.e -q===$&&A.a() -p=B.b.gad(q.dx) -o=k.aK.df().gbY() -n=A.bA(k.bd(null),new A.h(0,p.a.b-o/2)).b -l.ay=n-r -m=k.ha(new A.h(s.a,n)) -if(A.aT()===B.U||A.aT()===B.b5)if(l.at==null)l.at=l.r.b -q.tR(l.kK(m,s,k))}, -afv(a){var s,r,q,p,o,n,m,l=this,k=l.b -if(k.y==null)return -s=a.a -r=k.eC(s) -q=l.ax -q===$&&A.a() -p=l.R3(r.b,k.eC(new A.h(0,q)).b) -q=A.bA(k.bd(null),new A.h(0,p)).b -l.ax=q -o=l.ay -o===$&&A.a() -n=k.ha(new A.h(s.a,q+o)) -switch(A.aT().a){case 2:case 4:q=l.at -if(q.a===q.b){q=l.e -q===$&&A.a() -q.q8(l.kK(n,s,k)) -l.qR(A.oT(n)) -return}o=q.d -q=q.c -if(o>=q)q=o -m=A.cp(B.k,q,n.a,!1) -break -case 0:case 1:case 3:case 5:q=l.r.b -if(q.a===q.b){q=l.e -q===$&&A.a() -q.q8(l.kK(n,s,k)) -l.qR(A.oT(n)) -return}m=A.cp(B.k,n.a,q.d,!1) -if(m.c>=m.d)return -break -default:m=null}q=l.e -q===$&&A.a() -q.q8(l.kK(m.gdT().an.at/2?(p.c-p.a)/2:(B.b.gad(n.dx).a.a+B.b.gaC(n.dx).a.a)/2 -return new A.pj(new A.dO(new A.asS(n,p,new A.h(o,B.b.gad(n.dx).a.b-n.f)),m),new A.h(-p.a,-p.b),n.fr,n.db,m)}, -q8(a){if(this.c.b==null)return -this.b.sp(a)}} -A.asW.prototype={ -$1(a){return this.a}, -$S:15} -A.asU.prototype={ -$1(a){var s,r,q=null,p=this.a,o=p.go -if(o!=null)s=p.e===B.cU&&p.ay -else s=!0 -if(s)r=B.aE -else{s=p.e -r=A.b_W(p.k1,p.fx,p.gafG(),p.gafI(),p.gafK(),p.k2,p.f,o,s,p.x)}return new A.tM(this.b.a,A.xz(B.b3,A.YK(new A.nN(!0,r,q),q,B.ep,q,q),!1,q,!0,B.p0,q,q,q,q,q),q)}, -$S:15} -A.asV.prototype={ -$1(a){var s,r,q=null,p=this.a,o=p.go,n=!0 -if(o!=null){s=p.as===B.cU -if(!(s&&p.w))n=s&&!p.w&&!p.ay}if(n)r=B.aE -else{n=p.as -r=A.b_W(p.k1,p.fy,p.gadY(),p.gae_(),p.gae1(),p.k2,p.at,o,n,p.ch)}return new A.tM(this.b.a,A.xz(B.b3,A.YK(new A.nN(!0,r,q),q,B.ep,q,q),!1,q,!0,B.p0,q,q,q,q,q),q)}, -$S:15} -A.asX.prototype={ -$1(a){var s=this.a,r=A.bA(this.b.bd(null),B.f) -return new A.pj(this.c.$1(a),new A.h(-r.a,-r.b),s.fr,s.db,null)}, -$S:516} -A.asT.prototype={ -$1(a){var s,r=this.a -r.p4=!1 -s=r.ok -if(s!=null)s.b.cL() -s=r.ok -if(s!=null)s.a.cL() -s=r.p1 -if(s!=null)s.cL() -s=$.lN -if(s===r.p2){r=$.q1 -if(r!=null)r.cL()}else if(s===r.p3){r=$.q1 -if(r!=null)r.cL()}}, -$S:4} -A.asS.prototype={ -$1(a){this.a.go.toString -return B.aE}, -$S:15} -A.pj.prototype={ -ah(){return new A.JR(null,null)}, -gR(){return this.c}} -A.JR.prototype={ -aw(){var s,r=this -r.b3() -r.d=A.bX(null,B.c2,null,null,r) -r.HB() -s=r.a.f -if(s!=null)s.a9(r.gzw())}, -aV(a){var s,r=this -r.bm(a) -s=a.f -if(s==r.a.f)return -if(s!=null)s.O(r.gzw()) -r.HB() -s=r.a.f -if(s!=null)s.a9(r.gzw())}, -l(){var s=this,r=s.a.f -if(r!=null)r.O(s.gzw()) -r=s.d -r===$&&A.a() -r.l() -s.a83()}, -HB(){var s,r=this.a.f -r=r==null?null:r.a -if(r==null)r=!0 -s=this.d -if(r){s===$&&A.a() -s.cc()}else{s===$&&A.a() -s.d6()}}, -K(a){var s,r,q,p=null,o=this.c.aA(t.I).w,n=this.d -n===$&&A.a() -s=this.a -r=s.e -q=s.d -return A.xz(B.b3,A.YK(A.aVF(new A.e9(n,!1,A.aVd(s.c,B.bB,r,q,!1,B.bB),p),o),p,B.ep,p,p),!1,p,!0,B.p0,p,p,p,p,p)}} -A.JN.prototype={ -ah(){return new A.JO(null,null)}} -A.JO.prototype={ -aw(){var s=this -s.b3() -s.d=A.bX(null,B.c2,null,null,s) -s.Gk() -s.a.x.a9(s.gGj())}, -Gk(){var s,r=this.a.x.a -if(r==null)r=!0 -s=this.d -if(r){s===$&&A.a() -s.cc()}else{s===$&&A.a() -s.d6()}}, -aV(a){var s,r=this -r.bm(a) -s=r.gGj() -a.x.O(s) -r.Gk() -r.a.x.a9(s)}, -l(){var s,r=this -r.a.x.O(r.gGj()) -s=r.d -s===$&&A.a() -s.l() -r.a82()}, -K(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=h.a,e=f.y,d=f.w.tE(e) -e=0+d.a -f=0+d.b -s=new A.w(0,0,e,f) -r=s.hr(A.oo(s.gbp(),24)) -q=r.c-r.a -e=Math.max((q-e)/2,0) -p=r.d-r.b -f=Math.max((p-f)/2,0) -o=h.a -n=o.w.tD(o.z,o.y) -o=h.a -m=o.z===B.cU&&A.aT()===B.U -o=o.c -l=new A.h(-n.a,-n.b).ac(0,new A.h(e,f)) -k=h.d -k===$&&A.a() -j=A.aG([B.ld,new A.cK(new A.aHg(h),new A.aHh(h,m),t.YC)],t.u,t.xR) -i=h.a -return A.aVd(new A.e9(k,!1,A.a8(new A.ex(B.bB,g,g,new A.j5(new A.bR(new A.a2(e,f,e,f),i.w.A7(a,i.z,i.y,i.d),g),j,B.cs,!1,g),g),p,q),g),B.bB,o,l,!1,B.bB)}} -A.aHg.prototype={ -$0(){return A.aXe(this.a,A.cy([B.aC,B.bm,B.bW],t.g))}, -$S:182} -A.aHh.prototype={ -$1(a){var s=this.a.a -a.at=s.Q -a.b=this.b?B.Of:null -a.ch=s.e -a.CW=s.f -a.cx=s.r}, -$S:152} -A.G3.prototype={ -uU(a){switch(A.aT().a){case 0:case 2:this.a.gae().gS().tR(a) -break -case 1:case 3:case 4:case 5:break}}, -S9(){if(!this.gSo())return -switch(A.aT().a){case 0:case 2:this.a.gae().gS().wa() -break -case 1:case 3:case 4:case 5:break}}, -gah1(){var s,r,q=this.a -q.gae().gS().gaF() -s=q.gae().gS().gaF() -r=q.gae().gS().gaF().w1 -r.toString -s=s.ha(r).a -return q.gae().gS().gaF().D.a<=s&&q.gae().gS().gaF().D.b>=s}, -ajS(a){var s=this.a.gae().gS().gaF().D,r=a.a -return s.ar}, -ajT(a){var s=this.a.gae().gS().gaF().D,r=a.a -return s.a<=r&&s.b>=r}, -FE(a,b,c){var s=this.a,r=s.gae().gS().gaF().ha(a),q=c==null?s.gae().gS().gaF().D:c,p=r.a,o=q.c,n=q.d,m=q.rv(Math.abs(p-o)") -s=A.ep(new A.bo(r,s),s.i("y.E")).il(A.cy([B.dt,B.e5],t.bd)) -this.d=s.gc6(s)}, -awB(){this.d=!1}, -awz(a){var s,r,q,p=this,o=p.a -if(!o.gfN())return -s=o.gae().gS().gaF() -s=s.fm=a.a -r=a.c -p.c=p.b=r===B.aC||r===B.bm -q=p.d -if(q)o.gae().gS().gaF().D -switch(A.aT().a){case 0:o.gae().gS().a.toString -A:{s=B.bm===r||B.cA===r -if(s){o.gae().gS().a.toString -break A}break A}if(s)A.asw().c1(new A.axa(p),t.a) -break -case 1:case 2:break -case 4:o.gae().gS().fG() -if(q){p.FE(s,B.aZ,o.gae().gS().gaF().c0?null:B.oQ) -return}o=o.gae().gS().gaF() -s=o.fm -s.toString -o.hc(B.aZ,s) -break -case 3:case 5:o.gae().gS().fG() -if(q){p.qM(s,B.aZ) -return}o=o.gae().gS().gaF() -s=o.fm -s.toString -o.hc(B.aZ,s) -break}}, -Cb(a){var s -this.b=!0 -s=this.a -if(!s.gfN())return -s.gae().gS().gaF().lA(B.hZ,a.a) -s.gae().gS().hY()}, -Lr(a){var s=this.a -s.gae().gS().gaF().lA(B.hZ,a.a) -if(this.b)s.gae().gS().hY()}, -gLz(){return!1}, -wz(){}, -aww(a){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.a -if(!h.gfN()){h.gae().gS().CP() -return}s=i.d -if(s)h.gae().gS().gaF().D -switch(A.aT().a){case 3:case 4:case 5:break -case 0:h.gae().gS().km(!1) -if(s){i.qM(a.a,B.aZ) -return}r=h.gae().gS().gaF() -q=r.fm -q.toString -r.hc(B.aZ,q) -h.gae().gS().Nz() -break -case 1:h.gae().gS().km(!1) -if(s){i.qM(a.a,B.aZ) -return}r=h.gae().gS().gaF() -q=r.fm -q.toString -r.hc(B.aZ,q) -break -case 2:if(s){p=h.gae().gS().gaF().c0?null:B.oQ -i.FE(a.a,B.aZ,p) -return}switch(a.c.a){case 1:case 4:case 2:case 3:r=h.gae().gS().gaF() -q=r.fm -q.toString -r.hc(B.aZ,q) -h.gae().gS().fG() -break -case 0:case 5:o=h.gae().gS().gaF().D -n=h.gae().gS().gaF().ha(a.a) -if(h.gae().gS().asq(n.a)!=null){r=h.gae().gS().gaF() -q=r.fm -q.toString -r.lA(B.aZ,q) -if(!o.j(0,h.gae().gS().a.c.a.b))h.gae().gS().Nz() -else h.gae().gS().D0(!1)}else{if(!(i.ajS(n)&&o.a!==o.b))r=i.ajT(n)&&o.a===o.b&&n.b===o.e&&!h.gae().gS().gaF().d4 -else r=!0 -if(r&&h.gae().gS().gaF().c0)h.gae().gS().D0(!1) -else{r=h.gae().gS().gaF() -r.k8() -q=r.aK -m=r.fm -m.toString -l=q.ds(r.eC(m).ac(0,r.gfw())) -k=q.b.a.c.fM(l) -j=A.bQ() -q=k.a -if(l.a<=q)j.b=A.mW(B.k,q) -else j.b=A.mW(B.at,k.b) -r.nl(j.bc(),B.aZ) -if(o.j(0,h.gae().gS().a.c.a.b)&&h.gae().gS().gaF().c0&&!h.gae().gS().gaF().d4)h.gae().gS().D0(!1) -else h.gae().gS().km(!1)}}break}break}h.gae().gS().CP()}, -awu(){}, -Cq(a){var s,r,q,p=this,o=p.a -if(!o.gfN())return -switch(A.aT().a){case 2:case 4:if(!o.gae().gS().gaF().c0){p.w=!0 -s=o.gae().gS().gaF() -r=s.fm -r.toString -s.lA(B.bu,r)}else if(o.gae().gS().gaF().d4){s=o.gae().gS().gaF() -r=s.fm -r.toString -s.lA(B.bu,r) -if(o.gae().gS().c.e!=null){s=o.gae().gS().c -s.toString -A.ahL(s)}}else{s=a.a -o.gae().gS().gaF().hc(B.bu,s) -s=o.gae().gS().gaF().eC(s) -r=o.gae().gS().a.c.a.b -q=o.gae().gS().a.c.a.b -o.gae().gS().De(new A.wE(B.f,new A.an(s,new A.ap(r.c,q.e)),B.rr))}break -case 0:case 1:case 3:case 5:s=o.gae().gS().gaF() -r=s.fm -r.toString -s.lA(B.bu,r) -if(o.gae().gS().c.e!=null){s=o.gae().gS().c -s.toString -A.ahL(s)}break}p.uU(a.a) -o=o.gae().gS().gaF().a4.at -o.toString -p.f=o -p.e=p.gr3()}, -aws(a){var s,r,q,p,o,n=this,m=n.a -if(!m.gfN())return -if(m.gae().gS().gaF().ap===1){s=m.gae().gS().gaF().a4.at -s.toString -r=new A.h(s-n.f,0)}else{s=m.gae().gS().gaF().a4.at -s.toString -r=new A.h(0,s-n.f)}s=n.gTZ() -switch(A.bg(s==null?B.bh:s).a){case 0:s=new A.h(n.gr3()-n.e,0) -break -case 1:s=new A.h(0,n.gr3()-n.e) -break -default:s=null}switch(A.aT().a){case 2:case 4:q=n.w||m.gae().gS().gaF().d4 -p=a.a -o=a.c -if(q)m.gae().gS().gaF().xw(B.bu,p.ac(0,o).ac(0,r).ac(0,s),p) -else{m.gae().gS().gaF().hc(B.bu,p) -m.gae().gS().De(new A.wE(o,null,B.ja))}break -case 0:case 1:case 3:case 5:q=a.a -m.gae().gS().gaF().xw(B.bu,q.ac(0,a.c).ac(0,r).ac(0,s),q) -break}n.uU(a.a)}, -awq(a){this.SR() -if(this.b)this.a.gae().gS().hY()}, -awo(){this.SR()}, -awj(){var s,r,q=this.a -if(!q.gfN())return -switch(A.aT().a){case 2:case 4:if(!this.gah1()||!q.gae().gS().gaF().c0){s=q.gae().gS().gaF() -r=s.fm -r.toString -s.lA(B.aZ,r)}if(this.b){q.gae().gS().fG() -q.gae().gS().hY()}break -case 0:case 1:case 3:case 5:if(!q.gae().gS().gaF().c0){s=q.gae().gS().gaF() -r=s.fm -r.toString -s.hc(B.aZ,r)}q.gae().gS().a1F() -break}}, -awl(a){var s=this.a.gae().gS().gaF() -s.w1=s.fm=a.a -this.b=!0 -s=a.c -this.c=s==null||s===B.aC||s===B.bm}, -aw1(a){var s,r,q=this.a -if(q.gfN()){s=q.gae().gS().gaF() -r=s.fm -r.toString -s.lA(B.I_,r) -if(this.b)q.gae().gS().hY()}}, -SR(){var s,r,q=this -q.S9() -q.w=!1 -q.e=q.f=0 -s=!1 -if(q.gSo())if(A.aT()===B.U){r=q.a -if(r.gfN()){s=r.gae().gS().a.c.a.b -s=s.a===s.b}}if(s)q.a.gae().gS().De(new A.wE(null,null,B.jb))}, -Hj(a,b,c){this.U8(new A.of(this.a.gae().gS().a.c.a.a),a,b,c)}, -alb(a,b){return this.Hj(a,b,null)}, -U7(a,b,c){this.U8(new A.vW(this.a.gae().gS().gaF()),a,b,c)}, -ala(a,b){return this.U7(a,b,null)}, -V4(a,b){var s,r=a.a,q=this.a,p=b.fc(r===q.gae().gS().a.c.a.a.length?r-1:r) -if(p==null)p=0 -s=b.fe(r) -return new A.bI(p,s==null?q.gae().gS().a.c.a.a.length:s)}, -U8(a,b,c,d){var s=this.a,r=s.gae().gS().gaF().ha(c),q=this.V4(r,a),p=d==null?r:s.gae().gS().gaF().ha(d),o=p.j(0,r)?q:this.V4(p,a),n=q.a,m=o.b,l=n1)return -if(q.d){p.gae().gS().gaF() -r=p.gae().gS().gaF().D.gca()}else r=!1 -if(r)switch(A.aT().a){case 2:case 4:q.ac2(a.a,B.aw) -break -case 0:case 1:case 3:case 5:q.qM(a.a,B.aw) -break}else switch(A.aT().a){case 2:switch(s){case B.c5:case B.bt:p.gae().gS().gaF().hc(B.aw,a.a) -break -case B.bm:case B.cA:case B.aC:case B.bW:case null:case void 0:break}break -case 0:case 1:switch(s){case B.c5:case B.bt:p.gae().gS().gaF().hc(B.aw,a.a) -break -case B.bm:case B.cA:case B.aC:case B.bW:if(p.gae().gS().gaF().c0){r=a.a -p.gae().gS().gaF().hc(B.aw,r) -q.uU(r)}break -case null:case void 0:break}break -case 3:case 4:case 5:p.gae().gS().gaF().hc(B.aw,a.a) -break}}, -aw7(a){var s,r,q,p,o,n,m,l,k,j=this,i=j.a -if(!i.gfN())return -if(!j.d){if(i.gae().gS().gaF().ap===1){s=i.gae().gS().gaF().a4.at -s.toString -r=new A.h(s-j.f,0)}else{s=i.gae().gS().gaF().a4.at -s.toString -r=new A.h(0,s-j.f)}s=j.gTZ() -switch(A.bg(s==null?B.bh:s).a){case 0:s=new A.h(j.gr3()-j.e,0) -break -case 1:s=new A.h(0,j.gr3()-j.e) -break -default:s=null}q=a.a -p=q.ac(0,a.r) -o=a.x -if(A.z6(o)===2){i.gae().gS().gaF().xw(B.aw,p.ac(0,r).ac(0,s),q) -switch(a.f){case B.bm:case B.cA:case B.aC:case B.bW:return j.uU(q) -case B.c5:case B.bt:case null:case void 0:return}}if(A.z6(o)===3)switch(A.aT().a){case 0:case 1:case 2:switch(a.f){case B.c5:case B.bt:return j.Hj(B.aw,p.ac(0,r).ac(0,s),q) -case B.bm:case B.cA:case B.aC:case B.bW:case null:case void 0:break}return -case 3:return j.U7(B.aw,p.ac(0,r).ac(0,s),q) -case 5:case 4:return j.Hj(B.aw,p.ac(0,r).ac(0,s),q)}switch(A.aT().a){case 2:switch(a.f){case B.c5:case B.bt:return i.gae().gS().gaF().xv(B.aw,p.ac(0,r).ac(0,s),q) -case B.bm:case B.cA:case B.aC:case B.bW:case null:case void 0:break}return -case 0:case 1:switch(a.f){case B.c5:case B.bt:case B.bm:case B.cA:return i.gae().gS().gaF().xv(B.aw,p.ac(0,r).ac(0,s),q) -case B.aC:case B.bW:if(i.gae().gS().gaF().c0){i.gae().gS().gaF().hc(B.aw,q) -return j.uU(q)}break -case null:case void 0:break}return -case 4:case 3:case 5:return i.gae().gS().gaF().xv(B.aw,p.ac(0,r).ac(0,s),q)}}s=j.r -if(s.a!==s.b)s=A.aT()!==B.U&&A.aT()!==B.b5 -else s=!0 -if(s)return j.qM(a.a,B.aw) -n=i.gae().gS().a.c.a.b -s=a.a -m=i.gae().gS().gaF().ha(s) -q=j.r -o=q.c -l=m.a -k=oo -if(k&&n.c===o){s=i.gae().gS() -s.toString -s.hw(i.gae().gS().a.c.a.iW(A.cp(B.k,j.r.d,l,!1)),B.aw)}else if(!k&&l!==o&&n.c!==o){s=i.gae().gS() -s.toString -s.hw(i.gae().gS().a.c.a.iW(A.cp(B.k,j.r.c,l,!1)),B.aw)}else j.qM(s,B.aw)}, -aw3(a){var s=this -if(s.b&&A.z6(a.e)===2)s.a.gae().gS().hY() -if(s.d)s.r=null -s.S9()}, -X6(a,b){var s,r,q=this,p=q.a,o=p.gKd()?q.ga0e():null -p=p.gKd()?q.ga0d():null -s=q.gLy() -r=q.ga0j() -q.gLz() -return new A.G2(q.gawC(),q.gawA(),q.gawy(),o,p,q.gawi(),q.gawk(),q.gawv(),q.gawt(),s,r,q.gawr(),q.gawp(),q.gawn(),q.gaw0(),q.gawF(),q.gaw4(),q.gaw6(),q.gaw2(),!1,a,b,null)}} -A.axa.prototype={ -$1(a){var s,r -if(a){s=this.a.a.gae().gS().gaF() -r=s.fm -r.toString -s.hc(B.fA,r) -B.E4.j1("Scribe.startStylusHandwriting",t.H)}}, -$S:108} -A.G2.prototype={ -ah(){return new A.Kt()}, -gR(){return this.fr}} -A.Kt.prototype={ -ag0(){this.a.c.$0()}, -ag_(){this.a.d.$0()}, -ams(a){var s -this.a.e.$1(a) -s=a.d -if(A.z6(s)===2){s=this.a.ch.$1(a) -return s}if(A.z6(s)===3){s=this.a.CW.$1(a) -return s}}, -amt(a){if(A.z6(a.d)===1){this.a.y.$1(a) -this.a.Q.$0()}else this.a.toString}, -amr(){this.a.z.$0()}, -amp(a){this.a.cx.$1(a)}, -amq(a){this.a.cy.$1(a)}, -amo(a){this.a.db.$1(a)}, -acq(a){var s=this.a.f -if(s!=null)s.$1(a)}, -aco(a){var s=this.a.r -if(s!=null)s.$1(a)}, -aez(a){this.a.as.$1(a)}, -aex(a){this.a.at.$1(a)}, -aev(a){this.a.ax.$1(a)}, -aet(){this.a.ay.$0()}, -K(a){var s,r,q=this,p=A.t(t.u,t.xR) -p.m(0,B.id,new A.cK(new A.aKA(q),new A.aKB(q),t.UO)) -q.a.toString -p.m(0,B.oZ,new A.cK(new A.aKC(q),new A.aKD(q),t.jn)) -q.a.toString -switch(A.aT().a){case 0:case 1:case 2:p.m(0,B.agF,new A.cK(new A.aKE(q),new A.aKF(q),t.hg)) -break -case 3:case 4:case 5:p.m(0,B.agh,new A.cK(new A.aKG(q),new A.aKH(q),t.Qm)) -break}s=q.a -if(s.f!=null||s.r!=null)p.m(0,B.afT,new A.cK(new A.aKI(q),new A.aKJ(q),t.C1)) -s=q.a -r=s.dy -return new A.j5(s.fr,p,r,!0,null)}} -A.aKA.prototype={ -$0(){return A.FP(this.a,-1,null)}, -$S:89} -A.aKB.prototype={ -$1(a){var s=this.a.a -a.au=s.w -a.L=s.x}, -$S:88} -A.aKC.prototype={ -$0(){return A.ali(this.a,null,A.cy([B.aC],t.g))}, -$S:190} -A.aKD.prototype={ -$1(a){var s=this.a -a.p3=s.gaey() -a.p4=s.gaew() -a.RG=s.gaeu() -a.p1=s.gaes()}, -$S:189} -A.aKE.prototype={ -$0(){var s=null,r=t.S -return new A.l6(B.W,B.ik,A.aU(r),s,s,0,s,s,s,s,s,s,A.t(r,t.SP),A.dv(r),this.a,s,A.LU(),A.t(r,t.g))}, -$S:526} -A.aKF.prototype={ -$1(a){var s -a.at=B.ms -a.ch=A.aT()!==B.U -s=this.a -a.Bd$=s.gS5() -a.Be$=s.gS4() -a.CW=s.gV2() -a.cy=s.gV_() -a.db=s.gV0() -a.dx=s.gUZ() -a.cx=s.gV3() -a.dy=s.gV1()}, -$S:527} -A.aKG.prototype={ -$0(){var s=null,r=t.S -return new A.l7(B.W,B.ik,A.aU(r),s,s,0,s,s,s,s,s,s,A.t(r,t.SP),A.dv(r),this.a,s,A.LU(),A.t(r,t.g))}, -$S:528} -A.aKH.prototype={ -$1(a){var s -a.at=B.ms -s=this.a -a.Bd$=s.gS5() -a.Be$=s.gS4() -a.CW=s.gV2() -a.cy=s.gV_() -a.db=s.gV0() -a.dx=s.gUZ() -a.cx=s.gV3() -a.dy=s.gV1()}, -$S:529} -A.aKI.prototype={ -$0(){return A.b89(this.a,0.85,0.4,null)}, -$S:530} -A.aKJ.prototype={ -$1(a){var s=this.a,r=s.a -a.at=r.f!=null?s.gacp():null -a.ch=r.r!=null?s.gacn():null}, -$S:531} -A.AB.prototype={ -a9(a){var s=this -if(s.L$<=0)$.a1.bI$.push(s) -if(s.ay===B.lX)A.di(null,t.H) -s.a42(a)}, -O(a){var s=this -s.a43(a) -if(!s.w&&s.L$<=0)$.a1.is(s)}, -rz(a){switch(a.a){case 1:A.di(null,t.H) -break -case 0:case 2:case 3:case 4:break}}, -l(){$.a1.is(this) -this.w=!0 -this.d8()}} -A.v_.prototype={ -N(){return"ClipboardStatus."+this.b}} -A.k9.prototype={ -Kn(a){return this.at5(a)}, -at5(a){var s=0,r=A.I(t.H) -var $async$Kn=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:return A.G(null,r)}}) -return A.H($async$Kn,r)}} -A.a14.prototype={} -A.Lx.prototype={ -l(){var s=this,r=s.bu$ -if(r!=null)r.O(s.gfA()) -s.bu$=null -s.aQ()}, -bF(){this.cE() -this.cv() -this.fB()}} -A.Ly.prototype={ -l(){var s=this,r=s.bu$ -if(r!=null)r.O(s.gfA()) -s.bu$=null -s.aQ()}, -bF(){this.cE() -this.cv() -this.fB()}} -A.G5.prototype={} -A.YR.prototype={ -ol(a){return new A.al(0,a.b,0,a.d)}, -oo(a,b){var s,r,q,p=this,o=p.d -if(o==null)o=p.b.b>=b.b -s=o?p.b:p.c -r=A.bbH(s.a,b.a,a.a) -q=s.b -return new A.h(r,o?Math.max(0,q-b.b):q)}, -mT(a){return!this.b.j(0,a.b)||!this.c.j(0,a.c)||this.d!=a.d}} -A.G9.prototype={ -ah(){var s=$.af() -return new A.a9z(!0,!1,new A.cb(!0,s),new A.cb(B.JG,s))}, -gR(){return this.e}} -A.a9z.prototype={ -by(){var s,r,q,p=this -p.du() -s=p.c.aA(t.l3) -r=s==null -q=r?null:s.f -p.d=q!==!1 -r=r?null:s.r -p.e=r===!0 -p.VD()}, -aV(a){this.bm(a) -this.VD()}, -l(){var s=this.f,r=$.af() -s.P$=r -s.L$=0 -s=this.r -s.P$=r -s.L$=0 -this.aQ()}, -VD(){var s=this,r=s.d&&s.a.c,q=s.e -if(!q)s.a.toString -s.f.sp(r) -s.r.sp(new A.Ga(r,q))}, -K(a){var s=this.r -return new A.HK(this.f.a,s.a.b,s,this.a.e,null)}} -A.HK.prototype={ -cI(a){return this.f!==a.f||this.r!==a.r}} -A.eA.prototype={ -vC(a){var s,r=this -r.dK$=new A.xL(a) -r.cv() -r.fB() -s=r.dK$ -s.toString -return s}, -fB(){var s=this.bu$.gp(),r=this.dK$ -if(r!=null){r.sLg(!s.a) -this.dK$.b=s.b}}, -cv(){var s,r=this,q=r.c -q.toString -s=A.aZV(q) -q=r.bu$ -if(s===q)return -if(q!=null)q.O(r.gfA()) -s.a9(r.gfA()) -r.bu$=s}} -A.dK.prototype={ -vC(a){var s,r,q=this -if(q.bl$==null)q.cv() -if(q.dB$==null)q.dB$=A.aU(t.DH) -s=q.bl$.gp() -r=new A.aat(q,a) -r.sLg(!s.a) -r.b=s.b -q.dB$.G(0,r) -return r}, -eG(){var s,r,q,p,o,n -if(this.dB$!=null){s=this.bl$.gp() -r=!s.a -for(q=this.dB$,q=A.cl(q,q.r,A.n(q).c),p=s.b,o=q.$ti.c;q.v();){n=q.d -if(n==null)n=o.a(n) -n.sLg(r) -n.b=p}}}, -cv(){var s,r=this,q=r.c -q.toString -s=A.aZV(q) -q=r.bl$ -if(s===q)return -if(q!=null)q.O(r.geq()) -s.a9(r.geq()) -r.bl$=s}} -A.aat.prototype={ -l(){this.x.dB$.J(0,this) -this.Os()}} -A.Ga.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(b===s)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.Ga&&b.a===s.a&&b.b===s.b}, -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a1a.prototype={ -a9(a){}, -O(a){}, -$iae:1, -gp(){return B.JG}} -A.Gd.prototype={ -ah(){return new A.a9B()}, -gR(){return this.e}} -A.a9B.prototype={ -aw(){this.b3() -this.Vv()}, -aV(a){var s -this.bm(a) -s=this.a -if(a.c!==s.c||!a.d.j(0,s.d))this.Vv()}, -Vv(){var s=this.a -A.awh(new A.acH(s.c,s.d.A()))}, -K(a){return this.a.e}} -A.Gf.prototype={ -Ii(){var s=this.a.c,r=this.rO$ -if(s){r===$&&A.a() -r.cc()}else{r===$&&A.a() -r.d6()}}, -amH(a){var s,r=this -r.a.toString -r.ar(new A.axp(r,a)) -s=r.pr$ -s===$&&A.a() -s.cc()}, -Ve(a){var s=this.a,r=this.gadu() -switch(s.c){case!1:r.$1(!0) -break -case!0:r.$1(!1) -break -case null:case void 0:r.$1(!1) -break}this.c.ga1().tP(B.oM)}, -amF(){return this.Ve(null)}, -S1(a){var s,r=this -if(r.Bf$!=null)r.ar(new A.axq(r)) -s=r.pr$ -s===$&&A.a() -s.d6()}, -afX(){return this.S1(null)}, -ae9(a){var s,r=this -if(a!==r.vZ$){r.ar(new A.axn(r,a)) -s=r.K6$ -if(a){s===$&&A.a() -s.cc()}else{s===$&&A.a() -s.d6()}}}, -aej(a){var s,r=this -if(a!==r.w_$){r.ar(new A.axo(r,a)) -s=r.K4$ -if(a){s===$&&A.a() -s.cc()}else{s===$&&A.a() -s.d6()}}}, -gox(){var s,r=this,q=A.aU(t.EK) -r.a.toString -if(r.w_$)q.G(0,B.I) -if(r.vZ$)q.G(0,B.J) -s=r.a.c -if(s)q.G(0,B.ai) -return q}} -A.axp.prototype={ -$0(){this.a.Bf$=this.b.b}, -$S:0} -A.axq.prototype={ -$0(){this.a.Bf$=null}, -$S:0} -A.axn.prototype={ -$0(){this.a.vZ$=this.b}, -$S:0} -A.axo.prototype={ -$0(){this.a.w_$=this.b}, -$S:0} -A.xM.prototype={ -sbV(a){var s=this,r=s.a -if(a===r)return -if(r!=null)r.a.O(s.gdN()) -a.a.a9(s.gdN()) -s.a=a -s.a7()}, -saxt(a){var s=this,r=s.b -if(a===r)return -if(r!=null)r.a.O(s.gdN()) -a.a.a9(s.gdN()) -s.b=a -s.a7()}, -saxv(a){var s=this,r=s.c -if(a===r)return -if(r!=null)r.a.O(s.gdN()) -a.a.a9(s.gdN()) -s.c=a -s.a7()}, -saxw(a){var s=this,r=s.d -if(a===r)return -if(r!=null)r.a.O(s.gdN()) -a.a.a9(s.gdN()) -s.d=a -s.a7()}, -sao7(a){if(J.b(this.e,a))return -this.e=a -this.a7()}, -sau7(a){if(J.b(this.f,a))return -this.f=a -this.a7()}, -saub(a){if(a.j(0,this.r))return -this.r=a -this.a7()}, -saxu(a){if(a.j(0,this.w))return -this.w=a -this.a7()}, -sau0(a){if(a.j(0,this.x))return -this.x=a -this.a7()}, -sasx(a){if(a.j(0,this.y))return -this.y=a -this.a7()}, -smU(a){if(a===this.z)return -this.z=a -this.a7()}, -sarC(a){if(J.b(a,this.Q))return -this.Q=a -this.a7()}, -spI(a){if(a===this.as)return -this.as=a -this.a7()}, -sauD(a){if(a===this.at)return -this.at=a -this.a7()}, -l(){var s=this,r=s.a -if(r!=null)r.a.O(s.gdN()) -r=s.b -if(r!=null)r.a.O(s.gdN()) -r=s.c -if(r!=null)r.a.O(s.gdN()) -r=s.d -if(r!=null)r.a.O(s.gdN()) -s.d8()}, -eU(a){return!0}, -pA(a){return null}, -gxy(){return null}, -DP(a){return!1}, -k(a){return"#"+A.bF(this)}} -A.zO.prototype={ -ah(){return new A.GT()}, -gml(){return this.c}} -A.GT.prototype={ -aw(){this.b3() -this.a.gml().a9(this.gG7())}, -aV(a){var s,r=this -r.bm(a) -if(!r.a.gml().j(0,a.gml())){s=r.gG7() -a.gml().O(s) -r.a.gml().a9(s)}}, -l(){this.a.gml().O(this.gG7()) -this.aQ()}, -adt(){if(this.c==null)return -this.ar(new A.aze())}, -K(a){return this.a.K(a)}} -A.aze.prototype={ -$0(){}, -$S:0} -A.Y6.prototype={ -K(a){var s=this,r=t.so.a(s.c).gp() -if(s.e===B.aj)r=new A.h(-r.a,r.b) -return A.aW7(s.r,s.f,r)}, -gR(){return this.r}} -A.Ty.prototype={ -K(a){var s=this,r=t.v.a(s.c),q=s.e.$1(r.gp()) -r=r.gjK()?s.r:null -return A.YV(s.f,s.w,r,q,!0)}, -gR(){return this.w}} -A.Vn.prototype={} -A.Vi.prototype={} -A.Y0.prototype={ -K(a){var s,r,q=this,p=null,o=q.e -switch(o.a){case 0:s=new A.eK(q.f,-1) -break -case 1:s=new A.eK(-1,q.f) -break -default:s=p}r=o===B.L?Math.max(t.v.a(q.c).gp(),0):p -o=o===B.am?Math.max(t.v.a(q.c).gp(),0):p -return A.Nl(new A.ex(s,o,r,q.w,p),B.N,p)}, -gR(){return this.w}} -A.e9.prototype={ -bf(a){var s=null,r=new A.UI(s,s,s,s,s,new A.b8(),A.at()) -r.be() -r.sR(s) -r.sdY(this.e) -r.sA1(!1) -return r}, -bj(a,b){b.sdY(this.e) -b.sA1(!1)}} -A.Pz.prototype={ -K(a){var s=this.e -return A.vh(this.r,s.b.aj(s.a.gp()),B.dT)}, -gR(){return this.r}} -A.ib.prototype={ -gml(){return this.c}, -K(a){return this.Ab(a,this.f)}, -Ab(a,b){return this.e.$2(a,b)}, -gR(){return this.f}} -A.Mp.prototype={ -gml(){return A.ib.prototype.gml.call(this)}, -gIx(){return this.e}, -Ab(a,b){return this.gIx().$2(a,b)}} -A.xT.prototype={ -ah(){var s=this.$ti -return new A.xU(new A.aa9(A.c([],s.i("z<1>")),s.i("aa9<1>")),s.i("xU<1>"))}, -gR(){return this.x}} -A.xU.prototype={ -gamv(){var s=this.e -s===$&&A.a() -return s}, -gv_(){var s=this.a.w,r=this.x -if(r==null){s=$.af() -s=new A.Gr(new A.aZ(s),new A.aZ(s),B.agJ,s) -this.x=s}else s=r -return s}, -x4(){var s,r,q,p=this,o=p.d -if(o.gm0()==null)return -s=p.f -r=s==null -q=r?null:s.b!=null -if(q===!0){if(!r)s.bg() -p.HH(o.gm0())}else p.HH(o.x4()) -p.zD()}, -wR(){this.HH(this.d.wR()) -this.zD()}, -zD(){var s=this.gv_(),r=this.d,q=r.a,p=q.length!==0&&r.b>0 -s.sp(new A.xV(p,r.gXh())) -if(A.aT()!==B.U)return -s=$.ac2() -if(s.b===this){q=q.length!==0&&r.b>0 -r=r.gXh() -s=s.a -s===$&&A.a() -s.dc("UndoManager.setUndoState",A.aG(["canUndo",q,"canRedo",r],t.N,t.y),t.H)}}, -amQ(a){this.x4()}, -akb(a){this.wR()}, -HH(a){var s=this -if(a==null)return -if(J.b(a,s.w))return -s.w=a -s.r=!0 -try{s.a.f.$1(a)}finally{s.r=!1}}, -Ti(){var s,r,q=this -if(J.b(q.a.c.a,q.w))return -if(q.r)return -s=q.a -s=s.d.$2(q.w,s.c.a) -if(!(s==null?!0:s))return -s=q.a -r=s.e.$1(s.c.a) -if(r==null)r=q.a.c.a -if(J.b(r,q.w))return -q.w=r -q.f=q.amw(r)}, -RI(){var s,r=this -if(!r.a.r.gc5()){s=$.ac2() -if(s.b===r)s.b=null -return}$.ac2().b=r -r.zD()}, -at7(a){switch(a.a){case 0:this.x4() -break -case 1:this.wR() -break}}, -aw(){var s,r=this -r.b3() -s=A.biN(B.hk,new A.axH(r),r.$ti.c) -r.e!==$&&A.bs() -r.e=s -r.Ti() -r.a.c.a9(r.gH1()) -r.RI() -r.a.r.a9(r.gGa()) -r.gv_().w.a9(r.ga1I()) -r.gv_().x.a9(r.ga0Y())}, -aV(a){var s,r,q=this -q.bm(a) -s=a.c -if(q.a.c!==s){r=q.d -B.b.aa(r.a) -r.b=-1 -r=q.gH1() -s.O(r) -q.a.c.a9(r)}s=a.r -if(q.a.r!==s){r=q.gGa() -s.O(r) -q.a.r.a9(r)}q.a.toString}, -l(){var s=this,r=$.ac2() -if(r.b===s)r.b=null -s.a.c.O(s.gH1()) -s.a.r.O(s.gGa()) -s.gv_().w.O(s.ga1I()) -s.gv_().x.O(s.ga0Y()) -r=s.x -if(r!=null)r.l() -r=s.f -if(r!=null)r.bg() -s.aQ()}, -K(a){var s=t.e,r=t.d -return A.uB(A.aG([B.agp,new A.dg(this.gamP(),new A.bp(A.c([],s),r),t._n).e1(a),B.ag9,new A.dg(this.gaka(),new A.bp(A.c([],s),r),t.fN).e1(a)],t.u,t.od),this.a.x)}, -amw(a){return this.gamv().$1(a)}} -A.axH.prototype={ -$1(a){var s=this.a -s.d.o5(a) -s.zD()}, -$S(){return this.a.$ti.i("~(1)")}} -A.xV.prototype={ -k(a){return"UndoHistoryValue(canUndo: "+this.a+", canRedo: "+this.b+")"}, -j(a,b){if(b==null)return!1 -if(this===b)return!0 -return b instanceof A.xV&&b.a===this.a&&b.b===this.b}, -gt(a){var s=this.a?519018:218159 -return A.N(s,this.b?519018:218159,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.Gr.prototype={ -l(){var s=this.w,r=$.af() -s.P$=r -s.L$=0 -s=this.x -s.P$=r -s.L$=0 -this.d8()}} -A.aa9.prototype={ -gm0(){var s=this.a -return s.length===0?null:s[this.b]}, -gXh(){var s=this.a.length -return s!==0&&this.b"))}, -gR(){return this.e}} -A.zf.prototype={ -aw(){var s=this -s.b3() -s.d=s.a.c.gp() -s.a.c.a9(s.gI3())}, -aV(a){var s,r,q=this -q.bm(a) -s=a.c -if(s!==q.a.c){r=q.gI3() -s.O(r) -q.d=q.a.c.gp() -q.a.c.a9(r)}}, -l(){this.a.c.O(this.gI3()) -this.aQ()}, -anL(){this.ar(new A.aLy(this))}, -K(a){var s,r=this.a -r.toString -s=this.d -s===$&&A.a() -return r.d.$3(a,s,r.e)}} -A.aLy.prototype={ -$0(){var s=this.a -s.d=s.a.c.gp()}, -$S:0} -A.Gw.prototype={ -ah(){return new A.KP(A.ai9(!0,null,!1),A.UE())}, -gR(){return this.d}} -A.KP.prototype={ -aw(){var s=this -s.b3() -$.a1.bI$.push(s) -s.d.a9(s.gTY())}, -l(){var s,r=this -$.a1.is(r) -s=r.d -s.O(r.gTY()) -s.l() -r.aQ()}, -akX(){var s,r=this.d -if(this.f===r.gc5()||!r.gc5())return -$.a1.toString -r=$.b7() -s=this.a.c -r.gzH().Xm(s.a,B.p8)}, -Ys(a){var s,r,q=this,p=a.b.a -switch(p){case 1:s=a.a===q.a.c.a -break -case 0:s=!1 -break -default:s=null}q.f=s -if(a.a!==q.a.c.a)return -switch(p){case 1:switch(a.c.a){case 1:r=q.e.QK(q.d,!0) -break -case 2:r=q.e.FG(q.d,!0,!0) -break -case 0:r=q.d -break -default:r=null}r.it() -break -case 0:$.a1.ap$.d.b.k9(!1) -break}}, -K(a){var s=this.a,r=s.c,q=s.e,p=s.f -return new A.UC(r,new A.Iu(r,A.Qm(A.b_x(s.d,this.d,!1),this.e),null),q,p,null)}} -A.UC.prototype={ -K(a){var s=this,r=s.c,q=s.e,p=s.f -return new A.IY(r,new A.aqo(s),q,p,new A.Hy(r,q,p,t.Q8))}, -gR(){return this.d}} -A.aqo.prototype={ -$2(a,b){var s=this.a -return new A.ug(s.c,new A.IS(b,s.d,null),null)}, -$S:535} -A.IY.prototype={ -cf(){return new A.a5c(this,B.ae)}, -bf(a){return this.f}} -A.a5c.prototype={ -glM(){var s=this.e -s.toString -t.bR.a(s) -return s.e}, -ga1(){return t.Ju.a(A.b0.prototype.ga1.call(this))}, -I4(){var s,r,q,p,o,n,m,l=this -try{n=l.e -n.toString -s=t.bR.a(n).d.$2(l,l.glM()) -l.a3=l.dZ(l.a3,s,null)}catch(m){r=A.aj(m) -q=A.b3(m) -n=A.bZ("building "+l.k(0)) -p=new A.c9(r,q,"widgets library",n,null,!1) -A.dE(p) -o=A.vw(p) -l.a3=l.dZ(null,o,l.c)}}, -ex(a,b){var s,r=this -r.mZ(a,b) -s=t.Ju -r.glM().sM3(s.a(A.b0.prototype.ga1.call(r))) -r.P8() -r.I4() -s.a(A.b0.prototype.ga1.call(r)).LL() -if(r.glM().at!=null)s.a(A.b0.prototype.ga1.call(r)).xs()}, -P9(a){var s,r,q,p=this -if(a==null)a=A.b_e(p) -s=p.glM() -a.CW.G(0,s) -r=a.cx -if(r!=null)s.aP(r) -s=$.mB -s.toString -r=t.Ju.a(A.b0.prototype.ga1.call(p)) -q=r.fx -s.cx$.m(0,q.a,r) -r.srs(A.bca(q)) -p.a5=a}, -P8(){return this.P9(null)}, -Qb(){var s,r=this,q=r.a5 -if(q!=null){s=$.mB -s.toString -s.cx$.J(0,t.Ju.a(A.b0.prototype.ga1.call(r)).fx.a) -s=r.glM() -q.CW.J(0,s) -if(q.cx!=null)s.az() -r.a5=null}}, -by(){var s,r=this -r.E6() -if(r.a5==null)return -s=A.b_e(r) -if(s!==r.a5){r.Qb() -r.P9(s)}}, -j8(){this.xS() -this.I4()}, -bF(){var s=this -s.tZ() -s.glM().sM3(t.Ju.a(A.b0.prototype.ga1.call(s))) -s.P8()}, -dA(){this.Qb() -this.glM().sM3(null) -this.Om()}, -cQ(a){this.lF(a) -this.I4()}, -bB(a){var s=this.a3 -if(s!=null)a.$1(s)}, -ij(a){this.a3=null -this.jf(a)}, -j0(a,b){t.Ju.a(A.b0.prototype.ga1.call(this)).sR(a)}, -io(a,b,c){}, -jR(a,b){t.Ju.a(A.b0.prototype.ga1.call(this)).sR(null)}, -kD(){var s=this,r=s.glM(),q=s.e -q.toString -if(r!==t.bR.a(q).e){r=s.glM() -q=r.at -if(q!=null)q.l() -r.at=null -B.b.aa(r.r) -B.b.aa(r.z) -B.b.aa(r.Q) -r.ch.aa(0)}s.Eg()}} -A.ug.prototype={ -cI(a){return this.f!==a.f}} -A.IS.prototype={ -cI(a){return this.f!==a.f}} -A.Hy.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(J.S(b)!==A.l(s))return!1 -return s.$ti.b(b)&&b.a===s.a&&b.b===s.b&&b.c===s.c}, -gt(a){return A.N(this.a,this.b,this.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -k(a){return"[_DeprecatedRawViewKey "+("#"+A.bF(this.a))+"]"}} -A.abz.prototype={} -A.Gz.prototype={ -bf(a){var s=this,r=s.e,q=A.axX(a,r),p=A.at() -r=new A.Eb(s.r,r,q,s.w,250,B.lU,s.Q,s.as,p,0,null,null,new A.b8(),A.at()) -r.be() -r.a_(0,null) -q=r.al$ -if(q!=null)r.dq=q -return r}, -bj(a,b){var s=this,r=s.e -b.shD(r) -r=A.axX(a,r) -b.sY5(r) -b.saoA(s.r) -b.scU(s.w) -b.sape(s.y) -b.sapf(B.lU) -b.sa0s(s.Q) -b.snx(s.as)}, -cf(){return new A.aai(A.dv(t.Q),this,B.ae)}} -A.aai.prototype={ -ga1(){return t.E1.a(A.ii.prototype.ga1.call(this))}, -ex(a,b){var s=this -s.a5=!0 -s.a4J(a,b) -s.Vr() -s.a5=!1}, -cQ(a){var s=this -s.a5=!0 -s.a4L(a) -s.Vr() -s.a5=!1}, -Vr(){var s=this,r=s.e -r.toString -t.Dg.a(r) -r=t.E1 -if(!s.gnw().gan(0)){r.a(A.ii.prototype.ga1.call(s)).sbp(t.IT.a(s.gnw().gad(0).ga1())) -s.au=0}else{r.a(A.ii.prototype.ga1.call(s)).sbp(null) -s.au=null}}, -j0(a,b){var s=this -s.O1(a,b) -if(!s.a5&&b.b===s.au)t.E1.a(A.ii.prototype.ga1.call(s)).sbp(t.IT.a(a))}, -io(a,b,c){this.O2(a,b,c)}, -jR(a,b){var s=this -s.a4K(a,b) -if(!s.a5&&t.E1.a(A.ii.prototype.ga1.call(s)).dq===a)t.E1.a(A.ii.prototype.ga1.call(s)).sbp(null)}} -A.XW.prototype={ -bf(a){var s=this,r=s.e,q=A.axX(a,r),p=A.at() -r=new A.V4(r,q,s.r,250,B.lU,s.w,s.x,p,0,null,null,new A.b8(),A.at()) -r.be() -r.a_(0,null) -return r}, -bj(a,b){var s=this,r=s.e -b.shD(r) -r=A.axX(a,r) -b.sY5(r) -b.scU(s.r) -b.sa0s(s.w) -b.snx(s.x)}} -A.abA.prototype={} -A.abB.prototype={} -A.Ze.prototype={ -K(a){var s=null,r=this.e,q=new A.aaj(r,!0,A.jK(new A.Qc(!1,this.c,s),!1,s),s) -return new A.aak(r,q,s)}, -gR(){return this.c}} -A.aak.prototype={ -cI(a){return this.f!==a.f}} -A.aaj.prototype={ -bf(a){var s=new A.a5S(this.e,!0,null,new A.b8(),A.at()) -s.be() -s.sR(null) -return s}, -bj(a,b){b.saz4(this.e) -b.savs(!0)}} -A.a5S.prototype={ -saz4(a){if(a===this.D)return -this.D=a -this.bb()}, -savs(a){return}, -fK(a){this.qu(a)}, -b1(a,b){if(!this.D)return -this.iE(a,b)}} -A.Cb.prototype={ -N(){return"InspectorButtonVariant."+this.b}} -A.Rd.prototype={ -gau2(){switch(this.r.a){case 2:return 32 -case 0:case 1:return 18}}} -A.y4.prototype={ -A6(a,b,c){var s,r=this.a,q=r!=null -if(q)a.tc(r.xl(c)) -b.toString -s=b[a.ga0x()] -r=s.a -a.zU(r.a,r.b,this.b,s.d,s.c) -if(q)a.ct()}, -bB(a){return a.$1(this)}, -a1V(a){return!0}, -MR(a,b){var s=b.a -if(a.a===s)return this -b.a=s+1 -return null}, -Xt(a,b){var s=b.a -b.a=s+1 -return a-s===0?65532:null}, -bt(a,b){var s,r,q,p,o,n=this -if(n===b)return B.cP -if(A.l(b)!==A.l(n))return B.bL -s=n.a -r=s==null -q=b.a -if(r!==(q==null))return B.bL -t.a7.a(b) -if(!n.e.oC(0,b.e)||n.b!==b.b)return B.bL -if(!r){q.toString -p=s.bt(0,q) -o=p.a>0?p:B.cP -if(o===B.bL)return o}else o=B.cP -return o}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -if(!r.O_(0,b))return!1 -s=!1 -if(b instanceof A.nh)if(b.e.oC(0,r.e))s=b.b===r.b -return s}, -gt(a){var s=this -return A.N(A.ez.prototype.gt.call(s,0),s.e,s.b,s.c,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.ay2.prototype={ -$1(a){var s,r,q,p,o=this,n=null,m=a.a,l=m==null?n:m.r -A:{if(typeof l=="number"){m=l!==B.b.gaC(o.b) -s=l}else{s=n -m=!1}if(m){m=s -break A}m=n -break A}r=m!=null -if(r)o.b.push(m) -if(a instanceof A.nh){q=B.b.gaC(o.b) -p=q===0?0:o.c.bi(q)/q -m=o.a.a++ -o.d.push(new A.aap(a,A.cz(n,new A.a0H(a,p,a.e,n),!1,n,n,!1,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,new A.mo(m,"PlaceholderSpanIndexSemanticsTag("+m+")"),n,n,n,n,B.Y,n),n))}a.a1V(o) -if(r)o.b.pop() -return!0}, -$S:94} -A.aap.prototype={ -p0(a){var s=a.b -s.toString -t.ot.a(s).b=this.f}} -A.a0H.prototype={ -bf(a){var s=this.e -s=new A.Jm(this.f,s.b,s.c,null,new A.b8(),A.at()) -s.be() -return s}, -bj(a,b){var s=this.e -b.siS(s.b) -b.sjw(s.c) -b.sa2F(this.f)}} -A.Jm.prototype={ -sa2F(a){if(a===this.n)return -this.n=a -this.ag()}, -siS(a){if(this.U===a)return -this.U=a -this.ag()}, -sjw(a){return}, -bG(a){var s=this.u$ -s=s==null?null:s.aO(B.bg,a/this.n,s.gcp()) -if(s==null)s=0 -return s*this.n}, -bH(a){var s=this.u$ -s=s==null?null:s.aO(B.aK,a/this.n,s.gc2()) -if(s==null)s=0 -return s*this.n}, -bO(a){var s=this.u$ -s=s==null?null:s.aO(B.by,a/this.n,s.gcA()) -if(s==null)s=0 -return s*this.n}, -bP(a){var s=this.u$ -s=s==null?null:s.aO(B.bR,a/this.n,s.gcG()) -if(s==null)s=0 -return s*this.n}, -hm(a){var s=this.u$,r=s==null?null:s.mL(a) -A:{if(r==null){s=this.Ed(a) -break A}s=this.n*r -break A}return s}, -e2(a,b){var s=this.u$,r=s==null?null:s.f5(new A.al(0,a.b/this.n,0,1/0),b) -return r==null?null:this.n*r}, -dg(a){var s=this.u$,r=s==null?null:s.aO(B.S,new A.al(0,a.b/this.n,0,1/0),s.gcu()) -if(r==null)r=B.Q -return a.bx(r.ak(0,this.n))}, -c7(){var s,r=this,q=r.u$ -if(q==null)return -s=t.k -q.cs(new A.al(0,s.a(A.r.prototype.gab.call(r)).b/r.n,0,1/0),!0) -r.fy=s.a(A.r.prototype.gab.call(r)).bx(q.gC().ak(0,r.n))}, -dz(a,b){var s=this.n -b.oq(s,s,s,1)}, -b1(a,b){var s,r,q,p=this,o=p.u$ -if(o==null){p.ch.saR(null) -return}s=p.n -if(s===1){a.e4(o,b) -p.ch.saR(null) -return}r=p.cx -r===$&&A.a() -q=p.ch -q.saR(a.wL(r,b,A.wc(s,s,1),new A.aGr(o),t.zV.a(q.a)))}, -da(a,b){var s,r=this.u$ -if(r==null)return!1 -s=this.n -return a.v9(new A.aGq(r),b,A.wc(s,s,1))}} -A.aGr.prototype={ -$2(a,b){return a.e4(this.a,b)}, -$S:17} -A.aGq.prototype={ -$2(a,b){return this.a.cT(a,b)}, -$S:19} -A.ab0.prototype={ -aP(a){var s -this.eV(a) -s=this.u$ -if(s!=null)s.aP(a)}, -az(){this.eW() -var s=this.u$ -if(s!=null)s.az()}} -A.a0w.prototype={ -a_G(a){return!0}, -k(a){return"WidgetState.any"}, -$iZl:1} -A.cq.prototype={ -N(){return"WidgetState."+this.b}, -a_G(a){return a.q(0,this)}, -$iZl:1} -A.Zi.prototype={$icr:1} -A.KR.prototype={ -af(a){return this.z.$1(a)}} -A.Zj.prototype={ -Av(a){return this.af(B.cB).Av(a)}, -$icr:1} -A.KS.prototype={ -af(a){return this.a.$1(a)}, -gAC(){return this.b}} -A.Zh.prototype={$icr:1} -A.a3t.prototype={ -af(a){var s,r=this,q=r.a,p=q==null?null:q.af(a) -q=r.b -s=q==null?null:q.af(a) -q=p==null -if(q&&s==null)return null -if(q)return A.bb(new A.bl(s.a.e_(0),0,B.F,-1),s,r.c) -if(s==null)return A.bb(p,new A.bl(p.a.e_(0),0,B.F,-1),r.c) -return A.bb(p,s,r.c)}, -$icr:1} -A.jm.prototype={ -af(a){return this.x.$1(a)}} -A.Zk.prototype={$icr:1} -A.aas.prototype={ -af(a){return this.a3.$1(a)}} -A.Ig.prototype={ -af(a){var s,r=this,q=r.a,p=q==null?null:q.af(a) -q=r.b -s=q==null?null:q.af(a) -return r.d.$3(p,s,r.c)}, -$icr:1} -A.bS.prototype={ -af(a){return this.a.$1(a)}, -$icr:1} -A.iH.prototype={ -af(a){var s,r,q -for(s=this.a,s=new A.dZ(s,A.n(s).i("dZ<1,2>")).gai(0);s.v();){r=s.d -if(r.a.a_G(a))return r.b}try{this.$ti.c.a(null) -return null}catch(q){if(t.ns.b(A.aj(q))){s=this.$ti.c -throw A.i(A.c1("The current set of widget states is "+a.k(0)+'.\nNone of the provided map keys matched this set, and the type "'+A.bM(s).k(0)+'" is non-nullable.\nConsider using "WidgetStateMapper<'+A.bM(s).k(0)+'?>()", or adding the "WidgetState.any" key to this map.',null))}else throw q}}, -j(a,b){if(b==null)return!1 -return this.$ti.b(b)&&A.uo(this.a,b.a)}, -gt(a){return new A.r2(B.pK,B.pK,t.S6.bN(this.$ti.c).i("r2<1,2>")).j_(this.a)}, -k(a){return"WidgetStateMapper<"+A.bM(this.$ti.c).k(0)+">("+this.a.k(0)+")"}, -M(a,b){throw A.i(A.nP(A.c([A.kz('There was an attempt to access the "'+b.ga02().k(0)+'" field of a WidgetStateMapper<'+A.bM(this.$ti.c).k(0)+"> object."),A.bZ(this.k(0)),A.bZ("WidgetStateProperty objects should only be used in places that document their support."),A.Bw('Double-check whether the map was used in a place that documents support for WidgetStateProperty objects. If so, please file a bug report. (The https://pub.dev/ page for a package contains a link to "View/report issues".)')],t.D)))}, -$icr:1} -A.bB.prototype={ -af(a){return this.a}, -k(a){var s="WidgetStatePropertyAll(",r=this.a -if(typeof r=="number")return s+A.kl(r)+")" -else return s+A.j(r)+")"}, -j(a,b){if(b==null)return!1 -return this.$ti.b(b)&&A.l(b)===A.l(this)&&J.b(b.a,this.a)}, -gt(a){return J.D(this.a)}, -$icr:1} -A.Zm.prototype={ -cW(a,b){var s=this.a,r=J.d5(s) -if(b?r.G(s,a):r.J(s,a))this.a7()}} -A.aar.prototype={} -A.GM.prototype={ -ah(){return new A.aaw()}, -gR(){return this.c}} -A.aaw.prototype={ -by(){var s,r=this -r.du() -r.a.toString -s=r.c -s.toString -r.d=A.wg(s,null,t.X) -r.a.toString}, -aV(a){this.bm(a) -this.a.toString}, -l(){this.a.toString -this.aQ()}, -K(a){return this.a.c}} -A.hl.prototype={ -OC(a,b,c,d,e,f,g,h,i,j,k,l){var s,r=this -A.LV(!0,"Animate.onPlay is not called when Animate.autoPlay=false") -A.LV(!0,"Animate.onInit is not called when used with Animate.controller") -if(r.w.a!==0){A.LV(b!==!1,"Animate.delay has no effect when used with Animate.autoPlay=false") -A.LV(!0,"Animate.delay has no effect when used with Animate.adapter") -A.LV(!0,"Animate.delay has no effect when used with Animate.target") -A.LV(!0,"Animate.delay has no effect when used with Animate.value")}s=A.c([],t.WG) -r.as!==$&&A.bs() -r.as=s -if(f!=null)r.aol(f)}, -ah(){return new A.GS(null,null)}, -rd(a){var s,r,q,p=this,o=p.ax,n=a.a -if(n!=null)s=new A.b5(p.ay.a+n.a) -else{s=o==null?null:o.a -if(s==null)s=p.ay}n=a.b -if(n==null)n=o==null?null:o.b -if(n==null)n=B.aM -r=a.c -if(r==null)r=o==null?null:o.c -q=new A.Bn(s,n,r==null?B.a7:r,a) -r=p.as -r===$&&A.a() -r.push(q) -p.ax=q -n=s.a+n.a -r=p.at -if(n>r.a)p.at=new A.b5(n) -return p}, -gR(){return this.c}} -A.acu.prototype={ -$2(a,b){t.W1.a(a) -return new A.fZ(a.f,a.r,b,a.a)}, -$S:536} -A.acv.prototype={ -$2(a,b){t.iB.a(a) -return A.mu(a.x,b,a.z,a.a,a.f,a.w,a.r,a.y)}, -$S:537} -A.acw.prototype={ -$2(a,b){t.nx.a(a) -return A.cJ(b,a.f,a.a)}, -$S:538} -A.GS.prototype={ -aw(){this.b3() -this.akw()}, -aV(a){var s,r=this,q=r.a -if(a.x==q.x){s=a.at -q=q.at -q=s.a!==q.a}else q=!0 -if(q){r.Sf() -r.T7()}r.bm(a)}, -akw(){var s=this,r=s.r -if(r!=null)A.vD(r,t.H) -s.Sf() -s.W3() -s.r=A.vE(s.a.w,new A.ayT(s),t.H)}, -Sf(){var s,r,q,p=this,o=null -if(p.a.x!=null){p.Qn() -s=p.a.x -s.toString -r=s -q=!1}else{q=!p.e -if(q){r=A.bX(o,o,o,o,p) -p.e=!0}else r=o}if(r!=null){p.d=r -r.bC() -s=r.cP$ -s.b=!0 -s.a.push(p.gade())}s=p.d -s===$&&A.a() -s.e=p.a.at -p.agz() -if(q)p.a.toString}, -agz(){this.f=this.a.y}, -Qn(){if(this.e){var s=this.d -s===$&&A.a() -s.l()}this.e=!1}, -l(){var s=this.r -if(s!=null)A.vD(s,t.H) -this.Qn() -this.a7w()}, -adf(a){if(J.b(a,B.a9))this.a.toString}, -T7(){var s=this,r=s.r -if(r!=null)A.vD(r,t.H) -s.W3() -r=s.a -r=r.r -if(r){r=s.d -r===$&&A.a() -r.kl(0) -s.a.toString}}, -W3(){this.a.toString -return}, -K(a){var s,r,q,p,o=this.a.c,n=$.aTJ().h(0,A.l(o)),m=n==null,l=!m?o.gR():o,k=this.a.as -k===$&&A.a() -s=k.length -r=0 -for(;r") -return new A.aw(t.v.a(A.cQ(new A.eo(s/q,(s+b.b.a)/q,b.c),a,null)),new A.aA(this.d,this.e,r),r.i("aw"))}, -a2p(a,b){var s={} -s.a=s.b=null -return A.hU(a,new A.ah1(s,a,b,null),null)}, -Dx(a,b){return this.a2p(a,b,t.z)}} -A.ah1.prototype={ -$2(a,b){var s,r,q=this,p=q.b,o=p.b -p=p.a -s=q.a -if(!J.b(o.aj(p.gp()),s.b))s.a=null -s.b=o.aj(p.gp()) -r=s.a -return s.a=r==null?q.c.$2(a,q.d):r}, -$S:48} -A.qm.prototype={ -p7(a,b,c,d){return new A.e9(this.vk(c,d),!1,b,null)}} -A.D1.prototype={ -p7(a,b,c,d){var s=this.vk(c,d) -return this.Dx(s,new A.aob(this,s,b))}} -A.aob.prototype={ -$2(a,b){var s=this.b -return A.aSg(this.c,s.b.aj(s.a.gp()),!0)}, -$S:78} -A.Vh.prototype={ -p7(a,b,c,d){var s=this.vk(c,d) -return this.Dx(s,new A.as1(this,s,b))}} -A.as1.prototype={ -$2(a,b){var s=this.b -s=s.b.aj(s.a.gp()) -return A.YW(B.a_,s*2*3.141592653589793,this.c,!0)}, -$S:78} -A.rT.prototype={ -p7(a,b,c,d){var s=this.vk(c,d) -return this.Dx(s,new A.asm(this,s,b))}} -A.asm.prototype={ -$2(a,b){var s,r=this.b,q=r.b -r=r.a -s=q.aj(r.gp()).a -if(s<0.000001)s=0.000001 -r=q.aj(r.gp()).b -if(r<0.000001)r=0.000001 -return A.b__(B.a_,this.c,null,s,r,!0)}, -$S:78} -A.ix.prototype={ -p7(a,b,c,d){return A.oK(b,this.vk(c,d),null,!0)}} -A.nw.prototype={ -aol(a){var s,r -for(s=a.length,r=0;r"))}, -xb(a,b){return this.tC(a,null,b)}, -a28(a,b,c,d){var s=0,r=A.I(d),q,p=2,o=[],n=this,m,l,k,j,i,h -var $async$tC=A.J(function(e,f){if(e===1){o.push(f) -s=p}for(;;)switch(s){case 0:i=null -p=4 -k=n.a -k===$&&A.a() -s=7 -return A.p(k.ay4(a,null,null,null,A.aVA("GET",null),b,t.z),$async$tC) -case 7:m=f -k=n.RV(m,i,c) -q=k -s=1 -break -p=2 -s=6 -break -case 4:p=3 -h=o.pop() -k=A.aj(h) -if(k instanceof A.hs){l=k -q=n.RH(l,c) -s=1 -break}else throw h -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$tC,r)}, -kv(a,b,c){var s=null -return this.ax7(a,b,c,c.i("cs<0>"))}, -ax6(a,b){return this.kv(a,null,b)}, -ax7(a,b,c,d){var s=0,r=A.I(d),q,p=2,o=[],n=this,m,l,k,j,i,h -var $async$kv=A.J(function(e,f){if(e===1){o.push(f) -s=p}for(;;)switch(s){case 0:i=null -p=4 -k=n.a -k===$&&A.a() -s=7 -return A.p(k.CO(a,null,b,null,null,A.aVA("POST",null),null,t.z),$async$kv) -case 7:m=f -k=n.RV(m,i,c) -q=k -s=1 -break -p=2 -s=6 -break -case 4:p=3 -h=o.pop() -k=A.aj(h) -if(k instanceof A.hs){l=k -q=n.RH(l,c) -s=1 -break}else throw h -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$kv,r)}, -RV(a,b,c){var s=a.a -if(t.P.b(s))return A.b5B(s,b,c) -return new A.cs(!1,"\u54cd\u5e94\u6570\u636e\u683c\u5f0f\u9519\u8bef",null,c.i("cs<0>"))}, -RH(a,b){var s=a.b -if((s==null?null:s.c)===401){A.vZ() -return new A.cs(!1,"\u767b\u5f55\u5df2\u8fc7\u671f\uff0c\u8bf7\u91cd\u65b0\u767b\u5f55",null,b.i("cs<0>"))}return new A.cs(!1,this.acK(a),null,b.i("cs<0>"))}, -acK(a){var s -switch(a.c.a){case 0:return"\u8fde\u63a5\u8d85\u65f6\uff0c\u8bf7\u68c0\u67e5\u7f51\u7edc" -case 1:return"\u53d1\u9001\u8d85\u65f6\uff0c\u8bf7\u91cd\u8bd5" -case 2:return"\u54cd\u5e94\u8d85\u65f6\uff0c\u8bf7\u91cd\u8bd5" -case 6:return"\u7f51\u7edc\u8fde\u63a5\u5931\u8d25" -case 4:s=a.b -return"\u670d\u52a1\u5668\u9519\u8bef ("+A.j(s==null?null:s.c)+")" -default:s=a.f -return s==null?"\u7f51\u7edc\u8bf7\u6c42\u5931\u8d25":s}}} -A.GZ.prototype={ -o1(a,b){var s,r=$.qY -if(r==null)A.a0(A.cX(u.P)) -s=A.bH(r.a.h(0,"token")) -if((s==null?null:s.length!==0)===!0){r=a.b -r===$&&A.a() -r.m(0,"Authorization","Bearer "+A.j(s))}this.a4v(a,b)}, -t8(a,b){var s=a.b -if((s==null?null:s.c)===401)A.vZ() -this.a4u(a,b)}} -A.A0.prototype={} -A.zE.prototype={} -A.lz.prototype={ -gBm(){var s=this.x,r=s>=0?"+":"" -return r+B.d.aq(s,2)+"%"}, -gKU(){return this.x>=0}, -gvs(){return this.c}, -gLO(){return this.d}, -gm0(){return this.r}} -A.hX.prototype={ -kC(){var s=this -return A.aG(["id",s.a,"code",s.b,"name",s.c,"icon",s.d,"price",s.e,"priceUsd",s.f,"priceCny",s.r,"priceType",s.w,"change24h",s.x,"high24h",s.y,"low24h",s.z,"volume24h",s.Q,"status",s.as,"sort",s.at],t.N,t.z)}, -gYA(){var s=B.a2x.h(0,this.b) -return s==null?"\u25cf":s}, -gKe(){var s=this.e -if(s>=1000)return B.d.aq(s,2) -if(s>=1)return B.d.aq(s,4) -return B.d.aq(s,6)}, -gZu(){var s=this.x,r=s>=0?"+":"" -return r+B.d.aq(s,2)+"%"}} -A.ro.prototype={ -ga3K(){if(this.e===1)switch(this.r){case 1:return"\u5f85\u4ed8\u6b3e" -case 2:return"\u5f85\u786e\u8ba4" -case 3:return"\u5df2\u5b8c\u6210" -case 4:return"\u5df2\u9a73\u56de" -case 5:return"\u5df2\u53d6\u6d88" -default:return"\u672a\u77e5"}else switch(this.r){case 1:return"\u5f85\u5ba1\u6279" -case 2:return"\u5df2\u5b8c\u6210" -case 3:return"\u5df2\u9a73\u56de" -case 4:return"\u5df2\u53d6\u6d88" -default:return"\u672a\u77e5"}}, -gXf(){var s=this.r===1 -if(this.e===1)return s -else return s}} -A.Gu.prototype={ -kC(){var s,r=this,q=r.x -q=q==null?null:q.a1A() -s=r.y -s=s==null?null:s.a1A() -return A.aG(["id",r.a,"username",r.b,"nickname",r.c,"avatar",r.d,"phone",r.e,"email",r.f,"kycStatus",r.r,"status",r.w,"lastLoginTime",q,"createTime",s],t.N,t.z)}, -gWX(){var s=this.b -return s.length!==0?B.c.a6(s,0,1).toUpperCase():"U"}} -A.uH.prototype={ -xj(){var s=0,r=A.I(t.QM),q,p=this,o,n,m,l -var $async$xj=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:s=3 -return A.p(p.a.xb("/api/asset/overview",t.P),$async$xj) -case 3:l=b -if(l.a&&l.c!=null){o=l.c -n=o.h(0,"totalAsset") -n=n==null?null:J.cB(n) -if(n==null)n="0.00" -m=o.h(0,"fundBalance") -if(m!=null)J.cB(m) -m=o.h(0,"tradeBalance") -m=m==null?null:J.cB(m) -if(m==null)m="0.00" -o=o.h(0,"totalProfit") -o=o==null?null:J.cB(o) -if(o==null)o="0.00" -q=A.zW(new A.A0(n,m,o),l.b,t._5) -s=1 -break}o=l.b -q=new A.cs(!1,o,null,t.QM) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$xj,r)}, -xi(){var s=0,r=A.I(t.fl),q,p=this,o,n,m,l,k -var $async$xi=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:s=3 -return A.p(p.a.xb("/api/asset/fund",t.P),$async$xi) -case 3:k=b -if(k.a&&k.c!=null){o=k.c -n=A.d2(o.h(0,"id")) -if(n==null)n=0 -A.d2(o.h(0,"userId")) -m=o.h(0,"balance") -m=m==null?null:J.cB(m) -if(m==null)m="0.00" -l=o.h(0,"frozenBalance") -if(l!=null)J.cB(l) -if(o.h(0,"updateTime")!=null)A.vf(o.h(0,"updateTime")) -q=A.zW(new A.zE(n,m),k.b,t.H6) -s=1 -break}o=k.b -q=new A.cs(!1,o,null,t.fl) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$xi,r)}, -xm(){var s=0,r=A.I(t.U5),q,p=this,o,n,m,l -var $async$xm=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:s=3 -return A.p(p.a.xb("/api/asset/trade",t.P),$async$xm) -case 3:l=b -if(l.a&&l.c!=null){o=t.kc.a(l.c.h(0,"list")) -if(o==null)n=null -else{m=J.ju(o,new A.acM(),t.BD) -m=A.aa(m,m.$ti.i("aE.E")) -n=m}if(n==null)n=A.c([],t.lm) -q=A.zW(n,l.b,t.kE) -s=1 -break}m=l.b -q=new A.cs(!1,m,null,t.U5) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$xm,r)}, -jT(a,b){return this.ayI(a,b)}, -ayI(a,b){var s=0,r=A.I(t.SB),q,p=this -var $async$jT=A.J(function(c,d){if(c===1)return A.F(d,r) -for(;;)switch(s){case 0:q=p.a.kv("/api/asset/transfer",A.aG(["direction",b,"amount",a],t.N,t.K),t.H) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$jT,r)}} -A.acM.prototype={ -$1(a){var s,r,q,p,o,n="updateTime" -t.P.a(a) -s=A.d2(a.h(0,"id")) -if(s==null)s=0 -A.d2(a.h(0,"userId")) -r=A.bH(a.h(0,"coinCode")) -if(r==null)r="" -q=a.h(0,"quantity") -q=q==null?null:J.cB(q) -if(q==null)q="0" -p=a.h(0,"avgPrice") -if(p!=null)J.cB(p) -p=a.h(0,"totalCost") -if(p!=null)J.cB(p) -p=a.h(0,"currentValue") -p=p==null?null:J.cB(p) -if(p==null)p="0.00" -o=a.h(0,"profit") -if(o!=null)J.cB(o) -o=A.lq(a.h(0,"profitRate")) -if(o==null)o=null -if(o==null)o=0 -if(a.h(0,n)!=null)A.vf(a.h(0,n)) -return new A.lz(s,r,q,p,o)}, -$S:543} -A.vC.prototype={ -Ji(a,b){return this.ari(a,b)}, -ari(a,b){var s=0,r=A.I(t.kG),q,p=this,o -var $async$Ji=A.J(function(c,d){if(c===1)return A.F(d,r) -for(;;)switch(s){case 0:o=t.N -o=A.t(o,o) -o.m(0,"amount",a) -q=p.a.kv("/api/fund/deposit",o,t.P) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$Ji,r)}, -kW(a){return this.apP(a)}, -apP(a){var s=0,r=A.I(t.SB),q,p=this,o -var $async$kW=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:o=t.N -q=p.a.kv("/api/fund/confirmPay",A.aG(["orderNo",a],o,o),t.H) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$kW,r)}, -MC(a,b,c,d){return this.azd(a,b,c,d)}, -azd(a,b,c,d){var s=0,r=A.I(t.kG),q,p=this,o -var $async$MC=A.J(function(e,f){if(e===1)return A.F(f,r) -for(;;)switch(s){case 0:o=t.N -o=A.t(o,o) -o.m(0,"amount",a) -o.m(0,"withdrawAddress",c) -if(d!=null)o.m(0,"withdrawContact",d) -q=p.a.kv("/api/fund/withdraw",o,t.P) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$MC,r)}, -kV(a){return this.apm(a)}, -apm(a){var s=0,r=A.I(t.SB),q,p=this,o -var $async$kV=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:o=t.N -q=p.a.kv("/api/fund/cancel",A.aG(["orderNo",a],o,o),t.H) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$kV,r)}, -Dy(a,b,c){return this.a2q(a,b,c)}, -a2q(a,b,c){var s=0,r=A.I(t.kG),q,p=this,o -var $async$Dy=A.J(function(d,e){if(d===1)return A.F(e,r) -for(;;)switch(s){case 0:o=A.aG(["pageNum",a,"pageSize",b],t.N,t.z) -if(c!=null)o.m(0,"type",c) -q=p.a.tC("/api/fund/orders",o,t.P) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$Dy,r)}, -awV(a){var s -if(a==null)return A.c([],t.Xs) -s=J.ju(a,new A.aiH(),t._1) -s=A.aa(s,s.$ti.i("aE.E")) -return s}} -A.aiH.prototype={ -$1(a){var s,r,q,p,o,n,m,l,k,j,i="createTime",h="confirmTime" -t.P.a(a) -s=A.d2(a.h(0,"id")) -if(s==null)s=0 -r=A.bH(a.h(0,"orderNo")) -if(r==null)r="" -A.d2(a.h(0,"userId")) -q=A.bH(a.h(0,"username")) -if(q==null)q="" -p=A.d2(a.h(0,"type")) -if(p==null)p=1 -o=a.h(0,"amount") -o=o==null?null:J.cB(o) -if(o==null)o="0.00" -n=A.d2(a.h(0,"status")) -if(n==null)n=1 -A.d2(a.h(0,"walletId")) -m=A.bH(a.h(0,"walletAddress")) -l=A.bH(a.h(0,"withdrawContact")) -k=a.h(0,"remark") -if(k!=null)J.cB(k) -k=A.bH(a.h(0,"rejectReason")) -A.bH(a.h(0,"adminRemark")) -j=a.h(0,i)!=null?A.vf(a.h(0,i)):null -if(a.h(0,"payTime")!=null)A.vf(a.h(0,"payTime")) -if(a.h(0,h)!=null)A.vf(a.h(0,h)) -return new A.ro(s,r,q,p,o,n,m,l,k,j)}, -$S:544} -A.w6.prototype={ -xf(){var s=0,r=A.I(t.JX),q,p=this,o,n,m,l -var $async$xf=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:s=3 -return A.p(p.a.xb("/api/market/list",t.P),$async$xf) -case 3:l=b -if(l.a&&l.c!=null){o=t.kc.a(l.c.h(0,"list")) -if(o==null)n=null -else{m=J.ju(o,new A.alv(),t.Hl) -m=A.aa(m,m.$ti.i("aE.E")) -n=m}if(n==null)n=A.c([],t.oD) -q=A.zW(n,l.b,t.P4) -s=1 -break}m=l.b -q=new A.cs(!1,m,null,t.JX) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$xf,r)}} -A.alv.prototype={ -$1(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=null -t.P.a(a) -s=A.d2(a.h(0,"id")) -if(s==null)s=0 -r=A.bH(a.h(0,"code")) -if(r==null)r="" -q=A.bH(a.h(0,"name")) -if(q==null)q="" -p=A.bH(a.h(0,"icon")) -o=A.lq(a.h(0,"price")) -if(o==null)o=e -if(o==null)o=0 -n=A.lq(a.h(0,"priceUsd")) -if(n==null)n=e -m=A.lq(a.h(0,"priceCny")) -if(m==null)m=e -l=A.d2(a.h(0,"priceType")) -if(l==null)l=1 -k=A.lq(a.h(0,"change24h")) -if(k==null)k=e -if(k==null)k=0 -j=A.lq(a.h(0,"high24h")) -if(j==null)j=e -i=A.lq(a.h(0,"low24h")) -if(i==null)i=e -h=A.lq(a.h(0,"volume24h")) -if(h==null)h=e -g=A.d2(a.h(0,"status")) -if(g==null)g=1 -f=A.d2(a.h(0,"sort")) -return new A.hX(s,r,q,p,o,n,m,l,k,j,i,h,g,f==null?0:f)}, -$S:545} -A.xP.prototype={} -A.y0.prototype={ -wn(a,b){return this.avl(a,b)}, -avl(a,b){var s=0,r=A.I(t.kG),q,p=this,o -var $async$wn=A.J(function(c,d){if(c===1)return A.F(d,r) -for(;;)switch(s){case 0:o=t.N -q=p.a.kv("/api/user/login",A.aG(["username",a,"password",b],o,o),t.P) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$wn,r)}, -o7(a,b){return this.axH(a,b)}, -axH(a,b){var s=0,r=A.I(t.kG),q,p=this,o -var $async$o7=A.J(function(c,d){if(c===1)return A.F(d,r) -for(;;)switch(s){case 0:o=t.N -q=p.a.kv("/api/user/register",A.aG(["username",a,"password",b],o,o),t.P) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$o7,r)}, -nW(){var s=0,r=A.I(t.SB),q,p=this -var $async$nW=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:q=p.a.ax6("/api/user/logout",t.H) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$nW,r)}} -A.D5.prototype={ -K(a){var s=this.a9H() -return A.b9k(A.ks(new A.aoD(this),t.eC),s)}, -a9H(){var s,r=null,q=new A.B6(),p=A.b5J("http://8.155.172.147:5010",B.qX,A.aG(["Content-Type","application/json"],t.N,t.z),B.qX),o=new A.Rf(A.c([B.LE],t.i6)) -o.a_(o,B.Xi) -s=new A.afu($,o,$,new A.aiI(51200),!1) -s.Z2$=p -s.Z3$=new A.adm(A.aU(t.m)) -q.a=s -o.a_(o,A.c([new A.GZ(),new A.CD(!1,!1,!0)],t.lC)) -return A.c([A.ae8(new A.aou(),t.eC),new A.rE(new A.ze(q,r,r,t.xW),r,r,r,r,t.HO),A.Uu(new A.aov(q),t.Zo),A.Uu(new A.aow(q),t.WM),A.Uu(new A.aox(q),t.e9),A.Uu(new A.aoy(q),t.uj),A.Uu(new A.aoz(q),t.zC),A.ae8(new A.aoA(),t.W0),A.ae8(new A.aoB(),t.yo),A.ae8(new A.aoC(),t.E)],t.Ds)}, -a9x(a){var s=A.P(a) -return new A.CI(this.a9u(),new A.aot(),s,B.WJ,!1,null)}, -a9u(){return A.ks(new A.aos(),t.W0)}} -A.aoD.prototype={ -$3(a,b,c){var s=null,r=b.a -return new A.pI(new A.ET(A.av8(s,s,s,s,s,B.ar,s,s,s,s,A.aRT(B.eK.bT(0.1),B.eK,B.Nk,B.q9.bT(0.5),B.l,B.iE,B.DK,B.c1,B.l,B.iE,B.q9.bT(0.3),B.MS,B.NH,B.l,B.iE,B.eK,B.l,B.eK,B.Ne,B.iE,B.eK.bT(0.2)),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),A.av8(s,s,s,s,s,B.R,s,s,s,s,A.aRT(B.d9.bT(0.15),B.d9,B.qw,B.qu.bT(0.15),B.Nr,B.d8,B.DK,B.c1,B.d8,B.d8,B.qu.bT(0.15),B.qd,B.h6,B.qd,B.d8,B.d9,B.qv,B.d9,B.ql,B.d8,B.d9.bT(0.3)),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),r,this.a.ga9w(),s),s)}, -$S:546} -A.aou.prototype={ -$1(a){var s=new A.mX(B.fH,$.af()) -s.BK() -return s}, -$S:547} -A.aov.prototype={ -$1(a){return new A.y0(this.a)}, -$S:548} -A.aow.prototype={ -$1(a){return new A.w6(this.a)}, -$S:549} -A.aox.prototype={ -$1(a){return new A.xP()}, -$S:550} -A.aoy.prototype={ -$1(a){return new A.uH(this.a)}, -$S:551} -A.aoz.prototype={ -$1(a){return new A.vC(this.a)}, -$S:552} -A.aoA.prototype={ -$1(a){var s=new A.eL(A.dx(a,!1,t.Zo),$.af()) -s.Go() -return s}, -$S:553} -A.aoB.prototype={ -$1(a){var s=t.oD -return new A.ic(A.dx(a,!1,t.WM),A.c([],s),A.c([],s),$.af())}, -$S:554} -A.aoC.prototype={ -$1(a){return new A.hn(A.dx(a,!1,t.uj),A.dx(a,!1,t.zC),A.c([],t.lm),A.c([],t.ys),A.c([],t.Xs),$.af())}, -$S:555} -A.aot.prototype={ -$2(a,b){b.toString -return new A.x1(null,b,null,null)}, -$S:556} -A.aos.prototype={ -$3(a,b,c){if(b.d)return B.a5C -return b.c?B.ki:B.nI}, -$S:557} -A.pI.prototype={ -ah(){return new A.a0G()}, -gR(){return this.c}} -A.a0G.prototype={ -by(){var s,r,q=this -q.du() -s=q.c -s.toString -r=A.dx(s,!0,t.W0).c -s=q.d -if(s==null){q.d=r -return}if(s!==r){q.d=r -q.ahO(r)}}, -ahO(a){$.a1.k4$.push(new A.azv(this,a))}, -K(a){return this.a.c}} -A.azv.prototype={ -$1(a){var s,r,q=this.a,p=q.c -if(p==null)return -s=this.b -if(!s){p=A.dx(p,!1,t.E) -p.at=p.as=p.Q=!1 -p.d=p.c=null -p.e=A.c([],t.lm) -p.f=A.c([],t.ys) -p.r=A.c([],t.Xs) -p.a7() -p=q.c -p.toString -p=A.dx(p,!1,t.yo) -p.w=!1 -r=t.oD -p.b=A.c([],r) -p.c=A.c([],r) -p.r=null -p.a7()}q=q.c -q.toString -A.ct(q,!1).LM(A.w9(new A.azt(s),null,t.z),new A.azu())}, -$S:4} -A.azt.prototype={ -$1(a){return this.a?B.ki:B.nI}, -$S:558} -A.azu.prototype={ -$1(a){return!1}, -$S:116} -A.hn.prototype={ -nV(a){return this.avd(a)}, -avc(){return this.nV(!1)}, -avd(a){var s=0,r=A.I(t.H),q,p=2,o=[],n=this,m,l,k,j -var $async$nV=A.J(function(b,c){if(b===1){o.push(c) -s=p}for(;;)switch(s){case 0:if(n.Q&&!a&&n.c!=null){s=1 -break}n.a7() -p=4 -s=7 -return A.p(n.a.xj(),$async$nV) -case 7:m=c -if(m.a){n.c=m.c -n.Q=!0}else m.toString -p=2 -s=6 -break -case 4:p=3 -j=o.pop() -l=A.aj(j) -A.j(l) -s=6 -break -case 3:s=2 -break -case 6:n.a7() -case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$nV,r)}, -nU(a){return this.ava(a)}, -av9(){return this.nU(!1)}, -ava(a){var s=0,r=A.I(t.H),q,p=2,o=[],n=this,m,l,k -var $async$nU=A.J(function(b,c){if(b===1){o.push(c) -s=p}for(;;)switch(s){case 0:if(n.as&&!a&&n.d!=null){s=1 -break}p=4 -s=7 -return A.p(n.a.xi(),$async$nU) -case 7:m=c -if(m.a){n.d=m.c -n.as=!0 -n.a7()}p=2 -s=6 -break -case 4:p=3 -k=o.pop() -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$nU,r)}, -t2(a){return this.avi(a)}, -avh(){return this.t2(!1)}, -avi(a){var s=0,r=A.I(t.H),q,p=2,o=[],n=this,m,l,k,j -var $async$t2=A.J(function(b,c){if(b===1){o.push(c) -s=p}for(;;)switch(s){case 0:if(n.at&&!a&&J.jt(n.e)){s=1 -break}p=4 -s=7 -return A.p(n.a.xm(),$async$t2) -case 7:m=c -if(m.a){l=m.c -n.e=l==null?A.c([],t.lm):l -n.at=!0 -n.a7()}p=2 -s=6 -break -case 4:p=3 -j=o.pop() -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$t2,r)}, -jT(a,b){return this.ayH(a,b)}, -ayH(a,b){var s=0,r=A.I(t.SB),q,p=2,o=[],n=this,m,l,k,j,i -var $async$jT=A.J(function(c,d){if(c===1){o.push(d) -s=p}for(;;)switch(s){case 0:p=4 -s=7 -return A.p(n.a.jT(a,b),$async$jT) -case 7:m=d -s=m.a?8:9 -break -case 8:s=10 -return A.p(n.nV(!0),$async$jT) -case 10:s=11 -return A.p(n.nU(!0),$async$jT) -case 11:s=12 -return A.p(n.t2(!0),$async$jT) -case 12:case 9:q=m -s=1 -break -p=2 -s=6 -break -case 4:p=3 -i=o.pop() -l=A.aj(i) -j=A.j(l) -q=new A.cs(!1,"\u5212\u8f6c\u5931\u8d25: "+j,null,t.SB) -s=1 -break -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$jT,r)}, -pg(a){var s=null -return this.arh(a)}, -arh(a){var s=0,r=A.I(t.kG),q,p=2,o=[],n=this,m,l,k,j,i,h -var $async$pg=A.J(function(b,c){if(b===1){o.push(c) -s=p}for(;;)switch(s){case 0:i=null -p=4 -s=7 -return A.p(n.b.Ji(a,i),$async$pg) -case 7:m=c -s=m.a?8:9 -break -case 8:s=10 -return A.p(n.nV(!0),$async$pg) -case 10:s=11 -return A.p(n.nU(!0),$async$pg) -case 11:case 9:q=m -s=1 -break -p=2 -s=6 -break -case 4:p=3 -h=o.pop() -l=A.aj(h) -j=A.j(l) -q=new A.cs(!1,"\u5145\u503c\u7533\u8bf7\u5931\u8d25: "+j,null,t.kG) -s=1 -break -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$pg,r)}, -kW(a){return this.apO(a)}, -apO(a){var s=0,r=A.I(t.SB),q,p=2,o=[],n=this,m,l,k,j,i -var $async$kW=A.J(function(b,c){if(b===1){o.push(c) -s=p}for(;;)switch(s){case 0:p=4 -s=7 -return A.p(n.b.kW(a),$async$kW) -case 7:m=c -s=m.a?8:9 -break -case 8:s=10 -return A.p(n.a_T(),$async$kW) -case 10:case 9:q=m -s=1 -break -p=2 -s=6 -break -case 4:p=3 -i=o.pop() -l=A.aj(i) -j=A.j(l) -q=new A.cs(!1,"\u786e\u8ba4\u6253\u6b3e\u5931\u8d25: "+j,null,t.SB) -s=1 -break -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$kW,r)}, -q9(a,b,c){var s=null -return this.azc(a,b,c)}, -azc(a,b,c){var s=0,r=A.I(t.kG),q,p=2,o=[],n=this,m,l,k,j,i,h -var $async$q9=A.J(function(d,e){if(d===1){o.push(e) -s=p}for(;;)switch(s){case 0:i=null -p=4 -s=7 -return A.p(n.b.MC(a,i,b,c),$async$q9) -case 7:m=e -s=m.a?8:9 -break -case 8:s=10 -return A.p(n.nV(!0),$async$q9) -case 10:s=11 -return A.p(n.nU(!0),$async$q9) -case 11:case 9:q=m -s=1 -break -p=2 -s=6 -break -case 4:p=3 -h=o.pop() -l=A.aj(h) -j=A.j(l) -q=new A.cs(!1,"\u63d0\u73b0\u7533\u8bf7\u5931\u8d25: "+j,null,t.kG) -s=1 -break -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$q9,r)}, -wm(a){var s=1,r=20 -return this.avb(a)}, -a_T(){return this.wm(null)}, -avb(a){var s=0,r=A.I(t.H),q=1,p=[],o=this,n,m,l,k,j,i,h -var $async$wm=A.J(function(b,c){if(b===1){p.push(c) -s=q}for(;;)switch(s){case 0:j=1 -i=20 -o.y=!0 -o.a7() -q=3 -l=o.b -s=6 -return A.p(l.Dy(j,i,a),$async$wm) -case 6:n=c -if(n.a&&n.c!=null){m=t.kc.a(n.c.h(0,"list")) -o.r=l.awV(m)}q=1 -s=5 -break -case 3:q=2 -h=p.pop() -s=5 -break -case 2:s=1 -break -case 5:o.y=!1 -o.a7() -return A.G(null,r) -case 1:return A.F(p.at(-1),r)}}) -return A.H($async$wm,r)}, -kV(a){return this.apl(a)}, -apl(a){var s=0,r=A.I(t.SB),q,p=2,o=[],n=this,m,l,k,j,i -var $async$kV=A.J(function(b,c){if(b===1){o.push(c) -s=p}for(;;)switch(s){case 0:p=4 -s=7 -return A.p(n.b.kV(a),$async$kV) -case 7:m=c -s=m.a?8:9 -break -case 8:s=10 -return A.p(n.a_T(),$async$kV) -case 10:s=11 -return A.p(n.av9(),$async$kV) -case 11:case 9:q=m -s=1 -break -p=2 -s=6 -break -case 4:p=3 -i=o.pop() -l=A.aj(i) -j=A.j(l) -q=new A.cs(!1,"\u53d6\u6d88\u8ba2\u5355\u5931\u8d25: "+j,null,t.SB) -s=1 -break -s=6 -break -case 3:s=2 -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$kV,r)}, -tg(a){return this.axG(a)}, -axF(){return this.tg(!1)}, -axG(a){var s=0,r=A.I(t.H),q=this -var $async$tg=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:s=2 -return A.p(A.i2(A.c([q.nV(a),q.nU(a),q.t2(a)],t.mo),t.H),$async$tg) -case 2:return A.G(null,r)}}) -return A.H($async$tg,r)}} -A.eL.prototype={ -Go(){var s=0,r=A.I(t.H),q=this,p,o -var $async$Go=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:o=$.qY -if(o==null)A.a0(A.cX(u.P)) -o=A.bH(o.a.h(0,"token")) -q.e=o -o=(o==null?null:o.length!==0)===!0 -q.c=o -if(o){p=A.b8P() -q.b=p!=null?A.b_a(p):null}q.a7() -return A.G(null,r)}}) -return A.H($async$Go,r)}, -wn(a,b){return this.ua(new A.acN(this,a,b))}, -o7(a,b){return this.ua(new A.acO(this,a,b))}, -ua(a){return this.a9j(a)}, -a9j(a){var s=0,r=A.I(t.dB),q,p=2,o=[],n=[],m=this,l,k,j,i,h,g,f,e -var $async$ua=A.J(function(b,c){if(b===1){o.push(c) -s=p}for(;;)switch(s){case 0:m.d=!0 -m.a7() -p=4 -s=7 -return A.p(a.$0(),$async$ua) -case 7:l=c -if(!l.a||l.c==null){j=l.b -q=new A.cs(!1,j,null,t.dB) -n=[1] -s=5 -break}j=l.c -j.toString -i=l.b -m.e=A.bH(j.h(0,"token")) -h=t.nA -g=h.a(j.h(0,"user")) -if(g==null)g=h.a(j.h(0,"userInfo")) -j=m.e -if(j!=null)A.ale(j) -if(g!=null){A.alf(g) -m.b=A.b_a(g)}m.c=!0 -j=m.b -j=j!=null?A.zW(j,i,t.ui):new A.cs(!1,"\u7528\u6237\u4fe1\u606f\u83b7\u53d6\u5931\u8d25",null,t.dB) -q=j -n=[1] -s=5 -break -n.push(6) -s=5 -break -case 4:p=3 -e=o.pop() -k=A.aj(e) -j=A.j(k) -q=new A.cs(!1,"\u64cd\u4f5c\u5931\u8d25: "+j,null,t.dB) -n=[1] -s=5 -break -n.push(6) -s=5 -break -case 3:n=[2] -case 5:p=2 -m.d=!1 -m.a7() -s=n.pop() -break -case 6:case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$ua,r)}, -nW(){var s=0,r=A.I(t.H),q=1,p=[],o=this,n,m -var $async$nW=A.J(function(a,b){if(a===1){p.push(b) -s=q}for(;;)switch(s){case 0:o.d=!0 -o.a7() -q=3 -s=6 -return A.p(o.a.nW(),$async$nW) -case 6:q=1 -s=5 -break -case 3:q=2 -m=p.pop() -s=5 -break -case 2:s=1 -break -case 5:A.vZ() -o.e=o.b=null -o.d=o.c=!1 -o.a7() -return A.G(null,r) -case 1:return A.F(p.at(-1),r)}}) -return A.H($async$nW,r)}} -A.acN.prototype={ -$0(){return this.a.a.wn(this.b,this.c)}, -$S:154} -A.acO.prototype={ -$0(){return this.a.a.o7(this.b,this.c)}, -$S:154} -A.ic.prototype={ -t1(a){return this.av5(a)}, -L2(){return this.t1(!1)}, -av5(a){var s=0,r=A.I(t.H),q,p=2,o=[],n=this,m,l,k,j,i -var $async$t1=A.J(function(b,c){if(b===1){o.push(c) -s=p}for(;;)switch(s){case 0:if(n.w&&!a&&J.jt(n.b)){s=1 -break}n.f=!0 -n.r=null -n.a7() -p=4 -s=7 -return A.p(n.a.xf(),$async$t1) -case 7:m=c -if(m.a){k=m.c -n.b=k==null?A.c([],t.oD):k -n.yl() -n.w=!0}else n.r=m.b -p=2 -s=6 -break -case 4:p=3 -i=o.pop() -l=A.aj(i) -n.r="\u52a0\u8f7d\u5931\u8d25: "+A.j(l) -s=6 -break -case 3:s=2 -break -case 6:n.f=!1 -n.a7() -case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$t1,r)}, -a2N(a){this.e=a -this.yl() -this.a7()}, -yl(){var s,r=this,q=A.jN(r.b,!0,t.Hl),p=r.d -if(p==="realtime"){p=A.a6(q).i("b1<1>") -q=A.aa(new A.b1(q,new A.alt(),p),p.i("y.E"))}else if(p==="hot")q=A.fN(q,0,A.kj(6,"count",t.S),A.a6(q).c).eA(0) -p=r.e -if(p.length!==0){s=A.a6(q).i("b1<1>") -q=A.aa(new A.b1(q,new A.alu(p.toLowerCase()),s),s.i("y.E"))}r.c=q}, -CJ(){var s=0,r=A.I(t.H),q=this -var $async$CJ=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:s=2 -return A.p(q.t1(!0),$async$CJ) -case 2:return A.G(null,r)}}) -return A.H($async$CJ,r)}} -A.alt.prototype={ -$1(a){return a.w===1}, -$S:153} -A.alu.prototype={ -$1(a){var s=this.a -return B.c.q(a.b.toLowerCase(),s)||B.c.q(a.c.toLowerCase(),s)}, -$S:153} -A.mX.prototype={ -BK(){var s=0,r=A.I(t.H),q=this,p,o -var $async$BK=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:o=A -s=2 -return A.p(A.xf(),$async$BK) -case 2:p=o.bH(b.a.h(0,"theme_mode")) -if(p!=null){q.a=B.b.Zg(B.We,new A.axj(p),new A.axk()) -q.a7()}return A.G(null,r)}}) -return A.H($async$BK,r)}, -x3(){var s=0,r=A.I(t.H),q=this -var $async$x3=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:q.a=q.a===B.oU?B.fH:B.oU -s=2 -return A.p(q.uT(),$async$x3) -case 2:q.a7() -return A.G(null,r)}}) -return A.H($async$x3,r)}, -uT(){var s=0,r=A.I(t.H),q=this -var $async$uT=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:s=3 -return A.p(A.xf(),$async$uT) -case 3:s=2 -return A.p(b.Hl("String","theme_mode",q.a.N()),$async$uT) -case 2:return A.G(null,r)}}) -return A.H($async$uT,r)}} -A.axj.prototype={ -$1(a){return a.N()===this.a}, -$S:563} -A.axk.prototype={ -$0(){return B.fH}, -$S:564} -A.Qy.prototype={ -K(a){var s,r,q,p,o=this,n=null,m=A.P(a).ax,l=A.P(a),k=m.p1 -if(k==null)k=m.k2 -s=A.ar(B.d.aY(255*(l.ax.a===B.R?0.4:0.6)),k.A()>>>16&255,k.A()>>>8&255,k.A()&255) -l=m.to -if(l==null){l=m.n -if(l==null)l=m.k3}r=l.aI(0.15) -q=o.r -if(q==null)q=A.bK(16) -l=A.ak2(20,20) -k=A.dB(r,1) -p=A.aes(q,A.acS(A.bL(n,o.c,B.v,n,n,new A.bm(s,n,k,q,n,n,n,B.G),n,n,n,o.w,n,n,n),l)) -l=o.x -return l!=null?new A.bR(l,p,n):p}, -gR(){return this.c}} -A.Qx.prototype={ -K(a){var s,r=A.P(a),q=A.P(a),p=A.bK(16) -q=q.ax.a===B.R?0.15:0.08 -r.ax.b.aI(q) -s=A.kD(p,this.c,this.r,new A.a2(16,16,16,16)) -return s}, -gR(){return this.c}} -A.TK.prototype={ -K(a){var s=null -return A.bL(s,this.c,B.v,s,s,new A.bm(s,s,s,this.r,A.c([new A.cm(0,B.az,this.d,B.f,15)],t.V),s,s,B.G),s,s,s,s,s,s,s)}, -gR(){return this.c}} -A.Dk.prototype={ -ah(){return new A.IJ(null,null)}} -A.IJ.prototype={ -aw(){var s,r,q=this,p=null -q.b3() -s=A.bX(p,B.c2,p,p,q) -q.d=s -r=t.Y -q.e=new A.aw(A.cQ(B.mk,s,p),new A.aA(1,0.95,r),r.i("aw"))}, -l(){var s=this.d -s===$&&A.a() -s.l() -this.a7R()}, -ahZ(a){var s -this.ar(new A.aEV(this)) -s=this.d -s===$&&A.a() -s.cc()}, -ai0(a){var s -this.ar(new A.aEW(this)) -s=this.d -s===$&&A.a() -s.d6()}, -ahX(){this.ar(new A.aEU(this)) -var s=this.d -s===$&&A.a() -s.d6()}, -ga9k(){var s,r,q=this.c -q.toString -q=A.P(q) -s=this.c -s.toString -r=A.P(s).ax -switch(this.a.e.a){case 0:return r.b -case 1:return r.y -case 2:return q.ax.a===B.R?B.ac:B.bU -case 3:return B.c1 -case 4:return B.D}}, -gQT(){var s,r=this.c -r.toString -s=A.P(r).ax.a===B.R -r=this.c -r.toString -r=A.P(r) -switch(this.a.e.a){case 0:return s?B.qv:B.l -case 1:return s?B.ML:B.l -case 2:return s?B.MT:B.l -case 3:return B.l -case 4:return r.ax.b}}, -gad6(){var s,r,q=this.c -q.toString -s=A.P(q).ax.a===B.R -q=this.c -q.toString -r=A.P(q).ax -switch(this.a.e.a){case 0:q=s?0.15:0.08 -return r.b.aI(q) -case 1:q=s?0.15:0.08 -return r.y.aI(q) -case 2:q=s?0.2:0.1 -return s?B.ac.bT(q):B.bU.bT(q) -case 3:return A.ar(B.d.aY(76.5),B.c1.A()>>>16&255,B.c1.A()>>>8&255,B.c1.A()&255) -case 4:q=s?0.15:0.08 -return r.b.aI(q)}}, -gRu(){var s,r,q,p=this,o=null -if(p.a.e===B.dv)return o -s=p.c -s.toString -s=A.P(s) -r=p.c -r.toString -q=A.P(r).ax -switch(p.a.e.a){case 0:s=q.b -r=q.d -return new A.ia(B.ez,B.eA,B.bX,A.c([s,r==null?s:r],t.t_),o,o) -case 1:s=q.y -r=q.Q -if(r==null)r=s -return new A.ia(B.ez,B.eA,B.bX,A.c([s,r],t.t_),o,o) -case 2:r=t.t_ -return new A.ia(B.ez,B.eA,B.bX,s.ax.a===B.R?A.c([B.ac,B.Ns],r):A.c([B.bU,B.NL],r),o,o) -case 3:return B.Qs -default:return o}}, -K(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null,e=A.P(a).ax -A.P(a) -s=g.a -r=s.d -q=g.e -q===$&&A.a() -p=s.x -s=s.y -o=g.gRu() -n=g.gRu()==null?g.ga9k():f -m=A.bK(24) -if(g.a.e===B.dv){l=e.to -if(l==null){l=e.n -if(l==null)l=e.k3}l=A.dB(l.aI(0.3),1)}else l=f -g.a.toString -k=t.p -j=A.c([],k) -i=g.a.r -if(i!=null)B.b.a_(j,A.c([A.ce(i,g.gQT(),f,18),A.a8(f,f,8)],k)) -j.push(A.ai(g.a.c,f,f,f,A.ay(f,f,g.gQT(),f,f,f,f,f,f,f,f,16,f,f,B.b9,f,f,!0,f,f,f,f,f,f,f,f),f,f)) -k=A.bw(j,B.o,B.cN,B.ak,f) -h=A.eP(f,A.asn(A.bL(f,A.dp(k,f,f),B.v,f,f,new A.bm(n,f,l,m,f,o,f,B.G),f,s,f,f,f,f,p),q),B.W,!1,f,f,f,f,f,f,f,f,f,f,f,f,f,f,r,g.gahW(),g.gahY(),g.gai_(),f,f,f) -s=g.a -if(s.f&&s.e!==B.dv)return new A.TK(h,g.gad6(),A.bK(24),f) -return h}} -A.aEV.prototype={ -$0(){return!0}, -$S:0} -A.aEW.prototype={ -$0(){return!1}, -$S:0} -A.aEU.prototype={ -$0(){return!1}, -$S:0} -A.rg.prototype={ -N(){return"NeonButtonType."+this.b}} -A.TL.prototype={ -K(a){var s=null,r=this.e,q=r.bT(0.5) -q=A.c([new A.cm(0,B.az,q,B.f,10)],t.V) -return A.bL(s,A.ce(this.c,r,s,this.d),B.v,s,s,new A.bm(s,s,s,s,q,s,s,B.G),s,s,s,s,s,s,s)}} -A.Lp.prototype={ -l(){var s=this,r=s.bu$ -if(r!=null)r.O(s.gfA()) -s.bu$=null -s.aQ()}, -bF(){this.cE() -this.cv() -this.fB()}} -A.A1.prototype={ -ah(){return new A.a0D(null)}} -A.a0D.prototype={ -gjV(){return!0}, -aw(){this.a7x() -$.a1.k4$.push(new A.azo(this))}, -K(a){var s,r -this.lD(a) -s=A.P(a).ax -r=s.aB -if(r==null)r=s.k2 -return A.ow(null,r,A.ks(new A.azn(this,s),t.E),null)}} -A.azo.prototype={ -$1(a){var s=this.a.c -s.toString -A.dx(s,!1,t.E).axF() -return null}, -$S:4} -A.azn.prototype={ -$3(a,b,c){var s,r,q,p,o,n,m=null,l=this.b,k=l.RG -if(k==null)k=l.k2 -s=b.c -r=A.a8(m,16,m) -q=this.a -p=q.d -o=A.a8(m,16,m) -n=p===0?new A.a2P(b,m):new A.a9H(b.e,m) -return A.aqt(k,A.oJ(A.bJ(A.c([new A.a0C(s,m),r,new A.a98(B.Vf,p,new A.azl(q),m),o,n],t.p),B.o,B.m,B.n),m,B.bj,B.ir,B.L),l.b,new A.azm(b))}, -$S:234} -A.azm.prototype={ -$0(){return this.a.tg(!0)}, -$S:10} -A.azl.prototype={ -$1(a){var s=this.a -return s.ar(new A.azk(s,a))}, -$S:24} -A.azk.prototype={ -$0(){return this.a.d=this.b}, -$S:0} -A.a0C.prototype={ -K(a){var s,r,q,p,o,n,m,l,k,j,i=null,h=A.P(a),g=A.P(a),f=A.bK(16) -g=g.ax.a===B.R?0.15:0.08 -g=A.c([new A.cm(0,B.az,h.ax.b.aI(g),B.f,20)],t.V) -h=B.d.aY(178.5) -s=A.ai("PORTFOLIO VALUE",i,i,i,A.ay(i,i,A.ar(h,B.l.A()>>>16&255,B.l.A()>>>8&255,B.l.A()&255),i,i,i,i,i,i,i,i,10,i,i,B.M,i,i,!0,i,0.2,i,i,i,i,i,i),i,i) -r=A.a8(i,8,i) -q=this.c -p=q==null -o=p?i:q.a -if(o==null)o="0.00" -o=A.ai("$"+o,i,i,i,A.fD().$3$color$fontSize$fontWeight(B.l,36,B.M),i,i) -n=A.a8(i,16,i) -m=A.ar(B.d.aY(25.5),B.l.A()>>>16&255,B.l.A()>>>8&255,B.l.A()&255) -l=A.bK(9999) -k=A.ce(B.hN,A.ar(h,B.l.A()>>>16&255,B.l.A()>>>8&255,B.l.A()&255),i,14) -j=A.a8(i,i,4) -q=p?i:q.d -if(q==null)q="0.00" -p=t.p -return A.bL(i,A.bJ(A.c([s,r,o,n,A.bL(i,A.bw(A.c([k,j,A.ai("\u603b\u76c8\u4e8f: "+q+" USDT",i,i,i,A.ay(i,i,A.ar(h,B.l.A()>>>16&255,B.l.A()>>>8&255,B.l.A()&255),i,i,i,i,i,i,i,i,12,i,i,i,i,i,!0,i,i,i,i,i,i,i,i),i,i)],p),B.o,B.m,B.ak,i),B.v,i,i,new A.bm(m,i,i,l,i,i,i,B.G),i,i,i,new A.a2(16,8,16,8),i,i,i)],p),B.o,B.m,B.n),B.v,i,i,new A.bm(i,i,i,f,g,B.Qq,i,B.G),i,i,i,new A.a2(32,32,32,32),i,i,1/0)}} -A.a98.prototype={ -K(a){var s,r,q=null,p=A.P(a).ax,o=A.P(a),n=p.RG -if(n==null)n=p.k2 -s=A.bK(12) -r=this.c -return A.bL(q,A.bw(new A.mc(r,A.a6(r).i("mc<1>")).gfj().hI(0,new A.aK9(this,p,o.ax.a===B.R),t.nx).eA(0),B.o,B.m,B.n,q),B.v,q,q,new A.bm(n,q,q,s,q,q,q,B.G),q,q,q,new A.a2(4,4,4,4),q,q,q)}} -A.aK9.prototype={ -$1(a){var s,r,q,p=this,o=null,n=a.a,m=p.a,l=n===m.d,k=l?p.b.b:B.D,j=A.bK(8) -if(l){s=p.c?0.15:0.08 -s=A.c([new A.cm(0,B.az,p.b.b.aI(s),B.f,10)],t.V)}else s=o -r=p.b -if(l)r=r.c -else{q=r.rx -r=q==null?r.k3:q}return A.cJ(A.eP(o,A.uE(A.dp(A.ai(a.b,o,o,o,A.ay(o,o,r,o,o,o,o,o,o,o,o,o,o,o,l?B.b9:B.p,o,o,!0,o,o,o,o,o,o,o,o),o,o),o,o),o,new A.bm(k,o,o,j,s,o,o,B.G),B.a3,o,o,o,new A.a2(0,12,0,12),o),B.W,!1,o,o,o,o,o,o,o,o,o,o,o,o,o,o,new A.aK8(m,n),o,o,o,o,o,o),1,o)}, -$S:566} -A.aK8.prototype={ -$0(){return this.a.e.$1(this.b)}, -$S:0} -A.a2P.prototype={ -K(a){var s,r=null,q=this.c.d,p=A.P(a).ax,o=p.rx,n=p.b,m=t.p -n=A.bw(A.c([A.ai("USDT \u4f59\u989d",r,r,r,A.ay(r,r,o==null?p.k3:o,r,r,r,r,r,r,r,r,12,r,r,r,r,r,!0,r,r,r,r,r,r,r,r),r,r),A.eP(r,A.bw(A.c([A.ai("\u5145\u63d0\u8bb0\u5f55",r,r,r,A.ay(r,r,n,r,r,r,r,r,r,r,r,12,r,r,r,r,r,!0,r,r,r,r,r,r,r,r),r,r),A.ce(B.eb,n,r,14)],m),B.o,B.m,B.n,r),B.W,!1,r,r,r,r,r,r,r,r,r,r,r,r,r,r,new A.aC4(a),r,r,r,r,r,r)],m),B.o,B.b4,B.n,r) -o=A.a8(r,8,r) -s=q==null?r:q.c -if(s==null)s="0.00" -return A.kD(r,A.bJ(A.c([n,o,A.ai(s,r,r,r,A.fD().$3$color$fontSize$fontWeight(p.k3,28,B.M),r,r),A.a8(r,24,r),A.bw(A.c([A.cJ(A.ik(44,B.Py,new A.aC5(a),!1,"\u5145\u503c",B.DV,r),1,r),A.a8(r,r,8),A.cJ(A.ik(44,B.PL,new A.aC6(a,q),!1,"\u63d0\u73b0",B.a37,r),1,r),A.a8(r,r,8),A.cJ(A.ik(44,B.PM,new A.aC7(a),!1,"\u5212\u8f6c",B.dv,r),1,r)],m),B.o,B.m,B.n,r)],m),B.T,B.m,B.n),r,new A.a2(28,28,28,28))}} -A.aC4.prototype={ -$0(){var s=A.w9(new A.aC3(),null,t.z) -return A.ct(this.a,!1).o5(s)}, -$S:0} -A.aC3.prototype={ -$1(a){return B.Po}, -$S:567} -A.aC5.prototype={ -$0(){return A.biE(this.a)}, -$S:0} -A.aC6.prototype={ -$0(){var s=this.b -s=s==null?null:s.c -return A.biH(this.a,s)}, -$S:0} -A.aC7.prototype={ -$0(){return A.biG(this.a)}, -$S:0} -A.a9H.prototype={ -K(a){var s=null,r=A.c([A.ai("\u6301\u4ed3\u5217\u8868",s,s,s,A.fD().$3$color$fontSize$fontWeight(A.P(a).ax.k3,16,B.M),s,s),A.a8(s,16,s)],t.p),q=this.c,p=J.bk(q) -if(p.gan(q))r.push(B.ajb) -else r.push(A.aRg(new A.aKX(this),p.gH(q),s,B.DX,new A.aKY(),!0)) -return A.kD(s,A.bJ(r,B.T,B.m,B.n),s,B.bj)}} -A.aKY.prototype={ -$2(a,b){var s=null -return A.bL(s,s,B.v,B.mb,s,s,s,1,new A.a2(56,0,0,0),s,s,s,s)}, -$S:568} -A.aKX.prototype={ -$2(a,b){return new A.yu(J.iQ(this.a.c,b),null)}, -$S:569} -A.a2n.prototype={ -K(a){var s=null,r=A.P(a).ax,q=r.rx,p=q==null,o=A.ce(B.fi,p?r.k3:q,s,48),n=A.a8(s,12,s) -return A.dp(new A.bR(new A.a2(32,32,32,32),A.bJ(A.c([o,n,A.ai("\u6682\u65e0\u6301\u4ed3",s,s,s,A.ay(s,s,p?r.k3:q,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s),s,s)],t.p),B.o,B.m,B.n),s),s,s)}} -A.yu.prototype={ -K(a){var s,r,q,p,o=null,n=A.P(a).ax,m=A.P(a),l=n.b,k=l.aI(0.1),j=A.bK(8),i=this.c -j=A.bL(o,A.dp(A.ai(J.b5q(i.gvs(),0,1),o,o,o,A.ay(o,o,l,o,o,o,o,o,o,o,o,o,o,o,B.M,o,o,!0,o,o,o,o,o,o,o,o),o,o),o,o),B.v,o,o,new A.bm(k,o,o,j,o,o,o,B.G),o,40,o,o,o,o,40) -k=A.a8(o,o,12) -l=n.k3 -s=A.ai(i.gvs(),o,o,o,A.fD().$3$color$fontSize$fontWeight(l,14,B.b9),o,o) -r=i.gLO() -q=n.rx -p=t.p -q=A.cJ(A.bJ(A.c([s,A.ai("\u6570\u91cf: "+r,o,o,o,A.ay(o,o,q==null?l:q,o,o,o,o,o,o,o,o,12,o,o,o,o,o,!0,o,o,o,o,o,o,o,o),o,o)],p),B.T,B.m,B.n),1,o) -l=A.ai(A.j(i.gm0())+" USDT",o,o,o,A.ay(o,o,l,o,o,o,o,o,o,o,o,12,o,o,o,o,o,!0,o,o,o,o,o,o,o,o),o,o) -r=i.gBm() -if(i.gKU())m=m.ax.a===B.R?B.ac:B.bU -else m=B.c1 -return new A.bR(new A.a2(0,8,0,8),A.bw(A.c([j,k,q,A.bJ(A.c([l,A.ai(r,o,o,o,A.ay(o,o,m,o,o,o,o,o,o,o,o,12,o,o,B.b9,o,o,!0,o,o,o,o,o,o,o,o),o,o)],p),B.co,B.m,B.n)],p),B.o,B.m,B.n,o),o)}} -A.aOb.prototype={ -$1(a){var s,r=this,q=null,p=A.bK(24),o=r.a,n=o.k3,m=A.ai("Deposit (\u5145\u503c)",q,q,q,A.fD().$3$color$fontSize$fontWeight(n,24,B.M),q,q),l=A.a8(q,4,q),k=o.rx,j=t.p -k=A.bJ(A.c([m,l,A.ai("Asset: USDT",q,q,q,A.ay(q,q,k==null?n:k,q,q,q,q,q,q,q,q,12,q,q,q,q,q,!0,q,0.1,q,q,q,q,q,q),q,q)],j),B.T,B.m,B.n) -n=o.R8 -if(n==null)n=o.k2 -m=A.bK(8) -l=r.b -s=r.c -return A.PP(B.D,A.kD(p,A.bJ(A.c([A.bw(A.c([k,A.bL(q,A.ce(B.fi,o.y,q,q),B.v,q,q,new A.bm(n,q,q,m,q,q,q,B.G),q,q,q,new A.a2(8,8,8,8),q,q,q)],j),B.o,B.b4,B.n,q),A.a8(q,24,q),A.x5(A.l0(s,"amount",B.fD,B.aeI,q,!1,B.af5,A.abV()),l),A.a8(q,24,q),A.bw(A.c([A.cJ(A.ik(48,q,new A.aO9(a),!1,"\u53d6\u6d88",B.dv,q),1,q),A.a8(q,q,8),A.cJ(A.ik(48,q,new A.aOa(l,a,r.d,s),!0,"\u4e0b\u4e00\u6b65",B.hQ,q),1,q)],j),B.o,B.m,B.n,q)],j),B.T,B.m,B.ak),q,new A.a2(24,24,24,24)))}, -$S:73} -A.aO9.prototype={ -$0(){return A.ct(this.a,!1).ct()}, -$S:0} -A.aOa.prototype={ -$0(){var s=0,r=A.I(t.H),q=this,p,o,n -var $async$$0=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:s=q.a.gS().op()?2:3 -break -case 2:A.ct(q.b,!1).ct() -p=q.c -s=4 -return A.p(A.dx(p,!1,t.E).pg(q.d.a.a),$async$$0) -case 4:o=b -if(p.e!=null)if(o.a&&o.c!=null){n=o.c -n.toString -A.biF(p,n)}else A.aOf(p,"\u7533\u8bf7\u5931\u8d25",o.b) -case 3:return A.G(null,r)}}) -return A.H($async$$0,r)}, -$S:10} -A.aOe.prototype={ -$1(a){var s,r,q,p,o=this,n=null,m=A.bK(24),l=o.b,k=l.k3,j=t.p,i=A.bw(A.c([A.aX2(o.a?B.ac:B.bU,B.rC,24),A.a8(n,n,8),A.ai("\u5145\u503c\u7533\u8bf7\u6210\u529f",n,n,n,A.fD().$3$color$fontSize$fontWeight(k,20,B.M),n,n)],j),B.o,B.m,B.n,n),h=A.a8(n,24,n),g=o.c,f=A.a8(n,8,n),e=A.a8(n,24,n) -l=l.rx -l=A.ai("\u8bf7\u5411\u4ee5\u4e0b\u5730\u5740\u8f6c\u8d26:",n,n,n,A.ay(n,n,l==null?k:l,n,n,n,n,n,n,n,n,12,n,n,n,n,n,!0,n,n,n,n,n,n,n,n),n,n) -k=A.a8(n,8,n) -s=A.a8(n,16,n) -r=A.ar(B.d.aY(25.5),B.cn.A()>>>16&255,B.cn.A()>>>8&255,B.cn.A()&255) -q=A.bK(8) -p=A.dB(A.ar(51,B.cn.A()>>>16&255,B.cn.A()>>>8&255,B.cn.A()&255),1) -return A.PP(B.D,A.kD(m,A.bJ(A.c([i,h,new A.I7("\u8ba2\u5355\u53f7",g,!1,n),f,new A.I7("\u5145\u503c\u91d1\u989d",o.d+" USDT",!0,n),e,l,k,new A.aam(o.e,o.f,n),s,A.bL(n,A.bw(A.c([A.ce(B.PG,B.cn,n,16),A.a8(n,n,8),A.cJ(A.ai('\u8f6c\u8d26\u5b8c\u6210\u540e\u8bf7\u70b9\u51fb"\u5df2\u6253\u6b3e"\u6309\u94ae\u786e\u8ba4',n,n,n,A.ay(n,n,B.cn,n,n,n,n,n,n,n,n,12,n,n,n,n,n,!0,n,n,n,n,n,n,n,n),n,n),1,n)],j),B.o,B.m,B.n,n),B.v,n,n,new A.bm(r,n,p,q,n,n,n,B.G),n,n,n,new A.a2(8,8,8,8),n,n,n),A.a8(n,24,n),A.bw(A.c([A.cJ(A.ik(44,n,new A.aOc(a),!1,"\u7a0d\u540e\u786e\u8ba4",B.dv,n),1,n),A.a8(n,n,8),A.cJ(A.ik(44,n,new A.aOd(a,o.r,g),!0,"\u5df2\u6253\u6b3e",B.hQ,n),1,n)],j),B.o,B.m,B.n,n)],j),B.T,B.m,B.ak),n,new A.a2(24,24,24,24)))}, -$S:73} -A.aOc.prototype={ -$0(){return A.ct(this.a,!1).ct()}, -$S:0} -A.aOd.prototype={ -$0(){var s=0,r=A.I(t.H),q=this,p,o,n,m -var $async$$0=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:A.ct(q.a,!1).ct() -p=q.b -s=2 -return A.p(A.dx(p,!1,t.E).kW(q.c),$async$$0) -case 2:o=b -if(p.e!=null){n=o.a -m=n?"\u786e\u8ba4\u6210\u529f":"\u786e\u8ba4\u5931\u8d25" -A.aOf(p,m,n?"\u8bf7\u7b49\u5f85\u7ba1\u7406\u5458\u5ba1\u6838":o.b)}return A.G(null,r)}}) -return A.H($async$$0,r)}, -$S:10} -A.I7.prototype={ -K(a){var s,r=null,q=A.P(a).ax,p=q.rx -p=A.ai(this.c,r,r,r,A.ay(r,r,p==null?q.k3:p,r,r,r,r,r,r,r,r,12,r,r,r,r,r,!0,r,r,r,r,r,r,r,r),r,r) -s=this.e?B.M:B.p -return A.bw(A.c([p,A.ai(this.d,r,r,r,A.ay(r,r,q.k3,r,r,r,r,r,r,r,r,12,r,r,s,r,r,!0,r,r,r,r,r,r,r,r),r,r)],t.p),B.o,B.b4,B.n,r)}} -A.aam.prototype={ -K(a){var s,r,q,p,o,n,m,l,k=null,j=A.P(a).ax,i=j.R8 -if(i==null)i=j.k2 -s=A.bK(8) -r=j.to -if(r==null){r=j.n -if(r==null)r=j.k3}r=A.dB(r.aI(0.3),1) -q=j.k3 -p=A.cJ(A.ai(this.c,k,k,k,A.ay(k,k,q,k,k,k,k,k,"monospace",k,k,12,k,k,k,k,k,!0,k,k,k,k,k,k,k,k),k,k),1,k) -o=j.b -n=o.aI(0.1) -m=A.bK(4) -l=t.p -m=A.bw(A.c([p,A.eP(k,A.bL(k,A.ce(B.DC,o,k,16),B.v,k,k,new A.bm(n,k,k,m,k,k,k,B.G),k,k,k,new A.a2(4,4,4,4),k,k,k),B.W,!1,k,k,k,k,k,k,k,k,k,k,k,k,k,k,new A.aLz(this,a),k,k,k,k,k,k)],l),B.o,B.m,B.n,k) -n=A.a8(k,8,k) -o=j.rx -return A.bL(k,A.bJ(A.c([m,n,A.ai("\u7f51\u7edc: "+this.d,k,k,k,A.ay(k,k,o==null?q:o,k,k,k,k,k,k,k,k,11,k,k,k,k,k,!0,k,k,k,k,k,k,k,k),k,k)],l),B.T,B.m,B.n),B.v,k,k,new A.bm(i,k,r,s,k,k,k,B.G),k,k,k,new A.a2(16,16,16,16),k,k,k)}} -A.aLz.prototype={ -$0(){A.v0(new A.nF(this.a.c)) -this.b.aA(t.Pu).f.qo(B.a9x)}, -$S:0} -A.aOt.prototype={ -$1(a){var s,r,q,p,o=this,n=null,m=A.bK(24),l=o.a,k=l.b,j=k.aI(0.1),i=A.bK(8),h=l.k3,g=t.p -i=A.bw(A.c([A.bL(n,A.ce(B.fi,k,n,n),B.v,n,n,new A.bm(j,n,n,i,n,n,n,B.G),n,n,n,new A.a2(8,8,8,8),n,n,n),A.a8(n,n,8),A.ai("\u63d0\u73b0 (Withdraw)",n,n,n,A.fD().$3$color$fontSize$fontWeight(h,20,B.M),n,n)],g),B.o,B.m,B.n,n) -j=A.a8(n,4,n) -l=l.rx -k=l==null -j=A.c([i,j,A.ai("Securely transfer your assets to an external wallet address.",n,n,n,A.ay(n,n,k?h:l,n,n,n,n,n,n,n,n,12,n,n,n,n,n,!0,n,n,n,n,n,n,n,n),n,n)],g) -i=o.b -if(i!=null){s=A.a8(n,16,n) -r=A.ar(B.d.aY(25.5),B.ac.A()>>>16&255,B.ac.A()>>>8&255,B.ac.A()&255) -q=A.bK(9999) -p=A.dB(A.ar(51,B.ac.A()>>>16&255,B.ac.A()>>>8&255,B.ac.A()&255),1) -B.b.a_(j,A.c([s,A.bL(n,A.bw(A.c([A.ai("\u53ef\u7528\u4f59\u989d: ",n,n,n,A.ay(n,n,k?h:l,n,n,n,n,n,n,n,n,10,n,n,n,n,n,!0,n,0.1,n,n,n,n,n,n),n,n),A.ai(i+" USDT",n,n,n,A.ay(n,n,B.ac,n,n,n,n,n,n,n,n,12,n,n,B.M,n,n,!0,n,n,n,n,n,n,n,n),n,n)],g),B.o,B.m,B.ak,n),B.v,n,n,new A.bm(r,n,p,q,n,n,n,B.G),n,n,n,new A.a2(16,8,16,8),n,n,n)],g))}j.push(A.a8(n,24,n)) -i=o.c -s=o.d -r=o.e -q=o.f -j.push(A.x5(A.bJ(A.c([A.l0(s,"amount",B.fD,B.aeO,n,!1,B.JD,A.abV()),A.a8(n,16,n),A.l0(r,"address",n,B.af7,n,!1,B.JB,new A.aOq()),A.a8(n,16,n),A.l0(q,"contact",n,B.JC,n,!1,B.aeL,n)],g),B.o,B.m,B.n),i)) -j.push(A.a8(n,24,n)) -j.push(A.bw(A.c([A.cJ(A.ik(44,n,new A.aOr(a),!1,"\u53d6\u6d88",B.dv,n),1,n),A.a8(n,n,8),A.cJ(A.ik(44,n,new A.aOs(i,a,o.r,s,r,q),!0,"\u63d0\u4ea4",B.hQ,n),1,n)],g),B.o,B.m,B.n,n)) -j.push(A.a8(n,16,n)) -i=k?h:l -s=B.d.aY(127.5) -i=A.ce(B.PO,A.ar(s,i.A()>>>16&255,i.A()>>>8&255,i.A()&255),n,12) -r=A.a8(n,n,4) -if(k)l=h -j.push(A.bw(A.c([i,r,A.ai("End-to-End Encrypted Transaction",n,n,n,A.ay(n,n,A.ar(s,l.A()>>>16&255,l.A()>>>8&255,l.A()&255),n,n,n,n,n,n,n,n,10,n,n,n,n,n,!0,n,0.1,n,n,n,n,n,n),n,n)],g),B.o,B.cN,B.n,n)) -return A.PP(B.D,A.kD(m,A.oJ(A.bJ(j,B.T,B.m,B.ak),n,n,n,B.L),n,new A.a2(24,24,24,24)))}, -$S:73} -A.aOq.prototype={ -$1(a){return A.b_b(a,"\u63d0\u73b0\u5730\u5740")}, -$S:125} -A.aOr.prototype={ -$0(){return A.ct(this.a,!1).ct()}, -$S:0} -A.aOs.prototype={ -$0(){var s=0,r=A.I(t.H),q=this,p,o,n,m,l,k -var $async$$0=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:s=q.a.gS().op()?2:3 -break -case 2:A.ct(q.b,!1).ct() -p=q.c -o=A.dx(p,!1,t.E) -n=q.d.a.a -m=q.e.a.a -l=q.f.a.a -s=4 -return A.p(o.q9(n,m,l.length!==0?l:null),$async$$0) -case 4:k=b -if(p.e!=null){o=k.a -n=o?"\u7533\u8bf7\u6210\u529f":"\u7533\u8bf7\u5931\u8d25" -A.aOf(p,n,o?"\u8bf7\u7b49\u5f85\u7ba1\u7406\u5458\u5ba1\u6279":k.b)}case 3:return A.G(null,r)}}) -return A.H($async$$0,r)}, -$S:10} -A.aOp.prototype={ -$1(a){var s=this -return new A.tu(new A.aOo(s.a,s.b,s.c,s.d,s.e),null)}, -$S:571} -A.aOo.prototype={ -$2(a,b){var s=this,r=null,q=A.bK(24),p=A.ai("\u5212\u8f6c",r,r,r,A.fD().$3$color$fontSize$fontWeight(s.b.k3,20,B.M),r,r),o=A.a8(r,24,r),n=s.a,m=n.a,l=t.p,k=s.c,j=s.d -return A.PP(B.D,A.kD(q,A.bJ(A.c([p,o,A.bw(A.c([A.cJ(new A.Hz("\u8d44\u91d1\u2192\u4ea4\u6613",m===1,new A.aOk(n,b),r),1,r),A.a8(r,r,8),A.cJ(new A.Hz("\u4ea4\u6613\u2192\u8d44\u91d1",m===2,new A.aOl(n,b),r),1,r)],l),B.o,B.m,B.n,r),A.a8(r,24,r),A.x5(A.l0(j,"amount",B.fD,B.aeU,r,!1,B.afg,A.abV()),k),A.a8(r,24,r),A.bw(A.c([A.cJ(A.ik(44,r,new A.aOm(a),!1,"\u53d6\u6d88",B.dv,r),1,r),A.a8(r,r,8),A.cJ(A.ik(44,r,new A.aOn(n,k,a,s.e,j),!0,"\u786e\u8ba4",B.hQ,r),1,r)],l),B.o,B.m,B.n,r)],l),B.T,B.m,B.ak),r,new A.a2(24,24,24,24)))}, -$S:572} -A.aOk.prototype={ -$0(){return this.b.$1(new A.aOj(this.a))}, -$S:0} -A.aOj.prototype={ -$0(){return this.a.a=1}, -$S:0} -A.aOl.prototype={ -$0(){return this.b.$1(new A.aOi(this.a))}, -$S:0} -A.aOi.prototype={ -$0(){return this.a.a=2}, -$S:0} -A.aOm.prototype={ -$0(){return A.ct(this.a,!1).ct()}, -$S:0} -A.aOn.prototype={ -$0(){var s=0,r=A.I(t.H),q=this,p,o,n,m -var $async$$0=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:s=q.b.gS().op()?2:3 -break -case 2:A.ct(q.c,!1).ct() -p=q.d -o=A.dx(p,!1,t.E) -n=q.a.a -s=4 -return A.p(o.jT(q.e.a.a,n),$async$$0) -case 4:m=b -if(p.e!=null){o=m.a?"\u5212\u8f6c\u6210\u529f":"\u5212\u8f6c\u5931\u8d25" -A.aOf(p,o,m.b)}case 3:return A.G(null,r)}}) -return A.H($async$$0,r)}, -$S:10} -A.Hz.prototype={ -K(a){var s,r,q,p,o,n=null,m=A.P(a).ax,l=this.d -if(l)s=m.b.aI(0.15) -else{s=m.R8 -if(s==null)s=m.k2}r=A.bK(8) -q=l?A.dB(m.b.aI(0.3),1):n -p=A.c([],t.p) -if(l)p.push(A.ce(B.a0T,m.b,n,14)) -else p.push(A.a8(n,n,14)) -p.push(A.a8(n,n,4)) -if(l)o=m.b -else{o=m.rx -if(o==null)o=m.k3}p.push(A.ai(this.c,n,n,n,A.ay(n,n,o,n,n,n,n,n,n,n,n,12,n,n,l?B.b9:B.p,n,n,!0,n,n,n,n,n,n,n,n),n,n)) -return A.eP(n,A.uE(A.dp(A.bw(p,B.o,B.m,B.ak,n),n,n),n,new A.bm(s,n,q,r,n,n,n,B.G),B.a3,n,n,n,new A.a2(0,12,0,12),n),B.W,!1,n,n,n,n,n,n,n,n,n,n,n,n,n,n,this.e,n,n,n,n,n,n)}} -A.aOh.prototype={ -$1(a){var s=null,r=A.bK(24),q=this.b,p=q.k3,o=t.p,n=A.c([A.ai(this.a,s,s,s,A.fD().$3$color$fontSize$fontWeight(p,20,B.M),s,s)],o),m=A.a8(s,8,s) -q=q.rx -B.b.a_(n,A.c([m,A.ai(this.c,s,s,s,A.ay(s,s,q==null?p:q,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s),B.bQ,s)],o)) -n.push(A.a8(s,24,s)) -n.push(A.a8(A.ik(44,s,new A.aOg(a),!1,"\u786e\u5b9a",B.hQ,s),s,1/0)) -return A.PP(B.D,A.kD(r,A.bJ(n,B.o,B.m,B.ak),s,new A.a2(24,24,24,24)))}, -$S:73} -A.aOg.prototype={ -$0(){return A.ct(this.a,!1).ct()}, -$S:0} -A.L5.prototype={ -aw(){this.b3() -this.ka()}, -dA(){var s=this.dh$ -if(s!=null){s.a7() -s.d8() -this.dh$=null}this.iF()}} -A.r_.prototype={ -ah(){return new A.Il(new A.by(null,t.jV))}} -A.Il.prototype={ -K(a){var s=this,r=null,q=A.dd(a,!0),p=q.cy,o=p.as,n=t.p -return A.ow(r,r,A.dp(new A.dX(B.KR,new A.bR(new A.a2(24,24,24,24),A.x5(A.bJ(A.c([A.bJ(A.c([A.ce(B.hN,q.a.r,r,64),A.a8(r,24,r),A.ai("\u6a21\u62df\u6240",r,r,r,p.b,B.bQ,r),A.a8(r,8,r),A.ai("\u865a\u62df\u8d27\u5e01\u6a21\u62df\u4ea4\u6613\u5e73\u53f0",r,r,r,o,B.bQ,r)],n),B.o,B.m,B.n),A.a8(r,48,r),A.l0(r,"username",r,B.afc,B.PT,!1,B.afa,s.ganI()),A.a8(r,16,r),A.l0(r,"password",r,B.aeW,B.PS,!0,B.aeX,s.ganG()),A.a8(r,24,r),s.a9v(),A.a8(r,16,r),A.bw(A.c([A.ai("\u8fd8\u6ca1\u6709\u8d26\u53f7\uff1f",r,r,r,o,r,r),new A.k0(s.gahQ(),r,B.aeV,B.a6N,r,r,r,r,r,r,r,r,r,!1,r,r,r,r,r,r,!0,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r)],n),B.o,B.cN,B.n,r)],n),B.cI,B.cN,B.n),s.d),r),r),r,r),r)}, -a9v(){return A.ks(new A.aDV(this),t.W0)}, -anJ(a){var s=a.length -if(s===0)return"\u8bf7\u8f93\u5165\u7528\u6237\u540d" -if(s<3)return"\u7528\u6237\u540d\u81f3\u5c11 3 \u4e2a\u5b57\u7b26" -return null}, -anH(a){var s=a.length -if(s===0)return"\u8bf7\u8f93\u5165\u5bc6\u7801" -if(s<6)return"\u5bc6\u7801\u81f3\u5c11 6 \u4e2a\u5b57\u7b26" -return null}, -yz(a){return this.aeo(a)}, -aeo(a){var s=0,r=A.I(t.H),q,p=this,o,n,m -var $async$yz=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:m=p.d -if(!m.gS().op()){s=1 -break}o=m.gS().gp() -s=3 -return A.p(a.wn(o.h(0,"username"),o.h(0,"password")),$async$yz) -case 3:n=c -if(p.c==null){s=1 -break}if(n.a)p.ahP() -else{m=n.b -p.alL(m)}case 1:return A.G(q,r)}}) -return A.H($async$yz,r)}, -ahP(){var s=this.c -s.toString -A.ct(s,!1).LM(A.w9(new A.aDW(),null,t.z),new A.aDX())}, -ahR(){var s,r=this.c -r.toString -s=A.w9(new A.aDY(),null,t.z) -A.ct(r,!1).o5(s)}, -alL(a){var s=this.c -s.toString -A.hT(new A.aE_(a),s,t.z)}} -A.aDV.prototype={ -$3(a,b,c){var s=b.d,r=s?null:new A.aDU(this.a,b) -return A.mK(s?B.a9i:B.aeN,r)}, -$S:574} -A.aDU.prototype={ -$0(){return this.a.yz(this.b)}, -$S:0} -A.aDW.prototype={ -$1(a){return B.ki}, -$S:217} -A.aDX.prototype={ -$1(a){return!1}, -$S:116} -A.aDY.prototype={ -$1(a){return B.a5r}, -$S:576} -A.aE_.prototype={ -$1(a){var s=null,r=A.ai(this.a,s,s,s,s,s,s) -return A.x4(A.c([A.mK(B.oT,new A.aDZ(a))],t.p),r,B.af0)}, -$S:31} -A.aDZ.prototype={ -$0(){return A.ct(this.a,!1).ct()}, -$S:0} -A.rK.prototype={ -ah(){var s=$.af() -return new A.J4(new A.eD(B.b6,s),new A.eD(B.b6,s),new A.eD(B.b6,s),new A.by(null,t.am))}} -A.J4.prototype={ -l(){var s=this,r=s.d,q=r.P$=$.af() -r.L$=0 -r=s.e -r.P$=q -r.L$=0 -r=s.f -r.P$=q -r.L$=0 -s.aQ()}, -K(a){var s,r=this,q=null,p=A.aUN(B.D,0,A.BX(q,q,B.PR,q,q,new A.aFN(a),q,q,q),q),o=A.aS7(r.d,B.PY,!1,B.oS,new A.aFO()),n=r.w -n=A.aS7(r.e,A.Rc(q,q,q,q,q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,"\u8bf7\u8f93\u5165\u5bc6\u7801(\u81f3\u5c116\u4f4d)",q,q,q,q,q,q,q,q,q,!0,!0,!1,q,B.rI,q,q,q,q,q,q,A.BX(q,q,A.ce(n?B.rG:B.rF,B.h6,q,q),q,q,new A.aFP(r),q,q,q),q,q,q,q,q),n,B.oS,new A.aFQ()) -s=r.x -return A.ow(p,B.qw,A.El(!0,A.oJ(A.aW6(q,q,A.bJ(A.c([B.My,B.i8,B.Mx,B.a9k,o,B.i8,n,B.i8,A.aS7(r.f,A.Rc(q,q,q,q,q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,"\u8bf7\u518d\u6b21\u8f93\u5165\u5bc6\u7801",q,q,q,q,q,q,q,q,q,!0,!0,!1,q,B.rI,q,q,q,q,q,q,A.BX(q,q,A.ce(s?B.rG:B.rF,B.h6,q,q),q,q,new A.aFR(r),q,q,q),q,q,q,q,q),s,B.oS,new A.aFS(r)),B.a9j,A.ks(new A.aFT(r),t.W0),B.i8,A.dp(A.awz(B.af4,new A.aFU(a),q),q,q)],t.p),B.cI,B.m,B.n),r.r,q,q,q),q,B.de,q,B.L),!0),q)}, -yB(){var s=0,r=A.I(t.H),q,p=this,o,n,m,l -var $async$yB=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:if(!p.r.gS().x8()){s=1 -break}o=p.c -o.toString -s=3 -return A.p(A.dx(o,!1,t.W0).o7(B.c.hS(p.d.a.a),p.e.a.a),$async$yB) -case 3:n=b -if(n.a&&p.c!=null){p.c.aA(t.Pu).f.qo(B.a9y) -o=p.c -o.toString -m=A.w9(new A.aFK(),null,t.z) -o=A.ct(o,!1) -m=A.aGR(m,B.pn,!1,null) -l=o.e -l.a_P(0,A.km()).Xv(null,!0,!0) -l.a.push(m) -l.a7() -o.ur() -o.y8()}else{o=p.c -if(o!=null){o=o.aA(t.Pu).f -m=n.b -o.qo(A.avG(null,null,null,null,null,B.N,null,A.ai(m,null,null,null,null,null,null),null,B.eR,null,null,null,null,null,null,null,null,null,null))}}case 1:return A.G(q,r)}}) -return A.H($async$yB,r)}} -A.aFN.prototype={ -$0(){A.ct(this.a,!1).q0(null) -return null}, -$S:0} -A.aFO.prototype={ -$1(a){var s -if(a==null||a.length===0)return"\u8bf7\u8f93\u5165\u8d26\u53f7" -s=a.length -if(s<4)return"\u8d26\u53f7\u81f3\u5c114\u4f4d" -if(s>20)return"\u8d26\u53f7\u6700\u591a20\u4f4d" -return null}, -$S:55} -A.aFP.prototype={ -$0(){var s=this.a -s.ar(new A.aFM(s))}, -$S:0} -A.aFM.prototype={ -$0(){var s=this.a -s.w=!s.w}, -$S:0} -A.aFQ.prototype={ -$1(a){if(a==null||a.length===0)return"\u8bf7\u8f93\u5165\u5bc6\u7801" -if(a.length<6)return"\u5bc6\u7801\u81f3\u5c116\u4f4d" -return null}, -$S:55} -A.aFR.prototype={ -$0(){var s=this.a -s.ar(new A.aFL(s))}, -$S:0} -A.aFL.prototype={ -$0(){var s=this.a -s.x=!s.x}, -$S:0} -A.aFS.prototype={ -$1(a){if(a==null||a.length===0)return"\u8bf7\u518d\u6b21\u8f93\u5165\u5bc6\u7801" -if(a!==this.a.e.a.a)return"\u4e24\u6b21\u5bc6\u7801\u4e0d\u4e00\u81f4" -return null}, -$S:55} -A.aFT.prototype={ -$3(a,b,c){var s=null,r=b.d?s:this.a.gaf9(),q=A.b7J(s,s,s,s,s,s,s,s,s,s,s,s,B.hl,s,new A.dI(A.bK(24),B.x),s,s,s,s,s) -return new A.vr(r,s,s,s,q,s,s,!1,s,!0,s,b.d?B.a9h:B.af1,s)}, -$S:578} -A.aFU.prototype={ -$0(){A.ct(this.a,!1).q0(null) -return null}, -$S:0} -A.aFK.prototype={ -$1(a){return B.ki}, -$S:217} -A.BV.prototype={ -ah(){return new A.I3(null)}} -A.I3.prototype={ -gjV(){return!0}, -aw(){this.a7K() -$.a1.k4$.push(new A.aD7(this))}, -K(a){var s,r -this.lD(a) -s=A.P(a).ax -r=s.aB -if(r==null)r=s.k2 -return A.ow(null,r,A.ks(new A.aD6(this,s),t.E),null)}, -alK(){return this.Uy("\u5145\u503c",new A.aD_(this))}, -alR(){var s=$.af(),r=this.c -r.toString -A.hT(new A.aD4(this,new A.by(null,t.jV),new A.eD(B.b6,s),new A.eD(B.b6,s),new A.eD(B.b6,s)),r,t.z)}, -alP(){return this.Uy("\u5212\u8f6c",new A.aD0(this))}, -Uy(a,b){var s=$.af(),r=this.c -r.toString -A.hT(new A.aCZ(a,new A.by(null,t.jV),new A.eD(B.b6,s),b),r,t.z)}} -A.aD7.prototype={ -$1(a){var s,r=this.a.c -r.toString -s=A.dx(r,!1,t.E) -s.avc() -s.avh() -return null}, -$S:4} -A.aD6.prototype={ -$3(a,b,c){var s,r,q,p,o,n,m,l=null,k=A.Qf(A.Mo(new A.a2W(l)),l,A.cI(3e5,0)) -k=k.rd(A.aZt(A.ap4(B.f,-0.1,l),l,l,l,A.ap4(B.f,0,l))) -s=A.a8(l,16,l) -r=A.Mo(new A.a2T(b.c,l)) -q=A.cI(4e5,0) -q=A.Qf(r,A.cI(1e5,0),q) -r=q.rd(A.aZt(A.ap4(B.f,l,0.1),l,l,l,A.ap4(B.f,l,0))) -q=A.a8(l,24,l) -p=this.a -p=A.Mo(new A.a55(p.galJ(),p.galQ(),p.galO(),l)) -o=A.cI(5e5,0) -o=A.Qf(p,A.cI(2e5,0),o) -p=A.a8(l,32,l) -n=A.Mo(new A.a32(b.e,l)) -m=A.cI(5e5,0) -return A.aqt(l,A.oJ(A.bJ(A.c([k,s,r,q,o,p,A.Qf(n,A.cI(3e5,0),m)],t.p),B.T,B.m,B.n),l,new A.a2(24,8,24,100),B.ir,B.L),this.b.b,new A.aD5(b))}, -$S:234} -A.aD5.prototype={ -$0(){return this.a.tg(!0)}, -$S:10} -A.aD_.prototype={ -$1(a){var s=this.a.c -s.toString -A.dx(s,!1,t.E).pg(a)}, -$S:28} -A.aD4.prototype={ -$1(a){var s=this,r=null,q=s.b,p=s.c,o=s.d,n=s.e,m=t.p,l=A.x5(A.bJ(A.c([A.l0(p,"amount",B.fD,r,r,!1,B.JD,A.abV()),A.a8(r,12,r),A.l0(o,"address",r,r,r,!1,B.JB,new A.aD1()),A.a8(r,12,r),A.l0(n,"contact",r,r,r,!1,B.JC,r)],m),B.o,B.m,B.ak),q) -return A.aRU(A.c([A.x2(B.fG,new A.aD2(a),r),A.mK(B.lb,new A.aD3(s.a,q,a,p,o,n))],m),l,B.afh)}, -$S:31} -A.aD1.prototype={ -$1(a){return A.b_b(a,"\u63d0\u73b0\u5730\u5740")}, -$S:125} -A.aD2.prototype={ -$0(){return A.ct(this.a,!1).ct()}, -$S:0} -A.aD3.prototype={ -$0(){var s,r,q,p,o=this -if(o.b.gS().op()){A.ct(o.c,!1).ct() -s=o.a.c -s.toString -s=A.dx(s,!1,t.E) -r=B.c.hS(o.d.a.a) -q=B.c.hS(o.e.a.a) -p=B.c.hS(o.f.a.a) -s.q9(r,q,p.length===0?null:p)}}, -$S:0} -A.aD0.prototype={ -$1(a){var s=this.a.c -s.toString -A.dx(s,!1,t.E).jT(a,1)}, -$S:28} -A.aCZ.prototype={ -$1(a){var s=this,r=null,q=s.a,p=A.ai(q,r,r,r,r,r,r),o=s.b,n=s.c -q=A.x5(A.l0(n,"amount",B.fD,r,r,!1,A.ai("\u8bf7\u8f93\u5165"+q+"\u91d1\u989d(USDT)",r,r,r,r,r,r),A.abV()),o) -return A.aRU(A.c([A.x2(B.fG,new A.aCX(a),r),A.mK(B.lb,new A.aCY(o,s.d,n,a))],t.p),q,p)}, -$S:31} -A.aCX.prototype={ -$0(){return A.ct(this.a,!1).ct()}, -$S:0} -A.aCY.prototype={ -$0(){var s=this -if(s.a.gS().op()){s.b.$1(s.c.a.a) -A.ct(s.d,!1).ct()}}, -$S:0} -A.a2W.prototype={ -K(a){return A.ks(new A.aCI(A.P(a).ax),t.W0)}} -A.aCI.prototype={ -$3(a,b,c){var s,r,q=null,p=this.a,o=p.rx -o=A.ai("\u6b22\u8fce\u56de\u6765\uff0c",q,q,q,A.ay(q,q,o==null?p.k3:o,q,q,q,q,q,q,q,q,14,q,q,q,q,q,!0,q,0.5,q,q,q,q,q,q),q,q) -s=A.a8(q,4,q) -r=b.b -r=r==null?q:r.b -if(r==null)r="\u7528\u6237" -return A.bJ(A.c([o,s,A.ai(r,q,q,q,A.ay(q,q,p.k3,q,q,q,q,q,q,q,q,24,q,q,B.M,q,q,!0,q,q,q,q,q,q,q,q),q,q)],t.p),B.T,B.m,B.n)}, -$S:579} -A.a2T.prototype={ -K(a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=null,a0=A.P(a3).ax,a1=A.P(a3).ax.a===B.R,a2=a0.p1 -if(a2==null)a2=a0.k2 -a2=A.ar(B.d.aY(255*(a1?0.4:0.6)),a2.A()>>>16&255,a2.A()>>>8&255,a2.A()&255) -s=A.bK(32) -r=a0.to -if(r==null){r=a0.n -if(r==null)r=a0.k3}r=A.dB(r.aI(0.1),1) -q=a0.b -p=A.mu(a,A.bL(a,a,B.v,a,a,new A.bm(q.aI(a1?0.2:0.1),a,a,a,a,a,a,B.bT),a,128,a,a,a,a,128),a,a,a,-48,-48,a) -o=a1?0.1:0.05 -o=A.mu(-48,A.bL(a,a,B.v,a,a,new A.bm(a0.y.aI(o),a,a,a,a,a,a,B.bT),a,128,a,a,a,a,128),a,a,-48,a,a,a) -n=a0.rx -m=n==null -l=A.ai("\u603b\u8d44\u4ea7",a,a,a,A.ay(a,a,m?a0.k3:n,a,a,a,a,a,a,a,a,11,a,a,B.E,a,a,!0,a,2,a,a,a,a,a,a),a,a) -k=t.p -l=A.bw(A.c([l,B.l5,A.ce(B.a0O,m?a0.k3:n,a,14)],k),B.o,B.m,B.n,a) -j=A.a8(a,8,a) -i=this.c -i=i==null?a:i.a -if(i==null)i="0.00" -h=a0.k3 -q=A.bw(A.c([A.ai(i,a,a,a,A.ay(a,a,h,a,a,a,a,a,a,a,a,48,a,a,B.f0,a,a,!0,a,-2,a,a,a,a,a,a),a,a),B.l5,new A.bR(B.eT,A.ai("USDT",a,a,a,A.ay(a,a,q,a,a,a,a,a,a,a,a,20,a,a,B.M,a,a,!0,a,a,a,a,a,a,a,a),a,a),a)],k),B.co,B.m,B.n,a) -i=A.a8(a,16,a) -g=a1?B.ac.bT(0.1):B.bU.bT(0.1) -f=A.bK(8) -e=A.ce(B.hN,a1?B.ac:B.bU,a,16) -d=A.a8(a,a,4) -c=A.ai("+0.00%",a,a,a,A.ay(a,a,a1?B.ac:B.bU,a,a,a,a,a,a,a,a,14,a,a,B.M,a,a,!0,a,a,a,a,a,a,a,a),a,a) -b=A.a8(a,a,8) -return A.bL(a,A.hE(B.aQ,A.c([p,o,A.bJ(A.c([l,j,q,i,A.bL(a,A.bw(A.c([e,d,c,b,A.ai("Today's PNL",a,a,a,A.ay(a,a,m?h:n,a,a,a,a,a,a,a,a,12,a,a,a,a,a,!0,a,a,a,a,a,a,a,a),a,a)],k),B.o,B.m,B.ak,a),B.v,a,a,new A.bm(g,a,a,f,a,a,a,B.G),a,a,a,new A.a2(8,4,8,4),a,a,a)],k),B.T,B.m,B.n)],k),B.N,B.bM),B.v,a,a,new A.bm(a2,a,r,s,a,a,a,B.G),a,a,a,new A.a2(32,32,32,32),a,a,1/0)}} -A.a55.prototype={ -K(a){var s=null,r=A.P(a).ax,q=r.b,p=A.P(a).ax.a===B.R?B.ac:B.bU -return A.bw(A.c([new A.ph(B.a0N,"\u5145\u503c",q,this.c,s),new A.ph(B.fi,"\u63d0\u73b0",r.y,this.d,s),new A.ph(B.a0U,"\u5212\u8f6c",p,this.e,s),new A.ph(B.hN,"\u4ea4\u6613",q,new A.aFx(),s)],t.p),B.o,B.nJ,B.n,s)}} -A.aFx.prototype={ -$0(){}, -$S:0} -A.ph.prototype={ -ah(){return new A.a54()}} -A.a54.prototype={ -K(a){var s,r,q=this,p=null,o=A.P(a).ax,n=q.a,m=n.f,l=o.R8 -if(l==null)l=o.k2 -n=A.dB(n.e.aI(0.2),1) -s=q.d?A.c([new A.cm(0,B.az,q.a.e.aI(0.4),B.f,20)],t.V):p -r=q.a -s=A.uE(A.ce(r.c,r.e,p,24),p,new A.bm(l,p,n,p,s,p,p,B.bT),B.a3,p,56,p,p,56) -n=A.a8(p,8,p) -r=r.d -l=o.rx -return A.eP(p,A.bJ(A.c([s,n,A.ai(r,p,p,p,A.ay(p,p,l==null?o.k3:l,p,p,p,p,p,p,p,p,11,p,p,B.E,p,p,!0,p,p,p,p,p,p,p,p),p,p)],t.p),B.o,B.m,B.n),B.W,!1,p,p,p,p,p,p,p,p,p,p,p,p,p,p,m,new A.aFu(q),new A.aFv(q),new A.aFw(q),p,p,p)}} -A.aFv.prototype={ -$1(a){var s=this.a -return s.ar(new A.aFs(s))}, -$S:16} -A.aFs.prototype={ -$0(){return this.a.d=!0}, -$S:0} -A.aFw.prototype={ -$1(a){var s=this.a -return s.ar(new A.aFr(s))}, -$S:29} -A.aFr.prototype={ -$0(){return this.a.d=!1}, -$S:0} -A.aFu.prototype={ -$0(){var s=this.a -return s.ar(new A.aFt(s))}, -$S:0} -A.aFt.prototype={ -$0(){return this.a.d=!1}, -$S:0} -A.a32.prototype={ -K(a){var s=null,r=A.P(a).ax,q=A.ai("\u6211\u7684\u6301\u4ed3",s,s,s,A.ay(s,s,r.k3,s,s,s,s,s,s,s,s,18,s,s,B.M,s,s,!0,s,-0.5,s,s,s,s,s,s),s,s),p=r.b,o=A.aS5(s,s,s,s,s,s,s,s,s,p,s,s,B.mw,s,s,s,s,s,s,s),n=t.p -o=A.bw(A.c([q,A.awz(A.bw(A.c([A.ai("\u8d44\u4ea7\u8be6\u60c5",s,s,s,A.ay(s,s,s,s,s,s,s,s,s,s,s,14,s,s,B.M,s,s,!0,s,s,s,s,s,s,s,s),s,s),B.a9f,A.ce(B.eb,p,s,16)],n),B.o,B.m,B.n,s),new A.aCW(),o)],n),B.o,B.b4,B.n,s) -p=A.a8(s,16,s) -q=this.c -return A.bJ(A.c([o,p,J.js(q)?B.aja:new A.a31(q,s)],n),B.o,B.m,B.n)}} -A.aCW.prototype={ -$0(){}, -$S:0} -A.a2m.prototype={ -K(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=null,d=A.P(a).ax,c=A.P(a).ax.a===B.R,b=d.p3 -if(b==null)b=d.k2 -b=A.ar(B.d.aY(127.5),b.A()>>>16&255,b.A()>>>8&255,b.A()&255) -s=A.bK(56) -r=d.to -q=r==null -if(q){p=d.n -if(p==null)p=d.k3}else p=r -p=A.dB(p.aI(0.1),1) -o=A.bK(24) -n=d.b -m=n.aI(c?0.2:0.1) -l=c?0.2:0.1 -l=A.Uk(0,A.YW(B.a_,0.2,A.bL(e,e,B.v,e,e,new A.bm(e,e,e,o,e,new A.ia(B.cD,B.ey,B.bX,A.c([m,d.y.aI(l)],t.t_),e,e),e,B.G),e,e,e,e,e,e,e),!0)) -m=d.RG -o=m==null?d.k2:m -m=A.bK(24) -if(q){r=d.n -if(r==null)r=d.k3}r=A.dB(r.aI(0.2),1) -q=t.V -k=A.c([new A.cm(0,B.az,A.ar(B.d.aY(255*(c?0.3:0.1)),B.r.A()>>>16&255,B.r.A()>>>8&255,B.r.A()&255),new A.h(0,8),24)],q) -k=A.Uk(0,A.dp(A.bL(e,A.ce(B.fi,n,e,40),B.v,e,e,new A.bm(o,e,r,m,k,e,e,B.G),e,80,e,e,e,e,80),e,e)) -r=c?B.ac.bT(0.2):B.bU.bT(0.2) -o=A.dB(c?B.ac.bT(0.3):B.bU.bT(0.3),1) -m=t.p -o=A.a8(A.hE(B.aQ,A.c([l,k,A.mu(e,A.bL(e,A.ce(B.DB,c?B.ac:B.bU,e,20),B.v,e,e,new A.bm(r,e,o,e,e,e,e,B.bT),e,40,e,e,e,e,40),e,e,e,16,8,e)],m),B.N,B.bM),128,128) -r=A.a8(e,24,e) -k=d.k3 -l=A.ai("No holdings yet.",e,e,e,A.ay(e,e,k,e,e,e,e,e,e,e,e,16,e,e,B.b9,e,e,!0,e,e,e,e,e,e,e,e),e,e) -j=A.a8(e,8,e) -i=d.rx -k=A.ai("\u6682\u65e0\u6301\u4ed3\uff0c\u5feb\u53bb\u4ea4\u6613\u5427~",e,e,e,A.ay(e,e,i==null?k:i,e,e,e,e,e,e,e,e,14,e,e,e,e,e,!0,e,e,e,e,e,e,e,e),e,e) -i=A.a8(e,32,e) -h=c?B.Qp:B.Qr -g=A.bK(12) -q=A.c([new A.cm(0,B.az,n.aI(c?0.3:0.2),B.E_,30)],q) -n=A.bK(12) -if(c){f=d.aB -if(f==null)f=d.k2}else f=B.l -return A.bL(e,A.bJ(A.c([o,r,l,j,k,i,A.bL(e,A.mf(!1,B.a3,!0,e,A.akg(!1,n,!0,new A.bR(new A.a2(40,16,40,16),A.ai("Start Trading",e,e,e,A.ay(e,e,f,e,e,e,e,e,e,e,e,16,e,e,B.f0,e,e,!0,e,-0.5,e,e,e,e,e,e),e,e),e),e,!0,e,e,e,e,e,e,new A.aBB(),e,e,e),B.v,B.D,0,e,e,e,e,e,B.ec),B.v,e,e,new A.bm(e,e,e,g,q,h,e,B.G),e,e,e,e,e,e,e)],m),B.o,B.m,B.n),B.v,e,e,new A.bm(b,e,p,s,e,e,e,B.G),e,e,e,new A.a2(24,48,24,48),e,e,1/0)}} -A.aBB.prototype={ -$0(){}, -$S:0} -A.a31.prototype={ -K(a){var s,r,q=null,p=A.P(a).ax,o=this.c,n=J.bk(o) -if(n.gH(o)>5)o=n.d1(o,0,5) -n=p.k2 -n=A.ar(B.d.aY(127.5),n.A()>>>16&255,n.A()>>>8&255,n.A()&255) -s=A.bK(24) -r=p.to -if(r==null){r=p.n -if(r==null)r=p.k3}r=A.dB(r.aI(0.1),1) -return A.bL(q,A.aRg(new A.aCU(o),J.cg(o),new A.a2(16,16,16,16),B.DX,new A.aCV(p),!0),B.v,q,q,new A.bm(n,q,r,s,q,q,q,B.G),q,q,q,q,q,q,q)}} -A.aCV.prototype={ -$2(a,b){var s=this.a,r=s.to -if(r==null){r=s.n -s=r==null?s.k3:r}else s=r -return new A.qa(1,s.aI(0.1),null)}, -$S:580} -A.aCU.prototype={ -$2(a,b){return A.Qf(A.Mo(new A.a30(J.iQ(this.a,b),null)),A.cI(0,50*b),null)}, -$S:581} -A.a30.prototype={ -K(a){var s,r,q,p,o=null,n=A.P(a).ax,m=A.P(a),l=n.b,k=this.c,j=k.c -l=A.aQj(l.aI(0.1),A.ai(B.c.a6(j,0,1),o,o,o,A.ay(o,o,l,o,o,o,o,o,o,o,o,o,o,o,B.M,o,o,!0,o,o,o,o,o,o,o,o),o,o),18) -s=A.a8(o,o,12) -r=n.k3 -j=A.ai(j,o,o,o,A.ay(o,o,r,o,o,o,o,o,o,o,o,16,o,o,B.M,o,o,!0,o,o,o,o,o,o,o,o),o,o) -q=n.rx -p=t.p -q=A.bw(A.c([l,s,A.bJ(A.c([j,A.ai(k.d,o,o,o,A.ay(o,o,q==null?r:q,o,o,o,o,o,o,o,o,12,o,o,o,o,o,!0,o,o,o,o,o,o,o,o),o,o)],p),B.T,B.m,B.n)],p),B.o,B.m,B.n,o) -r=A.ai(k.r+" USDT",o,o,o,A.ay(o,o,r,o,o,o,o,o,o,o,o,14,o,o,B.E,o,o,!0,o,o,o,o,o,o,o,o),o,o) -j=k.gBm() -if(k.x>=0)m=m.ax.a===B.R?B.ac:B.bU -else m=B.c1 -return new A.bR(new A.a2(0,12,0,12),A.bw(A.c([q,A.bJ(A.c([r,A.ai(j,o,o,o,A.ay(o,o,m,o,o,o,o,o,o,o,o,12,o,o,B.E,o,o,!0,o,o,o,o,o,o,o,o),o,o)],p),B.co,B.m,B.n)],p),B.o,B.b4,B.n,o),o)}} -A.Lj.prototype={ -aw(){this.b3() -this.ka()}, -dA(){var s=this.dh$ -if(s!=null){s.a7() -s.d8() -this.dh$=null}this.iF()}} -A.pc.prototype={} -A.r1.prototype={ -ah(){return new A.Im(A.cy([0],t.S))}} -A.Im.prototype={ -aiE(a){this.ar(new A.aE0(this,a))}, -K(a){var s,r,q,p=this,o=null,n=A.P(a).ax,m=n.aB -if(m==null)m=n.k2 -s=p.d -r=$.b3N() -q=A.a6(r).i("am<1,e>") -q=A.aa(new A.am(r,new A.aE1(),q),q.i("aE.E")) -return A.ow(o,m,A.bJ(A.c([B.aka,A.cJ(new A.Cr(s,p.e,q,o),1,o)],t.p),B.o,B.m,B.n),new A.a0S(r,p.d,p.gaiD(),o))}} -A.aE0.prototype={ -$0(){var s=this.a,r=this.b -s.d=r -s.e.G(0,r)}, -$S:0} -A.aE1.prototype={ -$1(a){return a.c}, -$S:582} -A.a9G.prototype={ -K(a){var s,r,q=null,p=A.P(a).ax,o=A.P(a),n=p.p1 -if(n==null)n=p.k2 -n=A.ar(102,n.A()>>>16&255,n.A()>>>8&255,n.A()&255) -o=o.ax.a===B.R?0.15:0.08 -o=A.c([new A.cm(0,B.az,p.b.aI(o),B.a3o,64)],t.V) -s=A.ak2(32,32) -r=t.p -return A.bL(q,A.aes(B.ah,A.acS(new A.bR(new A.a2(24,0,24,0),A.bw(A.c([A.ks(new A.aKU(p),t.W0),A.bw(A.c([new A.I4(B.DD,new A.aKV(),q),A.a8(q,q,8),new A.I4(B.Dz,new A.aKW(),q)],r),B.o,B.m,B.n,q)],r),B.o,B.b4,B.n,q),q),s)),B.v,q,q,new A.bm(n,q,q,q,o,q,q,B.G),q,64,q,q,q,q,q)}} -A.aKU.prototype={ -$3(a,b,c){var s,r,q=null,p=this.a,o=p.to -if(o==null){o=p.n -if(o==null)o=p.k3}o=A.dB(o.aI(0.2),1) -s=p.R8 -if(s==null)s=p.k2 -r=b.b -r=r==null?q:r.gWX() -if(r==null)r="U" -p=p.b -return A.bw(A.c([A.bL(q,A.aQj(s,A.ai(r,q,q,q,A.ay(q,q,p,q,q,q,q,q,q,q,q,12,q,q,B.M,q,q,!0,q,q,q,q,q,q,q,q),q,q),q),B.v,q,q,new A.bm(q,q,o,q,q,q,q,B.bT),q,32,q,q,q,q,32),A.a8(q,q,12),A.ai("\u6a21\u62df\u6240",q,q,q,A.ay(q,q,p,q,q,q,q,q,q,q,q,16,q,q,B.f0,q,q,!0,q,-0.5,q,q,q,q,q,q),q,q)],t.p),B.o,B.m,B.n,q)}, -$S:583} -A.aKV.prototype={ -$0(){}, -$S:0} -A.aKW.prototype={ -$0(){}, -$S:0} -A.I4.prototype={ -K(a){var s=null,r=A.P(a).ax,q=r.rx -if(q==null)q=r.k3 -return A.eP(s,A.bL(s,A.ce(this.c,q,s,22),B.v,s,s,s,s,s,s,new A.a2(8,8,8,8),s,s,s),B.W,!1,s,s,s,s,s,s,s,s,s,s,s,s,s,s,this.d,s,s,s,s,s,s)}} -A.a0S.prototype={ -K(a){var s,r,q,p,o,n,m=null,l=A.P(a).ax,k=l.p3 -if(k==null)k=l.k2 -k=A.ar(204,k.A()>>>16&255,k.A()>>>8&255,k.A()&255) -s=A.aUT(new A.aR(32,32)) -r=l.to -if(r==null){r=l.n -if(r==null)r=l.k3}r=r.aI(0.15) -q=A.c([new A.cm(0,B.az,A.ar(B.d.aY(127.5),B.r.A()>>>16&255,B.r.A()>>>8&255,B.r.A()&255),B.a3q,40)],t.V) -p=A.aUT(new A.aR(32,32)) -o=A.ak2(16,16) -n=this.c -return A.bL(m,A.aes(p,A.acS(A.El(!0,new A.bR(new A.a2(16,8,16,24),A.bw(new A.mc(n,A.a6(n).i("mc<1>")).gfj().hI(0,new A.azM(this),t.TB).eA(0),B.o,B.nJ,B.n,m),m),!0),o)),B.v,m,m,new A.bm(k,m,new A.dV(new A.bl(r,1,B.F,-1),B.x,B.x,B.x),s,q,m,m,B.G),m,m,m,m,m,m,m)}} -A.azM.prototype={ -$1(a){var s=this.a -return new A.u4(a.b,a.a===s.d,new A.azL(s,a),null)}, -$S:584} -A.azL.prototype={ -$0(){return this.a.e.$1(this.b.a)}, -$S:0} -A.u4.prototype={ -K(a){var s,r,q,p,o,n=null,m=A.P(a).ax,l=this.d -if(l)s=m.b -else{r=m.rx -s=r==null?m.k3:r}if(l){r=m.b -r=new A.bm(r.aI(0.1),n,n,A.bK(16),A.c([new A.cm(0,B.az,r.aI(0.3),B.f,15)],t.V),n,n,B.G)}else r=n -q=this.c -p=A.ce(q.b,s,n,24) -o=A.a8(n,4,n) -return A.eP(B.aG,A.uE(A.bJ(A.c([p,o,A.ai(q.a,n,n,n,A.ay(n,n,s,n,n,n,n,n,n,n,n,12,n,n,l?B.b9:B.p,n,n,!0,n,n,n,n,n,n,n,n),n,n)],t.p),B.o,B.m,B.ak),n,r,B.aM,n,n,n,new A.a2(16,8,16,8),n),B.W,!1,n,n,n,n,n,n,n,n,n,n,n,n,n,n,this.e,n,n,n,n,n,n)}} -A.Cr.prototype={ -ah(){return new A.a3r()}} -A.a3r.prototype={ -K(a){var s=this.a.e -return A.hE(B.aQ,new A.mc(s,A.a6(s).i("mc<1>")).gfj().hI(0,new A.aDN(this),t.iB).eA(0),B.N,B.bM)}} -A.aDN.prototype={ -$1(a){var s=a.a,r=this.a.a,q=s===r.c -return A.Uk(0,new A.wn(!q,A.aSd(r.d.q(0,s)?a.b:B.aE,q),null))}, -$S:585} -A.CG.prototype={ -ah(){return new A.a3H(new A.eD(B.b6,$.af()),null)}} -A.a3H.prototype={ -gjV(){return!0}, -aw(){this.a7O() -$.a1.k4$.push(new A.aE7(this))}, -l(){var s=this.d -s.P$=$.af() -s.L$=0 -this.aQ()}, -K(a){var s,r,q -this.lD(a) -s=A.P(a).ax -r=A.P(a) -q=s.aB -if(q==null)q=s.k2 -return A.ow(null,q,A.ks(new A.aE6(this,s,r.ax.a===B.R),t.yo),null)}, -a9I(a,b){var s,r,q,p,o,n,m,l,k,j=null,i=b.p2 -if(i==null)i=b.k2 -s=A.bK(16) -r=b.to -if(r==null){r=b.n -if(r==null)r=b.k3}r=A.dB(r.aI(0.15),1) -q=this.d -p=b.k3 -o=A.ay(j,j,p,j,j,j,j,j,j,j,j,j,j,j,j,j,j,!0,j,j,j,j,j,j,j,j) -n=b.rx -m=n==null -l=A.ay(j,j,m?p:n,j,j,j,j,j,j,j,j,j,j,j,j,j,j,!0,j,j,j,j,j,j,j,j) -k=A.ce(B.DD,m?p:n,j,18) -if(q.a.a.length!==0)p=A.eP(j,A.ce(B.du,m?p:n,j,18),B.W,!1,j,j,j,j,j,j,j,j,j,j,j,j,j,j,new A.aE3(this,a),j,j,j,j,j,j) -else p=j -return new A.bR(new A.a2(16,16,16,0),A.bL(j,A.aS6(j,B.ff,!1,j,!0,B.N,j,A.b2b(),q,j,j,j,j,j,2,A.Rc(j,B.lo,j,new A.a2(16,20,16,20),j,j,j,j,!0,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,l,"\u641c\u7d22\u5e02\u573a...",j,j,j,j,j,j,j,j,j,!0,!0,!1,j,k,j,j,j,j,j,j,p,j,j,j,j,j),B.W,!0,j,!0,j,!1,j,B.ep,j,j,j,j,j,j,j,j,1,j,j,!1,"\u2022",j,a.ga2M(),j,j,j,!1,j,j,!1,j,!0,j,B.iZ,j,j,j,j,j,j,j,j,j,j,j,o,!0,B.aN,j,B.l7,j,j,j,j),B.v,j,j,new A.bm(i,j,r,s,j,j,j,B.G),j,j,j,j,j,j,j),j)}, -a9K(a,b,c){var s=null,r=t.N,q=t.Pe -r=A.aa(new A.am(A.c([A.aG(["key","all","label","\u5168\u90e8"],r,r),A.aG(["key","realtime","label","\u5b9e\u65f6"],r,r),A.aG(["key","hot","label","\u70ed\u95e8"],r,r)],t.m0),new A.aE5(a,b,c),q),q.i("aE.E")) -return A.bL(s,A.oJ(A.bw(r,B.o,B.m,B.n,s),s,s,s,B.am),B.v,s,s,s,s,48,new A.a2(16,16,16,0),s,s,s,s)}, -a9s(a,b,c){var s,r,q,p,o,n=null -if(a.f)return A.dp(A.b68(n,b.b,n,n,n,n,n,n,n,n),n,n) -s=a.r -if(s!=null){r=b.fy -return A.dp(new A.bR(B.bj,A.bJ(A.c([A.ce(B.a0K,r,n,48),A.a8(n,16,n),A.ai(s,n,n,n,A.ay(n,n,r,n,n,n,n,n,n,n,n,n,n,n,n,n,n,!0,n,n,n,n,n,n,n,n),B.bQ,n),A.a8(n,24,n),A.mK(B.af6,a.gav4())],t.p),B.o,B.cN,B.n),n),n,n)}q=a.c -s=q.length -if(s===0){s=b.rx -r=s==null -p=A.ce(B.DB,r?b.k3:s,n,48) -o=A.a8(n,16,n) -return A.dp(A.bJ(A.c([p,o,A.ai("\u6682\u65e0\u6570\u636e",n,n,n,A.ay(n,n,r?b.k3:s,n,n,n,n,n,n,n,n,n,n,n,n,n,n,!0,n,n,n,n,n,n,n,n),n,n)],t.p),B.o,B.cN,B.n),n,n)}r=b.p4 -if(r==null)r=b.k2 -return A.aqt(r,new A.Cx(new A.Y7(new A.aE2(this,q,b),s,!0,!0,!0,A.bkS(),n),new A.a2(16,16,16,16),B.L,!1,n,n,B.ir,!1,n,s,B.W,n,n,B.N,B.aG,n),b.b,a.gaxE())}} -A.aE7.prototype={ -$1(a){var s=this.a.c -s.toString -A.dx(s,!1,t.yo).L2()}, -$S:4} -A.aE6.prototype={ -$3(a,b,c){var s=this.a,r=this.b,q=this.c -return A.bJ(A.c([s.a9I(b,r),s.a9K(b,r,q),A.cJ(s.a9s(b,r,q),1,null)],t.p),B.o,B.m,B.n)}, -$S:586} -A.aE3.prototype={ -$0(){this.a.d.n_(B.Jr) -var s=this.b -s.e="" -s.yl() -s.a7()}, -$S:0} -A.aE5.prototype={ -$1(a){var s,r,q,p,o,n,m=null,l=this.a,k=l.d===a.h(0,"key"),j=this.b -if(k)s=j.b.aI(0.1) -else{s=j.R8 -if(s==null)s=j.k2}r=A.bK(9999) -q=k?A.dB(j.b.aI(0.2),1):m -if(k){p=this.c?0.15:0.08 -p=A.c([new A.cm(0,B.az,j.b.aI(p),B.f,15)],t.V)}else p=m -o=a.h(0,"label") -o.toString -if(k)j=j.b -else{n=j.rx -j=n==null?j.k3:n}return A.eP(m,A.uE(A.ai(o,m,m,m,A.ay(m,m,j,m,m,m,m,m,m,m,m,12,m,m,k?B.M:B.p,m,m,!0,m,m,m,m,m,m,m,m),m,m),m,new A.bm(s,m,q,r,p,m,m,B.G),B.a3,m,m,new A.a2(0,0,8,0),new A.a2(24,12,24,12),m),B.W,!1,m,m,m,m,m,m,m,m,m,m,m,m,m,m,new A.aE4(l,a),m,m,m,m,m,m)}, -$S:587} -A.aE4.prototype={ -$0(){var s=this.a,r=this.b.h(0,"key") -r.toString -s.d=r -s.yl() -s.a7() -return null}, -$S:0} -A.aE2.prototype={ -$2(a,b){var s,r,q,p,o,n,m,l,k=null,j=this.b[b],i=this.c,h=j.x>=0,g=h?B.ac:B.c1 -if(h)s=A.ar(B.d.aY(25.5),B.ac.A()>>>16&255,B.ac.A()>>>8&255,B.ac.A()&255) -else{r=i.fy -s=A.ar(B.d.aY(25.5),r.A()>>>16&255,r.A()>>>8&255,r.A()&255)}r=i.RG -if(r==null)r=i.k2 -q=A.bK(16) -p=i.to -if(p==null){p=i.n -if(p==null)p=i.k3}p=A.dB(p.aI(0.2),1) -o=j.gYA() -r=A.bL(k,A.dp(A.ai(o,k,k,k,A.ay(k,k,h?i.b:i.y,k,k,k,k,k,k,k,k,20,k,k,B.M,k,k,!0,k,k,k,k,k,k,k,k),k,k),k,k),B.v,k,k,new A.bm(r,k,p,q,k,k,k,B.G),k,48,k,k,k,k,48) -q=A.a8(k,k,12) -p=i.k3 -o=A.ai(j.b,k,k,k,A.fD().$3$color$fontSize$fontWeight(p,16,B.M),k,k) -n=A.a8(k,k,4) -i=i.rx -h=i==null -m=t.p -n=A.bw(A.c([o,n,A.ai("/USDT",k,k,k,A.ay(k,k,h?p:i,k,k,k,k,k,k,k,k,12,k,k,k,k,k,!0,k,k,k,k,k,k,k,k),k,k)],m),B.o,B.m,B.n,k) -o=A.a8(k,2,k) -i=A.cJ(A.bJ(A.c([n,o,A.ai(j.c,k,k,k,A.ay(k,k,h?p:i,k,k,k,k,k,k,k,k,12,k,k,k,k,k,!0,k,k,k,k,k,k,k,k),k,k)],m),B.T,B.m,B.n),1,k) -p=A.ai("$"+j.gKe(),k,k,k,A.fD().$3$color$fontSize$fontWeight(p,14,B.M),k,k) -o=A.a8(k,4,k) -n=A.bK(4) -l=A.dB(A.ar(51,g.A()>>>16&255,g.A()>>>8&255,g.A()&255),1) -return A.aQW(A.bw(A.c([r,q,i,A.bJ(A.c([p,o,A.bL(k,A.ai(j.gZu(),k,k,k,A.ay(k,k,g,k,k,k,k,k,k,k,k,12,k,k,B.M,k,k,!0,k,k,k,k,k,k,k,k),k,k),B.v,k,k,new A.bm(s,k,l,n,k,k,k,B.G),k,k,k,new A.a2(8,4,8,4),k,k,k)],m),B.co,B.m,B.n)],m),B.o,B.m,B.n,k),new A.a2(0,0,0,8),!1)}, -$S:212} -A.Lm.prototype={ -aw(){this.b3() -this.ka()}, -dA(){var s=this.dh$ -if(s!=null){s.a7() -s.d8() -this.dh$=null}this.iF()}} -A.u0.prototype={} -A.CY.prototype={ -ah(){return new A.Iw(null)}} -A.Iw.prototype={ -gjV(){return!0}, -K(a){var s,r -this.lD(a) -s=A.P(a).ax -r=s.aB -if(r==null)r=s.k2 -return A.ow(null,r,A.ks(new A.aEK(this,s),t.W0),null)}, -alI(a){var s=this.c -s.toString -A.hT(new A.aEI(a),s,t.z)}, -alG(){var s,r=this.c -r.toString -r=A.P(r) -s=this.c -s.toString -A.hT(new A.aEG(r.ax),s,t.z)}, -aep(a){var s=this.c -s.toString -A.hT(new A.aEE(a),s,t.z)}} -A.aEK.prototype={ -$3(a,b,c){var s=null,r=b.b,q=A.a8(s,16,s),p=this.a,o=A.a8(s,32,s),n=A.a8(s,24,s),m=this.b,l=m.rx -m=l==null?m.k3:l -return A.oJ(A.bJ(A.c([new A.aae(r,s),q,new A.a3S(p.galH(),p.galF(),s),o,new A.a3A(new A.aEJ(p,b),s),n,A.ai("System Build v1.0.0-Neo",s,s,s,A.ay(s,s,A.ar(102,m.A()>>>16&255,m.A()>>>8&255,m.A()&255),s,s,s,s,s,s,s,s,10,s,s,s,s,s,!0,s,0.3,s,s,s,s,s,s),s,s)],t.p),B.o,B.m,B.n),s,B.bj,s,B.L)}, -$S:589} -A.aEJ.prototype={ -$0(){return this.a.aep(this.b)}, -$S:0} -A.aEI.prototype={ -$1(a){var s=null,r=t.p,q=A.bw(A.c([A.ce(B.PE,B.cn,s,20),A.a8(s,s,8),B.aeT],r),B.o,B.m,B.n,s),p=A.ai(this.a+"\u529f\u80fd\u6b63\u5728\u5f00\u53d1\u4e2d\uff0c\u656c\u8bf7\u671f\u5f85~",s,s,s,s,s,s) -return A.x4(A.c([A.mK(B.aff,new A.aEH(a))],r),p,q)}, -$S:31} -A.aEH.prototype={ -$0(){return A.ct(this.a,!1).ct()}, -$S:0} -A.aEG.prototype={ -$1(a){var s=null,r=t.p,q=A.bw(A.c([new A.GW(20,20,s,s),A.a8(s,s,12),B.afb],r),B.o,B.m,B.n,s),p=this.a,o=p.rx -p=A.bJ(A.c([A.ai("\u865a\u62df\u8d27\u5e01\u6a21\u62df\u4ea4\u6613\u5e73\u53f0",s,s,s,A.ay(s,s,o==null?p.k3:o,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s),s,s),A.a8(s,16,s),new A.I6(B.PD,"\u7248\u672c: 1.0.0",s),A.a8(s,8,s),new A.I6(B.PF,"Built with Flutter & Material Design 3",s)],r),B.T,B.m,B.ak) -return A.aRU(A.c([A.mK(B.oT,new A.aEF(a))],r),p,q)}, -$S:31} -A.aEF.prototype={ -$0(){return A.ct(this.a,!1).ct()}, -$S:0} -A.aEE.prototype={ -$1(a){return A.x4(A.c([A.x2(B.fG,new A.aEC(a),null),A.aRS(B.afd,new A.aED(a,this.a),null)],t.p),B.af3,B.aeQ)}, -$S:31} -A.aEC.prototype={ -$0(){return A.ct(this.a,!1).ct()}, -$S:0} -A.aED.prototype={ -$0(){var s=0,r=A.I(t.H),q=this,p -var $async$$0=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:p=q.a -A.ct(p,!1).ct() -s=2 -return A.p(q.b.nW(),$async$$0) -case 2:if(p.e!=null)A.ct(p,!1).LM(A.w9(new A.aEA(),null,t.z),new A.aEB()) -return A.G(null,r)}}) -return A.H($async$$0,r)}, -$S:10} -A.aEA.prototype={ -$1(a){return B.nI}, -$S:590} -A.aEB.prototype={ -$1(a){return!1}, -$S:116} -A.aae.prototype={ -K(a){var s,r,q,p,o,n,m=null,l=A.P(a).ax,k=l.b,j=A.c([new A.cm(0,B.az,k.aI(A.P(a).ax.a===B.R?0.15:0.08),B.f,20)],t.V),i=this.c,h=i==null -j=A.bL(m,new A.GW(36,28,h?m:i.gWX(),m),B.v,m,m,new A.bm(m,m,m,m,j,m,m,B.bT),m,m,m,m,m,m,m) -s=l.aB -s=A.dB(s==null?l.k2:s,2) -r=l.cx -q=t.p -s=A.hE(B.aQ,A.c([j,A.mu(0,A.bL(m,A.ce(B.PN,r==null?l.z:r,m,14),B.v,m,m,new A.bm(B.ac,m,s,m,m,m,m,B.bT),m,m,m,new A.a2(4,4,4,4),m,m,m),m,m,m,0,m,m)],q),B.N,B.bM) -r=A.a8(m,m,20) -j=h?m:i.b -if(j==null)j="\u672a\u767b\u5f55" -i=l.k3 -j=A.ai(j,m,m,m,A.fD().$3$color$fontSize$fontWeight(i,24,B.M),m,m) -h=A.a8(m,8,m) -p=k.aI(0.1) -o=A.bK(9999) -n=A.dB(k.aI(0.2),1) -o=A.cJ(A.bJ(A.c([j,h,A.bL(m,A.ai("\u666e\u901a\u7528\u6237",m,m,m,A.ay(m,m,k,m,m,m,m,m,m,m,m,10,m,m,B.M,m,m,!0,m,0.2,m,m,m,m,m,m),m,m),B.v,m,m,new A.bm(p,m,n,o,m,m,m,B.G),m,m,m,new A.a2(16,4,16,4),m,m,m)],q),B.T,B.m,B.n),1,m) -n=l.rx -return A.kD(m,A.bw(A.c([s,r,o,A.ce(B.eb,n==null?i:n,m,m)],q),B.o,B.m,B.n,m),m,new A.a2(32,32,32,32))}} -A.GW.prototype={ -K(a){var s=null,r=A.P(a).ax.b,q=r.aI(0.2),p=this.e -if(p==null)p="\u20bf" -return A.aQj(q,A.ai(p,s,s,s,A.ay(s,s,r,s,s,s,s,s,s,s,s,this.d,s,s,B.M,s,s,!0,s,s,s,s,s,s,s,s),s,s),this.c)}} -A.I6.prototype={ -K(a){var s,r=null,q=A.P(a).ax,p=q.rx,o=p==null,n=o?q.k3:p -n=A.ce(this.c,n,r,14) -s=A.a8(r,r,8) -return A.bw(A.c([n,s,A.ai(this.d,r,r,r,A.ay(r,r,o?q.k3:p,r,r,r,r,r,r,r,r,12,r,r,r,r,r,!0,r,r,r,r,r,r,r,r),r,r)],t.p),B.o,B.m,B.n,r)}} -A.a3S.prototype={ -K(a){var s=null,r=A.dx(a,!0,t.eC),q=A.P(a),p=A.bK(24),o=A.c([new A.a9y(r.a===B.fH,s),A.bL(s,s,B.v,B.mb,s,s,s,1,new A.a2(56,0,0,0),s,s,s,s)],t.p) -B.b.a_(o,this.a9y(q.ax)) -return A.kD(p,A.bJ(o,B.o,B.m,B.n),s,B.ap)}, -a9y(a){var s,r,q,p=this,o=null,n=a.b,m=a.rx -if(m==null)m=a.k3 -s=[new A.u0(B.a0J,"\u5b9e\u540d\u8ba4\u8bc1","\u5b8c\u6210\u5b9e\u540d\u8ba4\u8bc1\uff0c\u89e3\u9501\u66f4\u591a\u529f\u80fd",n,new A.aEw(p)),new A.u0(B.a0W,"\u5b89\u5168\u8bbe\u7f6e","\u5bc6\u7801\u3001\u4e8c\u6b21\u9a8c\u8bc1\u7b49\u5b89\u5168\u8bbe\u7f6e",a.y,new A.aEx(p)),new A.u0(B.Dz,"\u6d88\u606f\u901a\u77e5","\u7ba1\u7406\u6d88\u606f\u63a8\u9001\u8bbe\u7f6e",B.ac,new A.aEy(p)),new A.u0(B.a0V,"\u7cfb\u7edf\u8bbe\u7f6e","\u4e3b\u9898\u3001\u8bed\u8a00\u7b49\u504f\u597d\u8bbe\u7f6e",n,new A.aEz(p)),new A.u0(B.a0L,"\u5173\u4e8e\u6211\u4eec","\u7248\u672c\u4fe1\u606f\u4e0e\u7528\u6237\u534f\u8bae",m,p.d)] -m=t.p -n=A.c([],m) -for(r=0;r<5;++r){q=A.c([new A.a3R(s[r],o)],m) -if(r<4)q.push(A.bL(o,o,B.v,B.mb,o,o,o,1,new A.a2(56,0,0,0),o,o,o,o)) -B.b.a_(n,q)}return n}} -A.aEw.prototype={ -$0(){return this.a.c.$1("\u5b9e\u540d\u8ba4\u8bc1")}, -$S:0} -A.aEx.prototype={ -$0(){return this.a.c.$1("\u5b89\u5168\u8bbe\u7f6e")}, -$S:0} -A.aEy.prototype={ -$0(){return this.a.c.$1("\u6d88\u606f\u901a\u77e5")}, -$S:0} -A.aEz.prototype={ -$0(){return this.a.c.$1("\u7cfb\u7edf\u8bbe\u7f6e")}, -$S:0} -A.a9y.prototype={ -K(a){var s=null,r=A.P(a).ax,q=A.dx(a,!1,t.eC),p=this.c,o=p?B.a0P:B.a0Q,n=r.b,m=A.a8(s,s,12),l=r.k3,k=A.ai("\u6df1\u8272\u6a21\u5f0f",s,s,s,A.fD().$3$color$fontSize$fontWeight(l,14,B.E),s,s),j=A.a8(s,2,s),i=p?"\u5f53\u524d\uff1a\u6df1\u8272\u4e3b\u9898":"\u5f53\u524d\uff1a\u6d45\u8272\u4e3b\u9898",h=r.rx,g=t.p -return A.akg(!1,s,!0,new A.bR(new A.a2(16,12,16,12),A.bw(A.c([new A.Iv(o,n,s),m,A.cJ(A.bJ(A.c([k,j,A.ai(i,s,s,s,A.ay(s,s,h==null?l:h,s,s,s,s,s,s,s,s,11,s,s,s,s,s,!0,s,s,s,s,s,s,s,s),s,s)],g),B.T,B.m,B.n),1,s),new A.Yy(p,new A.aKN(q),n,n.aI(0.5),s)],g),B.o,B.m,B.n,s),s),s,!0,s,s,s,s,s,s,new A.aKO(q),s,s,s)}} -A.aKO.prototype={ -$0(){return this.a.x3()}, -$S:0} -A.aKN.prototype={ -$1(a){return this.a.x3()}, -$S:12} -A.a3R.prototype={ -K(a){var s=null,r=A.P(a).ax,q=this.c,p=A.a8(s,s,12),o=r.k3,n=t.p,m=A.c([A.ai(q.b,s,s,s,A.fD().$3$color$fontSize$fontWeight(o,14,B.E),s,s)],n),l=A.a8(s,2,s),k=r.rx -B.b.a_(m,A.c([l,A.ai(q.c,s,s,s,A.ay(s,s,k==null?o:k,s,s,s,s,s,s,s,s,11,s,s,s,s,s,!0,s,s,s,s,s,s,s,s),s,s)],n)) -m=A.cJ(A.bJ(m,B.T,B.m,B.n),1,s) -return A.akg(!1,s,!0,new A.bR(new A.a2(16,12,16,12),A.bw(A.c([new A.Iv(q.a,q.d,s),p,m,A.ce(B.eb,k==null?o:k,s,18)],n),B.o,B.m,B.n,s),s),s,!0,s,s,s,s,s,s,q.e,s,s,s)}} -A.Iv.prototype={ -K(a){var s,r,q,p,o=null -A.P(a) -s=this.d -r=s.aI(0.1) -q=A.bK(12) -p=A.dB(s.aI(0.2),1) -return A.bL(o,A.ce(this.c,s,o,20),B.v,o,o,new A.bm(r,o,p,q,o,o,o,B.G),o,40,o,o,o,o,40)}} -A.a3A.prototype={ -K(a){return A.ik(48,B.PI,this.c,!0,"Logout Terminal",B.DW,1/0)}} -A.aaK.prototype={ -aw(){this.b3() -this.ka()}, -dA(){var s=this.dh$ -if(s!=null){s.a7() -s.d8() -this.dh$=null}this.iF()}} -A.qy.prototype={ -ah(){return new A.a2Q()}} -A.a2Q.prototype={ -aw(){this.b3() -$.a1.k4$.push(new A.aCn(this))}, -Gz(){var s,r=this.d -if(r===0)r=null -s=this.c -s.toString -A.dx(s,!1,t.E).wm(r)}, -K(a){var s=this,r=null,q=A.dd(a,!0).a.a,p=A.aUN(q,0,r,B.aeJ),o=s.c -o.toString -A.dd(o,!0) -o=t.p -return A.ow(p,q,A.bJ(A.c([A.bL(r,A.bw(A.c([s.EM("\u5168\u90e8",0),B.J0,s.EM("\u5145\u503c",1),B.J0,s.EM("\u63d0\u73b0",2)],o),B.o,B.m,B.n,r),B.v,r,r,r,r,r,r,B.bj,r,r,r),A.cJ(s.a9E(),1,r)],o),B.o,B.m,B.n),r)}, -EM(a,b){var s,r,q,p,o,n=null,m=this.c -m.toString -s=A.dd(m,!0) -r=this.d===b -m=s.a -q=r?m.r:m.c -p=A.bK(8) -o=A.dB(r?m.r:m.ch,1) -m=r?B.l:m.Q -return A.cJ(A.eP(n,A.bL(n,A.dp(A.ai(a,n,n,n,A.ay(n,n,m,n,n,n,n,n,n,n,n,n,n,n,r?B.b9:B.p,n,n,!0,n,n,n,n,n,n,n,n),n,n),n,n),B.v,n,n,new A.bm(q,n,o,p,n,n,n,B.G),n,n,n,B.OV,n,n,n),B.W,!1,n,n,n,n,n,n,n,n,n,n,n,n,n,n,new A.aCg(this,b),n,n,n,n,n,n),1,n)}, -a9E(){return A.ks(new A.aCe(this),t.E)}, -a9D(a){var s,r,q,p,o=this,n=null,m=o.c -m.toString -A.dd(m,!0) -s=a.e===1 -m=s?B.dS.bT(0.1):B.db.bT(0.1) -r=A.bK(4) -q=s?"\u5145\u503c":"\u63d0\u73b0" -p=t.p -r=A.bw(A.c([A.bw(A.c([A.bL(n,A.ai(q,n,n,n,A.ay(n,n,s?B.dS:B.db,n,n,n,n,n,n,n,n,12,n,n,B.b9,n,n,!0,n,n,n,n,n,n,n,n),n,n),B.v,n,n,new A.bm(m,n,n,r,n,n,n,B.G),n,n,n,B.eU,n,n,n),B.l5,o.a9J(a)],p),B.o,B.m,B.n,n),A.ai(a.b,n,n,n,B.Jz,n,n)],p),B.o,B.b4,B.n,n) -m=s?"+":"-" -m=A.c([A.ai(m+a.f+" USDT",n,n,n,A.ay(n,n,s?B.dS:B.db,n,n,n,n,n,n,n,n,20,n,n,B.M,n,n,!0,n,n,n,n,n,n,n,n),n,n)],p) -if(!a.gXf())q=s&&a.r===1 -else q=!0 -if(q){q=A.c([],p) -if(s&&a.r===1)q.push(A.x2(B.aeY,new A.aC8(o,a),B.Ij)) -if(a.gXf())B.b.a_(q,A.c([B.l5,A.aRS(B.fG,new A.aC9(o,a),B.Ij)],p)) -m.push(A.bw(q,B.o,B.m,B.n,n))}m=A.c([r,B.oG,A.bw(m,B.o,B.b4,B.n,n),B.oG],p) -r=a.x -if(r!=null)B.b.a_(m,A.c([B.Ox,B.J1,A.bw(A.c([A.ai((s?"\u5145\u503c\u5730\u5740":"\u63d0\u73b0\u5730\u5740")+": ",n,n,n,B.Jy,n,n),A.cJ(A.ai(r,n,B.bd,n,B.adA,n,n),1,n),A.eP(n,A.ce(B.DC,B.dR,n,14),B.W,!1,n,n,n,n,n,n,n,n,n,n,n,n,n,n,new A.aCa(o,a),n,n,n,n,n,n)],p),B.o,B.m,B.n,n)],p)) -r=a.y -if(r!=null)B.b.a_(m,A.c([B.a9l,A.ai("\u8054\u7cfb\u65b9\u5f0f: "+r,n,n,n,B.Jy,n,n)],p)) -m.push(B.J1) -r=A.c([A.ai("\u521b\u5efa: "+o.acs(a.at),n,n,n,B.Jz,n,n)],p) -q=a.Q -if(q!=null)r.push(A.cJ(A.ai("\u9a73\u56de: "+q,n,B.bd,n,B.ad2,B.em,n),1,n)) -m.push(A.bw(r,B.o,B.b4,B.n,n)) -return new A.W9(A.bJ(m,B.T,B.m,B.n),B.bj,n)}, -a9J(a){var s,r,q,p=null -if(a.e===1)switch(a.r){case 1:case 2:s=B.km.bT(0.1) -r=B.km -break -case 3:s=B.dS.bT(0.1) -r=B.dS -break -default:s=B.db.bT(0.1) -r=B.db}else switch(a.r){case 1:s=B.km.bT(0.1) -r=B.km -break -case 2:s=B.dS.bT(0.1) -r=B.dS -break -default:s=B.db.bT(0.1) -r=B.db}q=A.bK(4) -return A.bL(p,A.ai(a.ga3K(),p,p,p,A.ay(p,p,r,p,p,p,p,p,p,p,p,11,p,p,p,p,p,!0,p,p,p,p,p,p,p,p),p,p),B.v,p,p,new A.bm(s,p,p,q,p,p,p,B.G),p,p,p,B.P7,p,p,p)}, -acs(a){if(a==null)return"-" -return""+A.DD(a)+"-"+B.c.mt(B.j.k(A.aRB(a)),2,"0")+"-"+B.c.mt(B.j.k(A.aRy(a)),2,"0")+" "+B.c.mt(B.j.k(A.aRz(a)),2,"0")+":"+B.c.mt(B.j.k(A.aRA(a)),2,"0")}, -uh(a){return this.aaF(a)}, -aaF(a){var s=0,r=A.I(t.H),q=this,p,o,n -var $async$uh=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:n=q.c -n.toString -s=4 -return A.p(A.hT(new A.aCm(),n,t.y),$async$uh) -case 4:s=c===!0&&q.c!=null?2:3 -break -case 2:n=q.c -n.toString -s=5 -return A.p(A.dx(n,!1,t.E).kW(a.b),$async$uh) -case 5:p=c -n=q.c -if(n!=null){n=n.aA(t.Pu).f -if(p.a)o="\u786e\u8ba4\u6210\u529f\uff0c\u8bf7\u7b49\u5f85\u5ba1\u6838" -else o=p.b -n.qo(A.avG(null,null,null,null,null,B.N,null,A.ai(o,null,null,null,null,null,null),null,B.eR,null,null,null,null,null,null,null,null,null,null))}case 3:return A.G(null,r)}}) -return A.H($async$uh,r)}, -ud(a){return this.a9Z(a)}, -a9Z(a){var s=0,r=A.I(t.H),q=this,p,o,n -var $async$ud=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:n=q.c -n.toString -s=4 -return A.p(A.hT(new A.aCj(a),n,t.y),$async$ud) -case 4:s=c===!0&&q.c!=null?2:3 -break -case 2:n=q.c -n.toString -s=5 -return A.p(A.dx(n,!1,t.E).kV(a.b),$async$ud) -case 5:p=c -n=q.c -if(n!=null){n=n.aA(t.Pu).f -if(p.a)o="\u8ba2\u5355\u5df2\u53d6\u6d88" -else o=p.b -n.qo(A.avG(null,null,null,null,null,B.N,null,A.ai(o,null,null,null,null,null,null),null,B.eR,null,null,null,null,null,null,null,null,null,null))}case 3:return A.G(null,r)}}) -return A.H($async$ud,r)}} -A.aCn.prototype={ -$1(a){this.a.Gz()}, -$S:4} -A.aCg.prototype={ -$0(){var s=this.a,r=this.b -if(s.d!==r){s.ar(new A.aCf(s,r)) -s.Gz()}}, -$S:0} -A.aCf.prototype={ -$0(){return this.a.d=this.b}, -$S:0} -A.aCe.prototype={ -$3(a,b,c){var s,r,q=null,p=b.r -if(b.y)return B.pY -s=p.length -if(s===0)return A.dp(A.bJ(A.c([A.ce(B.a0R,B.q2,q,64),B.i8,A.ai("\u6682\u65e0\u8ba2\u5355\u8bb0\u5f55",q,q,q,A.ay(q,q,B.dR,q,q,q,q,q,q,q,q,q,q,q,q,q,q,!0,q,q,q,q,q,q,q,q),q,q)],t.p),B.o,B.cN,B.n),q,q) -r=this.a -return A.aqt(q,A.aRg(new A.aCb(r,p),s,B.bj,q,new A.aCc(),!1),q,new A.aCd(r))}, -$S:591} -A.aCd.prototype={ -$0(){var s=0,r=A.I(t.H),q,p=this -var $async$$0=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:q=p.a.Gz() -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$$0,r)}, -$S:10} -A.aCc.prototype={ -$2(a,b){return B.oG}, -$S:592} -A.aCb.prototype={ -$2(a,b){return this.a.a9D(this.b[b])}, -$S:212} -A.aC8.prototype={ -$0(){return this.a.uh(this.b)}, -$S:0} -A.aC9.prototype={ -$0(){return this.a.ud(this.b)}, -$S:0} -A.aCa.prototype={ -$0(){var s=this.b.x -s.toString -A.v0(new A.nF(s)) -this.a.c.aA(t.Pu).f.qo(B.a9z)}, -$S:0} -A.aCm.prototype={ -$1(a){return A.x4(A.c([A.x2(B.fG,new A.aCk(a),null),A.mK(B.lb,new A.aCl(a))],t.p),B.af8,B.aeZ)}, -$S:31} -A.aCk.prototype={ -$0(){A.ct(this.a,!1).q0(!1) -return null}, -$S:0} -A.aCl.prototype={ -$0(){A.ct(this.a,!1).q0(!0) -return null}, -$S:0} -A.aCj.prototype={ -$1(a){var s=null,r=A.ai("\u786e\u5b9a\u8981\u53d6\u6d88\u8ba2\u5355 "+this.a.b+" \u5417\uff1f",s,s,s,s,s,s) -return A.x4(A.c([A.x2(B.aeM,new A.aCh(a),s),A.aRS(B.af9,new A.aCi(a),s)],t.p),r,B.af2)}, -$S:31} -A.aCh.prototype={ -$0(){A.ct(this.a,!1).q0(!1) -return null}, -$S:0} -A.aCi.prototype={ -$0(){A.ct(this.a,!1).q0(!0) -return null}, -$S:0} -A.Gl.prototype={ -ah(){var s=$.af() -return new A.a9K(new A.by(null,t.jV),new A.eD(B.b6,s),new A.eD(B.b6,s),null)}} -A.a9K.prototype={ -gjV(){return!0}, -aw(){this.a8a() -$.a1.k4$.push(new A.aL8(this))}, -l(){var s=this.r,r=$.af() -s.P$=r -s.L$=0 -s=this.w -s.P$=r -s.L$=0 -this.aQ()}, -K(a){var s,r,q=null -this.lD(a) -s=A.P(a).ax -r=s.aB -if(r==null)r=s.k2 -return A.ow(q,r,new A.AH(new A.aL7(this),q,q,t.wS),q)}, -abZ(){var s,r,q,p=this,o=p.c -o.toString -A.P(o) -s=p.r.a.a -r=p.w.a.a -o=p.d -q=p.c -q.toString -A.hT(new A.aL0(p,o===0,r,s),q,t.z)}, -alN(){var s,r,q=this,p=q.c -p.toString -p=A.P(p) -s=q.d -r=q.c -r.toString -A.hT(new A.aL2(q,p.ax,s===0),r,t.z)}} -A.aL8.prototype={ -$1(a){var s=this.a.c -s.toString -A.dx(s,!1,t.yo).L2() -return null}, -$S:4} -A.aL7.prototype={ -$4(a,b,c,d){var s,r,q=null,p=this.a,o=A.c([new A.a17(p.e,b.b,new A.aL4(p),q),A.a8(q,16,q)],t.p),n=p.e -if(n!=null)o.push(new A.a5_(n,q)) -o.push(A.a8(q,16,q)) -n=p.d -s=p.e -r=c.c -r=r==null?q:r.c -o.push(new A.a9J(n,s,p.r,p.w,r,new A.aL5(p),q)) -o.push(A.a8(q,24,q)) -r=p.d -s=p.e -n=s==null?q:s.b -o.push(new A.a9I(r===0,n,new A.aL6(p),q)) -return A.oJ(A.x5(A.bJ(o,B.o,B.m,B.n),p.f),q,B.bj,q,B.L)}, -$S:593} -A.aL4.prototype={ -$1(a){var s=this.a -s.e=a -s.r.sde(a.gKe())}, -$S:594} -A.aL5.prototype={ -$1(a){var s=this.a -return s.ar(new A.aL3(s,a))}, -$S:24} -A.aL3.prototype={ -$0(){return this.a.d=this.b}, -$S:0} -A.aL6.prototype={ -$0(){var s=this.a -if(s.f.gS().op())s.abZ()}, -$S:0} -A.aL0.prototype={ -$1(a){var s,r,q=this,p=null,o=q.b,n=A.ai(o?"\u786e\u8ba4\u4e70\u5165":"\u786e\u8ba4\u5356\u51fa",p,p,p,p,p,p) -o=o?"\u4e70\u5165":"\u5356\u51fa" -s=q.a -r=s.e -r=r==null?p:r.b -if(r==null)r="" -r=A.ai(o+" "+q.c+" "+r+" @ "+q.d+" USDT",p,p,p,p,p,p) -return A.x4(A.c([A.x2(B.fG,new A.aKZ(a),p),A.mK(B.lb,new A.aL_(s,a))],t.p),r,n)}, -$S:31} -A.aKZ.prototype={ -$0(){return A.ct(this.a,!1).ct()}, -$S:0} -A.aL_.prototype={ -$0(){A.ct(this.b,!1).ct() -this.a.alN()}, -$S:0} -A.aL2.prototype={ -$1(a){var s=null,r=t.p,q=A.bw(A.c([A.aX2(this.b.b,B.rC,24),A.a8(s,s,8),B.aeR],r),B.o,B.m,B.n,s),p=this.c?"\u4e70\u5165":"\u5356\u51fa",o=this.a,n=o.w.a.a,m=o.e -m=m==null?s:m.b -if(m==null)m="" -m=A.ai("\u5df2"+p+" "+n+" "+m,s,s,s,s,s,s) -return A.x4(A.c([A.mK(B.oT,new A.aL1(o,a))],r),m,q)}, -$S:31} -A.aL1.prototype={ -$0(){A.ct(this.b,!1).ct() -this.a.w.n_(B.Jr)}, -$S:0} -A.a17.prototype={ -K(a){var s,r,q,p,o,n,m,l=null,k=A.P(a).ax,j=this.c,i=j==null -if(i&&J.jt(this.d))$.a1.k4$.push(new A.aAA(this)) -s=i?l:j.gYA() -r=A.a8(l,l,12) -q=!i?j.b+"/USDT":"\u9009\u62e9\u5e01\u79cd" -p=k.k3 -q=A.ai(q,l,l,l,A.fD().$3$color$fontSize$fontWeight(p,18,B.M),l,l) -o=A.a8(l,4,l) -j=i?l:j.c -if(j==null)j="\u70b9\u51fb\u9009\u62e9\u4ea4\u6613\u5bf9" -i=k.rx -n=i==null -m=t.p -j=A.cJ(A.bJ(A.c([q,o,A.ai(j,l,l,l,A.ay(l,l,n?p:i,l,l,l,l,l,l,l,l,12,l,l,l,l,l,!0,l,l,l,l,l,l,l,l),l,l)],m),B.T,B.m,B.n),1,l) -return A.aQW(A.bw(A.c([new A.a16(s,l),r,j,A.ce(B.eb,n?p:i,l,l)],m),B.o,B.m,B.n,l),l,!1)}} -A.aAA.prototype={ -$1(a){var s=this.a -return s.e.$1(J.lx(s.d))}, -$S:4} -A.a16.prototype={ -K(a){var s=null,r=A.P(a).ax.b,q=r.aI(0.1),p=A.bK(8),o=A.dB(r.aI(0.2),1),n=this.c -if(n==null)n="?" -return A.bL(s,A.dp(A.ai(n,s,s,s,A.ay(s,s,r,s,s,s,s,s,s,s,s,20,s,s,B.M,s,s,!0,s,s,s,s,s,s,s,s),s,s),s,s),B.v,s,s,new A.bm(q,s,o,p,s,s,s,B.G),s,44,s,s,s,s,44)}} -A.a5_.prototype={ -K(a){var s,r,q,p,o=null,n=A.P(a).ax,m=this.c,l=m.x>=0,k=l?B.ac:B.c1 -if(l)s=A.ar(B.d.aY(25.5),B.ac.A()>>>16&255,B.ac.A()>>>8&255,B.ac.A()&255) -else{l=n.fy -s=A.ar(B.d.aY(25.5),l.A()>>>16&255,l.A()>>>8&255,l.A()&255)}l=n.rx -r=t.p -l=A.bJ(A.c([A.ai("\u6700\u65b0\u4ef7",o,o,o,A.ay(o,o,l==null?n.k3:l,o,o,o,o,o,o,o,o,12,o,o,o,o,o,!0,o,o,o,o,o,o,o,o),o,o),A.a8(o,4,o),A.ai("$"+m.gKe(),o,o,o,A.fD().$3$color$fontSize$fontWeight(n.k3,28,B.M),o,o)],r),B.T,B.m,B.n) -q=A.bK(8) -p=A.dB(A.ar(51,k.A()>>>16&255,k.A()>>>8&255,k.A()&255),1) -return A.aQW(A.bw(A.c([l,A.bL(o,A.ai(m.gZu(),o,o,o,A.ay(o,o,k,o,o,o,o,o,o,o,o,16,o,o,B.M,o,o,!0,o,o,o,o,o,o,o,o),o,o),B.v,o,o,new A.bm(s,o,p,q,o,o,o,B.G),o,o,o,new A.a2(16,8,16,8),o,o,o)],r),B.o,B.b4,B.n,o),o,!1)}} -A.a9J.prototype={ -K(a){var s,r,q,p,o=this,n=null,m=A.P(a).ax,l=A.a8(n,24,n),k=o.e,j=o.Pg(m,k,"\u4ef7\u683c(USDT)","\u8f93\u5165\u4ef7\u683c","USDT"),i=A.a8(n,16,n),h=o.f,g=o.d -g=g==null?n:g.b -g=o.Pg(m,h,"\u6570\u91cf","\u8f93\u5165\u6570\u91cf",g==null?"":g) -s=A.a8(n,24,n) -r=A.Ur(k.a.a) -if(r==null)r=0 -q=A.Ur(h.a.a) -k=B.d.aq(r*(q==null?0:q),2) -h=A.a8(n,8,n) -p=o.r -if(p==null)p="0.00" -return A.kD(n,A.bJ(A.c([new A.a9L(o.c,o.w,n),l,j,i,g,s,new A.I8("\u4ea4\u6613\u91d1\u989d",k+" USDT",m,n),h,new A.I8("\u53ef\u7528",p+" USDT",m,n)],t.p),B.o,B.m,B.n),n,new A.a2(24,24,24,24))}, -Pg(a,b,c,d,e){var s,r,q,p,o,n,m=null,l=a.rx,k=l==null,j=A.ai(c,m,m,m,A.ay(m,m,k?a.k3:l,m,m,m,m,m,m,m,m,10,m,m,B.M,m,m,!0,m,0.2,m,m,m,m,m,m),m,m),i=A.a8(m,4,m),h=a.p2 -if(h==null)h=a.k2 -s=A.bK(16) -r=a.to -q=r==null -if(q){p=a.n -if(p==null)p=a.k3}else p=r -p=A.dB(p.aI(0.3),1) -o=a.k3 -n=A.fD().$3$color$fontSize$fontWeight(o,20,B.M) -if(q){r=a.n -if(r==null)r=o}r=A.ay(m,m,r.aI(0.5),m,m,m,m,m,m,m,m,m,m,m,m,m,m,!0,m,m,m,m,m,m,m,m) -return A.bJ(A.c([j,i,A.bL(m,A.aS6(m,B.ff,!1,m,!0,B.N,m,A.b2b(),b,m,m,m,m,m,2,A.Rc(m,B.lo,m,new A.a2(16,16,16,16),m,m,m,m,!0,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,r,d,m,m,m,m,m,m,m,m,m,!0,!0,!1,m,m,m,m,m,m,m,m,new A.bR(new A.a2(0,0,8,0),A.ai(e,m,m,m,A.ay(m,m,k?o:l,m,m,m,m,m,m,m,m,12,m,m,B.M,m,m,!0,m,m,m,m,m,m,m,m),m,m),m),m,B.KS,m,m,m),B.W,!0,m,!0,m,!1,m,B.ep,m,m,m,m,B.fD,m,m,m,1,m,m,!1,"\u2022",m,m,m,m,m,!1,m,m,!1,m,!0,m,B.iZ,m,m,m,m,m,m,m,m,m,m,m,n,!0,B.aN,m,B.l7,m,m,m,m),B.v,m,m,new A.bm(h,m,p,s,m,m,m,B.G),m,m,m,m,m,m,m)],t.p),B.T,B.m,B.n)}} -A.a9L.prototype={ -K(a){var s,r,q=null,p=A.P(a).ax,o=p.p2 -if(o==null)o=p.k2 -s=A.bK(16) -r=this.c -return A.bL(q,A.bw(A.c([A.cJ(new A.KA("Buy",r===0,B.ac,new A.aL9(this),q),1,q),A.a8(q,q,8),A.cJ(new A.KA("Sell",r===1,B.c1,new A.aLa(this),q),1,q)],t.p),B.o,B.m,B.n,q),B.v,q,q,new A.bm(o,q,q,s,q,q,q,B.G),q,q,q,new A.a2(4,4,4,4),q,q,q)}} -A.aL9.prototype={ -$0(){return this.a.d.$1(0)}, -$S:0} -A.aLa.prototype={ -$0(){return this.a.d.$1(1)}, -$S:0} -A.KA.prototype={ -K(a){var s,r,q,p,o=this,n=null,m=o.d -if(m){s=o.e -s=A.ar(38,s.A()>>>16&255,s.A()>>>8&255,s.A()&255)}else s=B.D -r=A.bK(8) -if(m)q=n -else{q=o.e -q=A.dB(A.ar(B.d.aY(76.5),q.A()>>>16&255,q.A()>>>8&255,q.A()&255),1)}p=o.e -return A.eP(n,A.uE(A.dp(A.ai(o.c,n,n,n,A.ay(n,n,m?p:A.ar(B.d.aY(178.5),p.A()>>>16&255,p.A()>>>8&255,p.A()&255),n,n,n,n,n,n,n,n,14,n,n,B.M,n,n,!0,n,0.5,n,n,n,n,n,n),n,n),n,n),n,new A.bm(s,n,q,r,n,n,n,B.G),B.a3,n,n,n,new A.a2(0,12,0,12),n),B.W,!1,n,n,n,n,n,n,n,n,n,n,n,n,n,n,o.f,n,n,n,n,n,n)}} -A.I8.prototype={ -K(a){var s=null,r=this.e,q=r.rx -return A.bw(A.c([A.ai(this.c,s,s,s,A.ay(s,s,q==null?r.k3:q,s,s,s,s,s,s,s,s,14,s,s,s,s,s,!0,s,s,s,s,s,s,s,s),s,s),A.ai(this.d,s,s,s,A.fD().$3$color$fontSize$fontWeight(r.k3,14,B.b9),s,s)],t.p),B.o,B.b4,B.n,s)}} -A.a9I.prototype={ -K(a){var s,r=this.c,q=r?"\u4e70\u5165":"\u5356\u51fa",p=this.d -if(p==null)p="" -s=r?B.DV:B.DW -r=r?B.Pz:B.PC -return A.ik(48,r,this.e,!0,q+" "+p,s,1/0)}, -gvs(){return this.d}} -A.LD.prototype={ -aw(){this.b3() -this.ka()}, -dA(){var s=this.dh$ -if(s!=null){s.a7() -s.d8() -this.dh$=null}this.iF()}} -A.UG.prototype={ -Bu(a,b,c){return this.asS(a,b,c)}, -asS(a,b,c){var s=0,r=A.I(t.H),q=1,p=[],o=[],n=this,m,l,k,j,i,h,g -var $async$Bu=A.J(function(d,e){if(d===1){p.push(e) -s=q}for(;;)switch(s){case 0:h=null -q=3 -m=n.a.h(0,a) -s=m!=null?6:7 -break -case 6:j=m.$1(b) -s=8 -return A.p(t.T8.b(j)?j:A.he(j,t.CD),$async$Bu) -case 8:h=e -case 7:o.push(5) -s=4 -break -case 3:q=2 -g=p.pop() -l=A.aj(g) -k=A.b3(g) -j=A.bZ("during a framework-to-plugin message") -A.dE(new A.c9(l,k,"flutter web plugins",j,null,!1)) -o.push(5) -s=4 -break -case 2:o=[1] -case 4:q=1 -if(c!=null)c.$1(h) -s=o.pop() -break -case 5:return A.G(null,r) -case 1:return A.F(p.at(-1),r)}}) -return A.H($async$Bu,r)}} -A.apM.prototype={} -A.aeH.prototype={} -A.aOY.prototype={ -$1(a){return $.b1Z.J(0,this.a)}, -$S:596} -A.aj9.prototype={} -A.nU.prototype={ -gDg(){return"https://fonts.gstatic.com/s/a/"+this.a+".ttf"}} -A.aja.prototype={ -k(a){return this.a+"_"+this.b.k(0)}} -A.kE.prototype={ -a1v(){var s,r=$.b4b(),q=r.h(0,this.a) -if(q==null){r=r.h(0,B.p) -r.toString -q=r}s=this.b===B.rw?"Italic":"" -if(q==="Regular")return s===""?q:s -return q+s}, -k(a){var s,r=this.a,q=r.j(0,B.p)?"":r.a,p=this.b.N() -p=A.nu(p,"FontStyle.","") -s=B.c.tk(p,"normal",r.j(0,B.p)?"regular":"") -return A.j(q)+s}, -gt(a){return A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -return b instanceof A.kE&&b.a.j(0,s.a)&&b.b===s.b}} -A.V9.prototype={} -A.acV.prototype={ -zh(a,b,c){return this.alg(a,b,c)}, -alg(a,b,c){var s=0,r=A.I(t.Wd),q,p=this,o,n -var $async$zh=A.J(function(d,e){if(d===1)return A.F(e,r) -for(;;)switch(s){case 0:o=A.bar(a,b) -n=A -s=3 -return A.p(p.hX(o),$async$zh) -case 3:q=n.arR(e) -s=1 -break -case 1:return A.G(q,r)}}) -return A.H($async$zh,r)}} -A.MJ.prototype={ -asm(){if(this.w)throw A.i(A.aL("Can't finalize a finalized Request.")) -this.w=!0 -return B.La}, -k(a){return this.a+" "+this.b.k(0)}} -A.acX.prototype={ -$2(a,b){return a.toLowerCase()===b.toLowerCase()}, -$S:135} -A.acY.prototype={ -$1(a){return B.c.gt(a.toLowerCase())}, -$S:136} -A.acZ.prototype={ -OD(a,b,c,d,e,f,g){var s=this.b -if(s<100)throw A.i(A.c1("Invalid status code "+s+".",null)) -else{s=this.d -if(s!=null&&s<0)throw A.i(A.c1("Invalid content length "+A.j(s)+".",null))}}} -A.adh.prototype={ -hX(a){return this.a2U(a)}, -a2U(b5){var s=0,r=A.I(t.kj),q,p=2,o=[],n=[],m=this,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4 -var $async$hX=A.J(function(b6,b7){if(b6===1){o.push(b7) -s=p}for(;;)switch(s){case 0:b1=v.G -b2=new b1.AbortController() -b3=m.c -b3.push(b2) -b5.a3W() -s=3 -return A.p(new A.uN(A.aZA(b5.y,t.Cm)).a1w(),$async$hX) -case 3:l=b7 -p=5 -k=b5 -j=null -i=!1 -h=null -a3=b5.b -a4=a3.k(0) -a5=!J.js(l)?l:null -a6=t.N -g=A.t(a6,t.K) -f=b5.y.length -e=null -if(f!=null){e=f -J.lw(g,"content-length",e)}for(a7=b5.r,a7=new A.dZ(a7,A.n(a7).i("dZ<1,2>")).gai(0);a7.v();){a8=a7.d -a8.toString -d=a8 -J.lw(g,d.a,d.b)}g=A.ac(g) -g.toString -A.fT(g) -a7=b2.signal -s=8 -return A.p(A.hS(b1.fetch(a4,{method:b5.a,headers:g,body:a5,credentials:"same-origin",redirect:"follow",signal:a7}),t.m),$async$hX) -case 8:c=b7 -b=c.headers.get("content-length") -a=b!=null?A.DE(b,null):null -if(a==null&&b!=null){g=A.b6c("Invalid content-length header ["+b+"].",a3) -throw A.i(g)}a0=A.t(a6,a6) -g=c.headers -b1=new A.adi(a0) -if(typeof b1=="function")A.a0(A.c1("Attempting to rewrap a JS function.",null)) -a9=function(b8,b9){return function(c0,c1,c2){return b8(b9,c0,c1,c2,arguments.length)}}(A.beo,b1) -a9[$.LW()]=b1 -g.forEach(a9) -g=A.beg(b5,c) -b1=c.status -a3=a0 -a5=a -A.iD(c.url,0,null) -a6=c.statusText -g=new A.Yu(A.bl4(g),b5,b1,a6,a5,a3,!1,!0) -g.OD(b1,a5,a3,!1,!0,a6,b5) -q=g -n=[1] -s=6 -break -n.push(7) -s=6 -break -case 5:p=4 -b4=o.pop() -a1=A.aj(b4) -a2=A.b3(b4) -A.b1_(a1,a2,b5) -n.push(7) -s=6 -break -case 4:n=[2] -case 6:p=2 -B.b.J(b3,b2) -s=n.pop() -break -case 7:case 1:return A.G(q,r) -case 2:return A.F(o.at(-1),r)}}) -return A.H($async$hX,r)}} -A.adi.prototype={ -$3(a,b,c){this.a.m(0,b.toLowerCase(),a)}, -$2(a,b){return this.$3(a,b,null)}, -$S:597} -A.aLZ.prototype={ -$1(a){return A.zj(this.a,this.b,a)}, -$S:598} -A.aO4.prototype={ -$0(){var s=this.a,r=s.a -if(r!=null){s.a=null -r.fW()}}, -$S:0} -A.aO5.prototype={ -$0(){var s=0,r=A.I(t.H),q=1,p=[],o=this,n,m,l,k -var $async$$0=A.J(function(a,b){if(a===1){p.push(b) -s=q}for(;;)switch(s){case 0:q=3 -o.a.c=!0 -s=6 -return A.p(A.hS(o.b.cancel(),t.X),$async$$0) -case 6:q=1 -s=5 -break -case 3:q=2 -k=p.pop() -n=A.aj(k) -m=A.b3(k) -if(!o.a.b)A.b1_(n,m,o.c) -s=5 -break -case 2:s=1 -break -case 5:return A.G(null,r) -case 1:return A.F(p.at(-1),r)}}) -return A.H($async$$0,r)}, -$S:10} -A.uN.prototype={ -a1w(){var s=new A.ax($.as,t.aP),r=new A.bC(s,t.gI),q=new A.H7(new A.adH(r),new Uint8Array(1024)) -this.f8(q.gke(q),!0,q.gAf(),r.gXw()) -return s}} -A.adH.prototype={ -$1(a){return this.a.dR(new Uint8Array(A.iN(a)))}, -$S:137} -A.pV.prototype={ -k(a){var s=this.b.k(0) -return"ClientException: "+this.a+", uri="+s}, -$icx:1} -A.arQ.prototype={} -A.Vc.prototype={} -A.FB.prototype={} -A.Yu.prototype={} -A.Al.prototype={} -A.CW.prototype={ -k(a){var s=new A.cf(""),r=this.a -s.a=r -r+="/" -s.a=r -s.a=r+this.b -this.c.a.aL(0,new A.anS(s)) -r=s.a -return r.charCodeAt(0)==0?r:r}} -A.anQ.prototype={ -$0(){var s,r,q,p,o,n,m,l,k,j=this.a,i=new A.awa(null,j),h=$.b5d() -i.DB(h) -s=$.b5b() -i.vR(s) -r=i.gKZ().h(0,0) -r.toString -i.vR("/") -i.vR(s) -q=i.gKZ().h(0,0) -q.toString -i.DB(h) -p=t.N -o=A.t(p,p) -for(;;){p=i.d=B.c.pS(";",j,i.c) -n=i.e=i.c -m=p!=null -p=m?i.e=i.c=p.gc4():n -if(!m)break -p=i.d=h.pS(0,j,p) -i.e=i.c -if(p!=null)i.e=i.c=p.gc4() -i.vR(s) -if(i.c!==i.e)i.d=null -p=i.d.h(0,0) -p.toString -i.vR("=") -n=i.d=s.pS(0,j,i.c) -l=i.e=i.c -m=n!=null -if(m){n=i.e=i.c=n.gc4() -l=n}else n=l -if(m){if(n!==l)i.d=null -n=i.d.h(0,0) -n.toString -k=n}else k=A.bjQ(i) -n=i.d=h.pS(0,j,i.c) -i.e=i.c -if(n!=null)i.e=i.c=n.gc4() -o.m(0,p,k)}i.as2() -return A.b9c(r,q,o)}, -$S:599} -A.anS.prototype={ -$2(a,b){var s,r,q=this.a -q.a+="; "+a+"=" -s=$.b57() -s=s.b.test(b) -r=q.a -if(s){q.a=r+'"' -s=A.b29(b,$.b48(),new A.anR(),null) -q.a=(q.a+=s)+'"'}else q.a=r+b}, -$S:600} -A.anR.prototype={ -$1(a){return"\\"+A.j(a.h(0,0))}, -$S:198} -A.aOR.prototype={ -$1(a){var s=a.h(0,1) -s.toString -return s}, -$S:198} -A.ve.prototype={ -k(a){return this.a}} -A.ob.prototype={ -k(a){return this.a}} -A.hq.prototype={ -P3(a,b){var s=this.d -this.d=s==null?a:s+b+a}, -js(a){var s=this,r=s.c -if(!J.iQ($.ac6(),r).aN(a))s.P3(a," ") -else s.P3(J.iQ($.ac6(),r).h(0,a)," ") -return s}} -A.hr.prototype={ -$8(a,b,c,d,e,f,g,h){if(h)return A.b6U(a,b,c,d,e,f,g) -else return A.b6T(a,b,c,d,e,f,g)}, -$S:602} -A.aoT.prototype={ -k(a){return"NumberFormat("+this.fx+", "+A.j(this.fr)+")"}} -A.aoX.prototype={ -$1(a){return this.a}, -$S:603} -A.aoW.prototype={ -$1(a){return a.Q}, -$S:604} -A.TT.prototype={} -A.aoU.prototype={ -ajj(){var s,r,q,p,o,n,m,l,k,j=this,i=j.f -i.b=j.z2() -s=j.ajk() -i.d=j.z2() -r=j.b -if(r.Cu()===";"){++r.b -i.a=j.z2() -for(q=s.length,p=r.a,o=p.length,n=0;n=o.a.length)return!1 -s=o.Cu() -if(s==="'"){r=o.LH(2) -if(r.length===2&&r[1]==="'"){++o.b -a.a+="'"}else p.w=!p.w -return!0}if(p.w)a.a+=s -else switch(s){case"#":case"0":case",":case".":case";":return!1 -case"\xa4":a.a+=p.d -break -case"%":o=p.f -q=o.e -if(q!==1&&q!==100)throw A.i(B.rz) -o.e=100 -a.a+=p.a.d -break -case"\u2030":o=p.f -q=o.e -if(q!==1&&q!==1000)throw A.i(B.rz) -o.e=1000 -a.a+=p.a.x -break -default:a.a+=s}return!0}, -ajk(){var s,r,q,p,o,n=this,m=new A.cf(""),l=n.b,k=l.a,j=k.length,i=!0 -for(;;){s=l.b -if(!(B.c.a6(k,s,Math.min(s+1,j)).length!==0&&i))break -i=n.awW(m)}l=n.z -if(l===0&&n.y>0&&n.x>=0){r=n.x -if(r===0)r=1 -n.Q=n.y-r -n.y=r-1 -l=n.z=1}q=n.x -if(!(q<0&&n.Q>0)){if(q>=0){j=n.y -j=qj+l}else j=!1 -j=j||n.as===0}else j=!0 -if(j)throw A.i(A.ca('Malformed pattern "'+k+'"',null,null)) -k=n.y -l=k+l -p=l+n.Q -j=n.f -s=q>=0 -o=s?p-q:0 -j.x=o -if(s){l-=q -j.y=l -if(l<0)j.y=0}l=j.w=(s?q:p)-k -if(j.ax){j.r=k+l -if(o===0&&l===0)j.w=1}l=Math.max(0,n.as) -j.Q=l -if(!n.r)j.z=l -j.as=q===0||q===p -l=m.a -return l.charCodeAt(0)==0?l:l}, -awW(a){var s,r,q,p,o,n=this,m=null,l=n.b,k=l.Cu() -switch(k){case"#":if(n.z>0)++n.Q -else ++n.y -s=n.as -if(s>=0&&n.x<0)n.as=s+1 -break -case"0":if(n.Q>0)throw A.i(A.ca('Unexpected "0" in pattern "'+l.a,m,m));++n.z -s=n.as -if(s>=0&&n.x<0)n.as=s+1 -break -case",":s=n.as -if(s>0){n.r=!0 -n.f.z=s}n.as=0 -break -case".":if(n.x>=0)throw A.i(A.ca('Multiple decimal separators in pattern "'+l.k(0)+'"',m,m)) -n.x=n.y+n.z+n.Q -break -case"E":a.a+=k -s=n.f -if(s.ax)throw A.i(A.ca('Multiple exponential symbols in pattern "'+l.k(0)+'"',m,m)) -s.ax=!0 -s.f=0;++l.b -if(l.Cu()==="+"){r=l.axx() -a.a+=r -s.at=!0}for(r=l.a,q=r.length;p=l.b,o=p+1,p=B.c.a6(r,p,Math.min(o,q)),p==="0";){l.b=o -a.a+=p;++s.f}if(n.y+n.z<1||s.f<1)throw A.i(A.ca('Malformed exponential pattern "'+l.k(0)+'"',m,m)) -return!1 -default:return!1}a.a+=k;++l.b -return!0}} -A.awb.prototype={ -axx(){var s=this.LH(1);++this.b -return s}, -LH(a){var s=this.a,r=this.b -return B.c.a6(s,r,Math.min(r+a,s.length))}, -Cu(){return this.LH(1)}, -k(a){return this.a+" at "+this.b}} -A.xW.prototype={ -h(a,b){return A.LP(b)==="en_US"?this.b:this.V7()}, -aN(a){if(A.LP(a)!=="en_US")this.V7() -return!0}, -V7(){throw A.i(new A.RD("Locale data has not been initialized, call "+this.a+"."))}} -A.RD.prototype={ -k(a){return"LocaleDataException: "+this.a}, -$icx:1} -A.aPG.prototype={ -$1(a){return A.aTk(A.b28(a))}, -$S:120} -A.aPH.prototype={ -$1(a){return A.aTk(A.LP(a))}, -$S:120} -A.aPI.prototype={ -$1(a){return"fallback"}, -$S:120} -A.d_.prototype={} -A.Bj.prototype={ -bK(a){var s,r,q=this.x,p=q.h(0,a) -if(p!=null)return p -s=this.tK(a) -r=this.b.$1(a).bK(s) -if(q.a>4)q.aa(0) -q.m(0,a,r) -return r}, -tK(b1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8=this,a9=b1.e,b0=a8.w -if(b0!=null){s=b0.$1(b1) -r=s.a -q=s.b -p=s.c -o=s.d -n=s.e -m=a8.e.$1(b1).tK(b1) -l=!0 -if(o!==B.cV)if(!(o===B.eo&&!b1.d)){b0=o===B.afn&&b1.d -l=b0}k=l?r:q -j=l?q:r -i=b1.d?1:-1 -h=k.r.hV(a9) -g=j.r.hV(a9) -f=k.c.$1(b1) -e=A.q2(m,f)>=h?f:A.Bk(m,h) -d=j.c.$1(b1) -c=A.q2(m,d)>=g?d:A.Bk(m,g) -if(!((c-e)*i>=p)){a9=p*i -c=A.anI(0,100,e+a9) -e=(c-e)*i>=p?e:A.anI(0,100,c-a9)}b=60 -if(50<=e&&e<60){a9=p*i -if(i>0){c=Math.max(c,60+a9) -e=b}else{c=Math.min(c,49+a9) -e=49}}else if(50<=c&&c<60)if(n){a9=p*i -if(i>0){c=Math.max(c,60+a9) -e=b}else{c=Math.min(c,49+a9) -e=49}}else c=i>0?60:49 -return a8.a===k.a?e:c}else{a=a8.c.$1(b1) -b0=a8.e -if(b0==null)return a -m=b0.$1(b1).tK(b1) -a0=a8.r.hV(a9) -a=A.q2(m,a)>=a0?a:A.Bk(m,a0) -if(a8.d&&50<=a&&a<60)a=A.q2(49,m)>=a0?49:60 -a9=a8.f -if(a9!=null){a1=b0.$1(b1).tK(b1) -a2=a9.$1(b1).tK(b1) -a3=Math.max(a1,a2) -a4=Math.min(a1,a2) -if(A.q2(a3,a)>=a0&&A.q2(a4,a)>=a0)return a -a5=A.aVg(a0,a3) -a6=A.aVf(a0,a4) -a7=A.c([],t.n) -if(a5!==-1)a7.push(a5) -if(a6!==-1)a7.push(a6) -if(B.d.aY(a1)<60||B.d.aY(a2)<60)return a5<0?100:a5 -if(a7.length===1)return a7[0] -return a6<0?0:a6}return a}}} -A.em.prototype={} -A.alx.prototype={ -$1(a){return a.x}, -$S:6} -A.aly.prototype={ -$1(a){return a.d?6:98}, -$S:5} -A.alO.prototype={ -$1(a){return a.x}, -$S:6} -A.alP.prototype={ -$1(a){return a.d?90:10}, -$S:5} -A.alN.prototype={ -$1(a){return $.aTR()}, -$S:9} -A.anq.prototype={ -$1(a){return a.x}, -$S:6} -A.anr.prototype={ -$1(a){return a.d?6:98}, -$S:5} -A.anm.prototype={ -$1(a){return a.x}, -$S:6} -A.ann.prototype={ -$1(a){return a.d?6:new A.hp(87,87,80,75).hV(a.e)}, -$S:5} -A.ana.prototype={ -$1(a){return a.x}, -$S:6} -A.anb.prototype={ -$1(a){return a.d?new A.hp(24,24,29,34).hV(a.e):98}, -$S:5} -A.ani.prototype={ -$1(a){return a.x}, -$S:6} -A.anj.prototype={ -$1(a){return a.d?new A.hp(4,4,2,0).hV(a.e):100}, -$S:5} -A.ang.prototype={ -$1(a){return a.x}, -$S:6} -A.anh.prototype={ -$1(a){var s=a.e -return a.d?new A.hp(10,10,11,12).hV(s):new A.hp(96,96,96,95).hV(s)}, -$S:5} -A.ank.prototype={ -$1(a){return a.x}, -$S:6} -A.anl.prototype={ -$1(a){var s=a.e -return a.d?new A.hp(12,12,16,20).hV(s):new A.hp(94,94,92,90).hV(s)}, -$S:5} -A.anc.prototype={ -$1(a){return a.x}, -$S:6} -A.and.prototype={ -$1(a){var s=a.e -return a.d?new A.hp(17,17,21,25).hV(s):new A.hp(92,92,88,85).hV(s)}, -$S:5} -A.ane.prototype={ -$1(a){return a.x}, -$S:6} -A.anf.prototype={ -$1(a){var s=a.e -return a.d?new A.hp(22,22,26,30).hV(s):new A.hp(90,90,84,80).hV(s)}, -$S:5} -A.amp.prototype={ -$1(a){return a.x}, -$S:6} -A.amq.prototype={ -$1(a){return a.d?90:10}, -$S:5} -A.ano.prototype={ -$1(a){return a.y}, -$S:6} -A.anp.prototype={ -$1(a){return a.d?30:90}, -$S:5} -A.amn.prototype={ -$1(a){return a.y}, -$S:6} -A.amo.prototype={ -$1(a){return a.d?80:30}, -$S:5} -A.alL.prototype={ -$1(a){return a.x}, -$S:6} -A.alM.prototype={ -$1(a){return a.d?90:20}, -$S:5} -A.alG.prototype={ -$1(a){return a.x}, -$S:6} -A.alH.prototype={ -$1(a){return a.d?20:95}, -$S:5} -A.alF.prototype={ -$1(a){return $.aPN()}, -$S:9} -A.amH.prototype={ -$1(a){return a.y}, -$S:6} -A.amI.prototype={ -$1(a){return a.d?60:50}, -$S:5} -A.amF.prototype={ -$1(a){return a.y}, -$S:6} -A.amG.prototype={ -$1(a){return a.d?30:80}, -$S:5} -A.an8.prototype={ -$1(a){return a.x}, -$S:6} -A.an9.prototype={ -$1(a){return 0}, -$S:5} -A.amV.prototype={ -$1(a){return a.x}, -$S:6} -A.amW.prototype={ -$1(a){return 0}, -$S:5} -A.amS.prototype={ -$1(a){return a.f}, -$S:6} -A.amT.prototype={ -$1(a){if(a.c===B.ax)return a.d?100:0 -return a.d?80:40}, -$S:5} -A.amU.prototype={ -$1(a){return new A.fa($.LY(),$.LX(),10,B.cV,!1)}, -$S:21} -A.am7.prototype={ -$1(a){return a.f}, -$S:6} -A.am8.prototype={ -$1(a){if(a.c===B.ax)return a.d?10:90 -return a.d?20:100}, -$S:5} -A.am6.prototype={ -$1(a){return $.LX()}, -$S:9} -A.amJ.prototype={ -$1(a){return a.f}, -$S:6} -A.amK.prototype={ -$1(a){var s=a.c -if(s===B.es||s===B.er){s=a.b.c -s===$&&A.a() -return s}if(s===B.ax)return a.d?85:25 -return a.d?30:90}, -$S:5} -A.amL.prototype={ -$1(a){return new A.fa($.LY(),$.LX(),10,B.cV,!1)}, -$S:21} -A.alX.prototype={ -$1(a){return a.f}, -$S:6} -A.alY.prototype={ -$1(a){var s=a.c -if(s===B.es||s===B.er)return A.Bk($.LY().c.$1(a),4.5) -if(s===B.ax)return a.d?0:100 -return a.d?90:30}, -$S:5} -A.alW.prototype={ -$1(a){return $.LY()}, -$S:9} -A.alJ.prototype={ -$1(a){return a.f}, -$S:6} -A.alK.prototype={ -$1(a){return a.d?40:80}, -$S:5} -A.alI.prototype={ -$1(a){return $.aPN()}, -$S:9} -A.an5.prototype={ -$1(a){return a.r}, -$S:6} -A.an6.prototype={ -$1(a){return a.d?80:40}, -$S:5} -A.an7.prototype={ -$1(a){return new A.fa($.M0(),$.ac_(),10,B.cV,!1)}, -$S:21} -A.aml.prototype={ -$1(a){return a.r}, -$S:6} -A.amm.prototype={ -$1(a){if(a.c===B.ax)return a.d?10:100 -else return a.d?20:100}, -$S:5} -A.amk.prototype={ -$1(a){return $.ac_()}, -$S:9} -A.amX.prototype={ -$1(a){return a.r}, -$S:6} -A.amY.prototype={ -$1(a){var s=a.d,r=s?30:90,q=a.c -if(q===B.ax)return s?30:85 -if(!(q===B.es||q===B.er))return r -q=a.r -return A.b8X(q.a,q.b,r,!s)}, -$S:5} -A.amZ.prototype={ -$1(a){return new A.fa($.M0(),$.ac_(),10,B.cV,!1)}, -$S:21} -A.ama.prototype={ -$1(a){return a.r}, -$S:6} -A.amb.prototype={ -$1(a){var s=a.c -if(s===B.ax)return a.d?90:10 -if(!(s===B.es||s===B.er))return a.d?90:30 -return A.Bk($.M0().c.$1(a),4.5)}, -$S:5} -A.am9.prototype={ -$1(a){return $.M0()}, -$S:9} -A.anB.prototype={ -$1(a){return a.w}, -$S:6} -A.anC.prototype={ -$1(a){if(a.c===B.ax)return a.d?90:25 -return a.d?80:40}, -$S:5} -A.anD.prototype={ -$1(a){return new A.fa($.M3(),$.ac0(),10,B.cV,!1)}, -$S:21} -A.amD.prototype={ -$1(a){return a.w}, -$S:6} -A.amE.prototype={ -$1(a){if(a.c===B.ax)return a.d?10:90 -return a.d?20:100}, -$S:5} -A.amC.prototype={ -$1(a){return $.ac0()}, -$S:9} -A.ans.prototype={ -$1(a){return a.w}, -$S:6} -A.ant.prototype={ -$1(a){var s=a.c -if(s===B.ax)return a.d?60:49 -if(!(s===B.es||s===B.er))return a.d?30:90 -s=a.b.c -s===$&&A.a() -s=A.aQH(a.w.bK(s)).c -s===$&&A.a() -return s}, -$S:5} -A.anu.prototype={ -$1(a){return new A.fa($.M3(),$.ac0(),10,B.cV,!1)}, -$S:21} -A.ams.prototype={ -$1(a){return a.w}, -$S:6} -A.amt.prototype={ -$1(a){var s=a.c -if(s===B.ax)return a.d?0:100 -if(!(s===B.es||s===B.er))return a.d?90:30 -return A.Bk($.M3().c.$1(a),4.5)}, -$S:5} -A.amr.prototype={ -$1(a){return $.M3()}, -$S:9} -A.alC.prototype={ -$1(a){return a.z}, -$S:6} -A.alD.prototype={ -$1(a){return a.d?80:40}, -$S:5} -A.alE.prototype={ -$1(a){return new A.fa($.abZ(),$.abY(),10,B.cV,!1)}, -$S:21} -A.alU.prototype={ -$1(a){return a.z}, -$S:6} -A.alV.prototype={ -$1(a){return a.d?20:100}, -$S:5} -A.alT.prototype={ -$1(a){return $.abY()}, -$S:9} -A.alz.prototype={ -$1(a){return a.z}, -$S:6} -A.alA.prototype={ -$1(a){return a.d?30:90}, -$S:5} -A.alB.prototype={ -$1(a){return new A.fa($.abZ(),$.abY(),10,B.cV,!1)}, -$S:21} -A.alR.prototype={ -$1(a){return a.z}, -$S:6} -A.alS.prototype={ -$1(a){if(a.c===B.ax)return a.d?90:10 -return a.d?90:30}, -$S:5} -A.alQ.prototype={ -$1(a){return $.abZ()}, -$S:9} -A.amP.prototype={ -$1(a){return a.f}, -$S:6} -A.amQ.prototype={ -$1(a){return a.c===B.ax?40:90}, -$S:5} -A.amR.prototype={ -$1(a){return new A.fa($.LZ(),$.M_(),10,B.eo,!0)}, -$S:21} -A.amM.prototype={ -$1(a){return a.f}, -$S:6} -A.amN.prototype={ -$1(a){return a.c===B.ax?30:80}, -$S:5} -A.amO.prototype={ -$1(a){return new A.fa($.LZ(),$.M_(),10,B.eo,!0)}, -$S:21} -A.am3.prototype={ -$1(a){return a.f}, -$S:6} -A.am5.prototype={ -$1(a){return a.c===B.ax?100:10}, -$S:5} -A.am2.prototype={ -$1(a){return $.M_()}, -$S:9} -A.am4.prototype={ -$1(a){return $.LZ()}, -$S:9} -A.am_.prototype={ -$1(a){return a.f}, -$S:6} -A.am1.prototype={ -$1(a){return a.c===B.ax?90:30}, -$S:5} -A.alZ.prototype={ -$1(a){return $.M_()}, -$S:9} -A.am0.prototype={ -$1(a){return $.LZ()}, -$S:9} -A.an2.prototype={ -$1(a){return a.r}, -$S:6} -A.an3.prototype={ -$1(a){return a.c===B.ax?80:90}, -$S:5} -A.an4.prototype={ -$1(a){return new A.fa($.M1(),$.M2(),10,B.eo,!0)}, -$S:21} -A.an_.prototype={ -$1(a){return a.r}, -$S:6} -A.an0.prototype={ -$1(a){return a.c===B.ax?70:80}, -$S:5} -A.an1.prototype={ -$1(a){return new A.fa($.M1(),$.M2(),10,B.eo,!0)}, -$S:21} -A.amh.prototype={ -$1(a){return a.r}, -$S:6} -A.amj.prototype={ -$1(a){return 10}, -$S:5} -A.amg.prototype={ -$1(a){return $.M2()}, -$S:9} -A.ami.prototype={ -$1(a){return $.M1()}, -$S:9} -A.amd.prototype={ -$1(a){return a.r}, -$S:6} -A.amf.prototype={ -$1(a){return a.c===B.ax?25:30}, -$S:5} -A.amc.prototype={ -$1(a){return $.M2()}, -$S:9} -A.ame.prototype={ -$1(a){return $.M1()}, -$S:9} -A.any.prototype={ -$1(a){return a.w}, -$S:6} -A.anz.prototype={ -$1(a){return a.c===B.ax?40:90}, -$S:5} -A.anA.prototype={ -$1(a){return new A.fa($.M4(),$.M5(),10,B.eo,!0)}, -$S:21} -A.anv.prototype={ -$1(a){return a.w}, -$S:6} -A.anw.prototype={ -$1(a){return a.c===B.ax?30:80}, -$S:5} -A.anx.prototype={ -$1(a){return new A.fa($.M4(),$.M5(),10,B.eo,!0)}, -$S:21} -A.amz.prototype={ -$1(a){return a.w}, -$S:6} -A.amB.prototype={ -$1(a){return a.c===B.ax?100:10}, -$S:5} -A.amy.prototype={ -$1(a){return $.M5()}, -$S:9} -A.amA.prototype={ -$1(a){return $.M4()}, -$S:9} -A.amv.prototype={ -$1(a){return a.w}, -$S:6} -A.amx.prototype={ -$1(a){return a.c===B.ax?90:30}, -$S:5} -A.amu.prototype={ -$1(a){return $.M5()}, -$S:9} -A.amw.prototype={ -$1(a){return $.M4()}, -$S:9} -A.hp.prototype={ -hV(a){var s,r=this -if(a<0.5)return A.aRk(r.b,r.c,a/0.5) -else{s=r.d -if(a<1)return A.aRk(r.c,s,(a-0.5)/0.5) -else return s}}} -A.Gh.prototype={ -N(){return"TonePolarity."+this.b}} -A.fa.prototype={} -A.kb.prototype={ -N(){return"Variant."+this.b}} -A.adP.prototype={} -A.i4.prototype={ -j(a,b){var s,r -if(b==null)return!1 -if(!(b instanceof A.i4))return!1 -s=b.d -s===$&&A.a() -r=this.d -r===$&&A.a() -return s===r}, -gt(a){var s=this.d -s===$&&A.a() -return B.j.gt(s)}, -k(a){var s,r,q=this.a -q===$&&A.a() -q=B.j.k(B.d.aY(q)) -s=this.b -s===$&&A.a() -s=B.d.aY(s) -r=this.c -r===$&&A.a() -return"H"+q+" C"+s+" T"+B.j.k(B.d.aY(r))}} -A.axW.prototype={} -A.tG.prototype={ -bK(a){var s=this.d -if(s.aN(a)){s=s.h(0,a) -s.toString -return A.vH(s)}else return A.vH(A.qE(this.a,this.b,a))}, -j(a,b){if(b==null)return!1 -if(b instanceof A.tG)return this.a===b.a&&this.b===b.b -return!1}, -gt(a){var s=A.N(this.a,this.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a) -return s}, -k(a){return"TonalPalette.of("+A.j(this.a)+", "+A.j(this.b)+")"}} -A.akx.prototype={ -aqX(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this -for(s=e.b,r=s-0.01,q=0,p=100;q=r)if(Math.abs(q-50)>>16&255 -j=k>>>8&255 -i=k&255 -h=t.n -g=A.o9(A.c([A.dW(l),A.dW(j),A.dW(i)],h),B.e_) -f=A.aQh(g[0],g[1],g[2],n) -r.a=f.a -r.b=f.b -r.c=116*A.pX(A.o9(A.c([A.dW(l),A.dW(j),A.dW(i)],h),B.e_)[1]/100)-16 -return r}q=o}else if(n=g*k -e=1 -for(;;){if(!(f&&g=(g+e)*k;++e}++j -if(j>360){while(p.length=a1?B.j.cn(b,a1):b])}for(a0=a2-c-1+1,n=1;n=a1?B.j.cn(b,a1):b])}return d}, -gapK(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=d.f -if(c!=null)return c -c=B.b.gad(d.gme()).a -c===$&&A.a() -s=d.glq().h(0,B.b.gad(d.gme())) -s.toString -r=B.b.gaC(d.gme()).a -r===$&&A.a() -q=d.glq().h(0,B.b.gaC(d.gme())) -q.toString -p=q-s -q=d.a -o=q.a -o===$&&A.a() -n=A.aZK(c,o,r) -if(n)m=r -else m=c -if(n)l=c -else l=r -k=d.gpz()[B.d.aY(q.a)] -j=1-d.gaul() -for(i=1000,h=0;h<=360;++h){g=B.d.cn(m+h,360) -if(g<0)g+=360 -if(!A.aZK(m,g,l))continue -f=d.gpz()[B.d.aY(g)] -c=d.d.h(0,f) -c.toString -e=Math.abs(j-(c-s)/p) -if(e=0)return p -p=q.glq().h(0,B.b.gad(q.gme())) -p.toString -s=q.glq().h(0,B.b.gaC(q.gme())) -s.toString -r=s-p -s=q.glq().h(0,q.a) -s.toString -return q.e=r===0?0.5:(s-p)/r}, -gme(){var s,r=this,q=r.b -if(q.length!==0)return q -s=A.jN(r.gpz(),!0,t.bq) -s.push(r.a) -B.b.fO(s,new A.awx(r.glq())) -return r.b=s}, -glq(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=f.d -if(e.a!==0)return e -e=t.bq -s=A.jN(f.gpz(),!0,e) -s.push(f.a) -e=A.t(e,t.i) -for(r=s.length,q=0;q>>16&255 -l=n>>>8&255 -k=n&255 -j=A.o9(A.c([A.dW(p),A.dW(l),A.dW(k)],r),B.e_) -i=A.aQh(j[0],j[1],j[2],o) -m.a=i.a -m.b=i.b -m.c=116*A.pX(A.o9(A.c([A.dW(p),A.dW(l),A.dW(k)],r),B.e_)[1]/100)-16 -s.push(m)}return this.c=A.jN(s,!1,t.bq)}} -A.awx.prototype={ -$2(a,b){var s=this.a,r=s.h(0,a) -r.toString -s=s.h(0,b) -s.toString -return B.d.bt(r,s)}, -$S:610} -A.wl.prototype={ -K(a){throw A.i(A.aL("implemented internally"))}, -cf(){return new A.a47(A.aU(t.ai),null,this,B.ae)}, -$ijb:1} -A.a47.prototype={ -gW(){return t.SK.a(A.au.prototype.gW.call(this))}, -aM(){var s,r,q,p,o=this,n=o.eO$,m=n==null?null:n.n -if(m==null)m=t.SK.a(A.au.prototype.gW.call(o)).d -for(n=t.SK.a(A.au.prototype.gW.call(o)).c,s=A.a6(n).i("cu<1>"),n=new A.cu(n,s),n=new A.bf(n,n.gH(0),s.i("bf")),s=s.i("aE.E"),r=null;n.v();m=r){q=n.d -r=new A.pe(q==null?s.a(q):q,m,o,null)}if(r!=null)for(n=o.n,n=A.cl(n,n.r,A.n(n).c),s=n.$ti.c;n.v();){q=n.d -if(q==null)q=s.a(q) -p=r.c -if(!J.b(q.U,p)){q.U=p -q.cL()}r=r.d -q.sauk(r) -if(!(r instanceof A.pe))break}return m}} -A.pe.prototype={ -cf(){return new A.pf(this,B.ae)}, -K(a){return A.a0(A.aL("handled internally"))}} -A.pf.prototype={ -gW(){return t.Fn.a(A.au.prototype.gW.call(this))}, -sauk(a){var s,r=this.n,q=!1 -if(a instanceof A.pe)if(r instanceof A.pe){q=a.c -s=r.c -q=A.l(q)===A.l(s)&&J.b(q.a,s.a)}if(q)return -if(!J.b(r,a)){this.n=a -this.bB(new A.aEX())}}, -ex(a,b){var s=this,r=t.Fn -r.a(A.au.prototype.gW.call(s)).e.n.G(0,s) -s.U=r.a(A.au.prototype.gW.call(s)).c -s.n=r.a(A.au.prototype.gW.call(s)).d -s.xO(a,b)}, -kD(){t.Fn.a(A.au.prototype.gW.call(this)).e.n.J(0,this) -this.u_()}, -aM(){var s=this.U -s.toString -return s}} -A.aEX.prototype={ -$1(a){return a.cL()}, -$S:14} -A.XY.prototype={} -A.aJC.prototype={ -$1(a){if(a instanceof A.pf)this.a.eO$=a -return!1}, -$S:25} -A.aLT.prototype={ -$1(a){if(a instanceof A.pf)this.a.eO$=a -return!1}, -$S:25} -A.ja.prototype={ -K(a){return this.vm(a,this.c)}, -cf(){return A.bb1(this)}, -$ijb:1} -A.Fk.prototype={ -aM(){var s=this -if(s.eO$!=null)return t.k7.a(A.au.prototype.gW.call(s)).vm(s,s.eO$.n) -return s.a6_()}, -gW(){return t.k7.a(A.au.prototype.gW.call(this))}} -A.XX.prototype={ -vm(a,b){return this.e.$2(a,b)}} -A.a8H.prototype={ -ex(a,b){if(t.Ej.b(a))this.eO$=a -this.xO(a,b)}, -bF(){this.tZ() -this.lv(new A.aJC(this))}} -A.aaM.prototype={ -ex(a,b){if(t.Ej.b(a))this.eO$=a -this.xO(a,b)}, -bF(){this.tZ() -this.lv(new A.aLT(this))}} -A.aeJ.prototype={ -anZ(a){var s,r,q=t._m -A.b1f("absolute",A.c([a,null,null,null,null,null,null,null,null,null,null,null,null,null,null],q)) -s=this.a -s=s.iv(a)>0&&!s.nS(a) -if(s)return a -s=A.b1v() -r=A.c([s,a,null,null,null,null,null,null,null,null,null,null,null,null,null,null],q) -A.b1f("join",r) -return this.auU(new A.cN(r,t.Ri))}, -auU(a){var s,r,q,p,o,n,m,l,k -for(s=a.gai(0),r=new A.n5(s,new A.aeM()),q=this.a,p=!1,o=!1,n="";r.v();){m=s.gT() -if(q.nS(m)&&o){l=A.U9(m,q) -k=n.charCodeAt(0)==0?n:n -n=B.c.a6(k,0,q.tp(k,!0)) -l.b=n -if(q.wv(n))l.e[0]=q.gqj() -n=l.k(0)}else if(q.iv(m)>0){o=!q.nS(m) -n=m}else{if(!(m.length!==0&&q.IR(m[0])))if(p)n+=q.gqj() -n+=m}p=q.wv(m)}return n.charCodeAt(0)==0?n:n}, -xI(a,b){var s=A.U9(b,this.a),r=s.d,q=A.a6(r).i("b1<1>") -r=A.aa(new A.b1(r,new A.aeN(),q),q.i("y.E")) -s.d=r -q=s.b -if(q!=null)B.b.mh(r,0,q) -return s.d}, -Li(a){var s -if(!this.ahV(a))return a -s=A.U9(a,this.a) -s.ww() -return s.k(0)}, -ahV(a){var s,r,q,p,o,n,m,l=this.a,k=l.iv(a) -if(k!==0){if(l===$.ac1())for(s=0;s0)return o.Li(a) -if(m.iv(a)<=0||m.nS(a))a=o.anZ(a) -if(m.iv(a)<=0&&m.iv(s)>0)throw A.i(A.aXg(n+a+'" from "'+s+'".')) -r=A.U9(s,m) -r.ww() -q=A.U9(a,m) -q.ww() -l=r.d -if(l.length!==0&&l[0]===".")return q.k(0) -l=r.b -p=q.b -if(l!=p)l=l==null||p==null||!m.LG(l,p) -else l=!1 -if(l)return q.k(0) -for(;;){l=r.d -if(l.length!==0){p=q.d -l=p.length!==0&&m.LG(l[0],p[0])}else l=!1 -if(!l)break -B.b.kx(r.d,0) -B.b.kx(r.e,1) -B.b.kx(q.d,0) -B.b.kx(q.e,1)}l=r.d -p=l.length -if(p!==0&&l[0]==="..")throw A.i(A.aXg(n+a+'" from "'+s+'".')) -l=t.N -B.b.rY(q.d,0,A.bO(p,"..",!1,l)) -p=q.e -p[0]="" -B.b.rY(p,1,A.bO(r.d.length,m.gqj(),!1,l)) -m=q.d -l=m.length -if(l===0)return"." -if(l>1&&B.b.gaC(m)==="."){B.b.jQ(q.d) -m=q.e -m.pop() -m.pop() -m.push("")}q.b="" -q.a19() -return q.k(0)}, -a0F(a){var s,r,q=this,p=A.b0V(a) -if(p.ghb()==="file"&&q.a===$.M6())return p.k(0) -else if(p.ghb()!=="file"&&p.ghb()!==""&&q.a!==$.M6())return p.k(0) -s=q.Li(q.a.LF(A.b0V(p))) -r=q.axL(s) -return q.xI(0,r).length>q.xI(0,s).length?s:r}} -A.aeM.prototype={ -$1(a){return a!==""}, -$S:26} -A.aeN.prototype={ -$1(a){return a.length!==0}, -$S:26} -A.aOy.prototype={ -$1(a){return a==null?"null":'"'+a+'"'}, -$S:128} -A.akn.prototype={ -a2v(a){var s=this.iv(a) -if(s>0)return B.c.a6(a,0,s) -return this.nS(a)?a[0]:null}, -LG(a,b){return a===b}} -A.apq.prototype={ -a19(){var s,r,q=this -for(;;){s=q.d -if(!(s.length!==0&&B.b.gaC(s)===""))break -B.b.jQ(q.d) -q.e.pop()}s=q.e -r=s.length -if(r!==0)s[r-1]=""}, -ww(){var s,r,q,p,o,n=this,m=A.c([],t.s) -for(s=n.d,r=s.length,q=0,p=0;p0){s=B.c.kn(a,"\\",s+1) -if(s>0)return s}return r}if(r<3)return 0 -if(!A.b1O(a.charCodeAt(0)))return 0 -if(a.charCodeAt(1)!==58)return 0 -r=a.charCodeAt(2) -if(!(r===47||r===92))return 0 -return 3}, -iv(a){return this.tp(a,!1)}, -nS(a){return this.iv(a)===1}, -LF(a){var s,r -if(a.ghb()!==""&&a.ghb()!=="file")throw A.i(A.c1("Uri "+a.k(0)+" must have scheme 'file:'.",null)) -s=a.gfa() -if(a.gpB()===""){if(s.length>=3&&B.c.c8(s,"/")&&A.b1A(s,1)!=null)s=B.c.tk(s,"/","")}else s="\\\\"+a.gpB()+s -r=A.nu(s,"/","\\") -return A.po(r,0,r.length,B.ao,!1)}, -apH(a,b){var s -if(a===b)return!0 -if(a===47)return b===92 -if(a===92)return b===47 -if((a^b)!==32)return!1 -s=a|32 -return s>=97&&s<=122}, -LG(a,b){var s,r -if(a===b)return!0 -s=a.length -if(s!==b.length)return!1 -for(r=0;r"))}, -a9Q(a){return this.EN(a,null)}} -A.I9.prototype={} -A.et.prototype={ -cI(a){return!1}, -cf(){return new A.tY(A.h0(null,null,null,t.Q,t.X),this,B.ae,this.$ti.i("tY<1>"))}} -A.tY.prototype={ -guk(){var s,r=this,q=r.dC -if(q===$){s=r.$ti.i("et<1>").a(A.au.prototype.gW.call(r)).f.e.ah() -s.a=r -r.dC!==$&&A.aK() -r.dC=s -q=s}return q}, -fs(a){var s={} -s.a=null -this.lv(new A.aDd(s,a)) -return s.a}, -ex(a,b){this.xO(a,b)}, -gW(){return this.$ti.i("et<1>").a(A.au.prototype.gW.call(this))}, -Mf(a,b){var s=this.n,r=s.h(0,a) -if(r!=null&&!this.$ti.i("bd2<1>").b(r))return -s.m(0,a,B.aA)}, -Lj(a,b){var s,r,q,p,o=this.n.h(0,b),n=!1 -if(o!=null)if(this.$ti.i("bd2<1>").b(o)){if(b.as)return -for(r=o.c,q=r.length,p=0;p") -r.a(A.au.prototype.gW.call(s)) -s.guk().Iv(s.c0) -s.c0=!1 -if(s.bo){s.bo=!1 -s.o_(r.a(A.au.prototype.gW.call(s)))}return s.Oc()}, -kD(){this.guk().l() -this.u_()}, -avw(){if(!this.bq)return -this.cL() -this.bo=!0}, -m2(a,b){return this.E5(a,b)}, -AE(a){return this.m2(a,null)}, -$iRa:1} -A.aDd.prototype={ -$1(a){var s=this.b -if(A.l(a.gW())===A.bM(s)){this.a.a=t.IS.a(a) -return!1}this.a.a=a.fs(s) -return!1}, -$S:25} -A.a1X.prototype={} -A.hd.prototype={ -a1W(a){return!1}, -l(){}, -Iv(a){}} -A.p0.prototype={ -ah(){return new A.Hl(this.$ti.i("Hl<1>"))}} -A.Hl.prototype={ -gp(){var s,r,q,p,o,n,m=this,l=null,k=m.c -if(k&&m.f!=null){k=A.bM(m.$ti.c).k(0) -q=m.f -q=q==null?l:q.k(0) -throw A.i(A.aL("Tried to read a provider that threw during the creation of its value.\nThe exception occurred during the creation of type "+k+".\n\n"+A.j(q)))}if(!k){m.c=!0 -k=m.a -k.toString -q=m.$ti.i("hd.D") -q.a(k.$ti.i("et<1>").a(A.au.prototype.gW.call(k)).f.e) -try{k=m.a -k.toString -k=q.a(k.$ti.i("et<1>").a(A.au.prototype.gW.call(k)).f.e) -p=m.a -p.toString -m.d=k.a.$1(p)}catch(o){s=A.aj(o) -r=A.b3(o) -m.f=new A.c9(s,r,"provider",l,l,!1) -throw o}finally{}k=m.a -k.toString -q.a(k.$ti.i("et<1>").a(A.au.prototype.gW.call(k)).f.e)}k=m.a -k.bq=!1 -if(m.b==null){q=m.$ti -k=q.i("hd.D").a(A.n(k).i("et<1>").a(A.au.prototype.gW.call(k)).f.e).e -if(k==null)k=l -else{p=m.a -p.toString -n=m.d -k=k.$2(p,n==null?q.c.a(n):n)}m.b=k}m.a.bq=!0 -k=m.d -return k==null?m.$ti.c.a(k):k}, -l(){var s,r,q,p,o=this -o.Ou() -s=o.b -if(s!=null)s.$0() -if(o.c){s=o.a -s.toString -r=o.$ti -s=r.i("hd.D").a(s.$ti.i("et<1>").a(A.au.prototype.gW.call(s)).f.e).f -if(s!=null){q=o.a -q.toString -p=o.d -s.$2(q,p==null?r.c.a(p):p)}}}, -Iv(a){var s,r=this -if(a)if(r.c){s=r.a -s.toString -r.$ti.i("hd.D").a(s.$ti.i("et<1>").a(A.au.prototype.gW.call(s)).f.e)}s=r.a -s.toString -r.e=r.$ti.i("hd.D").a(s.$ti.i("et<1>").a(A.au.prototype.gW.call(s)).f.e) -return r.a6k(a)}} -A.ze.prototype={ -ah(){return new A.KO(this.$ti.i("KO<1>"))}} -A.KO.prototype={ -gp(){var s,r=this,q=r.a -q.bq=!1 -s=r.$ti.i("hd.D") -s.a(A.n(q).i("et<1>").a(A.au.prototype.gW.call(q)).f.e) -r.b=null -q=r.a -q.bq=!0 -return s.a(A.n(q).i("et<1>").a(A.au.prototype.gW.call(q)).f.e).a}, -a1W(a){var s,r=this.a -r.toString -s=this.$ti.i("hd.D") -s.a(r.$ti.i("et<1>").a(A.au.prototype.gW.call(r)).f.e) -r=this.a -r.toString -r=s.a(r.$ti.i("et<1>").a(A.au.prototype.gW.call(r)).f.e) -return a.a!==r.a}, -l(){this.Ou()}} -A.TE.prototype={} -A.aof.prototype={ -$1(a){var s=this.a -return s.EN(a,s.a)}, -$S:171} -A.aog.prototype={ -$1(a){var s=this.b -return this.a.$1(s.EN(a,s.a))}, -$S:171} -A.aoh.prototype={ -$2(a,b){return this.a.a.$1(b)}, -$S:48} -A.rE.prototype={} -A.Uw.prototype={ -k(a){return"A provider for "+this.a.k(0)+" unexpectedly returned null."}, -$icx:1} -A.Uv.prototype={ -k(a){return"Provider<"+this.a.k(0)+"> not found for "+this.b.k(0)}, -$icx:1} -A.aug.prototype={ -N(){return"ShadAppType."+this.b}} -A.ET.prototype={ -ah(){return new A.JU(new A.vI(null,A.t(t.K,t.Qu)))}} -A.JU.prototype={ -l(){this.d.l() -this.aQ()}, -K(a){var s,r=this,q=null -r.a.toString -s=r.a1r(a) -r.a.toString -return A.aXO(B.M1,A.aWe(new A.ES(s,new A.XB(new A.F7(new A.dO(r.ga9q(),q),q),q),B.a7,B.a3,q,q),r.d))}, -a1r(a){var s,r=this.a.f,q=A.c_(a,B.fR),p=q==null?null:q.e -if(p==null)p=B.ar -if(r!==B.fH)s=r===B.JE&&p===B.R -else s=!0 -return new A.aHv(this,s).$0()}, -avA(a){var s,r=null,q=this.a1r(a),p=q.cy,o=q.b,n=q.a,m=n.r,l=n.a,k=n.b,j=A.Ns(r,o,n.ax,r,r,r,r,n.ay,r,r,n.w,r,r,r,n.y,r,r,r,k,r,r,r,r,r,r,r,m,r,r,r,r,n.x,r,r,r,r,l,r,r,r,r,r,r,r,r,r,r,r,r,r),i=q.U,h=i.b -if(h==null)h=n.ch -i=i.c -s=A.xK(o,j,new A.qb(h,r,i==null?1:i,r,r,r),p.ax,new A.dw(16,r,r,r,r,k,r,r,r),l,new A.wX(r,B.agY,r,r,B.a4V,new A.bB(n.ch,t.rc),r,r,1,1,r),new A.xI(m,n.cy,m),r) -s=s.J0(A.bj_(s.ok,p.ch)) -this.a.toString -return s}, -a9r(a){var s=this.avA(a) -A.dd(a,!0) -this.a.toString -switch(1){case 1:return A.aQ8(new A.dO(new A.aHu(this),null),B.a7,s,B.a3)}}} -A.aHv.prototype={ -$0(){var s=A.bQ(),r=this.a.a,q=r.d -if(this.b){r=r.e -s.b=r}else s.b=q -return s.bc()}, -$S:613} -A.aHu.prototype={ -$1(a){return this.a.a.RG.$1(a)}, -$S:15} -A.auR.prototype={ -vl(a,b,c){switch(A.bg(c.a).a){case 0:return b -case 1:switch(A.aT().a){case 4:case 2:return A.aVm(b,c.b,null,B.HJ,B.dx,null,3,8,null) -case 3:case 5:return A.aXP(b,c.b) -case 0:case 1:return b}break}}} -A.x1.prototype={ -K(a){return new A.dO(new A.auf(this),null)}, -gR(){return this.d}} -A.auf.prototype={ -$1(a){var s,r=this.a.d -if(r!=null)r=new A.Ff(new A.Fc(r,null),null) -s=A.dd(a,!0) -return A.v4(r,s.a.a,!0)}, -$S:614} -A.oE.prototype={ -N(){return"ShadButtonVariant."+this.b}} -A.W6.prototype={ -N(){return"ShadButtonSize."+this.b}} -A.k0.prototype={ -ah(){return new A.JV()}, -gR(){return this.f}} -A.JV.prototype={ -gcr(){this.a.toString -var s=this.d -s.toString -return s}, -gck(){this.a.toString -var s=this.e -s.toString -return s}, -aw(){var s=this -s.b3() -s.a.toString -s.d=new A.XL(A.aU(t.Qx),$.af()) -s.e=A.lZ(!0,null,!0,!0,null,null,!1) -s.gcr().cW(B.IC,!1) -s.gck().a9(s.gmq())}, -aV(a){this.bm(a) -this.a.toString}, -l(){var s=this,r=s.d -if(r!=null){r.P$=$.af() -r.L$=0}s.gck().O(s.gmq()) -r=s.e -if(r!=null)r.l() -s.aQ()}, -wy(){this.gcr().cW(B.a88,this.gck().gc5())}, -cO(a){var s -switch(this.a.w.a){case 0:s=a.c -break -case 1:s=a.e -break -case 3:s=a.d -break -case 4:s=a.r -break -case 2:s=a.f -break -case 5:s=a.w -break -default:s=null}return s}, -qp(a,b){var s -switch(b.a){case 1:s=this.cO(a).d -s=s==null?null:s.c -if(s==null){s=a.ay.c -s.toString}return s -case 2:s=this.cO(a).d -s=s==null?null:s.d -if(s==null){s=a.ay.d -s.toString}return s -case 0:s=this.cO(a).d -s=s==null?null:s.b -if(s==null){s=a.ay.b -s.toString}return s}}, -atL(a){var s=this,r=s.a,q=r.Q -if(q!=null)return q -if(s.cO(a).ch!=null){r=s.cO(a).ch -r.toString -return r}r=r.x -if(r!=null)return s.qp(a,r).b -s.cO(a) -return s.qp(a,B.ok).b}, -az9(a){var s=this,r=s.a,q=r.z -if(q!=null)return q -if(s.cO(a).ay!=null){r=s.cO(a).ay -r.toString -return r}r=r.x -if(r!=null)return s.qp(a,r).d -s.cO(a) -return s.qp(a,B.ok).d}, -awL(a){var s=this,r=s.a,q=r.as -if(q!=null)return q -r=r.x -if(r!=null)return s.qp(a,r).c -s.cO(a) -return s.qp(a,B.ok).c}, -Zs(a){var s=this.a.ay -if(s!=null)return s -this.cO(a) -s=this.cO(a).r -s.toString -return s}, -au1(a){var s=this.a.ch -if(s!=null)return s -this.cO(a) -s=this.cO(a).w -s.toString -return s}, -ays(a,b){var s,r=this -if(b){r.a.toString -s=r.cO(a) -return s.at}r.a.toString -s=r.cO(a) -return s.as}, -ar5(a){this.a.toString -this.cO(a) -return B.el}, -a0k(){var s=this.a.c -if(s==null)return -s.$0()}, -K(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=A.dd(a,!0),f=A.BZ(a),e=h.a -e.toString -s=h.cO(g) -r=e.db!=null||h.cO(g).y!=null -q=h.cO(g).ax -if(q==null)q=B.fC -p=q.E(e.fy) -h.a.toString -h.cO(g) -h.cO(g) -e=h.cO(g) -h.cO(g) -q=h.cO(g) -o=h.cO(g).dy -if(o==null)o=8 -h.cO(g) -n=[B.i2,B.i0] -m=h.cO(g).fx -if(m==null)m=g.cy.Q -l=h.az9(g) -if(l==null)l=0 -k=h.atL(g) -j=A.t(t.Vz,t.M) -for(i=0;i<2;++i)j.m(0,n[i],new A.aHE(h)) -return new A.Ah(j,new A.dL(h.gcr(),new A.aHF(h,s.x!=null,g,r,p,!1,f,m,!0,g.to,e.CW,l,k,B.o,B.cN,q.dx,o),null,null,t.Lz),null)}} -A.aHE.prototype={ -$0(){var s=this.a -s.a.toString -s.a0k()}, -$S:0} -A.aHF.prototype={ -$3(a6,a7,a8){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=this,a1=null,a2=a7.q(0,B.kY),a3=a7.q(0,B.IB),a4=a7.q(0,B.IC),a5=!a4 -if(a0.b&&a2){s=a0.a -r=a0.c -s.a.toString -q=s.cO(r).x -q.toString -p=q}else{s=a0.a -r=a0.c -q=s.a -if(a3){q=q.ax -if(q==null)q=s.cO(r).f -p=q}else{q=q.at -if(q==null)q=s.cO(r).e -p=q}}if(a0.d&&a2){q=s.a.db -if(q==null){q=s.cO(r).y -q.toString -o=q}else o=q}else o=a3?s.au1(r):s.Zs(r) -q=s.a -q.toString -n=s.cO(r) -m=s.cO(r) -l=a0.e.aqO(p,n.Q,m.z) -k=q.f -if(k!=null&&a0.f)k=A.cJ(k,1,a1) -q=a0.r.c3(o) -n=a0.w.aqQ(o,s.ays(r,a3),s.Zs(r),B.aa2) -m=a5?1:0.5 -j=s.a -j.toString -i=s.gck() -h=s.ar5(r) -g=j.c==null?a1:s.glg() -f=a0.Q -e=f===0?1/0:f -d=a0.as -c=d===0?1/0:d -r=s.awL(r) -b=A.c([],t.p) -a=s.a -if(a.f!=null){k.toString -b.push(k)}s.a.toString -return A.qI(A.fn(A.cz(!0,A.wo(A.aca(a4,new A.EZ(a0.x,!1,i,new A.aHw(l),new A.F1(a0.y,new A.aHx(s),h,A.aXQ(new A.dX(new A.al(f,e,d,c),new A.bR(r,A.bw(A.VX(b,A.a8(a1,a1,a0.ch)),a0.at,a0.ax,B.ak,a0.ay),a1),a1)),g,new A.aHy(s),new A.aHz(s),new A.aHA(s),new A.aHB(s),new A.aHC(s),new A.aHD(s),j.d,j.rx,j.ry,j.to,j.x1,j.x2,j.xr,j.y1,j.y2,a0.z,B.aG,a1),j.n,a1)),m),!0,a1,a5,!1,a5,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,a1,B.Y,a1),a1,a1,B.bc,!0,n,B.bQ,a1,B.al),q,a1)}, -$S:615} -A.aHw.prototype={ -$3(a,b,c){return new A.l_(c,this.a,b,null)}, -$S:616} -A.aHx.prototype={ -$1(a){var s=this.a -s.gcr().cW(B.IB,a) -s.a.toString}, -$S:12} -A.aHy.prototype={ -$1(a){var s=this.a -s.gcr().cW(B.kY,!0) -s=s.a.p1 -if(s!=null)s.$1(a)}, -$S:16} -A.aHz.prototype={ -$1(a){var s=this.a -s.gcr().cW(B.kY,!1) -s.a.toString}, -$S:29} -A.aHA.prototype={ -$0(){var s=this.a -s.gcr().cW(B.kY,!1) -s.a.toString}, -$S:0} -A.aHB.prototype={ -$1(a){this.a.a.toString}, -$S:16} -A.aHC.prototype={ -$1(a){this.a.a.toString}, -$S:29} -A.aHD.prototype={ -$0(){this.a.a.toString}, -$S:0} -A.W9.prototype={ -K(a){var s,r,q,p,o,n,m,l,k,j,i,h=null,g=A.dd(a,!0),f=g.fr,e=f.c -if(e==null)e=g.a.c -s=f.d -if(s==null)s=g.at -r=f.e -if(r==null)r=A.br(g.a.ch,h,h,h,1) -q=f.as -p=f.x -o=f.y -n=f.at -m=f.z -l=f.Q -k=A.aRR(r) -j=t.p -i=A.c([],j) -j=A.c([],j) -j.push(new A.fZ(1,B.dX,this.e,h)) -i.push(new A.fZ(1,B.dX,A.bJ(j,l,m,n),h)) -return A.bL(h,A.bw(i,o,p,q,h),B.cm,h,h,new A.bm(e,h,k,s,f.f,h,h,B.G),h,h,h,this.r,h,h,h)}, -gR(){return this.e}} -A.ta.prototype={ -ah(){return new A.EV()}, -gR(){return this.d}} -A.EV.prototype={ -gcJ(){var s,r=this.a -r.toString -s=this.d -if(s==null){r=new A.XE(r.r,$.af()) -this.d=r}else r=s -return r}, -aV(a){var s=this -s.bm(a) -s.a.toString -s.gcJ().DM(s.a.r)}, -l(){var s=this.d -if(s!=null){s.P$=$.af() -s.L$=0}this.aQ()}, -K(a){var s,r,q,p,o,n,m,l,k,j=this,i=null,h=j.a -if(h.e.length===0)return h.d -s=A.dd(a,!0) -j.a.toString -h=s.xr -r=h.c -if(r==null)r=B.lO -q=h.d -if(q==null)q=B.iY -p=h.dy -o=(p==null?B.fC:p).E(i) -j.a.toString -p=j.gcJ() -n=j.a -m=n.z -l=n.f -k=new A.F8(new A.auq(j,r),A.auN(A.xz(B.b3,n.d,!1,i,!0,B.p6,i,i,i,i,i),m,i,new A.aur(j),new A.aus(j)),p,l,h.db,h.dx,q,o,h.fr,B.p6,m,!1,i,i) -m=t.p6 -return A.aRX(a,!1,m)==null?A.aZg(k,j,m):k}} -A.auq.prototype={ -$1(a){var s=null,r=this.a.a,q=r.z -return A.auN(new A.dX(this.b,new A.Rg(A.xz(B.b3,A.Qm(A.bJ(r.e,B.T,B.m,B.ak),new A.ap6(A.t(t.l5,t.UJ),A.aTm())),!1,s,!0,B.p6,s,s,s,s,s),s),s),q,new A.e2(q,t.Xm),s,s)}, -$S:617} -A.aur.prototype={ -$1(a){var s=this.a.a.x -return s==null?null:s.$1(!0)}, -$S:43} -A.aus.prototype={ -$1(a){var s=this.a.a.x -return s==null?null:s.$1(!1)}, -$S:34} -A.oF.prototype={ -a36(a){if(a===this.a)return -this.a=a -this.a7()}, -a34(a){if(a===this.b)return -this.b=a -this.a7()}, -gtN(){var s=!0 -if(!this.a)if(!this.b){s=this.d -s=new A.bo(s,A.n(s).i("bo<2>")).i8(0,new A.auo())}return s}} -A.auo.prototype={ -$1(a){return a.gtN()}, -$S:618} -A.aup.prototype={ -N(){return"ShadContextMenuItemVariant."+this.b}} -A.EU.prototype={ -ah(){return new A.a6L(new A.hc())}, -gR(){return this.d}} -A.a6L.prototype={ -gcJ(){var s=this.e -return s===$?this.e=new A.oF(this.d,A.t(t.D2,t.V7),$.af()):s}, -gCs(){var s,r,q=this,p=q.f -if(p===$){s=q.c -s.toString -r=A.aRX(s,!1,t.V7) -q.f!==$&&A.aK() -q.f=r -p=r}return p}, -aw(){var s,r -this.b3() -s=this.gCs() -if(s!=null){r=this.gcJ() -s.d.m(0,r.c,r)}}, -l(){var s,r=this,q=r.gCs() -if(q!=null){s=r.gcJ() -q.d.J(0,s.c)}q=r.gcJ() -q.P$=$.af() -q.L$=0 -r.aQ()}, -K(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null,e=A.dd(a,!0),d=t.p6,c=A.aRX(a,!1,d) -if(c==null)A.a0(A.h_("Could not find "+A.bM(d).k(0)+" InheritedWidget in the ancestor widget tree.")) -g.a.toString -d=e.xr -s=d.r -if(s==null)s=B.hr -switch(0){case 0:break}r=d.w -if(r==null)r=B.mw -q=new A.eY(new A.h(-8,g.gCs()!=null?-5:-3),B.bA,B.dL,f) -g.a.toString -p=d.z -if(p==null)p=32 -o=d.Q -n=B.Io.E(d.as) -g.a.toString -m=n.E(f) -g.a.toString -n=d.at -if(n==null)n=e.cy.Q.lZ(B.p) -l=e.a -k=A.iB(n,l.b,f) -g.a.toString -if(d.ax==null)e.cy.as.vx(12,1) -g.a.toString -j=d.cx -if(j==null)j=l.as -n=g.gCs() -n=n==null?f:n.c -i=n==null?g.d:n -n=g.gcJ() -l=A.c([],t.p) -h=g.a -l.push(A.cJ(A.fn(h.d,f,f,B.bc,!0,k,f,f,B.al),1,f)) -g.a.toString -l=A.cJ(A.bw(l,B.o,B.m,B.n,f),1,f) -return new A.ib(new A.aHI(g,q,i,s,p,o,m,r,j,d.CW,!0,c),l,n,f)}} -A.aHI.prototype={ -$2(a,b){var s,r,q=this,p=null,o=q.a,n=o.gcJ(),m=n.gtN() -o.a.toString -s=n.gtN()?q.x:q.y -r=o.a.as!=null?new A.aHG(o,q.z,q.Q):p -return A.aXX(q.b,new A.bR(q.d,A.aXW(!1,s,b,p,q.r,!0,p,p,p,q.e,q.x,p,p,p,p,p,p,n.ga33(),p,p,p,p,p,p,p,new A.aHH(o,q.z,q.Q),p,p,p,p,r,p,q.w,p,p,p,p,q.f,1/0),p),p,q.c,B.X8,n.ga35(),p,m)}, -$S:619} -A.aHG.prototype={ -$1(a){this.a.a.as.$1(a) -if(this.b)this.c.gcJ().DM(!1)}, -$S:16} -A.aHH.prototype={ -$0(){this.a.a.toString -if(this.b)this.c.gcJ().DM(!1)}, -$S:0} -A.EX.prototype={ -X7(a,b,c){return new A.dO(this.md,null)}, -Aa(a,b,c,d){var s=this.rJ.$4(a,b,c,d) -return s}, -gvh(){return this.eO}, -gIq(){return this.vS}, -gvg(){return this.pp}, -gmC(){return this.vT}, -gCR(){return this.rI}} -A.aPE.prototype={ -$1(a){return B.b.rR(a,B.z,new A.aPF())}, -$S:620} -A.aPF.prototype={ -$2(a,b){var s,r,q=b.a -if(q==null)q=B.z -s=b.b -if(s==null)s=B.aM -s=q.a+s.a -r=new A.b5(s) -return s>a.a?r:a}, -$S:621} -A.aPD.prototype={ -$4(a,b,c,d){if(b.gba()===B.a9)return d -return A.VY(!0,d,null,b.gba()===B.bC?this.a:this.b)}, -$S:622} -A.We.prototype={ -N(){return"ShadDialogVariant."+this.b}} -A.tc.prototype={ -K(a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=null,a1=A.dd(a2,!0) -switch(this.f.a){case 0:s=a1.p1 -break -case 1:s=a1.p2 -break -default:s=a0}r=s.e -if(r==null)r=a1.a.a -q=a0 -p=s.b -if(!(p==null)){o=a1.a.b -o=new A.Wg(new A.auw(a2),A.ce(p==null?B.du:p,a0,a0,16),20,20,B.ap,B.D,o.bT(0.5),o,o,a0) -q=o}n=s.c -if(n==null)n=A.baV(8,a2.aA(t.I).w,8) -m=s.d -if(m==null)m=a1.at -l=s.z -if(l==null)l=B.fV -k=s.ay -if(k==null)k=A.dB(a1.a.ch,1) -j=s.ch -i=s.r -if(i==null)i=B.de -h=s.w -if(h==null)h=8 -p=s.cx -if(p==null)p=a1.cy.z -o=a1.a -g=A.iB(p,o.b,a0) -p=s.cy -if(p==null)p=a1.cy.as -f=A.iB(p,o.Q,a0) -e=s.dy -if(e==null)e=B.a_ -d=s.fr -c=s.fx -b=s.go -a=s.id -if(a==null)a=8 -return new A.ex(e,a0,a0,new A.bR(A.c0(a2,B.ip,t.l).w.f,new A.dX(l,new A.Fa(new A.aux(this,a1,s,a,!0,g,f,d,c,!0,!1,!1,!0,h,b,i,q,n,!0,r,!0,m,k,j),a0),a0),a0),a0)}, -gR(){return this.e}} -A.auw.prototype={ -$0(){return A.ct(this.a,!1).ct()}, -$S:0} -A.aux.prototype={ -$2(a1,a2){var s,r,q,p,o,n,m,l,k,j=this,i=null,h=j.b,g=a2.a>=h.k3.b.a,f=g?B.am:B.L,e=g?B.d_:B.agS,d=g?B.aN:B.bQ,c=g?B.aN:B.bQ,b=j.a,a=b.r,a0=a.length===0?i:new A.MZ(B.co,A.b7W(a,B.o,f,i,B.kh,B.ak,j.d,i,i,e),i) -a=!g -if(a)s=a0!=null -else s=!1 -if(s){s=h.c.vw(1/0) -r=h.d.vw(1/0) -q=h.f.vw(1/0) -p=h.r.vw(1/0) -a0=new A.tm(h.aqT(h.e.vw(1/0),p,q,s,r),a0,i)}o=A.fn(b.c,i,i,B.bc,!0,j.f,d,i,B.al) -h=b.d -n=h!=null?A.fn(h,i,i,B.bc,!0,j.r,c,i,B.al):i -h=b.e -m=h!=null?A.fn(h,i,i,B.bc,!0,j.r,i,i,B.al):i -h=j.w -b=j.x -s=t.p -r=A.c([],s) -q=!j.z -if(q)r.push(o) -q=n!=null -if(q)p=!j.Q -else p=!1 -if(p)r.push(n) -if(m!=null)r.push(new A.fZ(1,B.dX,m,i)) -p=a0!=null -if(p)l=!j.as -else l=!1 -if(l)r.push(a0) -l=j.at -k=A.aQf(A.VX(r,A.a8(i,l,i)),b,h,B.ak) -r=A.c([],s) -if(j.z)r.push(o) -if(q&&j.Q)r.push(n) -r.push(new A.fZ(1,B.dX,A.oJ(k,i,j.ax,i,B.L),i)) -if(p&&j.as)r.push(a0) -k=A.aQf(A.VX(r,A.a8(i,l,i)),b,h,B.ak) -h=A.c([new A.bR(j.ay,k,i)],s) -b=j.ch -if(b!=null){s=j.CW -h.push(A.mu(s.d,b,i,i,s.b,s.c,s.a,i))}k=A.El(!0,A.hE(B.aQ,h,B.N,B.bM),!0) -h=a&&j.db?i:j.dx -return A.vh(k,new A.bm(j.cy,i,j.dy,h,j.fr,i,i,B.G),B.dT)}, -$S:623} -A.Wf.prototype={ -K(a){var s=A.dd(a,!0),r=this.c,q=A.aca(r,this.d),p=s.db -return A.wo(q,r?p:1)}, -gR(){return this.d}} -A.iv.prototype={ -ah(){var s=A.n(this) -return A.baT(s.i("iv"),s.i("iv.T"))}} -A.auy.prototype={ -$1(a){var s,r,q,p=this,o=null -p.a.i("cT,0>").a(a) -a.grS() -s=A.dQ.prototype.gla.call(a) -if(s){a.grS() -r=A.dQ.prototype.gAW.call(a) -r.toString -r=A.ai(r,o,o,o,o,o,o) -q=r}else q=o -r=a.gaU() -return new A.F4(p.e.$1(a),p.c,q,p.d,r,o)}, -$S(){return this.a.i("F4(dQ<0>)")}} -A.cT.prototype={ -gck(){A.n(this).i("cT.F").a(A.T.prototype.gW.call(this)) -var s=this.ch -s.toString -return s}, -gaU(){var s=this,r=A.n(s).i("cT.F").a(A.T.prototype.gW.call(s)),q=s.c -q.toString -q=r.fr.$1(q) -r=q==null?B.fC:q -s.grS() -q=A.dQ.prototype.gla.call(s) -return r.aq1(q)}, -grS(){A.n(this).i("cT.F").a(A.T.prototype.gW.call(this)) -return null}, -gAW(){this.grS() -var s=A.dQ.prototype.gAW.call(this) -return s}, -gla(){this.grS() -var s=A.dQ.prototype.gla.call(this) -return s}, -gW(){return A.n(this).i("cT.F").a(A.T.prototype.gW.call(this))}, -gauj(){var s,r,q=this,p=A.n(q),o=p.i("cT.F") -if(o.a(A.T.prototype.gW.call(q)).x!=null)return o.a(A.T.prototype.gW.call(q)).x -o.a(A.T.prototype.gW.call(q)) -s=q.CW -if(s==null)return null -r=s.MI(o.a(A.T.prototype.gW.call(q)).at) -o.a(A.T.prototype.gW.call(q)) -return p.i("cT.T?").a(r)}, -gAR(){var s=A.n(this).i("cT.F").a(A.T.prototype.gW.call(this)) -return s.at}, -aw(){var s,r=this,q=null -r.NX() -s=A.n(r).i("cT.F") -s.a(A.T.prototype.gW.call(r)) -s.a(A.T.prototype.gW.call(r)) -r.ch=A.lZ(!0,q,!0,!0,q,q,!1) -s=r.c.fs(t.aS) -s=s==null?q:s.gW() -t.SZ.a(s) -s=s==null?q:s.f -r.CW=s -if(s!=null)s.a10(r.gAR(),r)}, -aV(a){var s,r,q,p=this -p.NV(a) -s=A.n(p).i("cT.F") -r=a.at -if(s.a(A.T.prototype.gW.call(p)).at!==r){q=p.CW -if(q!=null)q.a1K(r,p) -s.a(A.T.prototype.gW.call(p)) -r=p.CW -if(r!=null)r.a10(s.a(A.T.prototype.gW.call(p)).at,p)}s.a(A.T.prototype.gW.call(p))}, -nE(a){var s=this,r=s.CW -if(r!=null)r.Nk(s.gAR(),a,!1) -s.NU(a) -r=A.n(s).i("cT.F").a(A.T.prototype.gW.call(s)).cx -if(r!=null)r.$1(a)}, -l(){var s=this,r=s.CW -if(r!=null)r.a1K(s.gAR(),s) -r=s.ch -if(r!=null)r.l() -s.NW()}} -A.x9.prototype={ -ah(){var s=null -return new A.x6(new A.by(s,t.Qh),"[#"+A.bF(new A.hc())+"]",new A.mE(!1,$.af()),A.lZ(!0,s,!0,!0,s,s,!1),s,A.t(t.yb,t.M),s,!0,s)}} -A.auC.prototype={ -$1(a){var s=a==null?"":a -return this.a.$1(s)}, -$S:55} -A.auD.prototype={ -$1(a){var s=A.dd(a,!0).go.b -if(s==null)s=B.fC -return s.E(this.a)}, -$S:624} -A.auE.prototype={ -$1(a){var s,r,q,p,o,n,m,l,k,j=this -t.lO.a(a) -s=a.gcJ() -A.n(a).i("cT.F").a(A.T.prototype.gW.call(a)) -r=a.CW -if(r==null)r=null -else{r.a.toString -r=!0}r=r!==!1 -q=a.gck() -p=a.gaU() -o=j.e -n=j.x -m=j.Q -l=j.as -k=j.ax -m=n?B.oH:B.oI -l=n?B.oJ:B.oK -if(o==null)o=k===1?B.Jw:B.l8 -return new A.td(j.to,s,q,p,j.rx,o,j.f,j.r,j.b,j.aB,j.n,j.aH,j.a3,j.w,j.a0,n,j.y,m,l,j.at,k,j.ay,j.ch,j.a5,j.au,j.CW,j.cx,j.cy,j.db,r,j.dx,j.dy,j.fr,j.y2,j.c,j.fx,j.fy,j.y1,j.go,j.id,!0,j.p4,j.x1,j.x2,j.xr,j.R8,j.k1,j.k2,j.k3,j.p2,j.k4,j.a,j.ok,j.p1,j.p3,j.ry,j.z,j.d,j.L,j.P,j.ao,j.cB,j.bq,j.av,j.b8,j.bz,j.bE,j.bL,j.bv,j.bU,j.aK,j.u,j.c_,j.c0,j.bo,a.ok)}, -$S:625} -A.x6.prototype={ -gcJ(){var s=A.n(this).i("cT.F").a(A.T.prototype.gW.call(this)).p4 -if(s==null){s=this.k4 -s.toString}return s}, -aw(){var s,r=this -r.a5V() -if(A.n(r).i("cT.F").a(A.T.prototype.gW.call(r)).p4==null){s=r.goX() -s=s==null?B.b6:new A.cA(s,B.fF,B.be) -r.k4=new A.eD(s,$.af())}r.gcJ().a9(r.ga0c())}, -nE(a){var s -this.a5S(a) -if(this.gcJ().a.a!==a){s=this.gcJ() -s.sde(a==null?"":a)}}, -aV(a){var s,r,q=this -q.a5T(a) -s=a.p4==null -if(s&&A.n(q).i("cT.F").a(A.T.prototype.gW.call(q)).p4!=null){r=q.k4 -if(r!=null){r.P$=$.af() -r.L$=0}}if(!s&&A.n(q).i("cT.F").a(A.T.prototype.gW.call(q)).p4==null){s=q.goX() -s=s==null?B.b6:new A.cA(s,B.fF,B.be) -q.k4=new A.eD(s,$.af())}}, -l(){var s,r=this -r.gcJ().O(r.ga0c()) -s=r.k4 -if(s!=null){s.P$=$.af() -s.L$=0}r.a5U()}, -aw_(){var s=this -if(s.gcJ().a.a!==s.goX())s.nE(s.gcJ().a.a)}} -A.auh.prototype={ -N(){return"ShadAutovalidateMode."+this.b}} -A.F_.prototype={ -ah(){var s=t.N,r=t._8 -return new A.F0(new A.by(null,t.am),A.t(s,t.RH),A.t(s,t.z),A.t(s,r),A.t(s,r))}, -gR(){return this.w}} -A.F0.prototype={ -gaxs(){var s,r,q,p -this.a.toString -s=t.N -r=t.z -q=A.vX(A.RJ(B.hP,null),s,r) -this.a.toString -p=A.aRj(q,A.aWM(this.f,".")) -return A.Ny(p,s,r)}, -gp(){var s,r,q,p,o,n=this -n.a.toString -s=t.N -r=t.z -q=A.vX(A.RJ(B.hP,null),s,r) -p=n.f.mn(0,new A.auB(n),s,r) -n.a.toString -o=A.aRj(q,A.aWM(p,".")) -return A.Ny(o,s,r)}, -aw(){var s,r=this -r.b3() -r.a.toString -A:{break A}s=$.af() -r.x!==$&&A.bs() -r.x=new A.cb(B.fU,s)}, -l(){var s=this.x -s===$&&A.a() -s.P$=$.af() -s.L$=0 -this.aQ()}, -a10(a,b){var s,r -this.e.m(0,a,b) -s=this.f -r=b.gauj() -s.m(0,a,r==null?this.MI(a):r) -r=A.n(b).i("cT.F") -r.a(A.T.prototype.gW.call(b)) -r.a(A.T.prototype.gW.call(b)) -r.a(A.T.prototype.gW.call(b)) -b.a4m(s.h(0,a)) -s=b.CW -if(s!=null)s.Nk(b.gAR(),b.goX(),!1)}, -MI(a){var s -this.a.toString -s=this.gaxs() -this.a.toString -return A.b8S(s,a,".")}, -a32(a,b,c){this.f.m(0,a,b)}, -Nk(a,b,c){return this.a32(a,b,c,t.z)}, -a1K(a,b){var s=this -s.e.J(0,a) -s.r.J(0,a) -s.w.J(0,a) -s.a.toString}, -az_(a,b){var s,r,q,p,o,n=this -n.a.toString -s=n.x -s===$&&A.a() -s.sp(B.lM) -s=n.d.gS().x8() -if(!s){r=n.e -q=A.n(r).i("bo<2>") -p=q.i("b1") -o=A.aa(new A.b1(new A.bo(r,q),new A.auA(),p),p.i("y.E")) -if(o.length!==0){r=B.b.gad(o) -q=r.c -q.toString -A.aW_(q).M0(r.gck())}}return s}, -op(){this.d.gS().mP() -return this.az_(!1,!0)}, -K(a){var s=this,r=s.x -r===$&&A.a() -return new A.dL(r,new A.auz(s),new A.x7(s,A.Qm(s.a.w,new A.ay1(A.t(t.l5,t.UJ),A.aTm())),null),null,t.lq)}} -A.auB.prototype={ -$2(a,b){this.a.r.h(0,a) -return new A.aV(a,b,t.YM)}, -$S:626} -A.auA.prototype={ -$1(a){var s -a.grS() -s=A.dQ.prototype.gla.call(a) -return s}, -$S:627} -A.auz.prototype={ -$3(a,b,c){var s=null,r=this.a -r.a.toString -c.toString -return A.aW6(b,s,c,r.d,s,s,s)}, -$S:628} -A.x7.prototype={ -cI(a){return a.f!==this.f}} -A.Wg.prototype={ -cO(a){var s -switch(4){case 4:s=a.r -break}return s}, -K(a){var s=this,r=null,q=A.dd(a,!0),p=s.cO(q).d -if((p==null?r:p.e)==null)q.ay.e.toString -return A.qI(A.aXW(!1,r,s.f,r,r,!0,r,s.at,r,s.y,s.as,s.ax,r,r,r,r,r,r,r,r,r,r,r,r,r,s.d,r,r,r,r,r,r,s.z,r,s.cx,r,r,B.cS,s.x),new A.dw(r,r,r,r,r,r,r,r,r),r)}} -A.td.prototype={ -ah(){var s=null -return new A.xa(new A.cb(!1,$.af()),new A.hc(),new A.by(s,t.NE),s,A.t(t.yb,t.M),s,!0,s)}} -A.xa.prototype={ -grD(){var s=this.a.f -return s}, -gJJ(){var s=this.a.e -return s}, -gAS(){this.a.toString -var s=this.x -s.toString -return s}, -gauO(){if(this.gAS().f.length===0)return!1 -var s=B.b.gcM(this.gAS().f).Q -s.toString -return s>0}, -aw(){var s=this -s.b3() -s.grD().a9(s.gmq()) -s.a.toString -s.x=A.Vz()}, -aV(a){var s,r,q=this -q.a7c(a) -s=a.f -if(q.a.f!==s){r=q.gmq() -s.O(r) -q.grD().a9(r)}q.a.toString}, -l(){var s,r=this -r.grD().O(r.gmq()) -r.a.toString -s=r.f -if(s!=null){s.Qp() -s.Op()}s=r.x -if(s!=null)s.l() -r.a7d()}, -wy(){this.e.sp(this.grD().gc5())}, -gUf(){var s=this,r=s.z -return r===$?s.z=new A.a3i(s,s):r}, -gKd(){var s=A.aT() -A:{break A}return B.U===s}, -gfN(){return this.a.y1}, -gey(){return this.a.P}, -h7(a,b){var s=this.f -if(s!=null)this.kw(s,"controller")}, -agM(a,b){var s,r=this,q=r.agN(b) -if(q!==r.r)r.ar(new A.auF(r,q)) -switch(A.aT().a){case 2:case 4:case 3:case 5:case 1:case 0:if(b===B.bu){s=r.y.gS() -if(s!=null)s.iV(a.gdT())}break}switch(A.aT().a){case 2:case 1:case 0:break -case 4:case 3:case 5:if(b===B.aw){s=r.y.gS() -if(s!=null)s.fG()}break}}, -agN(a){var s -if(!this.gUf().b)return!1 -if(a===B.av)return!1 -s=this.a -if(!s.p2)return!1 -if(a===B.bu||a===B.fA)return!0 -if(this.gJJ().a.a.length!==0)return!0 -return!1}, -K(a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=null,a=A.dd(a5,!0),a0=a.cy.as,a1=a.a,a2=a.go,a3=a0.c3(a1.b).E(a2.d).E(c.a.Q),a4=a2.b -if(a4==null)a4=B.fC -s=a4.E(c.a.r) -c.a.toString -r=a2.e -if(r==null)r=a1.r -q=a2.f -if(q==null)q=2 -p=a2.c -if(p==null)p=B.cp -o=a2.as -if(o==null)o=B.ap -n=A.iB(a0.E(a2.y).E(c.a.c0),a1.Q,b) -m=a5.aA(t.I).w===B.aj?B.dL:B.bB -c.a.toString -l=a2.Q -if(l==null)l=m -k=a2.z -if(k==null)k=m -j=a2.ay -if(j==null)j=8 -A.aT() -a0=A.c([],t.VS) -c.a.toString -a1=A.c_(a5,B.dK) -i=a1==null?b:a1.gdO() -if(i==null)i=B.bz -a1=n.r -if(a1==null)a1=0 -a4=n.as -if(a4==null)a4=0 -h=a3.r -if(h==null)h=0 -g=a3.as -if(g==null)g=0 -f=i.bi(Math.max(a1*a4,h*g)) -g=c.a -g.toString -e=a2.ch -if(e==null)e=new A.al(0,1/0,f,1/0) -d=a2.cx -if(d==null)d=0 -a1=c.gUf() -a4=c.grD() -return new A.dX(e,new A.Wf(!g.p2,a1.X6(B.cs,new A.F5(new A.dL(c.e,new A.auI(c,a,B.Kg,a3,r,q,a2.r,a2.w,!1,a0,c.w,i,s,a2.CW,p,B.m,B.o,o,l,n,k,j,d),b,b,t.D0),c.a.bR,a4,b)),b),b)}, -gae(){return this.y}} -A.auF.prototype={ -$0(){this.a.r=this.b}, -$S:0} -A.auJ.prototype={ -$1(a){var s=a.b -if(s===B.eL||s===B.eM)return this.a -s=A.b0P(s,this.b) -if(s==null)s=a.c -return(s==null?"":s).length!==0}, -$S:629} -A.auK.prototype={ -$1(a){return this.a.a.$0()}, -$S:16} -A.auI.prototype={ -$3(a,b,c){var s=this,r=s.a -return new A.dL(r.gJJ(),new A.auH(r,b,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy),null,null,t.ue)}, -$S:630} -A.auH.prototype={ -$3(b9,c0,c1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5=this,b6=null,b7=b5.a,b8=b7.a -b8.toString -s=b7.r -r=b7.gJJ() -q=b7.grD() -p=b5.b -if(p){b7.a.toString -o=b5.c.a.cy}else o=b6 -n=b7.a -m=n.ry -l=n.to -k=n.y2 -j=n.y1 -i=n.as -h=n.x -g=n.y -f=n.z -e=n.cy -d=n.bE -c=n.dx -b=n.dy -a=n.fx -a0=n.fy -a1=n.k3 -a2=n.k4 -a3=n.ok -a4=n.x2 -a5=n.xr -n=n.a3 -a6=A.kX(b9).XU(!1,!1) -a7=b7.a -a8=a7.a5 -a9=a7.L -b0=a7.au -b1=a7.w -b2=a7.bz -b3=a7.at -b4=A.a8(A.aVN(!0,b6,b6,a8,!1,B.m9,a9,b0,A.bki(),r,b5.f,b5.w,b6,b5.y,b5.x,b5.r,a5,!0,j,!0,!1,q,b5.Q,b6,b5.z,b7.y,b5.c.b,h,d,a,a0,b5.d,e,b8.cx,a3,new A.auG(b7),a1,b7.gagL(),b6,a2,a7.n,b6,!1,!1,!0,"editable",!0,a6,b6,a4,n,b6,o,k,m,l,a7.ch,s,c,b,b2,i,b5.e,!0,b3,f,b6,g,b6,b1),b6,b6) -b7.a.toString -b8=t.p -s=A.c([],b8) -r=b7.a -r=r.fx!==1&&b7.gauO() -q=b7.gAS() -o=b5.ax -o=o==null?b6:o.af(b9.aA(t.I).w) -n=b7.gAS() -m=b7.a.a3 -l=A.c([],b8) -k=b7.a.aK -if(k!=null)l.push(k) -b7.a.toString -b8=A.c([],b8) -k=c0.a.length===0 -if(k)b7.a.toString -if(k)b8.push(A.Uk(0,new A.ex(b5.cy,b6,b6,A.fn(b7.a.d,b6,b6,B.bc,!0,b5.db,b6,b6,B.al),b6))) -b8.push(new A.j6(A.xX(b7.bD$,new A.ex(b5.dx,b6,b6,b4,b6)),b6)) -l.push(new A.fZ(1,B.dX,A.aca(!1,new A.bR(b5.cx,A.hE(B.aQ,b8,B.N,B.bM),b6)),b6)) -b7.a.toString -s.push(A.aXz(A.oJ(A.bw(A.VX(l,A.a8(b6,b6,b5.dy)),b5.CW,b5.ch,B.n,b6),n,b5.ay,m,B.L),q,B.aM,b6,b6,0,A.up(),o,B.z,b6,b6,b6,r,B.eS,b6)) -b7.a.toString -return new A.l_(A.aQf(A.VX(s,A.a8(b6,b5.fr,b6)),B.cI,B.m,B.ak),b5.at,p,b6)}, -$S:631} -A.auG.prototype={ -$1(a){var s=this.a,r=s.y.gS() -if(r!=null)r.fG() -s.a.toString}, -$S:28} -A.a3i.prototype={ -Cb(a){var s -this.a63(a) -s=this.a -if(s.gfN()&&this.b)s.gae().gS().hY()}, -Lr(a){}, -wz(){this.x.a.toString}, -gLz(){this.x.a.toString -return!1}, -Cq(a){var s -this.a64(a) -if(this.a.gfN())switch(A.aT().a){case 2:case 4:break -case 0:case 1:case 3:case 5:s=this.x.c -s.toString -A.ahL(s) -break}}} -A.aHZ.prototype={ -$2(a,b){if(!a.a)a.O(b)}, -$S:44} -A.JX.prototype={ -aV(a){this.bm(a) -this.nF()}, -by(){var s,r,q,p,o=this -o.du() -s=o.bD$ -r=o.gmz() -q=o.c -q.toString -q=A.mF(q) -o.f_$=q -p=o.lR(q,r) -if(r){o.h7(s,o.dU$) -o.dU$=!1}if(p)if(s!=null)s.l()}, -l(){var s,r=this -r.eZ$.aL(0,new A.aHZ()) -s=r.bD$ -if(s!=null)s.l() -r.bD$=null -r.aQ()}} -A.XE.prototype={ -fn(){if(!this.a)return -this.a=!1 -this.a7()}, -DM(a){if(this.a===a)return -this.a=a -this.a7()}} -A.F8.prototype={ -ah(){var s=null -return new A.JY(new A.hc(),A.lZ(!0,s,!0,!0,s,s,!1),s,s)}, -gR(){return this.d}} -A.JY.prototype={ -gcJ(){var s=this.a.e -return s}, -ga2A(){var s=this.a.ax -return s}, -aw(){var s,r=this -r.b3() -r.a.toString -s=A.bX(null,B.aM,null,null,r) -r.f!==$&&A.bs() -r.f=s -r.gcJ().a9(r.gGV()) -r.SP()}, -aV(a){var s,r,q=this -q.bm(a) -s=q.a.e -r=a.e -if(s!==r){s=q.gGV() -r.O(s) -q.a.e.a9(s)}q.a.toString}, -l(){var s,r=this -r.gcJ().O(r.gGV()) -s=r.f -s===$&&A.a() -s.l() -r.r.l() -s=r.e -if(s!=null){s.P$=$.af() -s.L$=0}r.a85()}, -SP(){var s=this.gcJ().a,r=this.f -if(s){r===$&&A.a() -r.kl(0) -this.r.it()}else{r===$&&A.a() -r.d6()}}, -K(a){var s,r,q,p,o,n,m,l,k,j=this,i=null,h={},g=A.dd(a,!0) -j.a.toString -s=g.CW -r=j.f -r===$&&A.a() -r.f=s.w -q=s.b -p=j.a -o=p.Q -n=s.e -if(n==null)n=B.fC -m=n.E(p.as).aqu(s.c) -s=g.cx.r -if(s==null)s=i -else{s=s.b -s=s==null?i:s.af(a.aA(t.I).w).aqx(0)}m=m.aqs(new A.fL(!0,s,i,i,i,i,i,i)) -s=j.a -l=s.x -s=s.ay -p=A.ay(i,i,A.dd(a,!0).a.f,i,i,i,i,i,i,i,i,i,i,i,i,i,i,!0,i,i,i,i,i,i,i,i) -k=h.a=A.auN(new A.l_(new A.bR(o,A.fn(new A.dO(j.a.c,i),i,i,B.bc,!0,p,B.bQ,i,B.al),i),m,!1,i),s,i,i,i) -s=q.length!==0?h.a=A.VY(!1,k,r,q):k -j.a.toString -h.a=A.xz(B.aG,s,!1,i,!0,j.ga2A(),i,i,new A.aJm(j),i,i) -s=A.aG([B.ov,new A.aJn(j)],t.Vz,t.M) -h=A.hU(r,new A.aJo(h,j,l),i) -j.a.toString -return new A.Ah(s,h,i)}} -A.aJm.prototype={ -$1(a){return this.a.gcJ().fn()}, -$S:52} -A.aJn.prototype={ -$0(){this.a.gcJ().fn()}, -$S:0} -A.aJo.prototype={ -$2(a,b){var s=this.b,r=s.f -r===$&&A.a() -r=r.gba() -return new A.th(s.a.d,new A.aJl(this.a,s),r!==B.Z,this.c,null)}, -$S:632} -A.aJl.prototype={ -$1(a){var s=null -return A.aQO(!1,s,A.jH(!1,s,this.a.a,s,s,s,this.b.r,!0,s,s,s,s,s,!0),s,!0,s,s,s,s)}, -$S:633} -A.LA.prototype={ -l(){var s=this,r=s.bu$ -if(r!=null)r.O(s.gfA()) -s.bu$=null -s.aQ()}, -bF(){this.cE() -this.cv() -this.fB()}} -A.XK.prototype={ -cI(a){return this.f!==a.f}} -A.Fc.prototype={ -ah(){var s=t.Kq -return new A.Fd(A.c([],s),A.c([],s),new A.cb(!1,$.af()),null,null)}, -gR(){return this.c}} -A.mY.prototype={} -A.Fd.prototype={ -ga1U(){this.a.toString -var s=this.c -s.toString -A.dd(s,!1) -return 3}, -gWF(){this.a.toString -var s=this.c -s.toString -s=A.dd(s,!1).a0.w -return s==null?B.aM:s}, -gva(){var s,r=this,q=r.f -if(q===$){s=A.bX(null,r.gWF(),null,null,r) -r.f!==$&&A.aK() -r.f=s -q=s}return q}, -aw(){this.b3() -this.w.a9(new A.av1(this))}, -l(){var s,r,q,p,o,n,m=this -m.gva().l() -for(s=m.e,r=s.length,q=0;q0){n.b=n.c=n.d=n.e=null -n.a=0}o.d_$.a.aa(0) -o.xM()}s=m.w -s.P$=$.af() -s.L$=0 -m.a7e()}, -a3p(a,b){var s,r=this,q=A.bX(null,r.gWF(),null,null,r),p=a.gpC(),o=new A.mY(p,a,q),n=r.e -if(n.length+1>r.ga1U())r.BF(B.b.gad(n).a) -r.ar(new A.av3(r,!1,o)) -q.cc() -s=a.gJG() -o.f=A.ck(s,new A.av4(r,p)) -return p}, -w8(a){var s=0,r=A.I(t.H),q,p=this,o,n -var $async$w8=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:n=A.aR8(p.e,new A.auZ(a)) -if(n==null){s=1 -break}p.ar(new A.av_(n)) -o=n.f -if(o!=null)o.bg() -n.f=null -o=n.c -s=3 -return A.p(o.d6(),$async$w8) -case 3:o.l() -p.ar(new A.av0(p,n)) -case 1:return A.G(q,r)}}) -return A.H($async$w8,r)}, -BF(a){var s=0,r=A.I(t.H),q,p=this,o,n -var $async$BF=A.J(function(b,c){if(b===1)return A.F(c,r) -for(;;)switch(s){case 0:n=A.aR8(p.e,new A.auX(a)) -if(n==null){s=1 -break}o=n.c -o.sp(o.a) -s=3 -return A.p(o.cc(),$async$BF) -case 3:p.ar(new A.auY(p,n)) -case 1:return A.G(q,r)}}) -return A.H($async$BF,r)}, -aw9(a){var s,r,q,p=this.w -if(p.a)return -p.sp(!0) -for(p=this.e,s=p.length,r=0;r=m.k3.c.a,k=l?0:1/0 -l=l?420:1/0 -s=o.a -r=s.r -if(r===$){q=t.Y -s.a.toString -p=s.c -p.toString -p=A.dd(p,!1).a0.x -p=A.cQ(p,s.gva(),n) -s.r!==$&&A.aK() -r=s.r=new A.aw(p,new A.aA(0,1,q),q.i("aw"))}m=A.aWF(s.e,new A.auU(s,o.f,m),t.Mq,t.jm) -m=A.aa(m,m.$ti.i("y.E")) -return new A.dX(new A.al(k,l,0,1/0),A.auN(new A.bR(o.c,A.v4(new A.a1J(new A.avH(r,o.e,o.d,r,n),A.bjG(),m,n),B.D,!0),n),n,n,s.gC8(),s.gC9()),n)}, -$S:636} -A.auU.prototype={ -$2(a,b){var s,r,q,p,o,n,m,l,k,j,i=null,h=this.a,g=1-this.b*(h.e.length-1-a),f=b.b -switch(f.gaA3()){case B.a89:break -case B.a8a:break}s=f.giS() -A:{r=B.bA.j(0,s) -q=!r -if(q){p=B.d1.j(0,s) -o=p||B.c_.j(0,s)}else{p=i -o=!0}if(o){o=A.c([B.dg,B.J4],t.h) -break A}n=B.dL.j(0,s) -m=!n -if(m){l=B.bB.j(0,s) -o=l||B.bp.j(0,s)}else{l=i -o=!0}if(o){o=A.c([B.dg,B.J7],t.h) -break A}o=!0 -if(!B.ey.j(0,s))if(!n)o=r -if(o){o=A.c([B.dg,B.J3],t.h) -break A}o=!0 -if(!B.cD.j(0,s))if(!(m?l:B.bB.j(0,s)))o=q?p:B.d1.j(0,s) -if(o){o=A.c([B.dg,B.J2],t.h) -break A}B.a_.j(0,s) -o=A.c([B.dg,B.kM],t.h) -break A}B:{if(B.bA.j(0,s)||B.dL.j(0,s)||B.ey.j(0,s)){k=B.Wl -break B}if(B.bB.j(0,s)||B.cD.j(0,s)||B.d1.j(0,s)){k=B.rU -break B}if(B.bp.j(0,s)){k=A.c([B.J5],t.h) -break B}if(B.c_.j(0,s)){k=A.c([B.J6],t.h) -break B}B.a_.j(0,s) -k=A.c([B.j8,B.o6],t.h) -break B}f.gazF() -f.gazG() -h=h.gva() -j=A.c([new A.rT(!0,i,i,i,new A.h(g,g),B.kr)],t.h) -if(b.e)o=k -return A.VY(!1,A.VY(!1,A.Nl(new A.U2(B.aQ,1/0,f,i),B.N,i),b.c,o),h,j)}, -$S:637} -A.avH.prototype={ -pM(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9=this,b0=t.rv -if(b0.a(A.ek.prototype.gcm.call(a9)).l4$.length===0)return B.Q -s=t.n -r=A.c([],s) -q=A.c([],s) -for(p=b0.a(A.ek.prototype.gcm.call(a9)).l4$,s=p.length,o=t.x,n=0;n=0?new A.an(b0+a4,l.gT()):A.a0(A.cD()) -h=a4.a -if(h===a3)a5=a2 -else{a6=a2-(a3-h)*b -a5=a6+(B.b.rR(B.b.d1(q,0,h),0,new A.avJ())+d*h-a6)*o.aj(s.gp())}a5=Math.max(0,a5) -a7=new Float64Array(16) -a8=new A.bc(a7) -a8.ei() -a7[14]=0 -a7[13]=a5 -a7[12]=0 -a4.b.a3d(a8)}return new A.L(j,a0)}} -A.avI.prototype={ -$2(a,b){return a+b}, -$S:166} -A.avJ.prototype={ -$2(a,b){return a+b}, -$S:166} -A.K_.prototype={ -bF(){this.cE() -this.cv() -this.eG()}, -l(){var s=this,r=s.bl$ -if(r!=null)r.O(s.geq()) -s.bl$=null -s.aQ()}} -A.Ff.prototype={ -ah(){var s=$.af() -return new A.XV(new A.cb(null,s),new A.cb(!1,s),null,null)}, -gR(){return this.c}} -A.XV.prototype={ -gVc(){var s,r=this,q=null,p=r.d -if(p===$){s=A.bX(q,q,q,q,r) -r.d!==$&&A.aK() -r.d=s -p=s}return p}, -l(){var s,r,q=this -q.gVc().l() -s=q.f -r=$.af() -s.P$=r -s.L$=0 -s=q.e -s.P$=r -s.L$=0 -q.a7f()}, -K(a){var s=this,r=A.dd(a,!0) -return new A.XU(s,A.hE(B.aQ,A.c([s.a.c,new A.dL(s.f,new A.avc(s,r),null,null,t.D0)],t.p),B.N,B.bM),null)}} -A.avc.prototype={ -$3(a,b,c){var s=this.a -return new A.dL(s.e,new A.avb(s,this.b,b),null,null,t.zT)}, -$S:639} -A.avb.prototype={ -$3(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g=null -A:{s=this.b.k1 -break A}r=s.d -if(r==null)r=B.bA -B:{q=B.bA.j(0,r) -p=!q -if(p){o=B.d1.j(0,r) -n=o||B.c_.j(0,r)}else{o=g -n=!0}if(n){n=A.c([B.J4],t.h) -break B}m=B.dL.j(0,r) -l=!m -if(l){k=B.bB.j(0,r) -n=k||B.bp.j(0,r)}else{k=g -n=!0}if(n){n=A.c([B.J7],t.h) -break B}n=!0 -if(!B.ey.j(0,r))if(!m)n=q -if(n){n=A.c([B.J3],t.h) -break B}n=!0 -if(!B.cD.j(0,r))if(!(l?k:B.bB.j(0,r)))n=p?o:B.d1.j(0,r) -if(n){n=A.c([B.J2],t.h) -break B}B.a_.j(0,r) -n=A.c([B.dg,B.kM],t.h) -break B}C:{if(B.bA.j(0,r)||B.dL.j(0,r)||B.ey.j(0,r)){j=B.Vt -break C}if(B.bB.j(0,r)||B.cD.j(0,r)||B.d1.j(0,r)){j=B.rU -break C}if(B.bp.j(0,r)){j=A.c([B.J5],t.h) -break C}if(B.c_.j(0,r)){j=A.c([B.J6],t.h) -break C}B.a_.j(0,r) -j=A.c([B.j8,B.o6],t.h) -break C}D:{if(B.bp.j(0,r)||B.bB.j(0,r)||B.dL.j(0,r)){i=new A.h(16,A.c0(a,B.bS,t.l).w.r.b+16) -break D}if(B.c_.j(0,r)||B.d1.j(0,r)||B.bA.j(0,r)){i=new A.h(16,A.c0(a,B.bS,t.l).w.r.d+16) -break D}i=B.a3s -break D}h=s.e -if(h==null)h=i -s=this.a.gVc() -n=this.c?n:j -j=h.a -i=h.b -return A.VY(!0,new A.ex(r,g,g,new A.bR(new A.a2(j,i,j,i),b,g),g),s,n)}, -$S:640} -A.XU.prototype={ -cI(a){return this.f!==a.f}} -A.XT.prototype={ -N(){return"ShadToastVariant."+this.b}} -A.K0.prototype={ -bF(){this.cE() -this.cv() -this.eG()}, -l(){var s=this,r=s.bl$ -if(r!=null)r.O(s.geq()) -s.bl$=null -s.aQ()}} -A.QB.prototype={ -pL(a){return!0}, -j3(a){var s=t.Z5,r=A.ako(new A.b1(B.wu,new A.aj6(a),s)),q=r==null?A.ako(new A.b1(B.wu,new A.aj7(a),s)):r -if(q==null)q=B.oo -if(q===B.oo)return new A.cF(q.ap7(),t.U2) -return q.aM()}, -ou(a){return!1}} -A.aj6.prototype={ -$1(a){var s=this.a -return a.c===s.gdV()&&null==s.gdS()}, -$S:157} -A.aj7.prototype={ -$1(a){return a.c===this.a.gdV()}, -$S:157} -A.aM.prototype={ -N(){return"ShadLocale."+this.b}, -aM(){var s=0,r=A.I(t.fk),q,p=this -var $async$aM=A.J(function(a,b){if(a===1)return A.F(b,r) -for(;;)switch(s){case 0:case 3:switch(p.a){case 0:s=5 -break -case 1:s=6 -break -case 2:s=7 -break -case 3:s=8 -break -case 4:s=9 -break -case 5:s=10 -break -case 6:s=11 -break -case 7:s=12 -break -case 8:s=13 -break -case 9:s=14 -break -case 10:s=15 -break -case 11:s=16 -break -case 12:s=17 -break -case 13:s=18 -break -case 14:s=19 -break -case 15:s=20 -break -case 16:s=21 -break -case 17:s=22 -break -case 18:s=23 -break -case 19:s=24 -break -case 20:s=25 -break -case 21:s=26 -break -case 22:s=27 -break -case 23:s=28 -break -case 24:s=29 -break -case 25:s=30 -break -case 26:s=31 -break -case 27:s=32 -break -case 28:s=33 -break -case 29:s=34 -break -case 30:s=35 -break -case 31:s=36 -break -case 32:s=37 -break -case 33:s=38 -break -case 34:s=39 -break -case 35:s=40 -break -case 36:s=41 -break -case 37:s=42 -break -case 38:s=43 -break -case 39:s=44 -break -case 40:s=45 -break -case 41:s=46 -break -case 42:s=47 -break -case 43:s=48 -break -case 44:s=49 -break -case 45:s=50 -break -case 46:s=51 -break -case 47:s=52 -break -case 48:s=53 -break -case 49:s=54 -break -case 50:s=55 -break -case 51:s=56 -break -case 52:s=57 -break -case 53:s=58 -break -case 54:s=59 -break -case 55:s=60 -break -case 56:s=61 -break -case 57:s=62 -break -case 58:s=63 -break -case 59:s=64 -break -case 60:s=65 -break -case 61:s=66 -break -case 62:s=67 -break -case 63:s=68 -break -case 64:s=69 -break -case 65:s=70 -break -case 66:s=71 -break -case 67:s=72 -break -case 68:s=73 -break -case 69:s=74 -break -case 70:s=75 -break -case 71:s=76 -break -case 72:s=77 -break -case 73:s=78 -break -case 74:s=79 -break -case 75:s=80 -break -case 76:s=81 -break -case 77:s=82 -break -case 78:s=83 -break -case 79:s=84 -break -case 80:s=85 -break -case 81:s=86 -break -default:s=4 -break}break -case 5:q=A.aRV(null,null,null,null) -s=1 -break -case 6:s=87 -return A.p(A.aY("l_af",""),$async$aM) -case 87:A.Z("l_af") -q=C.aXZ(null,null,null) -s=1 -break -case 7:s=88 -return A.p(A.aY("l_am",""),$async$aM) -case 88:A.Z("l_am") -q=Ab.aY_(null,null,null) -s=1 -break -case 8:s=89 -return A.p(A.aY("l_ar",""),$async$aM) -case 89:A.Z("l_ar") -q=Ak.aY0(null,null,null) -s=1 -break -case 9:s=90 -return A.p(A.aY("l_as",""),$async$aM) -case 90:A.Z("l_as") -q=Aq.aY1(null,null,null) -s=1 -break -case 10:s=91 -return A.p(A.aY("l_az",""),$async$aM) -case 91:A.Z("l_az") -q=AK.aY2(null,null,null) -s=1 -break -case 11:s=92 -return A.p(A.aY("l_be",""),$async$aM) -case 92:A.Z("l_be") -q=N.aY3(null,null,null) -s=1 -break -case 12:s=93 -return A.p(A.aY("l_bg",""),$async$aM) -case 93:A.Z("l_bg") -q=S.aY4(null,null,null) -s=1 -break -case 13:s=94 -return A.p(A.aY("l_bn",""),$async$aM) -case 94:A.Z("l_bn") -q=T.aY5(null,null,null) -s=1 -break -case 14:s=95 -return A.p(A.aY("l_bo",""),$async$aM) -case 95:A.Z("l_bo") -q=U.aY6(null,null,null) -s=1 -break -case 15:s=96 -return A.p(A.aY("l_bs",""),$async$aM) -case 96:A.Z("l_bs") -q=V.aY7(null,null,null) -s=1 -break -case 16:s=97 -return A.p(A.aY("l_ca",""),$async$aM) -case 97:A.Z("l_ca") -q=W.aY8(null,null,null) -s=1 -break -case 17:s=98 -return A.p(A.aY("l_cs",""),$async$aM) -case 98:A.Z("l_cs") -q=X.aY9(null,null,null) -s=1 -break -case 18:s=99 -return A.p(A.aY("l_cy",""),$async$aM) -case 99:A.Z("l_cy") -q=Y.aYa(null,null,null) -s=1 -break -case 19:s=100 -return A.p(A.aY("l_da",""),$async$aM) -case 100:A.Z("l_da") -q=Z.aYb(null,null,null) -s=1 -break -case 20:s=101 -return A.p(A.aY("l_de",""),$async$aM) -case 101:A.Z("l_de") -q=A_.aYc(null,null,null) -s=1 -break -case 21:s=102 -return A.p(A.aY("l_el",""),$async$aM) -case 102:A.Z("l_el") -q=A0.aYd(null,null,null) -s=1 -break -case 22:s=103 -return A.p(A.aY("l_es",""),$async$aM) -case 103:A.Z("l_es") -q=A1.aYe(null,null,null) -s=1 -break -case 23:s=104 -return A.p(A.aY("l_et",""),$async$aM) -case 104:A.Z("l_et") -q=A2.aYf(null,null,null) -s=1 -break -case 24:s=105 -return A.p(A.aY("l_eu",""),$async$aM) -case 105:A.Z("l_eu") -q=A3.aYg(null,null,null) -s=1 -break -case 25:s=106 -return A.p(A.aY("l_fa",""),$async$aM) -case 106:A.Z("l_fa") -q=A4.aYh(null,null,null) -s=1 -break -case 26:s=107 -return A.p(A.aY("l_fi",""),$async$aM) -case 107:A.Z("l_fi") -q=A5.aYi(null,null,null) -s=1 -break -case 27:s=108 -return A.p(A.aY("l_fil",""),$async$aM) -case 108:A.Z("l_fil") -q=A6.aYj(null,null,null) -s=1 -break -case 28:s=109 -return A.p(A.aY("l_fr",""),$async$aM) -case 109:A.Z("l_fr") -q=A7.aYk(null,null,null) -s=1 -break -case 29:s=110 -return A.p(A.aY("l_ga",""),$async$aM) -case 110:A.Z("l_ga") -q=A8.aYl(null,null,null) -s=1 -break -case 30:s=111 -return A.p(A.aY("l_gl",""),$async$aM) -case 111:A.Z("l_gl") -q=A9.aYm(null,null,null) -s=1 -break -case 31:s=112 -return A.p(A.aY("l_gsw",""),$async$aM) -case 112:A.Z("l_gsw") -q=Aa.aYn(null,null,null) -s=1 -break -case 32:s=113 -return A.p(A.aY("l_gu",""),$async$aM) -case 113:A.Z("l_gu") -q=Ac.aYo(null,null,null) -s=1 -break -case 33:s=114 -return A.p(A.aY("l_he",""),$async$aM) -case 114:A.Z("l_he") -q=Ad.aYp(null,null,null) -s=1 -break -case 34:s=115 -return A.p(A.aY("l_hi",""),$async$aM) -case 115:A.Z("l_hi") -q=Ae.aYq(null,null,null) -s=1 -break -case 35:s=116 -return A.p(A.aY("l_hr",""),$async$aM) -case 116:A.Z("l_hr") -q=Af.aYr(null,null,null) -s=1 -break -case 36:s=117 -return A.p(A.aY("l_hu",""),$async$aM) -case 117:A.Z("l_hu") -q=Ag.aYs(null,null,null) -s=1 -break -case 37:s=118 -return A.p(A.aY("l_hy",""),$async$aM) -case 118:A.Z("l_hy") -q=Ah.aYt(null,null,null) -s=1 -break -case 38:s=119 -return A.p(A.aY("l_id",""),$async$aM) -case 119:A.Z("l_id") -q=Ai.aYu(null,null,null) -s=1 -break -case 39:s=120 -return A.p(A.aY("l_is",""),$async$aM) -case 120:A.Z("l_is") -q=Aj.aYv(null,null,null) -s=1 -break -case 40:s=121 -return A.p(A.aY("l_it",""),$async$aM) -case 121:A.Z("l_it") -q=Al.aYw(null,null,null) -s=1 -break -case 41:s=122 -return A.p(A.aY("l_ja",""),$async$aM) -case 122:A.Z("l_ja") -q=Am.aYx(null,null,null) -s=1 -break -case 42:s=123 -return A.p(A.aY("l_ka",""),$async$aM) -case 123:A.Z("l_ka") -q=An.aYy(null,null,null) -s=1 -break -case 43:s=124 -return A.p(A.aY("l_kk",""),$async$aM) -case 124:A.Z("l_kk") -q=Ao.aYz(null,null,null) -s=1 -break -case 44:s=125 -return A.p(A.aY("l_km",""),$async$aM) -case 125:A.Z("l_km") -q=Ap.aYA(null,null,null) -s=1 -break -case 45:s=126 -return A.p(A.aY("l_kn",""),$async$aM) -case 126:A.Z("l_kn") -q=Ar.aYB(null,null,null) -s=1 -break -case 46:s=127 -return A.p(A.aY("l_ko",""),$async$aM) -case 127:A.Z("l_ko") -q=As.aYC(null,null,null) -s=1 -break -case 47:s=128 -return A.p(A.aY("l_ky",""),$async$aM) -case 128:A.Z("l_ky") -q=At.aYD(null,null,null) -s=1 -break -case 48:s=129 -return A.p(A.aY("l_lo",""),$async$aM) -case 129:A.Z("l_lo") -q=Au.aYE(null,null,null) -s=1 -break -case 49:s=130 -return A.p(A.aY("l_lt",""),$async$aM) -case 130:A.Z("l_lt") -q=Av.aYF(null,null,null) -s=1 -break -case 50:s=131 -return A.p(A.aY("l_lv",""),$async$aM) -case 131:A.Z("l_lv") -q=Aw.aYG(null,null,null) -s=1 -break -case 51:s=132 -return A.p(A.aY("l_mk",""),$async$aM) -case 132:A.Z("l_mk") -q=Ax.aYH(null,null,null) -s=1 -break -case 52:s=133 -return A.p(A.aY("l_ml",""),$async$aM) -case 133:A.Z("l_ml") -q=Ay.aYI(null,null,null) -s=1 -break -case 53:s=134 -return A.p(A.aY("l_mn",""),$async$aM) -case 134:A.Z("l_mn") -q=Az.aYJ(null,null,null) -s=1 -break -case 54:s=135 -return A.p(A.aY("l_mr",""),$async$aM) -case 135:A.Z("l_mr") -q=AA.aYK(null,null,null) -s=1 -break -case 55:s=136 -return A.p(A.aY("l_ms",""),$async$aM) -case 136:A.Z("l_ms") -q=AB.aYL(null,null,null) -s=1 -break -case 56:s=137 -return A.p(A.aY("l_my",""),$async$aM) -case 137:A.Z("l_my") -q=AC.aYM(null,null,null) -s=1 -break -case 57:s=138 -return A.p(A.aY("l_nb",""),$async$aM) -case 138:A.Z("l_nb") -q=AD.aYN(null,null,null) -s=1 -break -case 58:s=139 -return A.p(A.aY("l_ne",""),$async$aM) -case 139:A.Z("l_ne") -q=AE.aYO(null,null,null) -s=1 -break -case 59:s=140 -return A.p(A.aY("l_nl",""),$async$aM) -case 140:A.Z("l_nl") -q=AF.aYP(null,null,null) -s=1 -break -case 60:s=141 -return A.p(A.aY("l_no",""),$async$aM) -case 141:A.Z("l_no") -q=AG.aYQ(null,null,null) -s=1 -break -case 61:s=142 -return A.p(A.aY("l_or",""),$async$aM) -case 142:A.Z("l_or") -q=AH.aYR(null,null,null) -s=1 -break -case 62:s=143 -return A.p(A.aY("l_pa",""),$async$aM) -case 143:A.Z("l_pa") -q=AI.aYS(null,null,null) -s=1 -break -case 63:s=144 -return A.p(A.aY("l_pl",""),$async$aM) -case 144:A.Z("l_pl") -q=AJ.aYT(null,null,null) -s=1 -break -case 64:s=145 -return A.p(A.aY("l_ps",""),$async$aM) -case 145:A.Z("l_ps") -q=AL.aYU(null,null,null) -s=1 -break -case 65:s=146 -return A.p(A.aY("l_pt",""),$async$aM) -case 146:A.Z("l_pt") -q=AM.aYV(null,null,null) -s=1 -break -case 66:s=147 -return A.p(A.aY("l_ro",""),$async$aM) -case 147:A.Z("l_ro") -q=AN.aYW(null,null,null) -s=1 -break -case 67:s=148 -return A.p(A.aY("l_ru",""),$async$aM) -case 148:A.Z("l_ru") -q=AO.aYX(null,null,null) -s=1 -break -case 68:s=149 -return A.p(A.aY("l_si",""),$async$aM) -case 149:A.Z("l_si") -q=AP.aYY(null,null,null) -s=1 -break -case 69:s=150 -return A.p(A.aY("l_sk",""),$async$aM) -case 150:A.Z("l_sk") -q=AQ.aYZ(null,null,null) -s=1 -break -case 70:s=151 -return A.p(A.aY("l_sl",""),$async$aM) -case 151:A.Z("l_sl") -q=AR.aZ_(null,null,null) -s=1 -break -case 71:s=152 -return A.p(A.aY("l_sq",""),$async$aM) -case 152:A.Z("l_sq") -q=AS.aZ0(null,null,null) -s=1 -break -case 72:s=153 -return A.p(A.aY("l_sr",""),$async$aM) -case 153:A.Z("l_sr") -q=AT.aZ1(null,null,null) -s=1 -break -case 73:s=154 -return A.p(A.aY("l_sv",""),$async$aM) -case 154:A.Z("l_sv") -q=AU.aZ2(null,null,null) -s=1 -break -case 74:s=155 -return A.p(A.aY("l_sw",""),$async$aM) -case 155:A.Z("l_sw") -q=D.aZ3(null,null,null) -s=1 -break -case 75:s=156 -return A.p(A.aY("l_ta",""),$async$aM) -case 156:A.Z("l_ta") -q=E.aZ4(null,null,null) -s=1 -break -case 76:s=157 -return A.p(A.aY("l_te",""),$async$aM) -case 157:A.Z("l_te") -q=F.aZ5(null,null,null) -s=1 -break -case 77:s=158 -return A.p(A.aY("l_th",""),$async$aM) -case 158:A.Z("l_th") -q=G.aZ6(null,null,null) -s=1 -break -case 78:s=159 -return A.p(A.aY("l_tl",""),$async$aM) -case 159:A.Z("l_tl") -q=H.aZ7(null,null,null) -s=1 -break -case 79:s=160 -return A.p(A.aY("l_tr",""),$async$aM) -case 160:A.Z("l_tr") -q=I.aZ8(null,null,null) -s=1 -break -case 80:s=161 -return A.p(A.aY("l_ug",""),$async$aM) -case 161:A.Z("l_ug") -q=K.aZ9(null,null,null) -s=1 -break -case 81:s=162 -return A.p(A.aY("l_uk",""),$async$aM) -case 162:A.Z("l_uk") -q=L.aZa(null,null,null) -s=1 -break -case 82:s=163 -return A.p(A.aY("l_ur",""),$async$aM) -case 163:A.Z("l_ur") -q=M.aZb(null,null,null) -s=1 -break -case 83:s=164 -return A.p(A.aY("l_uz",""),$async$aM) -case 164:A.Z("l_uz") -q=O.aZc(null,null,null) -s=1 -break -case 84:s=165 -return A.p(A.aY("l_vi",""),$async$aM) -case 165:A.Z("l_vi") -q=P.aZd(null,null,null) -s=1 -break -case 85:s=166 -return A.p(A.aY("l_zh",""),$async$aM) -case 166:A.Z("l_zh") -q=Q.aZe(null,null,null) -s=1 -break -case 86:s=167 -return A.p(A.aY("l_zu",""),$async$aM) -case 167:A.Z("l_zu") -q=R.aZf(null,null,null) -s=1 -break -case 4:case 1:return A.G(q,r)}}) -return A.H($async$aM,r)}, -ap7(){var s=null -switch(this.a){case 0:return A.aRV(s,s,s,s) -case 1:A.Z("l_af") -return C.aXZ(s,s,s) -case 2:A.Z("l_am") -return Ab.aY_(s,s,s) -case 3:A.Z("l_ar") -return Ak.aY0(s,s,s) -case 4:A.Z("l_as") -return Aq.aY1(s,s,s) -case 5:A.Z("l_az") -return AK.aY2(s,s,s) -case 6:A.Z("l_be") -return N.aY3(s,s,s) -case 7:A.Z("l_bg") -return S.aY4(s,s,s) -case 8:A.Z("l_bn") -return T.aY5(s,s,s) -case 9:A.Z("l_bo") -return U.aY6(s,s,s) -case 10:A.Z("l_bs") -return V.aY7(s,s,s) -case 11:A.Z("l_ca") -return W.aY8(s,s,s) -case 12:A.Z("l_cs") -return X.aY9(s,s,s) -case 13:A.Z("l_cy") -return Y.aYa(s,s,s) -case 14:A.Z("l_da") -return Z.aYb(s,s,s) -case 15:A.Z("l_de") -return A_.aYc(s,s,s) -case 16:A.Z("l_el") -return A0.aYd(s,s,s) -case 17:A.Z("l_es") -return A1.aYe(s,s,s) -case 18:A.Z("l_et") -return A2.aYf(s,s,s) -case 19:A.Z("l_eu") -return A3.aYg(s,s,s) -case 20:A.Z("l_fa") -return A4.aYh(s,s,s) -case 21:A.Z("l_fi") -return A5.aYi(s,s,s) -case 22:A.Z("l_fil") -return A6.aYj(s,s,s) -case 23:A.Z("l_fr") -return A7.aYk(s,s,s) -case 24:A.Z("l_ga") -return A8.aYl(s,s,s) -case 25:A.Z("l_gl") -return A9.aYm(s,s,s) -case 26:A.Z("l_gsw") -return Aa.aYn(s,s,s) -case 27:A.Z("l_gu") -return Ac.aYo(s,s,s) -case 28:A.Z("l_he") -return Ad.aYp(s,s,s) -case 29:A.Z("l_hi") -return Ae.aYq(s,s,s) -case 30:A.Z("l_hr") -return Af.aYr(s,s,s) -case 31:A.Z("l_hu") -return Ag.aYs(s,s,s) -case 32:A.Z("l_hy") -return Ah.aYt(s,s,s) -case 33:A.Z("l_id") -return Ai.aYu(s,s,s) -case 34:A.Z("l_is") -return Aj.aYv(s,s,s) -case 35:A.Z("l_it") -return Al.aYw(s,s,s) -case 36:A.Z("l_ja") -return Am.aYx(s,s,s) -case 37:A.Z("l_ka") -return An.aYy(s,s,s) -case 38:A.Z("l_kk") -return Ao.aYz(s,s,s) -case 39:A.Z("l_km") -return Ap.aYA(s,s,s) -case 40:A.Z("l_kn") -return Ar.aYB(s,s,s) -case 41:A.Z("l_ko") -return As.aYC(s,s,s) -case 42:A.Z("l_ky") -return At.aYD(s,s,s) -case 43:A.Z("l_lo") -return Au.aYE(s,s,s) -case 44:A.Z("l_lt") -return Av.aYF(s,s,s) -case 45:A.Z("l_lv") -return Aw.aYG(s,s,s) -case 46:A.Z("l_mk") -return Ax.aYH(s,s,s) -case 47:A.Z("l_ml") -return Ay.aYI(s,s,s) -case 48:A.Z("l_mn") -return Az.aYJ(s,s,s) -case 49:A.Z("l_mr") -return AA.aYK(s,s,s) -case 50:A.Z("l_ms") -return AB.aYL(s,s,s) -case 51:A.Z("l_my") -return AC.aYM(s,s,s) -case 52:A.Z("l_nb") -return AD.aYN(s,s,s) -case 53:A.Z("l_ne") -return AE.aYO(s,s,s) -case 54:A.Z("l_nl") -return AF.aYP(s,s,s) -case 55:A.Z("l_no") -return AG.aYQ(s,s,s) -case 56:A.Z("l_or") -return AH.aYR(s,s,s) -case 57:A.Z("l_pa") -return AI.aYS(s,s,s) -case 58:A.Z("l_pl") -return AJ.aYT(s,s,s) -case 59:A.Z("l_ps") -return AL.aYU(s,s,s) -case 60:A.Z("l_pt") -return AM.aYV(s,s,s) -case 61:A.Z("l_ro") -return AN.aYW(s,s,s) -case 62:A.Z("l_ru") -return AO.aYX(s,s,s) -case 63:A.Z("l_si") -return AP.aYY(s,s,s) -case 64:A.Z("l_sk") -return AQ.aYZ(s,s,s) -case 65:A.Z("l_sl") -return AR.aZ_(s,s,s) -case 66:A.Z("l_sq") -return AS.aZ0(s,s,s) -case 67:A.Z("l_sr") -return AT.aZ1(s,s,s) -case 68:A.Z("l_sv") -return AU.aZ2(s,s,s) -case 69:A.Z("l_sw") -return D.aZ3(s,s,s) -case 70:A.Z("l_ta") -return E.aZ4(s,s,s) -case 71:A.Z("l_te") -return F.aZ5(s,s,s) -case 72:A.Z("l_th") -return G.aZ6(s,s,s) -case 73:A.Z("l_tl") -return H.aZ7(s,s,s) -case 74:A.Z("l_tr") -return I.aZ8(s,s,s) -case 75:A.Z("l_ug") -return K.aZ9(s,s,s) -case 76:A.Z("l_uk") -return L.aZa(s,s,s) -case 77:A.Z("l_ur") -return M.aZb(s,s,s) -case 78:A.Z("l_uz") -return O.aZc(s,s,s) -case 79:A.Z("l_vi") -return P.aZd(s,s,s) -case 80:A.Z("l_zh") -return Q.aZe(s,s,s) -case 81:A.Z("l_zu") -return R.aZf(s,s,s)}}} -A.V.prototype={ -b4(a,b,c,d){this.gb_().r=A.bgn(this)}, -h(a,b){return this.gb_().a2(b)}, -gaW(){var s=this,r=s.e -if(r===$){if(s.b===$)s.b=s -r=s.e=new A.aS()}return r}, -gb_(){return this.a}} -A.aS.prototype={ -gb6(){return"Cut"}, -gb5(){return"Copy"}, -gb7(){return"Paste"}, -gb2(){return"Select All"}} -A.aMc.prototype={ -$1(a){return A.bf3(this.a,a)}, -$S:2} -A.a6V.prototype={} -A.a8d.prototype={} -A.EZ.prototype={ -ah(){return new A.JW(new A.cb(!1,$.af()))}, -apa(a,b,c){return this.f.$3(a,b,c)}, -gR(){return this.r}} -A.JW.prototype={ -gck(){var s=this.a.e -return s}, -aw(){var s,r=this -r.b3() -r.a.toString -s=r.e -s.sp(r.gck().gc5()) -s.a9(r.gmq())}, -l(){var s,r=this,q=r.e -q.O(r.gmq()) -s=r.d -if(s!=null)s.l() -q.P$=$.af() -q.L$=0 -r.aQ()}, -wy(){var s=this.a.w -if(s!=null)s.$1(this.e.a)}, -K(a){var s=this,r=null,q=s.a -q.toString -return A.jH(!1,!0,new A.dL(s.e,new A.aHJ(s),q.r,r,t.D0),r,r,r,s.gck(),!0,r,new A.aHK(s),r,r,r,r)}} -A.aHK.prototype={ -$1(a){this.a.e.sp(a) -return a}, -$S:12} -A.aHJ.prototype={ -$3(a,b,c){return this.a.a.apa(a,b,c)}, -$S:642} -A.F5.prototype={ -ah(){return new A.a6U(new A.Ds(),new A.cb(0,$.af()))}, -gR(){return this.c}} -A.a6U.prototype={ -aw(){this.b3() -if(this.gBR())$.a1.bI$.push(this)}, -l(){var s,r=this -if(r.gBR())$.a1.is(r) -s=r.e -s.P$=$.af() -s.L$=0 -r.aQ()}, -vH(){var s,r,q,p,o -this.a6e() -if(!this.gBR())return -s=$.b7().gdr().b -r=t.e8 -q=r.a(s.h(0,0)) -p=q==null?null:q.ay.d -if(p==null)p=0 -if(r.a(s.h(0,0))==null)o=null -else{s=$.dm() -r=s.d -s=r==null?s.gcN():r -o=s}if(o==null)o=1 -this.e.sp(p/o)}, -gBR(){this.a.toString -return!1}, -K(a){var s,r,q=this -if(!q.gBR())return q.a.c -s=A.dd(a,!0) -q.a.toString -r=s.a5.r -if(r==null)r=20 -return new A.dL(q.e,new A.aI2(q,r),null,null,t.j3)}} -A.aI2.prototype={ -$3(a,b,c){var s=this.a -return new A.ib(new A.aI1(s,b,this.b),null,s.a.e,null)}, -$S:643} -A.aI1.prototype={ -$2(a,b){var s=this.a,r=this.b -$.a1.k4$.push(new A.aI_(s,r,this.c)) -return new A.ml(s.d,new A.aI0(s,r),s.a.c,B.nZ,null)}, -$S:644} -A.aI_.prototype={ -$1(a){var s,r=this.a -if(r.c==null)return -s=this.b>this.c&&r.a.e.gc5() -r=r.d -if(s)r.DR() -else r.fn()}, -$S:4} -A.aI0.prototype={ -$1(a){return A.bJ(A.c([this.a.a.d.$1(a),A.a8(null,this.b,null)],t.p),B.o,B.kh,B.n)}, -$S:645} -A.ab9.prototype={} -A.aue.prototype={} -A.eY.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -return b instanceof A.eY&&b.a.j(0,s.a)&&b.c.j(0,s.c)&&b.d.j(0,s.d)&&J.b(b.e,s.e)}, -gt(a){var s,r,q=this,p=q.a -p=A.N(p.a,p.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a) -s=q.c -r=q.d -return p^519018^A.N(s.gi5(),s.gi4(),s.gi6(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)^A.N(r.gi5(),r.gi4(),r.gi6(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)^J.D(q.e)}} -A.ER.prototype={ -j(a,b){if(b==null)return!1 -if(this===b)return!0 -return b instanceof A.ER&&B.aQ.j(0,B.aQ)&&B.ex.j(0,B.ex)&&b.c.j(0,this.c)}, -gt(a){var s=this.c -return A.N(B.aQ.gi5(),B.aQ.gi4(),B.aQ.gi6(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)^A.N(B.ex.gi5(),B.ex.gi4(),B.ex.gi6(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)^A.N(s.a,s.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.F2.prototype={ -j(a,b){if(b==null)return!1 -if(this===b)return!0 -return b instanceof A.F2&&b.a.j(0,this.a)}, -gt(a){var s=this.a -return A.N(s.a,s.b,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.th.prototype={ -ah(){return new A.JZ(new A.vV(),new A.Ds(),new A.by(null,t.A))}, -a0B(a){return this.d.$1(a)}, -gR(){return this.c}} -A.JZ.prototype={ -aw(){this.b3() -this.a1R()}, -aV(a){var s,r,q,p=this -p.bm(a) -s=p.a -r=s.e -q=!s.f.j(0,a.f) -if(r===a.e)s=p.a.e&&q -else s=!0 -if(s)p.a1R() -p.Hv()}, -by(){var s,r=this -r.du() -r.Hv() -s=r.a -if(s.e&&s.f instanceof A.eY){t.ut.a(s.f) -r.TQ()}}, -l(){this.HG() -var s=this.e -if(s.gKW())s.fn() -this.aQ()}, -HG(){var s=this.w -if(s!=null)s.O(this.gTa()) -this.w=null}, -Hv(){var s,r=this,q=r.a -if(!(q.e&&q.f instanceof A.eY)){r.HG() -return}q=r.c -q.toString -s=A.aRL(q) -if(s==r.w)return -r.HG() -r.w=s -if(s!=null){q=s.d -q.oL(q.c,new A.lj(r.gTa()),!1)}}, -TQ(){if(this.x)return -this.x=!0 -$.a1.k4$.push(new A.aJt(this))}, -ajQ(a){var s=this.a -if(!s.e||!(s.f instanceof A.eY))return -if(a instanceof A.k_&&a.hs$===0)this.TQ()}, -a1R(){$.a1.k4$.push(new A.aJy(this))}, -PX(a,b,c,d,e){var s=a.d.af(e),r=a.c.af(e),q=new A.h(r.a/2*d.a,(r.b-1)/2*d.b).a8(0,new A.h((1+s.a)/2*b.gC().a,(1+s.b)/2*b.gC().b).a8(0,a.a)) -return A.bA(b.bd(c),q)}, -qB(){var s,r,q,p,o,n,m,l,k,j,i=this,h={},g=i.c -if(g!=null){s=i.a -s=!s.e||!(s.f instanceof A.eY)}else s=!0 -if(s)return -r=t.ut.a(i.a.f) -q=g.ga1() -g=i.c -g.toString -i.a.toString -p=A.Du(g,!1).c.ga1() -if(!(q instanceof A.A&&q.y!=null&&q.fy!=null&&p instanceof A.A&&p.y!=null&&p.fy!=null)){$.a1.k4$.push(new A.aJp(i)) -return}g=$.a1.ap$.x.h(0,i.f) -g=g==null?null:g.ga1() -t.Qv.a(g) -s=g==null -o=!0===(s?null:g.fy!=null)?g.gC():B.Q -n=i.c -n.toString -m=A.dD(n) -l=h.a=i.PX(r,q,p,o,m) -n=r.e -if(n!=null&&!s&&g.fy!=null){k=p.gC().b -g=l.b -if(!(g>=0&&g+o.b<=k)){j=i.PX(n,q,p,o,m) -g=j.b -if(g>=0&&g+o.b<=k){h.a=j -g=j}else g=l}else g=l}else g=l -if(!g.j(0,i.r)){if(i.c!=null)i.ar(new A.aJq(h,i))}else if(s)$.a1.k4$.push(new A.aJr(i)) -else if(i.c!=null)i.ar(new A.aJs())}, -ap4(a,b){var s,r,q,p=this,o=null -A.c0(a,B.fQ,t.l).toString -s=p.r -if(s==null){$.a1.k4$.push(new A.aJu(p)) -return B.aE}r=p.f -q=$.a1.ap$.x.h(0,r) -q=q==null?o:q.ga1() -q=t.Qv.a(q)==null -if(q)$.a1.k4$.push(new A.aJv(p)) -return new A.jC(new A.XF(s,0,!0),new A.o3(new A.Ze(A.jK(p.a.a0B(a),q,o),!q,o),r),o)}, -K(a){var s=this -return new A.pZ(s.d,new A.ml(s.e,new A.aJw(s),s.a.c,B.nZ,null),null)}} -A.aJt.prototype={ -$1(a){var s=this.a -s.x=!1 -s.qB()}, -$S:4} -A.aJy.prototype={ -$1(a){var s,r=this.a -if(r.c==null)return -if(r.a.e){r.qB() -s=r.e -if(!s.gKW())s.DR()}else{if(r.r!=null)r.ar(new A.aJx(r)) -s=r.e -if(s.gKW())s.fn()}r.Hv()}, -$S:4} -A.aJx.prototype={ -$0(){return this.a.r=null}, -$S:0} -A.aJp.prototype={ -$1(a){this.a.qB()}, -$S:4} -A.aJq.prototype={ -$0(){this.b.r=this.a.a}, -$S:0} -A.aJr.prototype={ -$1(a){this.a.qB()}, -$S:4} -A.aJs.prototype={ -$0(){}, -$S:0} -A.aJu.prototype={ -$1(a){return this.a.qB()}, -$S:4} -A.aJv.prototype={ -$1(a){this.a.qB()}, -$S:4} -A.aJw.prototype={ -$1(a){var s=this.a,r=s.a,q=r.f -A:{if(q instanceof A.eY){s=s.ap4(a,q) -break A}if(q instanceof A.F2){s=new A.jC(new A.XF(q.a,0,!0),r.a0B(a),null) -break A}s=null}return A.dp(s,1,1)}, -$S:646} -A.XF.prototype={ -ol(a){return new A.al(0,a.b,0,a.d)}, -oo(a,b){return A.b20(b,0,!0,a,this.b,this.c)}, -mT(a){var s -if(this.b.j(0,a.b))s=this.c!==a.c -else s=!0 -return s}} -A.Wb.prototype={ -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -return b instanceof A.Wb&&b.a.j(0,s.a)&&b.b.j(0,s.b)&&b.c.j(0,s.c)&&b.d.j(0,s.d)&&b.e.j(0,s.e)&&b.f.j(0,s.f)&&b.r.j(0,s.r)&&b.w.j(0,s.w)&&b.x.j(0,s.x)&&b.y.j(0,s.y)&&b.z.j(0,s.z)&&b.Q.j(0,s.Q)&&b.as.j(0,s.as)&&b.at.j(0,s.at)&&b.ax.j(0,s.ax)&&b.ay.j(0,s.ay)&&b.ch.j(0,s.ch)&&b.CW.j(0,s.CW)&&b.cx.j(0,s.cx)&&b.cy.j(0,s.cy)&&A.uo(b.db,s.db)}, -gt(a2){var s=this,r=s.a,q=s.b,p=s.c,o=s.d,n=s.e,m=s.f,l=s.r,k=s.w,j=s.x,i=s.y,h=s.z,g=s.Q,f=s.as,e=s.at,d=s.ax,c=s.ay,b=s.ch,a=s.CW,a0=s.cx,a1=s.cy -return r.gt(r)^q.gt(q)^p.gt(p)^o.gt(o)^n.gt(n)^m.gt(m)^l.gt(l)^k.gt(k)^j.gt(j)^i.gt(i)^h.gt(h)^g.gt(g)^f.gt(f)^e.gt(e)^d.gt(d)^c.gt(c)^b.gt(b)^a.gt(a)^a0.gt(a0)^a1.gt(a1)^A.aRs(s.db.gfj())}} -A.t7.prototype={} -A.ayd.prototype={ -E(a){var s,r,q,p,o,n,m,l=this -if(a==null||l===a)return l -s=a.b -r=a.c -q=a.d -p=l.f -o=p==null?null:p.E(a.f) -if(o==null)o=a.f -n=a.r -m=a.w -if(q==null)q=l.d -p=o==null?p:o -o=m==null?l.w:m -return new A.t7(s,r,q,!0,p,n,o,!1,l.y)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -t.LU.a(b) -s=!1 -if(b.b.j(0,r.b))if(b.c===r.c)if(J.b(b.d,r.d))if(J.b(b.f,r.f))if(b.r===r.r)s=J.b(b.w,r.w) -return s}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,!0,s.f,s.r,s.w,!1,s.y,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a6y.prototype={} -A.mJ.prototype={} -A.aye.prototype={ -E(a){var s,r,q,p,o,n,m,l,k,j=this -if(a==null||j===a)return j -s=j.b -r=s==null?null:s.E(a.b) -if(r==null)r=a.b -q=a.c -p=a.d -o=j.e -n=o==null?null:o.E(a.e) -if(n==null)n=a.e -m=j.f -l=m==null?null:m.E(a.f) -if(l==null)l=a.f -k=a.x -s=r==null?s:r -r=q==null?j.c:q -q=p==null?j.d:p -p=n==null?o:n -o=l==null?m:l -n=k==null?j.x:k -return new A.mJ(s,r,q,p,o,j.r,j.w,n)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -t.EU.a(b) -s=!1 -if(J.b(b.b,r.b))if(J.b(b.c,r.c))if(J.b(b.d,r.d))if(J.b(b.e,r.e))if(J.b(b.f,r.f))s=b.x==r.x -return s}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a6z.prototype={} -A.t8.prototype={} -A.ayf.prototype={ -E(a){var s,r,q,p=this -if(a==null||p===a)return p -s=a.b -r=a.c -q=a.d -if(s==null)s=p.b -if(r==null)r=p.c -if(q==null)q=p.d -return new A.t8(s,r,q,p.e)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -t.vq.a(b) -s=!1 -if(J.b(b.b,r.b))if(J.b(b.c,r.c))s=J.b(b.d,r.d) -return s}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a6B.prototype={} -A.is.prototype={} -A.ayg.prototype={ -E(a){var s,r,q,p,o,n=this -if(a==null||n===a)return n -s=a.b -r=a.c -q=a.d -p=a.e -o=a.f -if(s==null)s=n.b -if(r==null)r=n.c -if(q==null)q=n.d -if(p==null)p=n.e -if(o==null)o=n.f -return new A.is(s,r,q,p,o,n.r)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -t.Ae.a(b) -s=!1 -if(J.b(b.b,r.b))if(J.b(b.c,r.c))if(J.b(b.d,r.d))if(J.b(b.e,r.e))s=J.b(b.f,r.f) -return s}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a6C.prototype={} -A.W_.prototype={} -A.ayi.prototype={ -E(a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=this -if(a3==null||a2===a3)return a2 -s=a3.c -r=a3.d -q=a3.e -p=a3.f -o=a3.r -n=a2.w -m=n==null?null:n.E(a3.w) -if(m==null)m=a3.w -l=a2.x -k=l==null?null:l.E(a3.x) -if(k==null)k=a3.x -j=a3.y -i=a3.z -h=a3.Q -g=a3.as -f=a3.at -e=a3.ax -d=a2.ay -c=d==null?null:d.E(a3.ay) -if(c==null)c=a3.ay -b=a3.ch -a=a3.CW -a0=a3.cx -a1=a3.cy -if(r==null)r=a2.d -if(q==null)q=a2.e -if(p==null)p=a2.f -if(o==null)o=a2.r -n=m==null?n:m -m=k==null?l:k -l=j==null?a2.y:j -k=i==null?a2.z:i -j=f==null?a2.at:f -i=e==null?a2.ax:e -f=c==null?d:c -e=b==null?a2.ch:b -d=a0==null?a2.cx:a0 -c=a1==null?a2.cy:a1 -return A.auk(g,d,e,a,j,i,f,s,p,n,c,k,l,m,h,a2.b,q,r,a2.db,o)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -t.ln.a(b) -s=!1 -if(b.c.oC(0,r.c))if(b.d==r.d)if(J.b(b.e,r.e))if(b.f==r.f)if(b.r==r.r)if(J.b(b.w,r.w))if(J.b(b.x,r.x))if(J.b(b.y,r.y))if(J.b(b.z,r.z))if(b.Q===r.Q)if(b.as===r.as)if(J.b(b.at,r.at))if(J.b(b.ax,r.ax))if(J.b(b.ay,r.ay))if(J.b(b.ch,r.ch))if(b.CW.j(0,r.CW))if(b.cx==r.cx)s=J.b(b.cy,r.cy) -return s}, -gt(a){var s=this -return A.bh([A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db])}} -A.a6E.prototype={} -A.W7.prototype={} -A.aym.prototype={ -XW(a,b,c,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0){var s=this,r=b6==null?s.d:b6,q=a==null?s.e:a,p=a6==null?s.f:a6,o=a2==null?s.r:a2,n=a7==null?s.w:a7,m=b2==null?s.x:b2,l=b3==null?s.y:b3,k=a4==null?s.Q:a4,j=a9==null?s.at:a9,i=a0==null?s.ax:a0,h=c0==null?s.ay:c0,g=a5==null?s.ch:a5,f=b0==null?s.CW:b0,e=a3==null?s.dy:a3,d=b9==null?s.fx:b9 -return A.iu(q,s.db,s.b,i,a1===!0,o,e,k,g,p,n,s.cx,j,f,s.cy,m,l,s.z,s.c,r,s.as,s.dx,d,h)}, -vw(a){var s=null -return this.XW(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a)}, -E(a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4=this -if(a5==null||a4===a5)return a4 -s=a5.b -r=a5.c -q=a4.d -q=q==null?null:q.E(a5.d) -if(q==null)q=a5.d -p=a5.e -o=a5.f -n=a5.r -m=a5.w -l=a5.x -k=a5.y -j=a5.z -i=a5.Q -h=a5.as -g=a5.at -f=a4.ax -f=f==null?null:f.E(a5.ax) -if(f==null)f=a5.ax -e=a5.ay -d=a5.ch -c=a5.CW -b=a5.cx -a=a5.cy -a0=a5.db -a1=a5.dx -a2=a5.dy -a3=a4.fx -a3=a3==null?null:a3.E(a5.fx) -return a4.XW(p,a0,s,f,!1,n,a2,i,d,o,m,b,g,c,a,l,k,j,r,q,h,a1,a3==null?a5.fx:a3,e)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -t.wo.a(b) -s=!1 -if(J.b(b.d,r.d))if(J.b(b.e,r.e))if(J.b(b.f,r.f))if(J.b(b.r,r.r))if(J.b(b.w,r.w))if(J.b(b.x,r.x))if(J.b(b.y,r.y))if(J.b(b.Q,r.Q))if(J.b(b.at,r.at))if(J.b(b.ax,r.ax))if(b.ay==r.ay)if(b.ch==r.ch)if(J.b(b.CW,r.CW))if(b.dy==r.dy)s=J.b(b.fx,r.fx) -return s}, -gt(a){var s=this -return A.bh([A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,!1,s.fx])}} -A.a6H.prototype={} -A.mL.prototype={} -A.x3.prototype={} -A.ayj.prototype={ -E(a){var s,r,q -if(a==null||this===a)return this -s=a.b -r=a.c -q=a.d -return new A.mL(s,r,q==null?this.d:q)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -t.Mb.a(b) -return b.b===s.b&&b.c.j(0,s.c)&&b.d==s.d}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.ayl.prototype={ -E(a){var s,r,q,p,o,n,m,l,k=this,j=null -if(a==null||k===a)return k -s=k.b -r=s==null?j:s.E(a.b) -if(r==null)r=a.b -q=k.c -p=q==null?j:q.E(a.c) -if(p==null)p=a.c -o=k.d -n=o==null?j:o.E(a.d) -if(n==null)n=a.d -m=k.e -l=m==null?j:m.E(a.e) -if(l==null)l=a.e -s=r==null?s:r -r=p==null?q:p -q=n==null?o:n -return new A.x3(s,r,q,l==null?m:l)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -t.rT.a(b) -return J.b(b.b,s.b)&&J.b(b.c,s.c)&&J.b(b.d,s.d)&&J.b(b.e,s.e)}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a6F.prototype={} -A.a6G.prototype={} -A.W8.prototype={} -A.ayn.prototype={ -E(d4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2=this,d3=null -if(d4==null||d2===d4)return d2 -s=d4.c -r=d4.d -q=d4.e -p=d4.f -o=d4.r -n=d4.w -m=d4.x -l=d4.y -k=d4.z -j=d4.Q -i=d2.as -h=i==null?d3:i.E(d4.as) -if(h==null)h=d4.as -g=d4.at -f=d4.ax -e=d4.ay -d=d4.ch -c=d4.CW -b=d4.cx -a=d2.cy -a0=a==null?d3:a.E(d4.cy) -if(a0==null)a0=d4.cy -a1=d4.db -a2=d2.dx -a3=a2==null?d3:a2.E(d4.dx) -if(a3==null)a3=d4.dx -a4=d4.dy -a5=d4.fr -a6=d2.fx -a7=a6==null?d3:a6.E(d4.fx) -if(a7==null)a7=d4.fx -a8=d2.fy -a9=a8==null?d3:a8.E(d4.fy) -if(a9==null)a9=d4.fy -b0=d4.id -b1=d4.k1 -b2=d4.k2 -b3=d2.k3 -b4=b3==null?d3:b3.E(d4.k3) -if(b4==null)b4=d4.k3 -b5=d2.k4 -b6=b5==null?d3:b5.E(d4.k4) -if(b6==null)b6=d4.k4 -b7=d2.ok -b8=b7==null?d3:b7.E(d4.ok) -if(b8==null)b8=d4.ok -b9=d2.p1 -c0=b9==null?d3:b9.E(d4.p1) -if(c0==null)c0=d4.p1 -c1=d4.p2 -c2=d4.p3 -c3=d4.p4 -c4=d4.R8 -c5=d4.RG -c6=d4.rx -c7=d2.ry -c8=c7==null?d3:c7.E(d4.ry) -if(c8==null)c8=d4.ry -c9=d4.to -d0=d4.x1 -d1=d4.a5 -if(s==null)s=d2.c -if(r==null)r=d2.d -if(q==null)q=d2.e -if(p==null)p=d2.f -if(o==null)o=d2.r -if(n==null)n=d2.w -if(k==null)k=d2.z -if(j==null)j=d2.Q -i=h==null?i:h -h=g==null?d2.at:g -g=f==null?d2.ax:f -f=e==null?d2.ay:e -e=d==null?d2.ch:d -d=c==null?d2.CW:c -c=b==null?d2.cx:b -b=a0==null?a:a0 -a=a1==null?d2.db:a1 -a0=a3==null?a2:a3 -a1=a7==null?a6:a7 -a2=a9==null?a8:a9 -a3=b0==null?d2.id:b0 -a6=b1==null?d2.k1:b1 -a7=b2==null?d2.k2:b2 -a8=b4==null?b3:b4 -a9=b6==null?b5:b6 -b0=b8==null?b7:b8 -b1=c0==null?b9:c0 -b2=c5==null?d2.RG:c5 -b3=c6==null?d2.rx:c6 -b4=c8==null?c7:c8 -return A.aum(!1,m,d2.x2,c,a8,a6,b4,c9,a7,a3,b1,c1,i,d2.U,d2.a0,!1,d2.aH,d2.y2,d2.n,d2.aB,l,b3,b2,e,d,b,!1,!1,b0,c3,f,r,p,j,n,k,o,g,d0,a9,c2,!0,!1,h,c4,a5,a1,d2.go,a2,d1,a,a4,a0,s,q)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -t.M9.a(b) -s=!1 -if(b.c==r.c)if(b.d==r.d)if(J.b(b.e,r.e))if(J.b(b.f,r.f))if(b.r==r.r)if(b.w==r.w)if(b.x.j(0,r.x))if(b.y.j(0,r.y))if(J.b(b.z,r.z))if(b.Q==r.Q)if(J.b(b.as,r.as))if(b.at==r.at)if(b.ax==r.ax)if(J.b(b.ay,r.ay))if(b.ch==r.ch)if(J.b(b.CW,r.CW))if(b.cx==r.cx)if(J.b(b.cy,r.cy))if(J.b(b.db,r.db))if(J.b(b.dx,r.dx))if(b.dy===r.dy)if(b.fr===r.fr)if(J.b(b.fx,r.fx))if(J.b(b.fy,r.fy))if(b.id==r.id)if(b.k1==r.k1)if(J.b(b.k2,r.k2))if(J.b(b.k3,r.k3))if(J.b(b.k4,r.k4))if(J.b(b.ok,r.ok))if(J.b(b.p1,r.p1))if(b.p2===r.p2)if(b.p3===r.p3)if(b.p4===r.p4)if(b.R8===r.R8)if(b.RG==r.RG)if(b.rx==r.rx)if(J.b(b.ry,r.ry))if(b.to===r.to)if(b.x1===r.x1)s=b.a5===r.a5 -return s}, -gt(a){var s=this -return A.bh([A.l(s),!1,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,s.k1,s.k2,s.k3,s.k4,s.ok,s.p1,s.p2,s.p3,s.p4,s.R8,s.RG,s.rx,s.ry,s.to,s.x1,s.x2,!1,!0,s.y2,s.aH,s.aB,s.n,s.U,s.a0,!1,s.a5,!1,!1])}} -A.a6I.prototype={} -A.Wa.prototype={} -A.ayo.prototype={ -E(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this -if(a==null||e===a)return e -s=a.b -r=a.c -q=a.d -p=e.e -o=p==null?null:p.E(a.e) -if(o==null)o=a.e -n=a.f -m=a.r -l=a.w -k=a.x -j=a.y -i=a.z -h=a.Q -g=a.as -f=a.at -if(s==null)s=e.b -if(r==null)r=e.c -if(q==null)q=e.d -p=o==null?p:o -o=m==null?e.r:m -m=l==null?e.w:l -return A.aun(r,p,e.ax,h,i,f,m,s,q,j,k,g,n,o)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -t.XP.a(b) -s=!1 -if(J.b(b.b,r.b))if(J.b(b.c,r.c))if(J.b(b.d,r.d))if(J.b(b.e,r.e))if(b.f===r.f)if(b.r==r.r)if(b.w==r.w)if(b.x===r.x)if(b.y===r.y)if(b.z===r.z)if(b.Q===r.Q)if(b.as===r.as)s=b.at===r.at -return s}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,B.a,B.a,B.a,B.a,B.a)}} -A.a6J.prototype={} -A.t9.prototype={} -A.ayp.prototype={ -E(a){var s,r,q,p,o,n,m,l=this -if(a==null||l===a)return l -s=a.b -r=a.c -q=a.d -p=l.e -o=p==null?null:p.E(a.e) -if(o==null)o=a.e -n=a.f -m=a.w -if(s==null)s=l.b -if(r==null)r=l.c -if(q==null)q=l.d -p=o==null?p:o -o=n==null?l.f:n -n=m==null?l.w:m -return new A.t9(s,r,q,p,o,l.r,n)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -t._M.a(b) -s=!1 -if(J.b(b.b,r.b))if(b.c==r.c)if(J.b(b.d,r.d))if(J.b(b.e,r.e))if(J.b(b.f,r.f))s=J.b(b.w,r.w) -return s}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a6K.prototype={} -A.Wc.prototype={} -A.ayq.prototype={ -E(a5){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3=this,a4=null -if(a5==null||a3===a5)return a3 -s=a5.b -r=a5.c -q=a5.d -p=a5.e -o=a5.f -n=a5.r -m=a5.w -l=a5.y -k=a5.z -j=a5.Q -i=a3.as -h=i==null?a4:i.E(a5.as) -if(h==null)h=a5.as -g=a3.at -f=g==null?a4:g.E(a5.at) -if(f==null)f=a5.at -e=a3.ax -d=e==null?a4:e.E(a5.ax) -if(d==null)d=a5.ax -c=a5.ay -b=a5.ch -a=a5.CW -a0=a5.cx -a1=a3.dy -a2=a1==null?a4:a1.E(a5.dy) -if(a2==null)a2=a5.dy -if(s==null)s=a3.b -if(r==null)r=a3.c -if(q==null)q=a3.d -if(p==null)p=a3.e -if(o==null)o=a3.f -if(n==null)n=a3.r -if(m==null)m=a3.w -if(l==null)l=a3.y -if(k==null)k=a3.z -i=h==null?i:h -h=f==null?g:f -g=d==null?e:d -f=c==null?a3.ay:c -e=b==null?a3.ch:b -d=a==null?a3.CW:a -c=a0==null?a3.cx:a0 -b=a2==null?a1:a2 -return A.aut(a3.x,d,j,a3.cy,r,b,a3.db,a3.fr,k,m,f,i,n,p,q,s,c,a3.dx,l,e,h,o,g)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -t.tt.a(b) -s=!1 -if(J.b(b.b,r.b))if(J.b(b.c,r.c))if(J.b(b.d,r.d))if(J.b(b.e,r.e))if(J.b(b.f,r.f))if(J.b(b.r,r.r))if(J.b(b.w,r.w))if(J.b(b.y,r.y))if(b.z==r.z)if(b.Q===r.Q)if(J.b(b.as,r.as))if(J.b(b.at,r.at))if(J.b(b.ax,r.ax))if(J.b(b.ay,r.ay))if(J.b(b.ch,r.ch))if(J.b(b.CW,r.CW))if(J.b(b.cx,r.cx))s=J.b(b.dy,r.dy) -return s}, -gt(a){var s=this -return A.bh([A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,s.fr])}} -A.a6M.prototype={} -A.EW.prototype={} -A.ayr.prototype={ -E(e9){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,e7=this,e8=null -if(e9==null||e7===e9)return e7 -s=e9.d -r=e9.f -q=e9.r -p=e9.w -o=e9.x -n=e9.y -m=e9.z -l=e9.at -k=e9.ax -j=e7.ay -i=j==null?e8:j.E(e9.ay) -if(i==null)i=e9.ay -h=e9.ch -g=e9.CW -f=e9.cx -e=e9.cy -d=e9.db -c=e9.dx -b=e7.dy -a=b==null?e8:b.E(e9.dy) -if(a==null)a=e9.dy -a0=e9.fr -a1=e7.fx -a2=a1==null?e8:a1.E(e9.fx) -if(a2==null)a2=e9.fx -a3=e7.id -a4=a3==null?e8:a3.E(e9.id) -if(a4==null)a4=e9.id -a5=e7.k1 -a6=a5==null?e8:a5.E(e9.k1) -if(a6==null)a6=e9.k1 -a7=e9.k3 -a8=e9.k4 -a9=e9.ok -b0=e7.p1 -b1=b0==null?e8:b0.E(e9.p1) -if(b1==null)b1=e9.p1 -b2=e7.p2 -b3=b2==null?e8:b2.E(e9.p2) -if(b3==null)b3=e9.p2 -b4=e7.p3 -b5=b4==null?e8:b4.E(e9.p3) -if(b5==null)b5=e9.p3 -b6=e7.p4 -b7=b6==null?e8:b6.E(e9.p4) -if(b7==null)b7=e9.p4 -b8=e9.to -b9=e9.x1 -c0=e7.x2 -c1=c0==null?e8:c0.E(e9.x2) -if(c1==null)c1=e9.x2 -c2=e9.b8 -c3=e7.bL -c4=c3==null?e8:c3.E(e9.bL) -if(c4==null)c4=e9.bL -c5=e9.bv -c6=e7.c_ -c7=c6==null?e8:c6.E(e9.c_) -if(c7==null)c7=e9.c_ -c8=e9.bo -c9=e9.cB -d0=e9.bq -d1=e9.u -d2=e9.c0 -d3=e9.dC -d4=e9.d4 -d5=e9.ap -d6=e9.bI -d7=e7.am -d8=d7==null?e8:d7.E(e9.am) -if(d8==null)d8=e9.am -d9=e9.bw -e0=e9.bQ -e1=e9.bR -e2=e9.h2 -e3=e9.kk -e4=e9.ev -e5=e7.ew -e6=e5==null?e8:e5.E(e9.ew) -if(e6==null)e6=e9.ew -if(r==null)r=e7.f -if(q==null)q=e7.r -if(p==null)p=e7.w -if(o==null)o=e7.x -if(n==null)n=e7.y -if(m==null)m=e7.z -if(l==null)l=e7.at -if(k==null)k=e7.ax -j=i==null?j:i -i=h==null?e7.ch:h -h=g==null?e7.CW:g -g=f==null?e7.cx:f -f=e==null?e7.cy:e -e=d==null?e7.db:d -d=c==null?e7.dx:c -c=a==null?b:a -b=a0==null?e7.fr:a0 -a=a2==null?a1:a2 -a0=a4==null?a3:a4 -a1=a6==null?a5:a6 -a2=a7==null?e7.k3:a7 -a3=a8==null?e7.k4:a8 -a4=a9==null?e7.ok:a9 -a5=b1==null?b0:b1 -a6=b3==null?b2:b3 -a7=b5==null?b4:b5 -a8=b7==null?b6:b7 -a9=b8==null?e7.to:b8 -b0=b9==null?e7.x1:b9 -b1=c1==null?c0:c1 -b2=c2==null?e7.b8:c2 -b3=c4==null?c3:c4 -b4=c5==null?e7.bv:c5 -b5=c7==null?c6:c7 -b6=c9==null?e7.cB:c9 -b7=d0==null?e7.bq:d0 -b8=d1==null?e7.u:d1 -b9=d2==null?e7.c0:d2 -c0=d3==null?e7.dC:d3 -c1=d4==null?e7.d4:d4 -c2=d5==null?e7.ap:d5 -c3=d6==null?e7.bI:d6 -c4=d8==null?d7:d8 -c5=d9==null?e7.bw:d9 -c6=e0==null?e7.bQ:e0 -c7=e1==null?e7.bR:e1 -c9=e3==null?e7.kk:e3 -d0=e4==null?e7.ev:e4 -d1=e6==null?e5:e6 -return A.aXY(!0,e7.bz,e7.Q,b6,c4,d0,e7.eN,d1,c8,j,f,e,c,e7.y2,d,e7.fF,e7.bU,a5,a3,b1,e7.xr,a4,a2,a8,e7.R8,c2,e7.ao,e7.dq,e7.bE,e7.L,b8,e7.b,e7.c,e7.U,e7.n,e7.a3,e7.a0,e7.as,c9,c3,b0,a9,c6,e7.e,e7.aH,b7,b9,e7.ec,e7.a4,s,a7,e7.rx,c7,e2,g,q,o,k,m,l,n,b3,b2,b4,c0,c1,h,e7.y1,a6,e7.RG,e7.av,e7.aB,e7.a5,e7.aK,b5,i,e7.D,e7.pu,e7.ry,e7.go,a0,e7.k2,a1,e7.au,b,e7.fy,a,c5,r,p)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -t.YL.a(b) -s=!1 -if(b.d.j(0,r.d))if(b.f==r.f)if(b.r==r.r)if(J.b(b.w,r.w))if(J.b(b.x,r.x))if(b.y==r.y)if(b.z==r.z)if(J.b(b.at,r.at))if(b.ax==r.ax)if(J.b(b.ay,r.ay))if(b.ch==r.ch)if(b.CW==r.CW)if(J.b(b.cx,r.cx))if(b.cy==r.cy)if(J.b(b.db,r.db))if(b.dx==r.dx)if(J.b(b.dy,r.dy))if(J.b(b.fr,r.fr))if(J.b(b.fx,r.fx))if(J.b(b.id,r.id))if(J.b(b.k1,r.k1))if(b.k3==r.k3)if(b.k4==r.k4)if(J.b(b.ok,r.ok))if(J.b(b.p1,r.p1))if(J.b(b.p2,r.p2))if(J.b(b.p3,r.p3))if(J.b(b.p4,r.p4))if(b.to==r.to)if(b.x1==r.x1)if(J.b(b.x2,r.x2))if(J.b(b.b8,r.b8))if(J.b(b.bL,r.bL))if(J.b(b.bv,r.bv))if(J.b(b.c_,r.c_))if(b.bo===r.bo)if(J.b(b.cB,r.cB))if(J.b(b.bq,r.bq))if(J.b(b.u,r.u))if(J.b(b.c0,r.c0))if(J.b(b.dC,r.dC))if(J.b(b.d4,r.d4))if(J.b(b.ap,r.ap))if(J.b(b.bI,r.bI))if(J.b(b.am,r.am))if(b.bw==r.bw)if(b.bQ==r.bQ)if(J.b(b.bR,r.bR))if(b.h2===r.h2)if(b.kk==r.kk)if(J.b(b.ev,r.ev))s=J.b(b.ew,r.ew) -return s}, -gt(a){var s=this -return A.bh([A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,s.k1,s.k2,s.k3,s.k4,s.ok,s.p1,s.p2,s.p3,s.p4,s.R8,s.RG,s.rx,s.ry,s.to,s.x1,s.x2,s.xr,s.y1,s.y2,s.aH,s.aB,s.n,s.U,s.a0,s.a3,s.a5,s.au,s.L,!0,s.ao,s.av,s.b8,s.bL,s.bz,s.bE,s.bv,s.bU,s.aK,s.c_,s.bo,s.cB,s.bq,s.u,s.c0,s.dC,s.d4,s.ap,s.eN,s.bI,s.D,s.a4,s.am,s.bw,s.bQ,s.bR,s.ec,s.h2,s.fF,s.pu,s.kk,s.ev,s.dq,s.ew])}} -A.a6N.prototype={} -A.kZ.prototype={ -k(a){var s=this -return"ShadDecoration(border: "+A.j(s.d)+", focusedBorder: "+A.j(s.e)+", errorBorder: "+A.j(s.f)+", secondaryBorder: "+A.j(s.r)+", secondaryFocusedBorder: "+A.j(s.w)+", secondaryErrorBorder: "+A.j(s.x)+", labelStyle: "+A.j(s.b)+", errorLabelStyle: "+A.j(s.c)+", errorStyle: "+A.j(s.y)+", descriptionStyle: "+A.j(s.z)+", labelPadding: "+A.j(s.Q)+", descriptionPadding: "+A.j(s.as)+", errorPadding: "+A.j(s.at)+", fallbackToBorder: "+A.j(s.dy)+", color: "+A.j(s.ax)+", image: "+A.j(s.ay)+", shadows: "+A.j(s.ch)+", gradient: "+A.j(s.CW)+", backgroundBlendMode: "+A.j(s.cx)+", shape: "+A.j(s.cy)+", hasError: "+A.j(s.db)+", fallbackToLabelStyle: "+A.j(s.fr)+", disableSecondaryBorder: "+A.j(s.dx)+")"}} -A.l_.prototype={ -K(a){var s,r,q,p,o,n,m=null,l=A.dd(a,!0),k=a.aA(t.I).w,j=l.cx.E(this.d),i=j.db===!0,h=this.e -switch(h){case!0:s=j.e -break -case!1:s=j.d -break -default:s=m}switch(i){case!0:r=j.f -break -case!1:r=s -break -default:r=m}if(r==null)q=s==null?j.d:s -else q=r -switch(h){case!0:h=j.w -break -case!1:h=j.r -break -default:h=m}switch(i){case!0:s=j.x -break -case!1:s=h -break -default:s=m}if(s==null)p=h==null?j.r:h -else p=s -A:{if(q instanceof A.oG){h=l.at -s=A.VZ(q.x) -r=q.c -r=r==null?m:r.af(k) -h=new A.iw(j.ax,j.CW,j.ay,j.ch,A.wQ(r==null?h:r,s)) -break A}h=q==null -if(h)s=m -else{s=q.d -r=!0 -s=s==null?m:s.c -if((s==null?0:s)===0){s=q.e -s=s==null?m:s.c -if((s==null?0:s)===0){s=q.f -s=s==null?m:s.c -if((s==null?0:s)===0){s=q.r -s=s==null?m:s.c -s=(s==null?0:s)!==0}else s=r}else s=r}else s=r}if(!0===s)s=h?m:A.aRR(q) -else s=m -r=j.cy -if(r===B.bT)h=m -else h=h?m:q.c -if(r==null)r=B.G -r=new A.bm(j.ax,j.ay,s,h,j.ch,j.CW,j.cx,r) -h=r -break A}s=q==null?m:q.b -o=A.bL(m,this.c,B.v,m,m,h,m,m,m,s,m,m,m) -if(p!=null&&j.dx!==!0){h=p.b -if(h==null)h=B.ap -s=A.aRR(p) -r=p.w -if(r==null)r=0 -n=p.c -n=n==null?m:n.af(k) -o=new A.bR(h,A.hY(o,new A.XD(s,r,n==null?B.ah:n,k,m),m,m,B.Q),m)}return o}, -gR(){return this.c}} -A.XD.prototype={ -b1(a,b){var s=this -s.b.awO(a,new A.w(0,0,0+b.a,0+b.b).d5(s.c),s.d,s.e)}, -eU(a){var s=this -return!s.b.j(0,a.b)||s.c!==a.c||!s.d.j(0,a.d)||s.e!==a.e}} -A.ays.prototype={ -vy(a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4){var s=this,r=b9==null?s.b:b9,q=a9==null?s.c:a9,p=a3==null?s.d:a3,o=b4==null?s.e:b4,n=a8==null?s.f:a8,m=c0==null?s.r:c0,l=c2==null?s.w:c2,k=c1==null?s.x:c1,j=b1==null?s.y:b1,i=a6==null?s.z:a6,h=b8==null?s.Q:b8,g=a5==null?s.as:a5,f=b0==null?s.at:b0,e=a4==null?s.ax:a4,d=b7==null?s.ay:b7,c=c3==null?s.ch:c3,b=b5==null?s.CW:b5,a=c4==null?s.cy:c4,a0=b6==null?s.db:b6,a1=a7==null?s.dx:a7 -return A.bV(s.cx,p,e,g,i,a1,n,q,f,j,s.dy,s.fr,o,b,a0,d,h,r,m,k,l,c,a)}, -aqO(a,b,c){var s=null -return this.vy(s,s,a,s,s,s,s,s,s,s,s,s,s,b,s,s,s,s,s,s,s,c,s)}, -aq1(a){var s=null -return this.vy(s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s,s,s,s,s)}, -aqu(a){var s=null -return this.vy(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s)}, -aqs(a){var s=null -return this.vy(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,a,s,s,s,s)}, -E(a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1=this,a2=null -if(a3==null||a1===a3)return a1 -if(!a3.a)return a3 -s=a1.b -s=s==null?a2:s.E(a3.b) -if(s==null)s=a3.b -r=a1.c -r=r==null?a2:r.E(a3.c) -if(r==null)r=a3.c -q=a1.d -q=q==null?a2:q.E(a3.d) -if(q==null)q=a3.d -p=a1.e -p=p==null?a2:p.E(a3.e) -if(p==null)p=a3.e -o=a1.f -o=o==null?a2:o.E(a3.f) -if(o==null)o=a3.f -n=a1.r -n=n==null?a2:n.E(a3.r) -if(n==null)n=a3.r -m=a1.w -m=m==null?a2:m.E(a3.w) -if(m==null)m=a3.w -l=a1.x -l=l==null?a2:l.E(a3.x) -if(l==null)l=a3.x -k=a1.y -k=k==null?a2:k.E(a3.y) -if(k==null)k=a3.y -j=a1.z -j=j==null?a2:j.E(a3.z) -if(j==null)j=a3.z -i=a3.Q -h=a3.as -g=a3.at -f=a3.ax -e=a3.ay -d=a3.ch -c=a3.CW -b=a3.cx -a=a3.cy -a0=a3.db -return a1.vy(b,q,f,h,j,a3.dx,o,r,g,k,a3.dy,a3.fr,p,c,a0,e,i,s,n,l,m,d,a)}, -j(a,b){var s,r,q,p=this -if(b==null)return!1 -if(p===b)return!0 -if(J.S(b)!==A.l(p))return!1 -t.O4.a(b) -s=!1 -if(J.b(b.b,p.b))if(J.b(b.c,p.c))if(J.b(b.d,p.d))if(J.b(b.e,p.e))if(J.b(b.f,p.f))if(J.b(b.r,p.r))if(J.b(b.w,p.w))if(J.b(b.x,p.x))if(J.b(b.y,p.y))if(J.b(b.z,p.z))if(J.b(b.Q,p.Q))if(J.b(b.as,p.as))if(J.b(b.at,p.at))if(J.b(b.ax,p.ax))if(J.b(b.ay,p.ay)){r=b.ch -q=p.ch -if(r==null?q==null:r===q)if(J.b(b.CW,p.CW))if(b.cy==p.cy)if(b.db==p.db)s=b.dx==p.dx}return s}, -gt(a){var s=this -return A.bh([A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,s.fr])}} -A.a6O.prototype={} -A.tb.prototype={} -A.ayt.prototype={ -E(a){var s,r,q,p=this -if(a==null||p===a)return p -s=a.b -r=a.c -q=a.r -if(s==null)s=p.b -return new A.tb(s,r,!0,!0,!0,q==null?p.r:q)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -t.MF.a(b) -s=!1 -if(J.b(b.b,r.b))if(b.c===r.c)s=b.r==r.r -return s}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,!0,!0,!0,s.r,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a6P.prototype={} -A.Wd.prototype={} -A.ayu.prototype={ -E(a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1=this -if(a2==null||a1===a2)return a1 -s=a2.b -r=a2.c -q=a2.d -p=a2.e -o=a2.r -n=a2.w -m=a2.x -l=a2.y -k=a2.z -j=a2.ay -i=a2.ch -h=a1.cx -g=h==null?null:h.E(a2.cx) -if(g==null)g=a2.cx -f=a1.cy -e=f==null?null:f.E(a2.cy) -if(e==null)e=a2.cy -d=a2.dy -c=a2.fr -b=a2.fx -a=a2.go -a0=a2.id -if(s==null)s=a1.b -if(r==null)r=a1.c -if(q==null)q=a1.d -if(p==null)p=a1.e -if(o==null)o=a1.r -if(n==null)n=a1.w -if(k==null)k=a1.z -if(j==null)j=a1.ay -h=g==null?h:g -g=e==null?f:e -f=d==null?a1.dy:d -e=a==null?a1.go:a -d=a0==null?a1.id:a0 -return A.EY(a1.Q,d,a1.at,a1.as,a1.k4,a1.ax,f,m,l,p,j,s,r,k,b,a1.k3,g,a1.dx,!0,n,c,o,q,!0,e,a1.fy,i,a1.k2,h,a1.db,a1.k1)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -t.Vn.a(b) -s=!1 -if(J.b(b.b,r.b))if(J.b(b.c,r.c))if(J.b(b.d,r.d))if(J.b(b.e,r.e))if(J.b(b.r,r.r))if(b.w==r.w)if(b.x===r.x)if(b.y===r.y)if(J.b(b.z,r.z))if(J.b(b.ay,r.ay))if(b.ch===r.ch)if(J.b(b.cx,r.cx))if(J.b(b.cy,r.cy))if(J.b(b.dy,r.dy))if(b.fr===r.fr)if(b.fx===r.fx)if(J.b(b.go,r.go))s=b.id==r.id -return s}, -gt(a){var s=this -return A.bh([A.l(s),s.b,s.c,s.d,s.e,!0,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,!0,s.cx,s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,s.k1,s.k2,s.k3,s.k4])}} -A.a6Q.prototype={} -A.Wh.prototype={} -A.ayw.prototype={ -E(a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this -if(a0==null||a===a0)return a -s=a.b -r=s==null?null:s.E(a0.b) -if(r==null)r=a0.b -q=a0.c -p=a.d -o=p==null?null:p.E(a0.d) -if(o==null)o=a0.d -n=a0.e -m=a0.f -l=a0.r -k=a0.w -j=a.y -i=j==null?null:j.E(a0.y) -if(i==null)i=a0.y -h=a0.z -g=a0.Q -f=a0.as -e=a0.ay -d=a0.ch -c=a0.CW -b=a0.cx -s=r==null?s:r -r=q==null?a.c:q -q=o==null?p:o -p=n==null?a.e:n -o=m==null?a.f:m -n=l==null?a.r:l -m=k==null?a.w:k -l=i==null?j:i -k=h==null?a.z:h -j=g==null?a.Q:g -i=f==null?a.as:f -h=e==null?a.ay:e -g=d==null?a.ch:d -f=c==null?a.CW:c -e=b==null?a.cx:b -return A.auL(k,g,a.ax,p,n,a.x,m,o,s,h,i,a.at,r,j,l,f,q,e)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -t.Dc.a(b) -return J.b(b.b,s.b)&&J.b(b.c,s.c)&&J.b(b.d,s.d)&&J.b(b.e,s.e)&&b.f==s.f&&b.r==s.r&&J.b(b.w,s.w)&&J.b(b.y,s.y)&&J.b(b.z,s.z)&&J.b(b.Q,s.Q)&&J.b(b.as,s.as)&&b.ay==s.ay&&J.b(b.ch,s.ch)&&J.b(b.CW,s.CW)&&b.cx==s.cx}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,B.a)}} -A.a6T.prototype={} -A.F4.prototype={ -K(a){var s,r,q=this,p=null,o=A.dd(a,!0),n=o.cx.E(q.r),m=n.db===!0,l=o.cy.as,k=o.a,j=l.hn(k.ax,B.E),i=l.hn(k.b,B.E),h=n.y -if(h==null)h=j -switch(m){case!0:s=n.c -break -case!1:s=n.b -break -default:s=p}if(s==null){r=n.b -if(r==null){switch(m){case!0:s=j -break -case!1:s=i -break -default:s=p}r=s}}else r=s -s=n.z -l=s==null?l:s -A.iB(l,k.Q,p) -k=A.c([],t.p) -l=q.d -if(l!=null){s=n.Q -if(s==null)s=B.eT -r.toString -k.push(new A.bR(s,A.fn(l,p,p,B.bc,!0,r,p,p,B.al),p))}k.push(q.c) -l=q.e -if(l!=null){s=n.at -if(s==null)s=B.hm -k.push(new A.bR(s,A.fn(l,p,p,B.bc,!0,h,p,p,B.al),p))}return A.bJ(k,B.T,B.m,B.ak)}, -gR(){return this.c}} -A.te.prototype={} -A.ayv.prototype={ -E(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=this -if(a==null||g===a)return g -s=a.b -r=g.c -q=r==null?null:r.E(a.c) -if(q==null)q=a.c -p=a.d -o=a.e -n=a.f -m=g.r -l=m==null?null:m.E(a.r) -if(l==null)l=a.r -k=a.w -j=a.x -i=a.y -h=a.z -if(s==null)s=g.b -r=q==null?r:q -q=p==null?g.d:p -p=o==null?g.e:o -o=n==null?g.f:n -n=l==null?m:l -m=k==null?g.w:k -l=j==null?g.x:j -k=i==null?g.y:i -return new A.te(s,r,q,p,o,n,m,l,k,h==null?g.z:h)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -t.wr.a(b) -return b.b==s.b&&J.b(b.c,s.c)&&b.d==s.d&&b.e==s.e&&J.b(b.f,s.f)&&J.b(b.r,s.r)&&J.b(b.w,s.w)&&J.b(b.x,s.x)&&J.b(b.y,s.y)&&J.b(b.z,s.z)}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a6S.prototype={} -A.XA.prototype={} -A.ayx.prototype={ -E(a8){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7=this -if(a8==null||a7===a8)return a7 -s=a8.b -r=a8.c -q=a8.d -p=a7.e -o=p==null?null:p.E(a8.e) -if(o==null)o=a8.e -n=a8.f -m=a8.r -l=a7.y -k=l==null?null:l.E(a8.y) -if(k==null)k=a8.y -j=a8.Q -i=a8.as -h=a8.ay -g=a8.ch -f=a8.CW -e=a8.cx -d=a8.cy -c=a8.db -b=a8.dx -a=a8.dy -a0=a8.fr -a1=a8.fx -a2=a8.go -a3=a7.k2 -a4=a3==null?null:a3.E(a8.k2) -if(a4==null)a4=a8.k2 -a5=a8.k3 -a6=a8.p2 -if(s==null)s=a7.b -if(r==null)r=a7.c -if(q==null)q=a7.d -p=o==null?p:o -o=n==null?a7.f:n -n=m==null?a7.r:m -m=k==null?l:k -l=h==null?a7.ay:h -k=g==null?a7.ch:g -h=f==null?a7.CW:f -g=e==null?a7.cx:e -f=d==null?a7.cy:d -e=c==null?a7.db:c -d=b==null?a7.dx:b -c=a==null?a7.dy:a -b=a0==null?a7.fr:a0 -a=a1==null?a7.fx:a1 -a0=a2==null?a7.go:a2 -a1=a4==null?a3:a4 -a2=a5==null?a7.k3:a5 -a3=a6==null?a7.p2:a6 -return A.auM(j,q,p,g,a7.ok,a7.ax,a1,a7.p4,d,a2,a0,k,e,c,a7.p1,a7.k1,a3,a7.k4,h,b,a,f,a7.fy,a7.at,a7.id,a7.p3,i,l,o,n,m,a7.w,a7.z,r,s,a7.R8,a7.x)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -t.aw.a(b) -s=!1 -if(J.b(b.b,r.b))if(J.b(b.c,r.c))if(J.b(b.d,r.d))if(J.b(b.e,r.e))if(J.b(b.f,r.f))if(J.b(b.r,r.r))if(J.b(b.y,r.y))if(b.Q.j(0,r.Q))if(b.as===r.as)if(b.ay==r.ay)if(b.ch==r.ch)if(J.b(b.CW,r.CW))if(J.b(b.cx,r.cx))if(J.b(b.cy,r.cy))if(J.b(b.db,r.db))if(J.b(b.dx,r.dx))if(J.b(b.dy,r.dy))if(J.b(b.fr,r.fr))if(J.b(b.fx,r.fx))if(J.b(b.go,r.go))if(J.b(b.k2,r.k2))if(b.k3==r.k3)s=J.b(b.p2,r.p2) -return s}, -gt(a){var s=this -return A.bh([A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,s.k1,s.k2,s.k3,s.k4,s.ok,s.p1,s.p2,s.p3,s.p4,s.R8])}} -A.a8e.prototype={} -A.tf.prototype={} -A.ayy.prototype={ -E(a){var s,r,q,p,o,n,m,l,k,j,i=this -if(a==null||i===a)return i -s=a.b -r=a.c -q=a.d -p=a.e -o=i.f -n=o==null?null:o.E(a.f) -if(n==null)n=a.f -m=a.r -l=i.w -k=l==null?null:l.E(a.w) -if(k==null)k=a.w -j=a.x -if(s==null)s=i.b -if(r==null)r=i.c -if(q==null)q=i.d -if(p==null)p=i.e -o=n==null?o:n -n=m==null?i.r:m -m=k==null?l:k -return new A.tf(s,r,q,p,o,n,m,j==null?i.x:j)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -t.AV.a(b) -return J.b(b.b,s.b)&&J.b(b.c,s.c)&&J.b(b.d,s.d)&&J.b(b.e,s.e)&&J.b(b.f,s.f)&&J.b(b.r,s.r)&&J.b(b.w,s.w)&&J.b(b.x,s.x)}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a8f.prototype={} -A.tg.prototype={} -A.ayz.prototype={ -E(a){var s,r,q,p,o,n,m,l=this -if(a==null||l===a)return l -s=a.b -r=a.c -q=a.d -p=l.e -o=p==null?null:p.E(a.e) -if(o==null)o=a.e -n=a.f -m=a.w -if(q==null)q=l.d -p=o==null?p:o -o=m==null?l.w:m -return new A.tg(s,r,q,p,n,l.r,o)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -t.ru.a(b) -s=!1 -if(b.b===r.b)if(b.c===r.c)if(J.b(b.d,r.d))if(J.b(b.e,r.e))if(b.f.j(0,r.f))s=J.b(b.w,r.w) -return s}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a8g.prototype={} -A.ti.prototype={} -A.ayA.prototype={ -E(a){var s,r,q,p,o,n=this -if(a==null||n===a)return n -s=a.b -r=a.c -q=a.d -p=a.e -o=a.f -if(s==null)s=n.b -if(r==null)r=n.c -if(q==null)q=n.d -if(p==null)p=n.e -return new A.ti(s,r,q,p,o==null?n.f:o)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -t.xX.a(b) -return J.b(b.b,s.b)&&J.b(b.c,s.c)&&J.b(b.d,s.d)&&J.b(b.e,s.e)&&b.f==s.f}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,s.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a8h.prototype={} -A.XG.prototype={} -A.ayB.prototype={ -E(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this -if(a==null||e===a)return e -s=a.b -r=a.c -q=a.d -p=e.e -o=p==null?null:p.E(a.e) -if(o==null)o=a.e -n=a.f -m=a.r -l=a.w -k=a.x -j=a.y -i=a.z -h=a.Q -g=a.as -f=a.at -if(s==null)s=e.b -if(r==null)r=e.c -if(q==null)q=e.d -p=o==null?p:o -o=n==null?e.f:n -n=m==null?e.r:m -m=k==null?e.x:k -k=j==null?e.y:j -return A.auP(i,l,n,s,g,p,q,o,f==null?e.at:f,h,k,r,m)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -t.Ei.a(b) -return J.b(b.b,s.b)&&b.c==s.c&&J.b(b.d,s.d)&&J.b(b.e,s.e)&&J.b(b.f,s.f)&&b.r==s.r&&b.w===s.w&&b.x==s.x&&b.y==s.y&&b.z===s.z&&b.Q===s.Q&&b.as===s.as&&J.b(b.at,s.at)}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a8i.prototype={} -A.XH.prototype={} -A.ayC.prototype={ -E(a){var s,r,q,p,o,n,m,l,k,j,i,h=this -if(a==null||h===a)return h -s=a.b -r=a.c -q=a.d -p=a.f -o=a.x -n=h.z -m=n==null?null:n.E(a.z) -if(m==null)m=a.z -l=a.Q -k=a.as -j=a.at -i=a.ax -if(o==null)o=h.x -n=m==null?n:m -m=l==null?h.Q:l -l=k==null?h.as:k -k=j==null?h.at:j -j=i==null?h.ax:i -return A.auQ(r,j,o,k,n,h.w,m,l,s,q,!0,!1,h.e,p)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -t.VJ.a(b) -return b.b===s.b&&b.c===s.c&&b.d===s.d&&b.f===s.f&&b.x==s.x&&J.b(b.z,s.z)&&J.b(b.Q,s.Q)&&b.as==s.as&&b.at==s.at&&J.b(b.ax,s.ax)}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,s.f,!1,s.w,s.x,!0,s.z,s.Q,s.as,s.at,s.ax,B.a,B.a,B.a,B.a,B.a)}} -A.a8j.prototype={} -A.XI.prototype={} -A.ayD.prototype={ -E(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=this -if(a==null||g===a)return g -s=a.b -r=g.c -q=r==null?null:r.E(a.c) -if(q==null)q=a.c -p=g.d -o=p==null?null:p.E(a.d) -if(o==null)o=a.d -n=a.e -m=a.f -l=a.r -k=a.w -j=a.x -i=a.Q -h=a.as -if(s==null)s=g.b -r=q==null?r:q -q=o==null?p:o -p=n==null?g.e:n -o=m==null?g.f:m -n=l==null?g.r:l -m=k==null?g.w:k -l=j==null?g.x:j -k=h==null?g.as:h -return A.auS(i,g.at,r,g.ay,g.ax,n,o,p,l,m,q,s,k,g.ch,!0,!0)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -t.uI.a(b) -s=!1 -if(J.b(b.b,r.b))if(J.b(b.c,r.c))if(J.b(b.d,r.d))if(b.e==r.e)if(b.f==r.f)if(b.r==r.r)if(J.b(b.w,r.w))if(J.b(b.x,r.x))if(b.Q.j(0,r.Q))s=J.b(b.as,r.as) -return s}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,!0,!0,s.Q,s.as,s.at,s.ax,s.ay,s.ch,B.a,B.a,B.a)}} -A.a8k.prototype={} -A.tk.prototype={} -A.ayE.prototype={ -E(a){var s,r,q,p,o,n=this -if(a==null||n===a)return n -s=a.b -r=a.c -q=a.d -p=a.e -o=a.f -if(s==null)s=n.b -if(r==null)r=n.c -if(q==null)q=n.d -if(p==null)p=n.e -return new A.tk(s,r,q,p,o==null?n.f:o)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -t.WN.a(b) -return J.b(b.b,s.b)&&b.c==s.c&&J.b(b.d,s.d)&&J.b(b.e,s.e)&&J.b(b.f,s.f)}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,s.f,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a8l.prototype={} -A.Fb.prototype={} -A.ayF.prototype={ -E(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this -if(a==null||d===a)return d -s=a.b -r=a.f -q=a.r -p=a.w -o=a.y -n=a.z -m=a.ay -l=d.cx -k=l==null?null:l.E(a.cx) -if(k==null)k=a.cx -j=d.cy -i=j==null?null:j.E(a.cy) -if(i==null)i=a.cy -h=a.id -g=a.k1 -f=a.k2 -e=a.k3 -if(s==null)s=d.b -if(r==null)r=d.f -if(q==null)q=d.r -if(p==null)p=d.w -if(o==null)o=d.y -if(n==null)n=d.z -if(m==null)m=d.ay -l=k==null?l:k -k=i==null?j:i -j=h==null?d.id:h -i=g==null?d.k1:g -h=f==null?d.k2:f -g=e==null?d.k3:e -return A.aZh(d.Q,d.at,d.as,d.p3,d.ax,d.dy,d.fr,p,m,d.d,d.e,r,g,s,d.fy,d.p2,k,d.dx,i,d.x,!0,n,d.fx,h,o,q,d.CW,j,d.go,d.ch,d.k4,d.p1,l,d.db,d.ok)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -t.tN.a(b) -s=!1 -if(J.b(b.b,r.b))if(J.b(b.f,r.f))if(J.b(b.r,r.r))if(J.b(b.w,r.w))if(J.b(b.y,r.y))if(b.z==r.z)if(J.b(b.ay,r.ay))if(J.b(b.cx,r.cx))if(J.b(b.cy,r.cy))if(J.b(b.id,r.id))if(b.k1==r.k1)if(b.k2==r.k2)s=b.k3==r.k3 -return s}, -gt(a){var s=this -return A.bh([A.l(s),s.b,!0,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,s.k1,s.k2,s.k3,s.k4,s.ok,s.p1,s.p2,s.p3])}} -A.a8m.prototype={} -A.XJ.prototype={} -A.ayG.prototype={ -E(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this -if(a==null||e===a)return e -s=a.b -r=a.c -q=a.d -p=a.e -o=a.f -n=a.r -m=a.w -l=a.x -k=a.y -j=a.z -i=a.Q -h=a.as -g=a.at -f=a.ax -if(s==null)s=e.b -if(r==null)r=e.c -if(o==null)o=e.f -if(n==null)n=e.r -if(m==null)m=e.w -if(l==null)l=e.x -if(k==null)k=e.y -if(j==null)j=e.z -if(i==null)i=e.Q -if(h==null)h=e.as -if(g==null)g=e.at -return A.auT(k,i,h,p,l,n,j,r,s,q,m,o,f==null?e.ax:f,g)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -t.HQ.a(b) -return b.b==s.b&&b.c==s.c&&b.d.j(0,s.d)&&b.e.j(0,s.e)&&J.b(b.f,s.f)&&J.b(b.r,s.r)&&J.b(b.w,s.w)&&J.b(b.x,s.x)&&J.b(b.y,s.y)&&J.b(b.z,s.z)&&J.b(b.Q,s.Q)&&J.b(b.as,s.as)&&b.at==s.at&&b.ax==s.ax}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,B.a,B.a,B.a,B.a,B.a)}} -A.a8n.prototype={} -A.xd.prototype={} -A.ayH.prototype={ -E(a){var s,r,q,p,o,n,m,l=this -if(a==null||l===a)return l -s=a.c -r=a.d -q=a.e -p=a.f -o=a.r -n=a.w -m=a.x -if(s==null)s=l.c -if(r==null)r=l.d -if(q==null)q=l.e -if(p==null)p=l.f -if(o==null)o=l.r -if(n==null)n=l.w -return new A.xd(l.b,s,r,q,p,o,n,m)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -t.At.a(b) -return J.b(b.c,s.c)&&J.b(b.d,s.d)&&b.e==s.e&&b.f==s.f&&b.r==s.r&&J.b(b.w,s.w)&&b.x===s.x}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a8o.prototype={} -A.tl.prototype={} -A.ayI.prototype={ -E(a){var s,r,q,p,o,n,m,l,k,j,i=this -if(a==null||i===a)return i -s=a.b -r=a.c -q=a.d -p=a.e -o=a.f -n=a.r -m=a.w -l=i.x -k=l==null?null:l.E(a.x) -if(k==null)k=a.x -j=a.y -if(s==null)s=i.b -if(r==null)r=i.c -if(q==null)q=i.d -if(p==null)p=i.e -if(o==null)o=i.f -if(n==null)n=i.r -if(m==null)m=i.w -l=k==null?l:k -return new A.tl(s,r,q,p,o,n,m,l,j==null?i.y:j)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -t.rU.a(b) -return J.b(b.b,s.b)&&J.b(b.c,s.c)&&J.b(b.d,s.d)&&b.e==s.e&&b.f==s.f&&b.r==s.r&&J.b(b.w,s.w)&&J.b(b.x,s.x)&&J.b(b.y,s.y)}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a8p.prototype={} -A.XM.prototype={} -A.ayJ.prototype={ -E(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=this -if(a==null||g===a)return g -s=a.b -r=a.c -q=a.d -p=a.r -o=a.w -n=a.x -m=g.y -l=m==null?null:m.E(a.y) -if(l==null)l=a.y -k=g.z -j=k==null?null:k.E(a.z) -if(j==null)j=a.z -i=g.Q -h=i==null?null:i.E(a.Q) -if(h==null)h=a.Q -if(p==null)p=g.r -if(o==null)o=g.w -if(n==null)n=g.x -m=l==null?m:l -l=j==null?k:j -k=h==null?i:h -return A.av5(p,k,m,o,n,l,g.e,s,r,q,g.f)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -t.H4.a(b) -return b.b===s.b&&b.c===s.c&&b.d===s.d&&J.b(b.r,s.r)&&b.w==s.w&&J.b(b.x,s.x)&&J.b(b.y,s.y)&&J.b(b.z,s.z)&&J.b(b.Q,s.Q)}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a8q.prototype={} -A.XN.prototype={} -A.ayK.prototype={ -E(b2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0=this,b1=null -if(b2==null||b0===b2)return b0 -s=b2.b -r=b2.c -q=b2.d -p=b2.e -o=b2.r -n=b0.w -m=n==null?b1:n.E(b2.w) -if(m==null)m=b2.w -l=b2.x -k=b2.y -j=b2.Q -i=b2.as -h=b2.at -g=b2.ax -f=b2.ay -e=b2.ch -d=b0.CW -c=d==null?b1:d.E(b2.CW) -if(c==null)c=b2.CW -b=b0.cx -a=b==null?b1:b.E(b2.cx) -if(a==null)a=b2.cx -a0=b2.cy -a1=b2.db -a2=b0.dx -a3=a2==null?b1:a2.E(b2.dx) -if(a3==null)a3=b2.dx -a4=b2.fr -a5=b2.go -a6=b2.id -a7=b2.k1 -a8=b2.k2 -a9=b2.p3 -if(s==null)s=b0.b -if(r==null)r=b0.c -if(q==null)q=b0.d -if(o==null)o=b0.r -n=m==null?n:m -m=l==null?b0.x:l -l=k==null?b0.y:k -k=j==null?b0.Q:j -j=i==null?b0.as:i -i=h==null?b0.at:h -h=g==null?b0.ax:g -g=f==null?b0.ay:f -f=e==null?b0.ch:e -e=c==null?d:c -d=a==null?b:a -c=a0==null?b0.cy:a0 -b=a1==null?b0.db:a1 -a=a3==null?a2:a3 -a0=a5==null?b0.go:a5 -a1=a6==null?b0.id:a6 -a2=a7==null?b0.k1:a7 -a3=a8==null?b0.k2:a8 -a5=a9==null?b0.p3:a9 -return A.av6(l,n,p,!1,s,a5,o,b0.f,j,q,m,b0.p1,b0.fy,e,c,a3,h,a0,b0.p2,b0.k4,b0.ok,f,a1,a2,i,d,b,g,a4,b0.dy,b0.fx,b0.k3,a,k,r)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -t.nC.a(b) -s=!1 -if(b.b==r.b)if(b.c==r.c)if(J.b(b.d,r.d))if(b.e===r.e)if(J.b(b.r,r.r))if(J.b(b.w,r.w))if(J.b(b.x,r.x))if(J.b(b.y,r.y))if(b.Q==r.Q)if(J.b(b.as,r.as))if(J.b(b.at,r.at))if(J.b(b.ax,r.ax))if(J.b(b.ay,r.ay))if(J.b(b.ch,r.ch))if(J.b(b.CW,r.CW))if(J.b(b.cx,r.cx))if(J.b(b.cy,r.cy))if(J.b(b.db,r.db))if(J.b(b.dx,r.dx))if(b.fr===r.fr)if(J.b(b.go,r.go))if(J.b(b.id,r.id))if(J.b(b.k1,r.k1))if(J.b(b.k2,r.k2))s=J.b(b.p3,r.p3) -return s}, -gt(a){var s=this -return A.bh([A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,!1,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,s.k1,s.k2,s.k3,s.k4,s.ok,s.p1,s.p2,s.p3])}} -A.a8r.prototype={} -A.XP.prototype={} -A.ayL.prototype={ -E(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this -if(a==null||e===a)return e -s=e.b -r=s==null?null:s.E(a.b) -if(r==null)r=a.b -q=a.c -p=e.d -o=p==null?null:p.E(a.d) -if(o==null)o=a.d -n=e.e -m=n==null?null:n.E(a.e) -if(m==null)m=a.e -l=a.f -k=a.r -j=a.y -i=a.z -h=a.Q -g=a.as -f=a.ay -s=r==null?s:r -r=q==null?e.c:q -q=o==null?p:o -p=m==null?n:m -o=l==null?e.f:l -n=k==null?e.r:k -m=j==null?e.y:j -l=i==null?e.z:i -k=h==null?e.Q:h -j=g==null?e.as:g -i=f==null?e.ay:f -return A.av7(l,e.x,s,m,n,e.w,j,k,r,o,p,!0,e.ax,i,q)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -t.M3.a(b) -s=!1 -if(J.b(b.b,r.b))if(J.b(b.c,r.c))if(J.b(b.d,r.d))if(J.b(b.e,r.e))if(J.b(b.f,r.f))if(J.b(b.r,r.r))if(b.y==r.y)if(J.b(b.z,r.z))if(b.Q==r.Q)if(b.as==r.as)s=J.b(b.ay,r.ay) -return s}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,!0,s.ax,s.ay,B.a,B.a,B.a,B.a)}} -A.a8s.prototype={} -A.XQ.prototype={} -A.ayN.prototype={ -E(a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2=this,a3=null -if(a4==null||a2===a4)return a2 -s=a4.b -r=a4.c -q=a4.d -p=a4.f -o=a4.r -n=a4.w -m=a4.y -l=a4.z -k=a4.Q -j=a2.as -i=j==null?a3:j.E(a4.as) -if(i==null)i=a4.as -h=a2.at -g=h==null?a3:h.E(a4.at) -if(g==null)g=a4.at -f=a2.ax -e=f==null?a3:f.E(a4.ax) -if(e==null)e=a4.ax -d=a4.ay -c=a4.ch -b=a2.CW -a=b==null?a3:b.E(a4.CW) -if(a==null)a=a4.CW -a0=a2.cx -a1=a0==null?a3:a0.E(a4.cx) -if(a1==null)a1=a4.cx -if(r==null)r=a2.c -if(q==null)q=a2.d -if(m==null)m=a2.y -if(l==null)l=a2.z -if(k==null)k=a2.Q -j=i==null?j:i -i=g==null?h:g -h=e==null?f:e -g=d==null?a2.ay:d -f=c==null?a2.ch:c -e=a==null?b:a -d=a1==null?a0:a1 -return A.ava(p,s,n,e,f,g,k,a2.cy,a2.fr,a2.x,!0,h,a2.db,a2.fx,d,m,a2.dy,l,a2.go,i,o,q,a2.dx,a2.fy,r,j)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -t.Q6.a(b) -s=!1 -if(b.b===r.b)if(b.c==r.c)if(b.d==r.d)if(b.f===r.f)if(b.r===r.r)if(b.w===r.w)if(b.y==r.y)if(b.z==r.z)if(b.Q==r.Q)if(J.b(b.as,r.as))if(J.b(b.at,r.at))if(J.b(b.ax,r.ax))if(b.ay==r.ay)if(J.b(b.ch,r.ch))if(J.b(b.CW,r.CW))s=J.b(b.cx,r.cx) -return s}, -gt(a){var s=this -return A.bh([A.l(s),s.b,s.c,s.d,!0,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go])}} -A.a8u.prototype={} -A.XS.prototype={} -A.ayO.prototype={ -XV(a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1){var s=this,r=a4==null?s.b:a4,q=a7==null?s.c:a7,p=a1==null?s.d:a1,o=b5==null?s.e:b5,n=b2==null?s.f:b2,m=b0==null?s.y:b0,l=c1==null?s.Q:c1,k=b1==null?s.as:b1,j=a0==null?s.at:a0,i=a5==null?s.ax:a5,h=b7==null?s.ay:b7,g=b8==null?s.ch:b8,f=b6==null?s.CW:b6,e=a8==null?s.cx:a8,d=a9==null?s.cy:a9,c=a6==null?s.db:a6,b=b3==null?s.dx:b3,a=b4==null?s.dy:b4 -return A.Fe(j,p,s.r,s.w,r,i,c,q,e,d,m,k,n,b,a,o,f,h,g,b9!==!1,s.x,l)}, -Y_(a,b,c,d){var s=null -return this.XV(s,s,s,s,s,s,a,s,s,s,s,b,s,s,s,s,c,s,s,s,s,d)}, -E(a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this -if(a0==null||a===a0)return a -s=a0.b -r=a0.c -q=a0.d -p=a0.e -o=a0.f -n=a0.r -m=a0.w -l=a0.x -k=a0.y -j=a.Q -j=j==null?null:j.E(a0.Q) -if(j==null)j=a0.Q -i=a.as -i=i==null?null:i.E(a0.as) -if(i==null)i=a0.as -h=a0.at -g=a.ax -g=g==null?null:g.E(a0.ax) -if(g==null)g=a0.ax -f=a0.ay -e=a0.ch -d=a0.CW -c=a0.cx -b=a0.cy -return a.XV(h,q,n,m,s,g,a0.db,r,c,b,k,i,o,a0.dx,a0.dy,p,d,f,e,!0,l,j)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -t.p9.a(b) -return J.b(b.b,s.b)&&b.c.j(0,s.c)&&J.b(b.d,s.d)&&J.b(b.e,s.e)&&J.b(b.f,s.f)&&b.y===s.y&&J.b(b.Q,s.Q)&&J.b(b.as,s.as)&&J.b(b.at,s.at)&&J.b(b.ax,s.ax)&&J.b(b.ay,s.ay)&&b.ch===s.ch&&J.b(b.CW,s.CW)&&J.b(b.cx,s.cx)&&J.b(b.cy,s.cy)&&J.b(b.db,s.db)&&b.dx===s.dx&&b.dy===s.dy}, -gt(a){var s=this -return A.bh([A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,!0,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy])}} -A.a8v.prototype={} -A.to.prototype={} -A.ayP.prototype={ -E(a){var s,r,q,p,o,n,m,l,k,j,i,h=this -if(a==null||h===a)return h -s=a.b -r=a.c -q=a.d -p=a.e -o=a.f -n=h.r -m=n==null?null:n.E(a.r) -if(m==null)m=a.r -l=a.w -k=a.x -j=a.y -i=a.z -if(s==null)s=h.b -if(r==null)r=h.c -if(o==null)o=h.f -n=m==null?n:m -m=k==null?h.x:k -k=j==null?h.y:j -return new A.to(s,r,q,p,o,n,l,m,k,i==null?h.z:i)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -t.B4.a(b) -return J.b(b.b,s.b)&&J.b(b.c,s.c)&&b.d===s.d&&b.e.j(0,s.e)&&J.b(b.f,s.f)&&J.b(b.r,s.r)&&b.w.j(0,s.w)&&J.b(b.x,s.x)&&J.b(b.y,s.y)&&J.b(b.z,s.z)}, -gt(a){var s=this -return A.N(A.l(s),s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} -A.a8w.prototype={} -A.l1.prototype={} -A.ayM.prototype={ -Y0(a,b,c,d,e,f,g){var s=this,r=e==null?s.c:e,q=g==null?s.d:g,p=a==null?s.e:a,o=d==null?s.f:d,n=c==null?s.r:c,m=f==null?s.k1:f,l=b==null?s.k2:b -return A.av8(s.RG,s.p2,s.ax,s.as,s.k3,s.b,s.ay,s.y1,s.fr,s.fy,s.a,s.xr,s.y2,s.cx,s.a5,s.ok,s.z,p,l,!1,s.db,n,s.to,s.aB,s.go,s.w,s.n,s.dy,s.Q,o,s.CW,s.k4,s.x,r,s.p1,m,s.R8,s.id,s.at,s.ry,s.y,q,s.dx,s.U,s.p4,s.p3,s.a0,s.fx,s.rx,s.x2,s.cy,s.a3,s.aH,s.ch)}, -aqT(a,b,c,d,e){return this.Y0(a,null,b,c,d,null,e)}, -aqE(a,b){var s=null -return this.Y0(s,a,s,s,s,b,s)}, -j(a,b){var s=this -if(b==null)return!1 -if(s===b)return!0 -if(J.S(b)!==A.l(s))return!1 -t.HT.a(b) -return b.a.j(0,s.a)&&b.b===s.b&&b.c.j(0,s.c)&&b.d.j(0,s.d)&&b.e.j(0,s.e)&&b.f.j(0,s.f)&&b.r.j(0,s.r)&&b.w.j(0,s.w)&&b.x.j(0,s.x)&&b.y.j(0,s.y)&&b.z.j(0,s.z)&&b.Q.j(0,s.Q)&&b.as.j(0,s.as)&&b.at.j(0,s.at)&&b.ax.j(0,s.ax)&&b.ay.j(0,s.ay)&&b.ch.j(0,s.ch)&&b.CW.j(0,s.CW)&&b.cx.j(0,s.cx)&&b.cy.j(0,s.cy)&&b.db===s.db&&b.dx.j(0,s.dx)&&b.dy.j(0,s.dy)&&b.fr.j(0,s.fr)&&b.fx.j(0,s.fx)&&b.fy.j(0,s.fy)&&b.go.j(0,s.go)&&b.id.j(0,s.id)&&b.k1.j(0,s.k1)&&b.k2.j(0,s.k2)&&b.k3===s.k3&&b.k4.j(0,s.k4)&&b.ok.j(0,s.ok)&&b.p1.j(0,s.p1)&&b.p2.j(0,s.p2)&&b.p3.j(0,s.p3)&&b.p4.j(0,s.p4)&&b.R8.j(0,s.R8)&&b.RG.j(0,s.RG)&&b.rx.j(0,s.rx)&&b.ry.j(0,s.ry)&&b.to.j(0,s.to)&&b.x2.j(0,s.x2)&&b.xr.j(0,s.xr)&&b.y1.j(0,s.y1)&&b.y2.j(0,s.y2)&&b.aH.j(0,s.aH)&&b.aB.j(0,s.aB)&&b.n.j(0,s.n)&&b.U.j(0,s.U)&&b.a0.j(0,s.a0)&&b.a3.j(0,s.a3)&&b.a5.j(0,s.a5)}, -gt(a){var s=this -return A.bh([A.l(s),s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,s.cx,s.cy,s.db,s.dx,s.dy,s.fr,s.fx,s.fy,s.go,s.id,s.k1,s.k2,s.k3,s.k4,s.ok,s.p1,s.p2,s.p3,s.p4,s.R8,s.RG,s.rx,s.ry,s.to,!1,s.x2,s.xr,s.y1,s.y2,s.aH,s.aB,s.n,s.U,s.a0,s.a3,s.a5])}} -A.a8t.prototype={} -A.XO.prototype={ -E(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this -if(a==null)return b -s=b.a.E(a.a) -r=b.b.E(a.b) -q=b.c.E(a.c) -p=b.d.E(a.d) -o=b.e.E(a.e) -n=b.f.E(a.f) -m=b.r.E(a.r) -l=b.w.E(a.w) -k=b.x.E(a.x) -j=b.y.E(a.y) -i=b.z.E(a.z) -h=b.Q.E(a.Q) -g=b.as.E(a.as) -f=a.ax -e=A.kM(b.at,t.N,t.em) -e.a_(0,a.at) -d=A.bQ() -d.sed(f) -c=d.bc() -return A.aRY(m,!0,e,c,b.ch,r,s,q,p,o,i,j,k,g,n,h,l)}, -j(a,b){var s,r=this -if(b==null)return!1 -if(r===b)return!0 -if(J.S(b)!==A.l(r))return!1 -s=!1 -if(b instanceof A.XO)if(b.a.j(0,r.a))if(b.b.j(0,r.b))if(b.c.j(0,r.c))if(b.d.j(0,r.d))if(b.e.j(0,r.e))if(b.f.j(0,r.f))if(b.r.j(0,r.r))if(b.w.j(0,r.w))if(b.x.j(0,r.x))if(b.y.j(0,r.y))if(b.z.j(0,r.z))if(b.Q.j(0,r.Q))if(b.as.j(0,r.as))if(b.ax===r.ax)s=A.uo(b.at,r.at) -return s}, -gt(a){var s=this -return A.N(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x,s.y,s.z,s.Q,s.as,s.ax,!0,s.ch,A.aRs(s.at.gfj()),B.a,B.a,B.a)}} -A.tm.prototype={ -K(a){return new A.x8(this,this.d,null)}, -gR(){return this.d}} -A.x8.prototype={ -qa(a,b){return new A.tm(this.w.c,b,null)}, -cI(a){return!this.w.c.j(0,a.w.c)}} -A.tn.prototype={ -eo(a){var s=A.bcK(this.a,this.b,a) -s.toString -return s}} -A.ES.prototype={ -ah(){return new A.a6A(null,null)}, -gR(){return this.w}} -A.a6A.prototype={ -l7(a){var s=a.$3(this.CW,this.a.r,new A.aHt()) -s.toString -this.CW=t.ql.a(s)}, -K(a){var s=this.CW -s.toString -return new A.tm(s.aj(this.geD().gp()),this.a.w,null)}} -A.aHt.prototype={ -$1(a){return new A.tn(t.HT.a(a),null)}, -$S:647} -A.aui.prototype={} -A.av9.prototype={} -A.auu.prototype={ -a0I(){var s=null,r=this.a,q=r.r,p=q.bT(0.9) -r=r.w -return A.iu(q,s,s,A.bV(s,A.br(s,s,B.hq,this.b,0),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),!1,r,8,s,s,p,r,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -Na(){var s=null,r=this.a,q=r.x,p=q.bT(0.8) -r=r.y -return A.iu(q,s,s,A.bV(s,A.br(s,s,B.hq,this.b,0),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),!1,r,8,s,s,p,r,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -Yl(){var s=null,r=this.a,q=r.ax,p=q.bT(0.9) -r=r.ay -return A.iu(q,s,s,A.bV(s,A.br(s,s,B.hq,this.b,0),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),!1,r,8,s,s,p,r,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -a0p(){var s=null,r=this.a -return A.iu(s,s,s,A.bV(s,A.br(r.CW,s,B.dU,this.b,1),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),!1,r.r,8,s,s,r.as,r.at,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -MW(){var s=null,r=this.a -return A.iu(s,s,s,A.bV(s,A.br(s,s,B.hq,this.b,0),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),!1,r.r,8,s,s,r.as,r.at,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -a_R(){var s=null,r=this.a.r -return A.iu(s,s,s,s,!1,r,8,s,s,s,r,s,B.ib,s,s,s,s,s,s,s,s,s,s,s)}, -Xb(){return B.Ik}, -a0H(){var s=this.a,r=s.r -return new A.is(B.dD,r,r.bT(0.8),s.w,B.dd,null)}, -N9(){var s=this.a,r=s.x -return new A.is(B.dD,r,r.bT(0.8),s.y,B.dd,null)}, -Yk(){var s=this.a,r=s.ax -return new A.is(B.dD,r,r.bT(0.8),s.ay,B.dd,null)}, -a0o(){var s=this.a -return new A.is(new A.fy(new A.bl(s.ch,1,B.F,-1)),null,null,s.b,B.dd,null)}, -WY(){return new A.t8(B.oF,B.iA,this.a.z,null)}, -X4(){var s=null,r=this.a,q=r.Q,p=A.ce(B.Dx,q,s,14),o=this.c.Q,n=A.iB(o.lZ(B.p),q,s),m=r.b,l=A.iB(o.lZ(B.p),q,s) -return A.auk(B.ij,4,B.r4,B.Ii,r.e,B.df,A.iB(o,m,s),p,16,n,m,m,q,l,B.bZ,s,s,14,s,10)}, -a1G(){var s=null,r=this.a -return new A.to(s,s,B.ur,B.a6F,B.ho,A.bV(s,A.br(r.ch,s,s,this.b,0),r.e,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,B.fc,s),B.Ip,s,B.aM,B.z)}, -a0A(){var s=null,r=this.a -return new A.tg(B.vk,B.fc,B.ho,A.bV(s,A.br(r.ch,s,s,this.b,1),r.e,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,B.fc,s),B.oj,s,B.c2)}, -Jc(){var s,r=null,q=A.br(B.D,r,r,r,2),p=this.a,o=A.br(p.cx,r,r,A.bK(6),2),n=this.c.as,m=n.hn(p.b,B.E) -p=p.ax -s=n.hn(p,B.E) -return A.bV(r,q,r,B.hm,n,r,r,n.hn(p,B.E),B.hm,s,r,r,o,r,r,r,B.eT,m,r,r,r,r,r)}, -Nc(){var s=null -return A.auS(B.a6E,s,A.bV(s,A.br(this.a.CW,s,B.dU,this.b,1),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),s,s,384,s,128,B.df,B.cp,s,B.z,B.hn,s,!0,!0)}, -a0m(){var s=null -return new A.tf(this.a.as,B.r5,s,s,s,s,s,s)}, -Xj(){var s=null,r=this.a -return A.aun(r.c,A.br(r.ch,s,s,s,1),s,B.T,B.m,B.ak,s,B.de,B.d3,B.T,B.b4,B.ak,B.jr,s)}, -OA(){var s=null,r=this.a -return new A.tl(r.a,r.CW,r.r,44,24,2,A.cI(1e5,0),A.bV(s,A.br(s,s,B.hq,B.pA,0),s,s,s,s,s,s,s,s,s,s,A.br(s,s,s,B.pA,2),s,s,s,s,s,s,s,s,s,s),B.dc)}, -Xn(){var s=null,r=this.a.r -return new A.t9(r,16,A.cI(1e5,0),A.bV(s,A.br(r,s,B.dU,this.b,1),s,s,s,s,s,s,s,s,s,s,A.br(s,s,s,s,2),s,s,s,s,s,s,s,s,s,s),B.dc,s,s)}, -a_f(){var s=null,r=this.c.as -return A.auL(s,s,s,s,s,s,s,s,A.bV(s,A.br(this.a.ch,s,B.dU,this.b,1),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),8,B.ap,s,B.cp,s,r,s,r,s)}, -a0S(){var s=null,r=A.cI(1e5,0),q=this.a.r -return A.auP(B.bZ,B.L,10,q,B.ii,A.bV(s,A.br(q,s,B.dU,s,1),s,s,s,s,s,s,s,s,s,s,A.br(s,s,s,B.iv.G(0,B.iv.d7(0,2)),2),s,s,s,s,s,s,s,s,s,B.bT),r,B.dc,s,B.bZ,s,16,4)}, -a0K(){var s=null,r=this.c.as,q=this.a,p=q.b,o=r.hn(p,B.E) -p=r.c3(p.bT(0.9)) -return A.Fe(B.iW,B.bA,s,s,q.a,A.br(q.ch,s,s,s,1),s,B.du,s,s,B.o,p,s,B.b4,B.n,s,B.iX,s,B.dr,!0,s,o)}, -Ym(){var s=null,r=this.c.as,q=this.a,p=q.ay,o=r.hn(p,B.E) -p=r.c3(p.bT(0.9)) -return A.Fe(B.iW,B.bA,s,s,q.ax,A.br(q.ch,s,s,s,1),s,B.du,s,s,B.o,p,s,B.b4,B.n,s,B.iX,s,B.dr,!0,s,o)}, -a0G(){var s=null,r=this.a,q=r.b,p=this.c -return new A.mJ(A.bV(s,A.br(r.ch,s,B.bj,this.b,1),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),B.iV,q,p.f.An(q,B.E,1),p.as.c3(q),s,s,s)}, -Yj(){var s=null,r=this.a.ax,q=this.c -return new A.mJ(A.bV(s,A.br(r,s,B.bj,this.b,1),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),B.iV,r,q.f.An(r,B.E,1),q.as.c3(r),s,s,s)}, -a0J(){var s=null,r=this.c -return A.EY(s,s,s,s,s,s,B.a_,B.jC,B.jJ,this.a.a,s,B.du,s,B.fV,B.T,s,r.as,s,!0,8,B.m,B.de,B.d3,!0,s,s,B.dr,s,r.z,s,s)}, -WB(){var s=null,r=this.c -return A.EY(s,s,s,s,s,s,B.a_,B.jC,B.jJ,this.a.a,s,s,s,B.fV,B.T,s,r.as,s,!0,8,B.m,B.de,B.d3,!0,s,s,B.dr,s,r.z,s,s)}, -NE(){var s=this.a,r=s.a,q=s.r,p=q.bT(0.5) -s=s.x -return A.auT(q,q.bT(0.5),s.bT(0.5),B.Jg,p,r,s,1,0,B.el,q,r,10,8)}, -Nw(){return B.Iz}, -a0M(){var s=this.a -return new A.ti(s.x,s.r,B.pz,null,16)}, -Wq(){return new A.t7(B.Dy,B.ud,B.hl,!0,this.c.x.lZ(B.E),B.ml,B.aM,!1,null)}, -a1o(){var s=null,r=this.c.as,q=A.iB(r,s,B.E) -return A.av5(B.cD,A.iB(r,s,B.E),q,48,B.hp,r,s,B.qS,B.W,B.HW,s)}, -a1f(){var s=null,r=this.a.ch -return A.auQ(B.o,r,8,1,A.bV(s,A.br(s,s,s,B.cE,0),r,s,s,!0,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),s,s,10,B.m,B.n,!0,!1,s,B.d_)}, -a_4(){return B.Iq}, -a1p(){var s=null,r=this.a,q=r.a,p=r.b -return A.av6(s,A.bV(s,A.br(s,s,s,this.b,0),r.z,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),B.W,!1,8,s,B.df,s,B.D,s,s,s,s,A.bV(s,A.br(s,s,s,B.cE,0),s,s,s,s,s,s,s,s,s,s,A.br(s,s,s,B.cE,s),s,s,s,s,s,s,s,s,s,s),p,s,B.D,s,s,s,s,B.OY,s,s,q,s,p,q,B.jr,s,s,s,s,s,s)}, -XI(){var s=null,r=this.c -return A.aut(s,s,B.cS,s,B.lO,s,s,s,32,s,s,A.bV(s,s,s,s,s,s,s,s,s,s,s,s,this.Jc().d,s,s,s,s,s,s,s,s,s,s),B.hr,B.r0,B.iY,s,this.a.as,s,B.bi,s,r.Q.lZ(B.p),B.dc,r.as.vx(12,1))}, -Xe(){var s,r,q,p,o=null,n=this.a,m=A.bV(o,A.br(n.ch,o,B.hn,this.b,1),o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),l=this.c,k=l.Q -l=l.as -s=l.jA(12.8) -r=l.jA(12.8) -q=k.hn(n.w,B.p) -n=n.b -p=k.c3(n) -return A.aum(!1,B.Dw,o,8,o,0.5,l,B.cS,B.ap,36,k.hn(n,B.p),B.cS,m,o,o,!1,o,o,o,o,B.eb,0,8,38,B.r2,k,!1,!1,p,B.fB,o,130,B.eU,0.5,16,B.ap,28,16,B.fB,q,B.ol,!0,!1,16,B.fB,"#",s,o,r,1,B.eT,B.bQ,l.jA(12.8),100,B.eU)}, -Y9(){return B.Im}, -a1u(){var s,r,q=null,p=this.c,o=p.as,n=this.a,m=o.XX(n.b,16,1.5) -o=o.vx(16,1.5) -p=p.Q.jA(12) -s=n.ch -r=this.b -return A.ava(B.ih,B.am,B.ij,A.bV(q,A.br(s,q,q,r,1),q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),B.cp,50,2,q,q,q,!0,p,q,q,A.bV(q,A.br(s,q,q,r,2),q,q,q,q,q,q,q,q,q,q,A.br(n.cx,q,B.P2,r,2),q,q,q,q,q,q,q,q,q,q),44,q,65,q,o,B.ih,4,q,q,4,m)}, -a_e(){var s=null,r=this.a,q=this.b,p=r.ch -return new A.te(s,this.c.as.XQ(r.b,"packages/shadcn_ui/GeistMono"),40,40,B.iY,A.bV(s,new A.fL(!0,B.dU,s,new A.fw(!0,p,1,s,s),new A.fw(!0,p,1,s,s),new A.fw(!0,p,1,s,s),s,s),s,s,s,!0,s,s,s,s,s,s,A.br(r.cx,s,s,s,2),s,s,s,s,s,s,s,s,s,s),new A.ch(q.a,B.H,q.c,B.H),new A.ch(B.H,q.b,B.H,q.d),q,B.ah)}, -a03(){var s=null,r=this.a -return A.auM(B.a6H,s,A.br(r.ch,s,s,s,1),s,s,s,B.In,s,s,s,s,32,s,s,s,s,s,s,s,s,s,r.as,s,s,s,s,B.cS,s,s,s,s,s,s,B.df,this.b,s,s)}, -Ng(){return new A.tk(this.a.ch,1,B.hp,B.hl,null)}, -NG(){return B.IA}, -a1q(){var s=null,r=this.c.as -return A.av7(s,s,A.bV(s,A.br(this.a.ch,s,B.dU,this.b,1),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),8,B.ap,s,500,80,B.cp,s,r,!0,s,B.r1,r)}, -Yg(){return new A.tb(this.a.as,"Done",!0,!0,!0,null)}} -A.auv.prototype={ -a0I(){var s=null,r=this.a,q=r.r,p=q.bT(0.9) -r=r.w -return A.iu(q,s,s,A.bV(s,A.br(s,s,s,this.b,0),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),!1,r,8,s,s,p,r,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -Na(){var s=null,r=this.a,q=r.x,p=q.bT(0.8) -r=r.y -return A.iu(q,s,s,A.bV(s,A.br(s,s,s,this.b,0),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),!1,r,8,s,s,p,r,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -Yl(){var s=null,r=this.a,q=r.ax,p=q.bT(0.9) -r=r.ay -return A.iu(q,s,s,A.bV(s,A.br(s,s,s,this.b,0),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),!1,r,8,s,s,p,r,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -a0p(){var s=null,r=this.a -return A.iu(s,s,s,A.bV(s,A.br(r.CW,s,s,this.b,1),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),!1,r.r,8,s,s,r.as,r.at,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -MW(){var s=null,r=this.a -return A.iu(s,s,s,A.bV(s,A.br(s,s,s,this.b,0),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),!1,r.r,8,s,s,r.as,r.at,s,s,s,s,s,s,s,s,s,s,s,s,s)}, -a_R(){var s=null,r=this.a.r -return A.iu(s,s,s,s,!1,r,8,s,s,s,r,s,B.ib,s,s,s,s,s,s,s,s,s,s,s)}, -Xb(){return B.Ik}, -a0H(){var s=this.a,r=s.r -return new A.is(B.dD,r,r.bT(0.8),s.w,B.dd,null)}, -N9(){var s=this.a,r=s.x -return new A.is(B.dD,r,r.bT(0.8),s.y,B.dd,null)}, -Yk(){var s=this.a,r=s.ax -return new A.is(B.dD,r,r.bT(0.8),s.ay,B.dd,null)}, -a0o(){var s=this.a -return new A.is(new A.fy(new A.bl(s.ch,1,B.F,-1)),null,null,s.b,B.dd,null)}, -WY(){return new A.t8(B.oF,B.iA,this.a.z,null)}, -X4(){var s=null,r=this.a,q=r.Q,p=A.ce(B.Dx,q,s,14),o=this.c.Q,n=A.iB(o.lZ(B.p),q,s),m=r.b,l=A.iB(o.lZ(B.p),q,s) -return A.auk(B.ij,4,B.r4,B.Ii,r.e,B.df,A.iB(o,m,s),p,16,n,m,m,q,l,B.bZ,s,s,14,s,10)}, -a1G(){var s=null,r=this.a -return new A.to(s,s,B.ur,B.a6B,B.ho,A.bV(s,A.br(r.ch,s,s,this.b,0),r.e,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,B.fc,s),B.Ip,s,B.aM,B.z)}, -a0A(){var s=null,r=this.a -return new A.tg(B.vk,B.fc,B.ho,A.bV(s,A.br(r.ch,s,s,this.b,1),r.e,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,B.fc,s),B.oj,s,B.c2)}, -Jc(){var s,r,q,p=null,o=A.br(p,p,p,p,0),n=this.a,m=this.b -m=A.br(n.cx,4,p,m.G(0,m.d7(0,2)),2) -s=this.c.as -r=s.hn(n.b,B.E) -n=n.ax -q=s.hn(n,B.E) -return A.bV(p,p,p,B.hm,s,p,p,s.hn(n,B.E),B.hm,q,p,p,p,p,p,p,B.eT,r,o,p,m,p,p)}, -Nc(){var s=null -return A.auS(B.oj,s,A.bV(s,A.br(this.a.CW,s,s,this.b,1),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),s,s,384,s,128,B.df,B.cp,s,B.z,B.hn,s,!0,!0)}, -a0m(){var s=null -return new A.tf(this.a.as,B.r5,s,s,s,s,s,s)}, -Xj(){var s=null,r=this.a -return A.aun(r.c,A.br(r.ch,s,s,s,1),s,B.T,B.m,B.ak,s,B.de,B.d3,B.T,B.b4,B.ak,B.jr,s)}, -OA(){var s=null,r=this.a -return new A.tl(r.a,r.CW,r.r,44,24,2,A.cI(1e5,0),A.bV(s,A.br(s,s,s,B.iu.G(0,B.iu.d7(0,2)),0),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,A.br(s,s,s,B.iu.G(0,B.iu.d7(0,2)),2),s,s),B.dc)}, -Xn(){var s=null,r=this.a.r -return new A.t9(r,16,A.cI(1e5,0),A.bV(s,A.br(r,s,s,this.b,1),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),B.dc,s,B.r3)}, -a_f(){var s=null,r=this.c.as -return A.auL(s,s,s,s,s,s,s,s,A.bV(s,A.br(this.a.ch,s,s,this.b,1),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),8,B.ap,s,B.cp,s,r,s,r,s)}, -a0S(){var s=null,r=A.cI(1e5,0),q=this.a.r -return A.auP(B.bZ,B.L,10,q,B.ii,A.bV(s,A.br(q,s,s,s,1),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,A.br(s,s,s,B.iv.G(0,B.iv.d7(0,2)),2),s,B.bT),r,B.dc,B.r3,B.bZ,s,16,4)}, -a0K(){var s=null,r=this.c.as,q=this.a,p=q.b,o=r.hn(p,B.E) -p=r.c3(p.bT(0.9)) -return A.Fe(B.iW,B.bA,s,s,q.a,A.br(q.ch,s,s,s,1),s,B.du,s,s,B.o,p,s,B.b4,B.n,s,B.iX,s,B.dr,!0,s,o)}, -Ym(){var s=null,r=this.c.as,q=this.a,p=q.ay,o=r.hn(p,B.E) -p=r.c3(p.bT(0.9)) -return A.Fe(B.iW,B.bA,s,s,q.ax,A.br(q.ch,s,s,s,1),s,B.du,s,s,B.o,p,s,B.b4,B.n,s,B.iX,s,B.dr,!0,s,o)}, -a0G(){var s=null,r=this.a,q=r.b,p=this.c -return new A.mJ(A.bV(s,A.br(r.ch,s,B.bj,this.b,1),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),B.iV,q,p.f.An(q,B.E,1),p.as.c3(q),s,s,s)}, -Yj(){var s=null,r=this.a.ax,q=this.c -return new A.mJ(A.bV(s,A.br(r,s,B.bj,this.b,1),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),B.iV,r,q.f.An(r,B.E,1),q.as.c3(r),s,s,s)}, -a0J(){var s=null,r=this.c -return A.EY(s,8,s,s,s,s,B.a_,B.jC,B.jJ,this.a.a,s,B.du,s,B.fV,B.T,s,r.as,s,!0,8,B.m,B.de,B.d3,!0,s,s,B.dr,s,r.z,s,s)}, -WB(){var s=null,r=this.c -return A.EY(s,s,s,s,s,s,B.a_,B.jC,B.jJ,this.a.a,s,s,s,B.fV,B.T,s,r.as,s,!0,8,B.m,B.de,B.d3,!0,s,s,B.dr,s,r.z,s,s)}, -NE(){var s=this.a,r=s.a,q=s.r,p=q.bT(0.5) -s=s.x -return A.auT(q,q.bT(0.5),s.bT(0.5),B.Jg,p,r,s,1,0,B.el,q,r,10,8)}, -Nw(){return B.Iz}, -a0M(){var s=this.a -return new A.ti(s.x,s.r,B.pz,null,16)}, -Wq(){return new A.t7(B.Dy,B.ud,B.hl,!0,this.c.x.lZ(B.E),B.ml,B.aM,!1,null)}, -a1o(){var s=this.c.as -return A.av5(B.cD,A.iB(s,null,B.E),s,48,B.hp,s,null,B.qS,B.W,B.HW,null)}, -a1f(){var s=null,r=this.a.ch -return A.auQ(B.o,r,8,1,A.bV(s,A.br(s,s,s,B.cE,0),r,s,s,!0,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),s,s,10,B.m,B.n,!0,!1,s,B.d_)}, -a_4(){return B.Iq}, -a1p(){var s=null,r=this.a,q=r.a,p=r.b -return A.av6(s,A.bV(s,A.br(r.cx,s,s,this.b,0),r.z,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),B.W,!1,8,s,B.ap,s,B.D,s,s,s,s,A.bV(s,A.br(s,s,s,B.cE,0),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),p,s,B.D,s,s,s,s,B.ho,s,s,q,s,p,q,B.jr,s,s,s,s,s,s)}, -XI(){var s=null,r=this.c -return A.aut(s,s,B.cS,s,B.lO,s,s,s,32,s,s,B.Io,B.hr,B.r0,B.iY,s,this.a.as,s,B.bi,s,r.Q.lZ(B.p),B.dc,r.as.vx(12,1))}, -Xe(){var s,r,q,p,o=null,n=this.a,m=A.bV(o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,A.br(n.cx.bT(0.5),2,o,o,o),o,o),l=A.bV(o,A.br(n.ch,o,B.hn,this.b,1),o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),k=this.c,j=k.Q -k=k.as -s=k.jA(12.8) -r=k.jA(12.8) -q=j.hn(n.w,B.p) -n=n.b -p=j.c3(n) -return A.aum(!1,B.Dw,o,8,m,0.5,k,B.cS,B.ap,36,j.hn(n,B.p),B.cS,l,o,o,!1,o,o,o,o,B.eb,0,8,38,B.r2,j,!1,!1,p,B.fB,o,64,B.eU,0.5,16,B.ap,28,16,B.fB,q,B.ol,!0,!1,16,B.fB,"#",s,o,r,1,B.eT,B.bQ,k.jA(12.8),64,B.eU)}, -Y9(){return B.Im}, -a1u(){var s=null,r=this.c,q=r.as,p=this.a,o=q.XX(p.b,16,1.5) -q=q.vx(16,1.5) -r=r.Q.jA(12) -return A.ava(B.ih,B.am,B.ij,A.bV(s,A.br(p.ch,s,s,this.b,1),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),B.cp,48,4,s,s,s,!0,r,s,s,s,42,s,65,s,q,B.ih,4,s,s,8,o)}, -a_e(){var s=null,r=this.a,q=this.b,p=r.ch -return new A.te(s,this.c.as.XQ(r.b,"packages/shadcn_ui/GeistMono"),40,40,s,A.bV(s,new A.fL(!0,s,s,new A.fw(!0,p,1,s,s),new A.fw(!0,p,1,s,s),new A.fw(!0,p,1,s,s),s,s),s,s,s,!0,s,s,s,s,s,s,A.br(r.cx,s,s,s,2),s,s,s,s,s,s,s,s,s,s),new A.ch(q.a,B.H,q.c,B.H),new A.ch(B.H,q.b,B.H,q.d),q,B.ah)}, -a03(){var s=null,r=this.a -return A.auM(B.a6G,s,A.br(r.ch,s,s,s,1),s,s,s,B.In,s,s,s,s,32,s,s,s,s,s,s,s,s,s,r.as,s,s,s,s,B.cS,s,s,s,s,s,s,B.df,this.b,s,s)}, -Ng(){return new A.tk(this.a.ch,1,B.hp,B.hl,null)}, -NG(){return B.IA}, -a1q(){var s=null,r=this.c.as -return A.av7(s,s,A.bV(s,A.br(this.a.ch,s,s,this.b,1),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),8,B.ap,s,500,80,B.cp,s,r,!0,s,B.r1,r)}, -Yg(){return new A.tb(this.a.as,"Done",!0,!0,!0,null)}} -A.kY.prototype={ -rd(a){var s,r,q,p=this,o=p.cx,n=a.a -if(n!=null)s=new A.b5(p.cy.a+n.a) -else{s=o==null?null:o.a -if(s==null)s=p.cy}n=a.b -if(n==null)n=o==null?null:o.b -if(n==null)n=B.aM -r=a.c -if(r==null)r=o==null?null:o.c -q=new A.Bn(s,n,r==null?B.a7:r,a) -p.CW.push(q) -p.cx=q -n=s.a+n.a -r=p.db -if(n>r.a)p.db=new A.b5(n) -return p.a3U(a)}, -ah(){return new A.JT(null,null)}} -A.JT.prototype={ -aw(){this.b3() -this.a96()}, -aV(a){var s,r=this,q=r.a -if(a.x==q.x){s=a.at -q=q.at -q=s.a!==q.a}else q=!0 -if(q){r.OY() -r.ED()}r.bm(a)}, -a96(){var s=this,r=s.r -if(r!=null)A.vD(r,t.H) -s.OY() -s.OZ() -r=s.a.w -if(r.a===0)$.a1.k4$.push(new A.aHs(s)) -else s.r=A.vE(r,s.ga95(),t.H)}, -OY(){var s,r,q,p=this,o=null -if(p.a.x!=null){p.OX() -s=p.a.x -r=!1}else{r=!p.e -if(r){s=A.bX(o,o,o,o,p) -p.e=!0}else s=o}if(s!=null){p.d=s -s.bC() -q=s.cP$ -q.b=!0 -q.a.push(p.ga92())}q=p.d -q===$&&A.a() -q.e=p.a.at -p.a94() -if(r)p.a.toString}, -a94(){this.f=this.a.y}, -OX(){if(this.e){var s=this.d -s===$&&A.a() -s.l()}this.e=!1}, -l(){var s=this.r -if(s!=null)A.vD(s,t.H) -this.OX() -this.a84()}, -a93(a){if(a===B.a9)this.a.toString}, -ED(){var s=this,r=s.r -if(r!=null)A.vD(r,t.H) -s.OZ() -r=s.a -r=r.r -if(r){r=s.d -r===$&&A.a() -r.kl(0) -s.a.toString}}, -OZ(){this.a.toString -return}, -K(a){var s,r,q,p,o,n=this.a.c,m=t.O2.a($.aTJ().h(0,A.l(n))),l=m==null,k=!l?t.l7.a(n.gR()):n -for(s=this.a.CW,r=s.length,q=0;q>>0}} -A.h9.prototype={ -N(){return"ShadHoverStrategy."+this.b}} -A.F1.prototype={ -ah(){return new A.a6R()}, -gR(){return this.f}} -A.a6R.prototype={ -Aq(a,b){var s,r,q,p,o,n=A.aoN(a,!0) -if(n==null)s=null -else{r=n.d -r===$&&A.a() -s=r.gS()}if(s==null)return b -q=A.aoN(a,!1) -if(q==null)p=null -else{r=q.d -r===$&&A.a() -p=r.gS()}if(p==null||p===s)return b -o=p.c.ga1() -if(!(o instanceof A.A))return b -return b.ac(0,A.bA(o.bd(null),B.f))}, -K(a){var s,r,q,p,o,n,m,l=this,k=null -A.dd(a,!0) -A.kX(a) -s=l.a.c -r=A.t(t.u,t.xR) -q=A.c_(a,B.lm) -p=q==null?k:q.cx -q=new A.aHY(l,s) -r.m(0,B.id,new A.cK(new A.aHL(l),new A.aHM(l,new A.aHV(l,q,a),new A.aHX(l,q,a),new A.aHT(l,q),new A.aHU(l,q),new A.aHR(l,a),new A.aHS(l,a),new A.aHP(l),new A.aHQ(l),p),t.UO)) -o=l.a -n=o.e -m=o.p1 -return A.xz(B.b3,A.ie(new A.j5(o.f,r,m,!1,k),n,k,new A.aHN(l,s),new A.aHO(l,s),k),!1,k,!0,k,k,k,new A.aHW(l,q),k,k)}} -A.aHY.prototype={ -$1(a){var s,r=this,q=r.b,p=q.a.q(0,a),o=q.b.q(0,a) -if(p&&o){q=r.a -s=!q.d -q.d=s -q.a.d.$1(s) -return}if(p){q=r.a -q.a.d.$1(!0) -q.d=!0}else if(o){q=r.a -q.a.d.$1(!1) -q.d=!1}}, -$S:651} -A.aHV.prototype={ -$1(a){var s,r -this.b.$1(B.Ir) -s=this.a -r=s.Aq(this.c,a.a) -s.a.x.$1(A.aZH(a,r))}, -$S:16} -A.aHT.prototype={ -$0(){this.b.$1(B.om) -var s=this.a.a.r -if(s!=null)s.$0()}, -$S:0} -A.aHW.prototype={ -$1(a){this.b.$1(B.on) -this.a.a.toString}, -$S:52} -A.aHR.prototype={ -$1(a){var s=this.a,r=s.Aq(this.b,a.a) -s.a.as.$1(A.aZH(a,r))}, -$S:16} -A.aHS.prototype={ -$1(a){var s=this.a,r=s.Aq(this.b,a.a) -s.a.at.$1(A.aZI(a,r))}, -$S:29} -A.aHQ.prototype={ -$0(){this.a.a.ax.$0()}, -$S:0} -A.aHP.prototype={ -$0(){this.a.a.toString}, -$S:0} -A.aHX.prototype={ -$1(a){var s,r -this.b.$1(B.Is) -s=this.a -r=s.Aq(this.c,a.a) -s.a.y.$1(A.aZI(a,r))}, -$S:29} -A.aHU.prototype={ -$0(){this.b.$1(B.It) -this.a.a.z.$0()}, -$S:0} -A.aHL.prototype={ -$0(){var s=this.a -s.a.toString -return A.FP(s,-1,null)}, -$S:89} -A.aHM.prototype={ -$1(a){var s=this -a.n=s.b -a.U=s.c -a.a0=s.d -a.a5=s.e -a.L=s.f -a.P=s.r -a.au=s.w -a.ao=s.x -a.b=s.y -s.a.a.toString -a.c=null}, -$S:88} -A.aHN.prototype={ -$1(a){var s=this.a -s.d=!0 -s.a.d.$1(!0)}, -$S:43} -A.aHO.prototype={ -$1(a){var s=this.a -s.d=!1 -s.a.d.$1(!1)}, -$S:34} -A.D_.prototype={ -jF(a8,a9){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6=this,a7=a6.dI -if(a7.a===0)return -A.qj(a9) -s=a6.cg.a.get(a9) -if(s==null)return -r=a6.ahC(a7,s.a) -q=t.kt -p=A.aXU(r,r.gSF(),A.n(r).c,q).PK() -q=A.aU(q) -for(r=p.gai(p),o=a6.bX;r.v();){n=r.gT() -m=n.ci -if(m==null)q.G(0,n) -else{n=o.h(0,m) -n.toString -q.a_(0,n)}}l=a7.fY(q) -for(a7=l.gai(l);a7.v();){r=a7.gT().fk -if(r!=null){o=a8.gog() -n=a8.gja() -m=a8.gbM() -k=a8.giX() -j=a8.gbV() -i=a8.gm1() -h=a8.ge7() -a8.gpV() -g=a8.gtb() -f=a8.gq1() -e=a8.gd3() -d=a8.gvK() -c=a8.gC() -b=a8.gwN() -a=a8.gwQ() -a0=a8.gwP() -a1=a8.gwO() -a2=a8.gmr() -a3=a8.gwY() -a4=a8.grC() -a5=a8.goG() -r.$1(A.aXk(h,i,k,e,d,a4,a8.gJM(),B.aC,!1,a2,m,j,f,g,b,a1,a0,a,c,a5,a3,n,o))}}for(a7=A.cl(q,q.r,q.$ti.c),r=a7.$ti.c;a7.v();){q=a7.d -q=(q==null?r.a(q):q).fE -if(q!=null){o=a8.gog() -n=a8.gja() -m=a8.gbM() -k=a8.giX() -j=a8.gbV() -i=a8.gm1() -h=a8.ge7() -a8.gpV() -g=a8.gtb() -f=a8.gq1() -e=a8.gd3() -d=a8.gvK() -c=a8.gC() -b=a8.gwN() -a=a8.gwQ() -a0=a8.gwP() -a1=a8.gwO() -a2=a8.gmr() -a3=a8.gwY() -a4=a8.grC() -a5=a8.goG() -q.$1(A.aXj(h,i,k,e,d,a4,a8.gJM(),B.aC,!1,a2,m,j,f,g,b,a1,a0,a,c,a5,a3,n,o))}}}, -cT(a,b){var s,r,q=this -if(!q.gC().q(0,b))return!1 -s=q.da(a,b)||q.D===B.aG -if(s){r=new A.lI(b,q) -q.cg.m(0,r,a) -a.G(0,r)}return s}, -Da(a){var s,r -this.dI.J(0,a) -s=a.ci -if(s!=null){r=this.bX -r.h(0,s).J(0,a) -if(r.h(0,a.ci).a===0)r.J(0,a.ci)}}, -ahC(a,b){var s,r,q,p,o=A.aU(t.zE) -for(s=b.length,r=this.dI,q=0;q"))}} -A.avf.prototype={ -$1(a){return B.c.c8(a,this.a)}, -$S:26} -A.aNw.prototype={ -$1(a){return!0}, -$S:26} -A.aQ.prototype={} -A.X.prototype={ -ga2z(){var s=this.r -s.toString -return s}, -a2(a){return this.ga2z().$1(a)}} -A.MI.prototype={ -k(a){return"BaseAppLocale{languageCode: "+this.c+", scriptCode: null, countryCode: null}"}} -A.avK.prototype={ -gH(a){return this.c.length}, -gav_(){return this.b.length}, -a8w(a,b){var s,r,q,p,o,n,m,l,k -for(s=this.c,r=s.length,q=a.a,p=s.$flags|0,o=q.length,n=this.b,m=0;m=o||q.charCodeAt(k)!==10)l=10}if(l===10)n.push(m+1)}}, -tF(a){var s,r=this -if(a<0)throw A.i(A.fu("Offset may not be negative, was "+a+".")) -else if(a>r.c.length)throw A.i(A.fu("Offset "+a+u.D+r.gH(0)+".")) -s=r.b -if(a=B.b.gaC(s))return s.length-1 -if(r.agT(a)){s=r.d -s.toString -return s}return r.d=r.a9l(a)-1}, -agT(a){var s,r,q=this.d -if(q==null)return!1 -s=this.b -if(a=r-1||a=r-2||aa)p=r -else s=r+1}return p}, -Dq(a){var s,r,q=this -if(a<0)throw A.i(A.fu("Offset may not be negative, was "+a+".")) -else if(a>q.c.length)throw A.i(A.fu("Offset "+a+" must be not be greater than the number of characters in the file, "+q.gH(0)+".")) -s=q.tF(a) -r=q.b[s] -if(r>a)throw A.i(A.fu("Line "+s+" comes after offset "+a+".")) -return a-r}, -on(a){var s,r,q,p -if(a<0)throw A.i(A.fu("Line may not be negative, was "+a+".")) -else{s=this.b -r=s.length -if(a>=r)throw A.i(A.fu("Line "+a+" must be less than the number of lines in the file, "+this.gav_()+"."))}q=s[a] -if(q<=this.c.length){p=a+1 -s=p=s[p]}else s=!0 -if(s)throw A.i(A.fu("Line "+a+" doesn't have 0 columns.")) -return q}} -A.Qh.prototype={ -gdF(){return this.a.a}, -gef(){return this.a.tF(this.b)}, -geY(){return this.a.Dq(this.b)}, -gcU(){return this.b}} -A.yk.prototype={ -gdF(){return this.a.a}, -gH(a){return this.c-this.b}, -gcq(){return A.aQM(this.a,this.b)}, -gc4(){return A.aQM(this.a,this.c)}, -gde(){return A.oO(B.ko.d1(this.a.c,this.b,this.c),0,null)}, -ghE(){var s=this,r=s.a,q=s.c,p=r.tF(q) -if(r.Dq(q)===0&&p!==0){if(q-s.b===0)return p===r.b.length-1?"":A.oO(B.ko.d1(r.c,r.on(p),r.on(p+1)),0,null)}else q=p===r.b.length-1?r.c.length:r.on(p+1) -return A.oO(B.ko.d1(r.c,r.on(r.tF(s.b)),q),0,null)}, -bt(a,b){var s -if(!(b instanceof A.yk))return this.a5Y(0,b) -s=B.j.bt(this.b,b.b) -return s===0?B.j.bt(this.c,b.c):s}, -j(a,b){var s=this -if(b==null)return!1 -if(!(b instanceof A.yk))return s.a5X(0,b) -return s.b===b.b&&s.c===b.c&&J.b(s.a.a,b.a.a)}, -gt(a){return A.N(this.b,this.c,this.a.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, -$imR:1} -A.aju.prototype={ -atR(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0=null,a1=a.a -a.Wj(B.b.gad(a1).c) -s=a.e -r=A.bO(s,a0,!1,t.Xk) -for(q=a.r,s=s!==0,p=a.b,o=0;o0){m=a1[o-1] -l=n.c -if(!J.b(m.c,l)){a.zK("\u2575") -q.a+="\n" -a.Wj(l)}else if(m.b+1!==n.b){a.anX("...") -q.a+="\n"}}for(l=n.d,k=A.a6(l).i("cu<1>"),j=new A.cu(l,k),j=new A.bf(j,j.gH(0),k.i("bf")),k=k.i("aE.E"),i=n.b,h=n.a;j.v();){g=j.d -if(g==null)g=k.a(g) -f=g.a -if(f.gcq().gef()!==f.gc4().gef()&&f.gcq().gef()===i&&a.agU(B.c.a6(h,0,f.gcq().geY()))){e=B.b.ik(r,a0) -if(e<0)A.a0(A.c1(A.j(r)+" contains no null elements.",a0)) -r[e]=g}}a.anW(i) -q.a+=" " -a.anV(n,r) -if(s)q.a+=" " -d=B.b.auh(l,new A.ajP()) -c=d===-1?a0:l[d] -k=c!=null -if(k){j=c.a -g=j.gcq().gef()===i?j.gcq().geY():0 -a.anT(h,g,j.gc4().gef()===i?j.gc4().geY():h.length,p)}else a.zM(h) -q.a+="\n" -if(k)a.anU(n,c,r) -for(l=l.length,b=0;b")),q=this.r,r=r.i("aX.E");s.v();){p=s.d -if(p==null)p=r.a(p) -if(p===9)q.a+=B.c.ak(" ",4) -else{p=A.eV(p) -q.a+=p}}}, -zL(a,b,c){var s={} -s.a=c -if(b!=null)s.a=B.j.k(b+1) -this.jj(new A.ajN(s,this,a),"\x1b[34m")}, -zK(a){return this.zL(a,null,null)}, -anX(a){return this.zL(null,null,a)}, -anW(a){return this.zL(null,a,null)}, -I7(){return this.zL(null,null,null)}, -Fk(a){var s,r,q,p -for(s=new A.hW(a),r=t.Hz,s=new A.bf(s,s.gH(0),r.i("bf")),r=r.i("aX.E"),q=0;s.v();){p=s.d -if((p==null?r.a(p):p)===9)++q}return q}, -agU(a){var s,r,q -for(s=new A.hW(a),r=t.Hz,s=new A.bf(s,s.gH(0),r.i("bf")),r=r.i("aX.E");s.v();){q=s.d -if(q==null)q=r.a(q) -if(q!==32&&q!==9)return!1}return!0}, -aaq(a,b){var s,r=this.b!=null -if(r&&b!=null)this.r.a+=b -s=a.$0() -if(r&&b!=null)this.r.a+="\x1b[0m" -return s}, -jj(a,b){return this.aaq(a,b,t.z)}} -A.ajO.prototype={ -$0(){return this.a}, -$S:653} -A.ajw.prototype={ -$1(a){var s=a.d -return new A.b1(s,new A.ajv(),A.a6(s).i("b1<1>")).gH(0)}, -$S:654} -A.ajv.prototype={ -$1(a){var s=a.a -return s.gcq().gef()!==s.gc4().gef()}, -$S:107} -A.ajx.prototype={ -$1(a){return a.c}, -$S:656} -A.ajz.prototype={ -$1(a){var s=a.a.gdF() -return s==null?new A.Q():s}, -$S:657} -A.ajA.prototype={ -$2(a,b){return a.a.bt(0,b.a)}, -$S:658} -A.ajB.prototype={ -$1(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=a.a,c=a.b,b=A.c([],t.Kx) -for(s=J.d5(c),r=s.gai(c),q=t._Y;r.v();){p=r.gT().a -o=p.ghE() -n=A.aOW(o,p.gde(),p.gcq().geY()) -n.toString -m=B.c.rg("\n",B.c.a6(o,0,n)).gH(0) -l=p.gcq().gef()-m -for(p=o.split("\n"),n=p.length,k=0;kB.b.gaC(b).b)b.push(new A.kg(j,l,d,A.c([],q)));++l}}i=A.c([],q) -for(r=b.length,h=i.$flags|0,g=0,k=0;k")),n=j.b,p=p.i("aE.E");q.v();){e=q.d -if(e==null)e=p.a(e) -if(e.a.gcq().gef()>n)break -i.push(e)}g+=i.length-f -B.b.a_(j.d,i)}return b}, -$S:659} -A.ajy.prototype={ -$1(a){return a.a.gc4().gef()" -return null}, -$S:0} -A.ajJ.prototype={ -$0(){var s=this.a.r,r=this.b===this.c.b?"\u250c":"\u2514" -s.a+=r}, -$S:13} -A.ajK.prototype={ -$0(){var s=this.a.r,r=this.b==null?"\u2500":"\u253c" -s.a+=r}, -$S:13} -A.ajL.prototype={ -$0(){this.a.r.a+="\u2500" -return null}, -$S:0} -A.ajM.prototype={ -$0(){var s,r,q=this,p=q.a,o=p.a?"\u253c":"\u2502" -if(q.c!=null)q.b.r.a+=o -else{s=q.e -r=s.b -if(q.d===r){s=q.b -s.jj(new A.ajH(p,s),p.b) -p.a=!0 -if(p.b==null)p.b=s.b}else{s=q.r===r&&q.f.a.gc4().geY()===s.a.length -r=q.b -if(s)r.r.a+="\u2514" -else r.jj(new A.ajI(r,o),p.b)}}}, -$S:13} -A.ajH.prototype={ -$0(){var s=this.b.r,r=this.a.a?"\u252c":"\u250c" -s.a+=r}, -$S:13} -A.ajI.prototype={ -$0(){this.a.r.a+=this.b}, -$S:13} -A.ajD.prototype={ -$0(){var s=this -return s.a.zM(B.c.a6(s.b,s.c,s.d))}, -$S:0} -A.ajE.prototype={ -$0(){var s,r,q=this.a,p=q.r,o=p.a,n=this.c.a,m=n.gcq().geY(),l=n.gc4().geY() -n=this.b.a -s=q.Fk(B.c.a6(n,0,m)) -r=q.Fk(B.c.a6(n,m,l)) -m+=s*3 -n=(p.a+=B.c.ak(" ",m))+B.c.ak("^",Math.max(l+(s+r)*3-m,1)) -p.a=n -return n.length-o.length}, -$S:64} -A.ajF.prototype={ -$0(){return this.a.anS(this.b,this.c.a.gcq().geY())}, -$S:0} -A.ajG.prototype={ -$0(){var s=this,r=s.a,q=r.r,p=q.a -if(s.b)q.a=p+B.c.ak("\u2500",3) -else r.Wi(s.c,Math.max(s.d.a.gc4().geY()-1,0),!1) -return q.a.length-p.length}, -$S:64} -A.ajN.prototype={ -$0(){var s=this.b,r=s.r,q=this.a.a -if(q==null)q="" -s=B.c.awK(q,s.d) -s=r.a+=s -q=this.c -r.a=s+(q==null?"\u2502":q)}, -$S:13} -A.fQ.prototype={ -k(a){var s=this.a -s="primary "+(""+s.gcq().gef()+":"+s.gcq().geY()+"-"+s.gc4().gef()+":"+s.gc4().geY()) -return s.charCodeAt(0)==0?s:s}} -A.aCR.prototype={ -$0(){var s,r,q,p,o=this.a -if(!(t.Bb.b(o)&&A.aOW(o.ghE(),o.gde(),o.gcq().geY())!=null)){s=A.Yk(o.gcq().gcU(),0,0,o.gdF()) -r=o.gc4().gcU() -q=o.gdF() -p=A.bjz(o.gde(),10) -o=A.avL(s,A.Yk(r,A.b_B(o.gde()),p,q),o.gde(),o.gde())}return A.bdb(A.bdd(A.bdc(o)))}, -$S:660} -A.kg.prototype={ -k(a){return""+this.b+': "'+this.a+'" ('+B.b.bJ(this.d,", ")+")"}} -A.k4.prototype={ -Jy(a){var s=this.a -if(!J.b(s,a.gdF()))throw A.i(A.c1('Source URLs "'+A.j(s)+'" and "'+A.j(a.gdF())+"\" don't match.",null)) -return Math.abs(this.b-a.gcU())}, -bt(a,b){var s=this.a -if(!J.b(s,b.gdF()))throw A.i(A.c1('Source URLs "'+A.j(s)+'" and "'+A.j(b.gdF())+"\" don't match.",null)) -return this.b-b.gcU()}, -j(a,b){if(b==null)return!1 -return t.y3.b(b)&&J.b(this.a,b.gdF())&&this.b===b.gcU()}, -gt(a){var s=this.a -s=s==null?null:s.gt(s) -if(s==null)s=0 -return s+this.b}, -k(a){var s=this,r=A.l(s).k(0),q=s.a -return"<"+r+": "+s.b+" "+(A.j(q==null?"unknown source":q)+":"+(s.c+1)+":"+(s.d+1))+">"}, -$icn:1, -gdF(){return this.a}, -gcU(){return this.b}, -gef(){return this.c}, -geY(){return this.d}} -A.Yl.prototype={ -Jy(a){if(!J.b(this.a.a,a.gdF()))throw A.i(A.c1('Source URLs "'+A.j(this.gdF())+'" and "'+A.j(a.gdF())+"\" don't match.",null)) -return Math.abs(this.b-a.gcU())}, -bt(a,b){if(!J.b(this.a.a,b.gdF()))throw A.i(A.c1('Source URLs "'+A.j(this.gdF())+'" and "'+A.j(b.gdF())+"\" don't match.",null)) -return this.b-b.gcU()}, -j(a,b){if(b==null)return!1 -return t.y3.b(b)&&J.b(this.a.a,b.gdF())&&this.b===b.gcU()}, -gt(a){var s=this.a.a -s=s==null?null:s.gt(s) -if(s==null)s=0 -return s+this.b}, -k(a){var s=A.l(this).k(0),r=this.b,q=this.a,p=q.a -return"<"+s+": "+r+" "+(A.j(p==null?"unknown source":p)+":"+(q.tF(r)+1)+":"+(q.Dq(r)+1))+">"}, -$icn:1, -$ik4:1} -A.Yn.prototype={ -a8x(a,b,c){var s,r=this.b,q=this.a -if(!J.b(r.gdF(),q.gdF()))throw A.i(A.c1('Source URLs "'+A.j(q.gdF())+'" and "'+A.j(r.gdF())+"\" don't match.",null)) -else if(r.gcU()'}, -$icn:1} -A.mR.prototype={ -ghE(){return this.d}} -A.Yw.prototype={ -gxH(){return A.c7(this.c)}} -A.awa.prototype={ -gKZ(){var s=this -if(s.c!==s.e)s.d=null -return s.d}, -DB(a){var s,r=this,q=r.d=J.aUE(a,r.b,r.c) -r.e=r.c -s=q!=null -if(s)r.e=r.c=q.gc4() -return s}, -YT(a,b){var s -if(this.DB(a))return -if(b==null)if(a instanceof A.vS)b="/"+a.a+"/" -else{s=J.cB(a) -s=A.nu(s,"\\","\\\\") -b='"'+A.nu(s,'"','\\"')+'"'}this.QF(b)}, -vR(a){return this.YT(a,null)}, -as2(){if(this.c===this.b.length)return -this.QF("no more input")}, -arW(a,b,c){var s,r,q,p,o,n=this.b -if(c<0)A.a0(A.fu("position must be greater than or equal to 0.")) -else if(c>n.length)A.a0(A.fu("position must be less than or equal to the string length.")) -s=c+b>n.length -if(s)A.a0(A.fu("position plus length must not go beyond the end of the string.")) -s=this.a -r=A.c([0],t.t) -q=n.length -p=new A.avK(s,r,new Uint32Array(q)) -p.a8w(new A.hW(n),s) -o=c+b -if(o>q)A.a0(A.fu("End "+o+u.D+p.gH(0)+".")) -else if(c<0)A.a0(A.fu("Start may not be negative, was "+c+".")) -throw A.i(new A.Yw(n,a,new A.yk(p,c,o)))}, -QF(a){this.arW("expected "+a+".",0,this.c)}} -A.r7.prototype={ -dl(a){var s=a.a,r=this.a,q=s[8] -r.$flags&2&&A.az(r) -r[8]=q -r[7]=s[7] -r[6]=s[6] -r[5]=s[5] -r[4]=s[4] -r[3]=s[3] -r[2]=s[2] -r[1]=s[1] -r[0]=s[0]}, -k(a){return"[0] "+this.mN(0).k(0)+"\n[1] "+this.mN(1).k(0)+"\n[2] "+this.mN(2).k(0)+"\n"}, -h(a,b){return this.a[b]}, -m(a,b,c){var s=this.a -s.$flags&2&&A.az(s) -s[b]=c}, -j(a,b){var s,r,q -if(b==null)return!1 -if(b instanceof A.r7){s=this.a -r=s[0] -q=b.a -s=r===q[0]&&s[1]===q[1]&&s[2]===q[2]&&s[3]===q[3]&&s[4]===q[4]&&s[5]===q[5]&&s[6]===q[6]&&s[7]===q[7]&&s[8]===q[8]}else s=!1 -return s}, -gt(a){return A.bh(this.a)}, -mN(a){var s=new Float64Array(3),r=this.a -s[0]=r[a] -s[1]=r[3+a] -s[2]=r[6+a] -return new A.fd(s)}, -ak(a,b){var s=new Float64Array(9),r=new A.r7(s) -r.dl(this) -s[0]=s[0]*b -s[1]=s[1]*b -s[2]=s[2]*b -s[3]=s[3]*b -s[4]=s[4]*b -s[5]=s[5]*b -s[6]=s[6]*b -s[7]=s[7]*b -s[8]=s[8]*b -return r}, -a8(a,b){var s,r=new Float64Array(9),q=new A.r7(r) -q.dl(this) -s=b.a -r[0]=r[0]+s[0] -r[1]=r[1]+s[1] -r[2]=r[2]+s[2] -r[3]=r[3]+s[3] -r[4]=r[4]+s[4] -r[5]=r[5]+s[5] -r[6]=r[6]+s[6] -r[7]=r[7]+s[7] -r[8]=r[8]+s[8] -return q}, -ac(a,b){var s,r=new Float64Array(9),q=new A.r7(r) -q.dl(this) -s=b.a -r[0]=r[0]-s[0] -r[1]=r[1]-s[1] -r[2]=r[2]-s[2] -r[3]=r[3]-s[3] -r[4]=r[4]-s[4] -r[5]=r[5]-s[5] -r[6]=r[6]-s[6] -r[7]=r[7]-s[7] -r[8]=r[8]-s[8] -return q}} -A.bc.prototype={ -dl(a){var s=a.a,r=this.a,q=s[15] -r.$flags&2&&A.az(r) -r[15]=q -r[14]=s[14] -r[13]=s[13] -r[12]=s[12] -r[11]=s[11] -r[10]=s[10] -r[9]=s[9] -r[8]=s[8] -r[7]=s[7] -r[6]=s[6] -r[5]=s[5] -r[4]=s[4] -r[3]=s[3] -r[2]=s[2] -r[1]=s[1] -r[0]=s[0]}, -k(a){var s=this -return"[0] "+s.mN(0).k(0)+"\n[1] "+s.mN(1).k(0)+"\n[2] "+s.mN(2).k(0)+"\n[3] "+s.mN(3).k(0)+"\n"}, -h(a,b){return this.a[b]}, -m(a,b,c){var s=this.a -s.$flags&2&&A.az(s) -s[b]=c}, -j(a,b){var s,r,q -if(b==null)return!1 -if(b instanceof A.bc){s=this.a -r=s[0] -q=b.a -s=r===q[0]&&s[1]===q[1]&&s[2]===q[2]&&s[3]===q[3]&&s[4]===q[4]&&s[5]===q[5]&&s[6]===q[6]&&s[7]===q[7]&&s[8]===q[8]&&s[9]===q[9]&&s[10]===q[10]&&s[11]===q[11]&&s[12]===q[12]&&s[13]===q[13]&&s[14]===q[14]&&s[15]===q[15]}else s=!1 -return s}, -gt(a){return A.bh(this.a)}, -mN(a){var s=new Float64Array(4),r=this.a -s[0]=r[a] -s[1]=r[4+a] -s[2]=r[8+a] -s[3]=r[12+a] -return new A.n3(s)}, -ak(a,b){var s=new A.bc(new Float64Array(16)) -s.dl(this) -s.oq(b,b,b,1) -return s}, -a8(a,b){var s,r=new Float64Array(16),q=new A.bc(r) -q.dl(this) -s=b.a -r[0]=r[0]+s[0] -r[1]=r[1]+s[1] -r[2]=r[2]+s[2] -r[3]=r[3]+s[3] -r[4]=r[4]+s[4] -r[5]=r[5]+s[5] -r[6]=r[6]+s[6] -r[7]=r[7]+s[7] -r[8]=r[8]+s[8] -r[9]=r[9]+s[9] -r[10]=r[10]+s[10] -r[11]=r[11]+s[11] -r[12]=r[12]+s[12] -r[13]=r[13]+s[13] -r[14]=r[14]+s[14] -r[15]=r[15]+s[15] -return q}, -ac(a,b){var s,r=new Float64Array(16),q=new A.bc(r) -q.dl(this) -s=b.a -r[0]=r[0]-s[0] -r[1]=r[1]-s[1] -r[2]=r[2]-s[2] -r[3]=r[3]-s[3] -r[4]=r[4]-s[4] -r[5]=r[5]-s[5] -r[6]=r[6]-s[6] -r[7]=r[7]-s[7] -r[8]=r[8]-s[8] -r[9]=r[9]-s[9] -r[10]=r[10]-s[10] -r[11]=r[11]-s[11] -r[12]=r[12]-s[12] -r[13]=r[13]-s[13] -r[14]=r[14]-s[14] -r[15]=r[15]-s[15] -return q}, -eh(a,b,c,d){var s=this.a,r=s[0],q=s[4],p=s[8],o=s[12] -s.$flags&2&&A.az(s) -s[12]=r*a+q*b+p*c+o*d -s[13]=s[1]*a+s[5]*b+s[9]*c+s[13]*d -s[14]=s[2]*a+s[6]*b+s[10]*c+s[14]*d -s[15]=s[3]*a+s[7]*b+s[11]*c+s[15]*d}, -a1l(a){var s=Math.cos(a),r=Math.sin(a),q=this.a,p=q[0],o=q[4],n=q[1],m=q[5],l=q[2],k=q[6],j=q[3],i=q[7],h=-r -q.$flags&2&&A.az(q) -q[0]=p*s+o*r -q[1]=n*s+m*r -q[2]=l*s+k*r -q[3]=j*s+i*r -q[4]=p*h+o*s -q[5]=n*h+m*s -q[6]=l*h+k*s -q[7]=j*h+i*s}, -oq(a,b,c,d){var s=this.a,r=s[0] -s.$flags&2&&A.az(s) -s[0]=r*a -s[1]=s[1]*a -s[2]=s[2]*a -s[3]=s[3]*a -s[4]=s[4]*b -s[5]=s[5]*b -s[6]=s[6]*b -s[7]=s[7]*b -s[8]=s[8]*c -s[9]=s[9]*c -s[10]=s[10]*c -s[11]=s[11]*c -s[12]=s[12]*d -s[13]=s[13]*d -s[14]=s[14]*d -s[15]=s[15]*d}, -Nv(){var s=this.a -s.$flags&2&&A.az(s) -s[0]=0 -s[1]=0 -s[2]=0 -s[3]=0 -s[4]=0 -s[5]=0 -s[6]=0 -s[7]=0 -s[8]=0 -s[9]=0 -s[10]=0 -s[11]=0 -s[12]=0 -s[13]=0 -s[14]=0 -s[15]=0}, -ei(){var s=this.a -s.$flags&2&&A.az(s) -s[0]=1 -s[1]=0 -s[2]=0 -s[3]=0 -s[4]=0 -s[5]=1 -s[6]=0 -s[7]=0 -s[8]=0 -s[9]=0 -s[10]=1 -s[11]=0 -s[12]=0 -s[13]=0 -s[14]=0 -s[15]=1}, -Jl(){var s=this.a,r=s[0],q=s[5],p=s[1],o=s[4],n=r*q-p*o,m=s[6],l=s[2],k=r*m-l*o,j=s[7],i=s[3],h=r*j-i*o,g=p*m-l*q,f=p*j-i*q,e=l*j-i*m -m=s[8] -i=s[9] -j=s[10] -l=s[11] -return-(i*e-j*f+l*g)*s[12]+(m*e-j*h+l*k)*s[13]-(m*f-i*h+l*n)*s[14]+(m*g-i*k+j*n)*s[15]}, -ia(b5){var s,r,q,p,o=b5.a,n=o[0],m=o[1],l=o[2],k=o[3],j=o[4],i=o[5],h=o[6],g=o[7],f=o[8],e=o[9],d=o[10],c=o[11],b=o[12],a=o[13],a0=o[14],a1=o[15],a2=n*i-m*j,a3=n*h-l*j,a4=n*g-k*j,a5=m*h-l*i,a6=m*g-k*i,a7=l*g-k*h,a8=f*a-e*b,a9=f*a0-d*b,b0=f*a1-c*b,b1=e*a0-d*a,b2=e*a1-c*a,b3=d*a1-c*a0,b4=a2*b3-a3*b2+a4*b1+a5*b0-a6*a9+a7*a8 -if(b4===0){this.dl(b5) -return 0}s=1/b4 -r=this.a -r.$flags&2&&A.az(r) -r[0]=(i*b3-h*b2+g*b1)*s -r[1]=(-m*b3+l*b2-k*b1)*s -r[2]=(a*a7-a0*a6+a1*a5)*s -r[3]=(-e*a7+d*a6-c*a5)*s -q=-j -r[4]=(q*b3+h*b0-g*a9)*s -r[5]=(n*b3-l*b0+k*a9)*s -p=-b -r[6]=(p*a7+a0*a4-a1*a3)*s -r[7]=(f*a7-d*a4+c*a3)*s -r[8]=(j*b2-i*b0+g*a8)*s -r[9]=(-n*b2+m*b0-k*a8)*s -r[10]=(b*a6-a*a4+a1*a2)*s -r[11]=(-f*a6+e*a4-c*a2)*s -r[12]=(q*b1+i*a9-h*a8)*s -r[13]=(n*b1-m*a9+l*a8)*s -r[14]=(p*a5+a*a3-a0*a2)*s -r[15]=(f*a5-e*a3+d*a2)*s -return b4}, -f2(b5){var s=this.a,r=s[0],q=s[4],p=s[8],o=s[12],n=s[1],m=s[5],l=s[9],k=s[13],j=s[2],i=s[6],h=s[10],g=s[14],f=s[3],e=s[7],d=s[11],c=s[15],b=b5.a,a=b[0],a0=b[4],a1=b[8],a2=b[12],a3=b[1],a4=b[5],a5=b[9],a6=b[13],a7=b[2],a8=b[6],a9=b[10],b0=b[14],b1=b[3],b2=b[7],b3=b[11],b4=b[15] -s.$flags&2&&A.az(s) -s[0]=r*a+q*a3+p*a7+o*b1 -s[4]=r*a0+q*a4+p*a8+o*b2 -s[8]=r*a1+q*a5+p*a9+o*b3 -s[12]=r*a2+q*a6+p*b0+o*b4 -s[1]=n*a+m*a3+l*a7+k*b1 -s[5]=n*a0+m*a4+l*a8+k*b2 -s[9]=n*a1+m*a5+l*a9+k*b3 -s[13]=n*a2+m*a6+l*b0+k*b4 -s[2]=j*a+i*a3+h*a7+g*b1 -s[6]=j*a0+i*a4+h*a8+g*b2 -s[10]=j*a1+i*a5+h*a9+g*b3 -s[14]=j*a2+i*a6+h*b0+g*b4 -s[3]=f*a+e*a3+d*a7+c*b1 -s[7]=f*a0+e*a4+d*a8+c*b2 -s[11]=f*a1+e*a5+d*a9+c*b3 -s[15]=f*a2+e*a6+d*b0+c*b4}, -avP(a){var s=new A.bc(new Float64Array(16)) -s.dl(this) -s.f2(a) -return s}, -Yd(a0,a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=$.aWS -if(a==null)a=$.aWS=new A.fd(new Float64Array(3)) -s=this.a -a.lB(s[0],s[1],s[2]) -r=Math.sqrt(a.gwk()) -a.lB(s[4],s[5],s[6]) -q=Math.sqrt(a.gwk()) -a.lB(s[8],s[9],s[10]) -p=Math.sqrt(a.gwk()) -if(this.Jl()<0)r=-r -o=a0.a -n=s[12] -o.$flags&2&&A.az(o) -o[0]=n -o[1]=s[13] -o[2]=s[14] -m=1/r -l=1/q -k=1/p -j=$.aWQ -if(j==null)j=$.aWQ=new A.bc(new Float64Array(16)) -j.dl(this) -s=j.a -o=s[0] -s.$flags&2&&A.az(s) -s[0]=o*m -s[1]=s[1]*m -s[2]=s[2]*m -s[4]=s[4]*l -s[5]=s[5]*l -s[6]=s[6]*l -s[8]=s[8]*k -s[9]=s[9]*k -s[10]=s[10]*k -i=$.aWR -if(i==null)i=$.aWR=new A.r7(new Float64Array(9)) -h=i.a -o=s[0] -h.$flags&2&&A.az(h) -h[0]=o -h[1]=s[1] -h[2]=s[2] -h[3]=s[4] -h[4]=s[5] -h[5]=s[6] -h[6]=s[8] -h[7]=s[9] -h[8]=s[10] -s=h[0] -o=h[4] -n=h[8] -g=0+s+o+n -if(g>0){f=Math.sqrt(g+1) -s=a1.a -s.$flags&2&&A.az(s) -s[3]=f*0.5 -f=0.5/f -s[0]=(h[5]-h[7])*f -s[1]=(h[6]-h[2])*f -s[2]=(h[1]-h[3])*f}else{if(s)","~(iR)","Bj(em)","av<~>()","~(Q?)","~(K)","bv()","~(au)","e(v)","~(oP)","~(rr,h)","~(r)","K(nB,h)","~(vo)","fa(em)","~(bE)","U()","~(o)","K(au)","K(m)","K(Q?)","~(m)","~(mU)","bv(@)","tc(v)","R(A,R)","~(d9?)","~(ol)","~(i_)","~(hu)","L(A,al)","K(cY)","bv(b6)","bv(~)","aA(@)","~(eX)","~(ok)","~(eq,~())","R(A)","~(@)","K(kC)","e(v,e?)","m(m)","K(mi)","R()","~(mq)","K(h8)","~(ed)","m?(m?)","o(cY,cY)","~(Q,fx)","K()","q(bq)","~(qv)","~(~())","x?(bq)","K(iM)","o()","K(eX)","K(h3)","K(cM)","dS(bq)","K(o)","bv(Q,fx)","hG()","x(x)","nJ(v)","cr?(bU?)","~(io,mC)","h(h)","fV(@)","mZ(v,e?)","o(r,r)","o(o)","m(a4)","~(FK)","e(v)?(uA?)","m()","cZ(v)","~(rf)","av<@>(jQ)","~(hF)","hF()","b6(Q?)","o(Q?)","~(m,@)","eC(eC)","K(ez)","o(cM,cM)","~([be?])","av<~>(jQ)","Q?(Q?)","~({curve:fX,descendant:r?,duration:b5,rect:w?})","K(qr)","kK(cY,j0)","m(o)","~(R)","b6?(o)","K(yi)","bv(Q)","K(fQ)","bv(K)","~(Q?,Q?)","b6()","K(rV)","o(@,@)","K(hw)","@(@)","~(w1)","K(d4<@>)","lS(@)","e(v,nM)","~(hs,qf)","m(@)","K(Q?,Q?)","cr?(bU?)","~(h8)","av>()","m?(m)","e9(v,bT,e?)","A(o)","m(m?)","av([b6?])","bv(m)","Q(@)","hw()","~(hA<@>,rR)","m(m,Q?)","K(m,m)","o(m)","~(U)","aVH()","~(y2)","~(jw)","~(U,b6)","U()","x?(x?)","~(qB)","m(Q?)","K(t6)","DA?()","~(m?)","cr?(bU?)","o(ev,ev)","e(v,bq,e?)?(bU?)","~(jV)","K(hX)","av>>()","e?(v,bT,bT,K,e?)","K(m?)","K(aM)","~(FL)","~(FO)","~(FM)","~(w0)","~(CE)","bc(R)","n9()","o(eX,eX)","R(R,R)","~(FN)","R?(A,al,k8)","K(eX,R)","K(mY)","e(e?)","~(fK)","~(lR)","o(m?)","kc(bE)","jP(v)","lP(@)","nv(@)","aA<@>?(aA<@>?,@,aA<@>(@))","R(A,al)","R?()","jV()","~(i6)","i6()","b6([b6?])","~(Q?,m,m)","~(iF)","iF()","~(jO)","jO()","w(bc,w)","K(dQ<@>)","@()","ez(ez)","~(YU)","~(@,@)","ap(ap,K,hG)","m(r3)","~([b5?])","av<~>(@)","K(oa)","ba()","~(e1)","av(d9?)","U(kh)","K(Q,cM)","~(cM)","w()","~(U)","L(A)","~(h,A)","e(v,o)","R({from!R,to!R})","~(mN)","K(nB)","+boundaryEnd,boundaryStart(ap,ap)(ap)","r1(v)","~(ln)","e4(ed)","K(r)","al(A)","R?(+(al,k8))","~(aRP)","R(bq)","~(hb,j8?)","ex(v,R,e?)","K(i5)","m(R,R,m)","ps(v,bT,e?)","pr(v,bT,e?)","av()","bl(bq)","uR(U)","rJ(v,hn,e?)","~(nQ)","~(oB)","bl?(bq)","av<+(m,fG?)>()","w()?(A)","~(be?)","pK(b6)","K(nW?)","x(p3)","oA(v)","vN?(bU?)","~(A?)","K(dJ)","U()","o(kd,kd)","hk?(bU?)","W?(v,r0,cb)","K(i9)","~(L?)","K?(bU?)","tp(@)","b5?(bU?)","r4?(bU?)","n4?(bU?)","kF(v,bT,e?)","e(v,bT,bT,K,e?)","kQ?(fO)","e(v,ng,om?,om?)","~(lc)","uU()","K(od)","wf(v,e?)","lA(v,e?)","x?(bU?)","av<@>(o)","K(bq)","~(jD)","b8n?()","~(K?)","bT(K)","k7(bq)","dS?(bU?)","qL(v,e?)","oA(v,e?)","tI(dQ)","tE(@)","ny()","je()","aV>(Q,la<@>)","K(aV>)","h(xO)","kF(v,bT)","dh(dh,cj)","cj(cj)","K(cj)","m(cj)","K(R)","x(R)","bv(bv)","oe(cm)","w(cm)","rs(cm)","K(o,K)","nT?()","bv(U<@>)","o5(o5)","cr?(bU?)","m3(h,o)","L()","L(al)","cr?(bU?)","~(hb)","K(ma)","w(w?,eC)","bv(z,b6)","dS(kO)","~(kO,bc)","K(kO)","~(@,m,fx?,U?,U?)","cr?(bU?)","uT(rn)","~(@,m,fx?)","~(U{isMergeUp:K})","ed?(e4)","R(@)","U(U)","av()","bq?(e4)","bq(bq)","cr?(bU?)","K(ln)","x?()","+boundaryEnd,boundaryStart(ap,ap)(ap,m)","K(xj{crossAxisPosition!R,mainAxisPosition!R})","0^?(cr<0^>?(bU?))","0^?(0^?(bU?))","K(A)","R(nb)","uS(rk)","K(dc)","hx<0^>(jY,e(v))","~(jF?,xD?)","~(m,b6)","~(o,yo)","e(v{onPressed!~(),selectionOnTapEnabled!K,semanticsLabel!m})","~(U)","e(v{onPressed!~(),semanticsLabel!m,usesDefaultAlignment:K})","e(v{key!i3>,onPressed!~(),semanticsLabel!m})","@(@,m)","cM(nl)","wa(w?,w?)","av()","o(cM)","cM(o)","~(dJ)","~(d0,~(Q?))","av()","d9(d9?)","av(m)","av<~>([b6?])","av(m?)","aV(aV)","av<~>(d9?,~(d9?))","es(d9)","av>(@)","~(my)","bq(f)","q4(dr)","DI()","bv(~())","vk(dr)","nH(dr)","U()","U(U)","R(dA)","U<@>(m)","U(t3)","ba(fr)","bv(@,fx)","~(o,@)","~(bn)","~(mi)","lJ(Q?)","d4<@>?(jY)","d4<@>(jY)","~(Q[fx?])","qZ(v,e?)","K(vT)","bq<0^>()","uY(v)","~(@,Q?)","av(jQ)","nI(v)","av<~>(iR)","~(eR)","fY()","~(~(bE),bc?)","ba<~(bE),bc?>()","~(oU)","~(jX)","~(mH)","~(eW)","~(ahG)","~(jf)","Q?(ht)","cA(cA,tz)","~(z4)","xE(v)","~(mt)","~(cA)","K(cA?,cA)","cA(cA)","pZ(v,iG)","m(R)","~([cY?])","~(U)","K(Co)","~(ym)","eu?(j4)","tO<@,@>(e8<@>)","K(oV)","bq(ev)","U(hf)","U(v)","w(ev)","o(lk,lk)","U(ev,y)","K(ev)","o(u5,u5)","cY(u5)","K(j4)","ku(au)","au?(au)","Q?(o,au?)","jE()","~(jE)","R?(o)","~(oj)","yp()","m(du)","yP()","vv(m)","y9()","~({allowPlatformDefault:K})","~(ms)","~(mA)","~(jc,Q)","il(v,e?)","~(ne)","e(v,bT,vJ,v,v)","K(ne)","jP(v,e?)","m6(v)","au(o)","iT(e)","~(FG,@)","av<~>(~)","pO(@)","r8(@)","tC(@)","pL(@)","~(lM)","av<@>(yO)","ba(U<@>)","ba(ba)","bv(ba)","~(b6,U)","K(Q)","K(d4<@>?)","av(@)","K(oc)","~(mh)","0&()","iM(d4<@>)","aV>(@,@)","yK(v)","u9()","q({background:oe?,backgroundColor:x?,color:x?,decoration:l8?,decorationColor:x?,decorationStyle:oR?,decorationThickness:R?,fontFeatures:U?,fontSize:R?,fontStyle:qu?,fontWeight:fp?,foreground:oe?,height:R?,letterSpacing:R?,locale:md?,shadows:U?,textBaseline:k8?,textStyle:q?,wordSpacing:R?})","~(al)","uZ(v,e?)","e(v,+(L,bc,L))","K(mz)","bv(e1?)","~(eq)","cF(K)","K(pa)","ot(v,e?)","lA(v)","kF(v,e?)","qH(bE)","w2(bE)","~(e6,o)","rL?(lJ,m,m)","0&(m,o?)","e(v,iG)","e?(v,o)","o?(e,o)","bv(U<~>)","apt(apu)","kw(e6)","m(m,x)","~(h)","~(m,Q?)","~(hZ)","p4()","pp()","lo()","~(lo)","~(mr)","~(m,m?)","w(w)","K(w)","~(xg,be)","U()","be?()","v?()","bn?()","z0(v,iG)","rM()","au?()","fr(h1)","pj(v)","~(o,o,o)","qt(@)","rl()","~(FQ)","~(Rq)","U()","K(o,o)","~(y6)","tF({from:R?})","l6()","~(l6)","l7()","~(l7)","jJ()","~(jJ)","~([mU?])","~(oW)","~(op)","ug(v,mn)","fZ(e,e)","il(e,e)","kA(e,e)","cF()","cF()","~(m,ve)","cF()","lz(@)","ro(@)","hX(@)","pI(v,mX,e?)","mX(v)","y0(v)","w6(v)","xP(v)","uH(v)","vC(v)","eL(v)","ic(v)","hn(v)","x1(v,e?)","W(v,eL,e?)","W(v)","~({allowPlatformDefault!K})","~(Q?,m)","av<~>({force:K})","yg(e8)","K(lb)","lb()","bv(@,@)","kA(aV)","qy(v)","v9(v,o)","yu(v,o)","vA(@)","tu(v)","nJ(v,~(~()))","~(es)","k0(v,eL,e?)","~(m,U)","rK(v)","fI()","vr(v,eL,e?)","kr(v,eL,e?)","qa(v,o)","hl(v,o)","e(pc)","wS(v,eL,e?)","u4(aV)","il(aV)","kr(v,ic,e?)","qA(ba)","aV>(m,U)","oI(v,eL,e?)","r_(v)","e(v,hn,e?)","eB(v,o)","oI(v,ic,hn,e?)","~(hX)","av<~>(m,d9?,~(d9?)?)","K(~)","bv(m,m[Q?])","~(D3>)","CW()","~(m,m)","~(o,K(kC))","fY(o,o,o,o,o,o,o,K)","m?(ob)","m(ob)","rc()","~(Q)","av(m,ba)","av<~>(io,mC)","ea()","o(i4,i4)","~(A)","av<@>(@)","l1()","v3(v)","m6(v,bq,e?)","l_(v,K,e?)","xb(v)","K(oF)","ta(v,e?)","b5(U>)","b5(b5,eN<@>)","e(v,bT,bT,e)","vg(v,it)","kZ(v)","td(dQ)","aV(m,@)","K(cT,@>)","qw(v,kp,e?)","K(dr)","dL(v,K,e?)","l_(v,cA,e?)","th(v,e?)","qp(v)","@(Q)(~(hs,qf))","xq(v,K,e?)","dX(v,it)","kY(o,mY)","@(@)(~(hA<@>,rR))","dL(v,K,e?)","kY(v,XR?,e?)","@(@)(~(io,mC))","e(v,K,e?)","ib(v,R,e?)","ml(v,e?)","kr(v)","iT(v)","tn(@)","fL(fL?)","fw(fw?)","0^?(0^?,0^?)","~(h9)","rb(v,e?)","m?()","o(kg)","bv(fI,fI)","Q(kg)","Q(fQ)","o(fQ,fQ)","U(aV>)","mR()","m(m,m)","b6(o{params:Q?})","bv(Q?)","m(Q?{toEncodable:Q?(Q?)?})","o(cn<@>,cn<@>)","m(m{encoding:vs})","U()","U(m,U)","L?(L?,L?,R)","R?(dA?,dA?,R)","x?(x?,x?,R)","0^({context:au?,id!Q,parent!i7,dF>,render:r?,widget:e?})","K(o?)","av(es)","o(b6)","e(v,h,h,e)","~(c9{forceReport:K})","ds(m)","k5?(m)","R(R,R,R)","~(~)","e(v,bT)","K?(K?,K?,R)","0^?()","e(v,e)","dG?(dG?,dG?,R)","dh?(dh?,dh?,R)","q?(q?,q?,R)","o(Ko<@>,Ko<@>)","K({priority!o,scheduler!kW})","U(m)","~(cY{alignment:R?,alignmentPolicy:rX?,curve:fX?,duration:b5?})","o(au,au)","dw(dw?,dw?,R)","e?(v,r0,cb)","U>(jS,m)","o(e,o)","y()","~(e)","au(Q,e)","~(v,aZ?)","~()(Ra,ae?)","0^(0^,0^)","av<1^>(1^/(0^),0^{debugLabel:m?})","~(m?{wrapWidth:o?})","~(au(Q,e))","dS?(bq)","d1()"], -interceptorsByTag:null, -leafTags:null, -arrayRti:Symbol("$ti"), -rttc:{"2;":(a,b)=>c=>c instanceof A.an&&a.b(c.a)&&b.b(c.b),"2;boundaryEnd,boundaryStart":(a,b)=>c=>c instanceof A.a5h&&a.b(c.a)&&b.b(c.b),"2;end,start":(a,b)=>c=>c instanceof A.a5i&&a.b(c.a)&&b.b(c.b),"2;endGlyphHeight,startGlyphHeight":(a,b)=>c=>c instanceof A.IZ&&a.b(c.a)&&b.b(c.b),"2;key,value":(a,b)=>c=>c instanceof A.a5j&&a.b(c.a)&&b.b(c.b),"2;localPosition,paragraph":(a,b)=>c=>c instanceof A.a5k&&a.b(c.a)&&b.b(c.b),"2;representation,targetSize":(a,b)=>c=>c instanceof A.a5l&&a.b(c.a)&&b.b(c.b),"3;":(a,b,c)=>d=>d instanceof A.hL&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"3;ascent,bottomHeight,subtextHeight":(a,b,c)=>d=>d instanceof A.a5m&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"3;breaks,graphemes,words":(a,b,c)=>d=>d instanceof A.a5n&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"3;completer,recorder,scene":(a,b,c)=>d=>d instanceof A.J_&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"3;data,event,timeStamp":(a,b,c)=>d=>d instanceof A.J0&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"3;domSize,representation,targetSize":(a,b,c)=>d=>d instanceof A.a5o&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"3;large,medium,small":(a,b,c)=>d=>d instanceof A.a5p&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"4;domBlurListener,domFocusListener,element,semanticsNodeId":a=>b=>b instanceof A.J1&&A.b1X(a,b.a),"4;queue,started,target,timer":a=>b=>b instanceof A.J2&&A.b1X(a,b.a)}} -A.aW(v.typeUniverse,JSON.parse('{"fI":"o4","Uh":"o4","n1":"o4","bmV":"wj","uU":{"rs":[]},"uV":{"apt":[]},"uS":{"ap3":[]},"uT":{"Dq":[],"kw":[]},"rk":{"Ai":["b6"]},"rn":{"Ai":["b6"]},"e6":{"q_":[]},"rc":{"y3":[]},"rl":{"y3":[]},"rM":{"kw":[]},"Dq":{"kw":[]},"fG":{"cC":[]},"aZi":{"f2":[]},"kR":{"f2":[]},"akU":{"apu":[]},"aVH":{"rs":[]},"FV":{"kd":[]},"wt":{"kd":[]},"lT":{"ai2":[]},"Aq":{"Rq":[]},"Nb":{"kL":[]},"At":{"kL":[]},"Nc":{"kL":[]},"Ar":{"kL":[]},"Hc":{"kL":[]},"He":{"kL":[]},"Hd":{"kL":[]},"jB":{"oe":[]},"pU":{"akU":[],"apu":[]},"As":{"o5":[]},"Bv":{"kL":[]},"TU":{"mT":["ap3","rk"],"mT.C":"ap3"},"TW":{"mT":["Dq","rn"],"mT.C":"Dq"},"QO":{"aWg":[]},"QN":{"cx":[]},"QM":{"cx":[]},"tS":{"y":["1"],"y.E":"1"},"Qp":{"fG":[],"cC":[]},"BM":{"fG":[],"cC":[]},"BN":{"fG":[],"cC":[]},"AJ":{"f2":[]},"Vf":{"f2":[]},"ME":{"f2":[],"aUQ":[]},"Ni":{"f2":[],"aV5":[]},"Nm":{"f2":[],"aV7":[]},"Nk":{"f2":[],"aV6":[]},"TY":{"f2":[],"aX8":[]},"Gm":{"f2":[],"aSh":[]},"Do":{"f2":[],"aSh":[],"aX6":[]},"R5":{"f2":[],"aWi":[]},"ig":{"ec":[]},"d3":{"ec":[]},"NC":{"ec":[]},"Mv":{"ec":[]},"Mw":{"ec":[]},"fF":{"ec":[]},"lD":{"ec":[]},"fh":{"ec":[]},"uD":{"ec":[]},"Mk":{"ec":[]},"pW":{"ec":[]},"qV":{"rs":[],"aV9":[]},"wi":{"y":["jR"],"y.E":"jR"},"Uf":{"Es":[]},"VH":{"hC":[]},"An":{"hC":[]},"uO":{"hC":[]},"Qd":{"hC":[]},"qq":{"hC":[]},"Rp":{"hC":[]},"o7":{"hC":[]},"Vb":{"hC":[]},"VP":{"oz":[]},"VM":{"oz":[]},"VL":{"oz":[]},"rS":{"hC":[]},"VW":{"aRP":[]},"YD":{"hC":[]},"za":{"aX":["1"],"U":["1"],"aO":["1"],"y":["1"]},"a3j":{"za":["o"],"aX":["o"],"U":["o"],"aO":["o"],"y":["o"]},"YY":{"za":["o"],"aX":["o"],"U":["o"],"aO":["o"],"y":["o"],"aX.E":"o","y.E":"o"},"vu":{"o5":[]},"Q2":{"kd":[]},"oQ":{"qW":[]},"rt":{"qW":[]},"Br":{"oQ":[],"qW":[]},"ru":{"ws":[]},"tB":{"ws":[]},"N8":{"xw":[]},"Vg":{"xw":[]},"a2o":{"lT":[],"ai2":[]},"vt":{"lT":[],"ai2":[]},"z":{"U":["1"],"aO":["1"],"b6":[],"y":["1"],"fs":["1"],"y.E":"1"},"Cf":{"K":[],"cU":[]},"vR":{"bv":[],"cU":[]},"Ci":{"b6":[]},"o4":{"b6":[]},"Rh":{"Em":[]},"akt":{"z":["1"],"U":["1"],"aO":["1"],"b6":[],"y":["1"],"fs":["1"],"y.E":"1"},"o2":{"R":[],"dA":[],"cn":["dA"]},"vQ":{"R":[],"o":[],"dA":[],"cn":["dA"],"cU":[]},"Ch":{"R":[],"dA":[],"cn":["dA"],"cU":[]},"kH":{"m":[],"cn":["m"],"fs":["@"],"cU":[]},"ke":{"y":["2"]},"pR":{"ke":["1","2"],"y":["2"],"y.E":"2"},"HL":{"pR":["1","2"],"ke":["1","2"],"aO":["2"],"y":["2"],"y.E":"2"},"H9":{"aX":["2"],"U":["2"],"ke":["1","2"],"aO":["2"],"y":["2"]},"fk":{"H9":["1","2"],"aX":["2"],"U":["2"],"ke":["1","2"],"aO":["2"],"y":["2"],"aX.E":"2","y.E":"2"},"lL":{"bq":["2"],"ke":["1","2"],"aO":["2"],"y":["2"],"y.E":"2"},"pS":{"bz":["3","4"],"ba":["3","4"],"bz.V":"4","bz.K":"3"},"lK":{"ke":["1","2"],"aO":["2"],"y":["2"],"y.E":"2"},"jM":{"cC":[]},"hW":{"aX":["o"],"U":["o"],"aO":["o"],"y":["o"],"aX.E":"o","y.E":"o"},"aO":{"y":["1"]},"aE":{"aO":["1"],"y":["1"]},"iz":{"aE":["1"],"aO":["1"],"y":["1"],"y.E":"1","aE.E":"1"},"h6":{"y":["2"],"y.E":"2"},"qe":{"h6":["1","2"],"aO":["2"],"y":["2"],"y.E":"2"},"am":{"aE":["2"],"aO":["2"],"y":["2"],"y.E":"2","aE.E":"2"},"b1":{"y":["1"],"y.E":"1"},"fo":{"y":["2"],"y.E":"2"},"tx":{"y":["1"],"y.E":"1"},"Bp":{"tx":["1"],"aO":["1"],"y":["1"],"y.E":"1"},"mM":{"y":["1"],"y.E":"1"},"vq":{"mM":["1"],"aO":["1"],"y":["1"],"y.E":"1"},"Fo":{"y":["1"],"y.E":"1"},"i0":{"aO":["1"],"y":["1"],"y.E":"1"},"m0":{"y":["1"],"y.E":"1"},"Bo":{"m0":["1"],"aO":["1"],"y":["1"],"y.E":"1"},"cN":{"y":["1"],"y.E":"1"},"m8":{"y":["+(o,1)"],"y.E":"+(o,1)"},"qd":{"m8":["1"],"aO":["+(o,1)"],"y":["+(o,1)"],"y.E":"+(o,1)"},"xY":{"aX":["1"],"U":["1"],"aO":["1"],"y":["1"]},"a3u":{"aE":["o"],"aO":["o"],"y":["o"],"y.E":"o","aE.E":"o"},"mc":{"bz":["o","1"],"ba":["o","1"],"bz.V":"1","bz.K":"o"},"cu":{"aE":["1"],"aO":["1"],"y":["1"],"y.E":"1","aE.E":"1"},"fz":{"FG":[]},"q0":{"n2":["1","2"],"ba":["1","2"]},"v7":{"ba":["1","2"]},"a3":{"v7":["1","2"],"ba":["1","2"]},"u_":{"y":["1"],"y.E":"1"},"dY":{"v7":["1","2"],"ba":["1","2"]},"AF":{"j9":["1"],"bq":["1"],"aO":["1"],"y":["1"]},"fW":{"j9":["1"],"bq":["1"],"aO":["1"],"y":["1"],"y.E":"1"},"dR":{"j9":["1"],"bq":["1"],"aO":["1"],"y":["1"],"y.E":"1"},"Re":{"m2":[]},"nX":{"m2":[]},"Dm":{"n_":[],"cC":[]},"Ri":{"cC":[]},"Z2":{"cC":[]},"TS":{"cx":[]},"Kd":{"fx":[]},"aN":{"m2":[]},"Np":{"m2":[]},"Nq":{"m2":[]},"YE":{"m2":[]},"Yr":{"m2":[]},"uK":{"m2":[]},"Vk":{"cC":[]},"PJ":{"cC":[]},"fJ":{"bz":["1","2"],"ba":["1","2"],"bz.V":"2","bz.K":"1"},"bD":{"aO":["1"],"y":["1"],"y.E":"1"},"bo":{"aO":["1"],"y":["1"],"y.E":"1"},"dZ":{"aO":["aV<1,2>"],"y":["aV<1,2>"],"y.E":"aV<1,2>"},"Cj":{"fJ":["1","2"],"bz":["1","2"],"ba":["1","2"],"bz.V":"2","bz.K":"1"},"qO":{"fJ":["1","2"],"bz":["1","2"],"ba":["1","2"],"bz.V":"2","bz.K":"1"},"yD":{"UF":[],"r3":[]},"a0e":{"y":["UF"],"y.E":"UF"},"xt":{"r3":[]},"a8T":{"y":["r3"],"y.E":"r3"},"mh":{"ij":[],"es":[],"aX":["o"],"U":["o"],"i8":["o"],"aO":["o"],"b6":[],"fs":["o"],"y":["o"],"cU":[],"aX.E":"o","y.E":"o"},"wj":{"b6":[],"lJ":[],"cU":[]},"re":{"b6":[],"lJ":[],"cU":[]},"Dc":{"b6":[]},"aab":{"lJ":[]},"D7":{"d9":[],"b6":[],"cU":[]},"wk":{"i8":["1"],"b6":[],"fs":["1"]},"Db":{"aX":["R"],"U":["R"],"i8":["R"],"aO":["R"],"b6":[],"fs":["R"],"y":["R"]},"ij":{"aX":["o"],"U":["o"],"i8":["o"],"aO":["o"],"b6":[],"fs":["o"],"y":["o"]},"D8":{"ahQ":[],"aX":["R"],"U":["R"],"i8":["R"],"aO":["R"],"b6":[],"fs":["R"],"y":["R"],"cU":[],"aX.E":"R","y.E":"R"},"D9":{"ahR":[],"aX":["R"],"U":["R"],"i8":["R"],"aO":["R"],"b6":[],"fs":["R"],"y":["R"],"cU":[],"aX.E":"R","y.E":"R"},"TG":{"ij":[],"akk":[],"aX":["o"],"U":["o"],"i8":["o"],"aO":["o"],"b6":[],"fs":["o"],"y":["o"],"cU":[],"aX.E":"o","y.E":"o"},"Da":{"ij":[],"akl":[],"aX":["o"],"U":["o"],"i8":["o"],"aO":["o"],"b6":[],"fs":["o"],"y":["o"],"cU":[],"aX.E":"o","y.E":"o"},"TH":{"ij":[],"akm":[],"aX":["o"],"U":["o"],"i8":["o"],"aO":["o"],"b6":[],"fs":["o"],"y":["o"],"cU":[],"aX.E":"o","y.E":"o"},"Dd":{"ij":[],"axF":[],"aX":["o"],"U":["o"],"i8":["o"],"aO":["o"],"b6":[],"fs":["o"],"y":["o"],"cU":[],"aX.E":"o","y.E":"o"},"De":{"ij":[],"xS":[],"aX":["o"],"U":["o"],"i8":["o"],"aO":["o"],"b6":[],"fs":["o"],"y":["o"],"cU":[],"aX.E":"o","y.E":"o"},"Df":{"ij":[],"axG":[],"aX":["o"],"U":["o"],"i8":["o"],"aO":["o"],"b6":[],"fs":["o"],"y":["o"],"cU":[],"aX.E":"o","y.E":"o"},"Kz":{"iC":[]},"a2p":{"cC":[]},"KB":{"n_":[],"cC":[]},"D3":{"e8":["1"]},"iI":{"mS":["1"]},"yr":{"e8":["1"]},"Kx":{"YU":[]},"GX":{"Nt":["1"]},"hi":{"y":["1"],"y.E":"1"},"d7":{"cC":[]},"e3":{"jh":["1"],"d1":["1"],"d1.T":"1"},"tL":{"iI":["1"],"mS":["1"]},"n8":{"e8":["1"]},"Km":{"n8":["1"],"e8":["1"]},"GY":{"n8":["1"],"e8":["1"]},"vj":{"cx":[]},"yb":{"Nt":["1"]},"bC":{"yb":["1"],"Nt":["1"]},"ax":{"av":["1"]},"FA":{"d1":["1"]},"ud":{"e8":["1"]},"lg":{"ud":["1"],"e8":["1"]},"jh":{"d1":["1"],"d1.T":"1"},"tN":{"iI":["1"],"mS":["1"]},"Kh":{"d1":["1"]},"yj":{"mS":["1"]},"HM":{"d1":["1"],"d1.T":"1"},"u3":{"d1":["1"],"d1.T":"1"},"IA":{"lg":["1"],"ud":["1"],"D3":["1"],"e8":["1"]},"HN":{"e8":["1"]},"z1":{"iI":["2"],"mS":["2"]},"n6":{"d1":["2"],"d1.T":"2"},"Kg":{"Ki":["1","2"]},"nd":{"bz":["1","2"],"ba":["1","2"],"bz.V":"2","bz.K":"1"},"p5":{"nd":["1","2"],"bz":["1","2"],"ba":["1","2"],"bz.V":"2","bz.K":"1"},"Hv":{"nd":["1","2"],"bz":["1","2"],"ba":["1","2"],"bz.V":"2","bz.K":"1"},"tX":{"aO":["1"],"y":["1"],"y.E":"1"},"Ij":{"fJ":["1","2"],"bz":["1","2"],"ba":["1","2"],"bz.V":"2","bz.K":"1"},"p2":{"z_":["1"],"j9":["1"],"bq":["1"],"aO":["1"],"y":["1"],"y.E":"1"},"hK":{"z_":["1"],"j9":["1"],"b8H":["1"],"bq":["1"],"aO":["1"],"y":["1"],"y.E":"1"},"mb":{"y":["1"],"y.E":"1"},"aX":{"U":["1"],"aO":["1"],"y":["1"]},"bz":{"ba":["1","2"]},"xZ":{"bz":["1","2"],"ba":["1","2"]},"In":{"aO":["2"],"y":["2"],"y.E":"2"},"CF":{"ba":["1","2"]},"n2":{"ba":["1","2"]},"HB":{"HC":["1"],"aVM":["1"]},"HD":{"HC":["1"]},"Bf":{"aO":["1"],"y":["1"],"y.E":"1"},"Cv":{"aE":["1"],"aO":["1"],"y":["1"],"y.E":"1","aE.E":"1"},"j9":{"bq":["1"],"aO":["1"],"y":["1"]},"z_":{"j9":["1"],"bq":["1"],"aO":["1"],"y":["1"]},"Fx":{"bz":["1","2"],"pk":["1","hg<1,2>"],"ba":["1","2"],"bz.V":"2","bz.K":"1","pk.K":"1"},"ni":{"aO":["1"],"y":["1"],"y.E":"1"},"ub":{"aO":["2"],"y":["2"],"y.E":"2"},"K7":{"aO":["aV<1,2>"],"y":["aV<1,2>"],"y.E":"aV<1,2>"},"nj":{"ki":["1","2","1"],"ki.T":"1"},"Kc":{"ki":["1","hg<1,2>","2"],"ki.T":"2"},"ua":{"ki":["1","hg<1,2>","aV<1,2>"],"ki.T":"aV<1,2>"},"xp":{"j9":["1"],"bq":["1"],"aO":["1"],"pk":["1","hh<1>"],"y":["1"],"y.E":"1","pk.K":"1"},"tO":{"e8":["1"]},"a3m":{"bz":["m","@"],"ba":["m","@"],"bz.V":"@","bz.K":"m"},"a3n":{"aE":["m"],"aO":["m"],"y":["m"],"y.E":"m","aE.E":"m"},"yz":{"l4":[]},"MH":{"cP":["U","m"],"cP.S":"U","cP.T":"m"},"MG":{"cP":["m","U"],"cP.S":"m","cP.T":"U"},"a0L":{"l4":[]},"HW":{"cP":["1","3"],"cP.S":"1","cP.T":"3"},"Ck":{"cC":[]},"Rj":{"cC":[]},"Rl":{"cP":["Q?","m"],"cP.S":"Q?","cP.T":"m"},"Rk":{"cP":["m","Q?"],"cP.S":"m","cP.T":"Q?"},"z3":{"l4":[]},"Kk":{"l4":[]},"Z7":{"vs":[]},"Z8":{"cP":["m","U"],"cP.S":"m","cP.T":"U"},"aag":{"l4":[]},"Gv":{"cP":["U","m"],"cP.S":"U","cP.T":"m"},"fY":{"cn":["fY"]},"R":{"dA":[],"cn":["dA"]},"b5":{"cn":["b5"]},"o":{"dA":[],"cn":["dA"]},"U":{"aO":["1"],"y":["1"]},"dA":{"cn":["dA"]},"UF":{"r3":[]},"bq":{"aO":["1"],"y":["1"]},"m":{"cn":["m"]},"pG":{"cC":[]},"n_":{"cC":[]},"iS":{"cC":[]},"wD":{"cC":[]},"C3":{"cC":[]},"TO":{"cC":[]},"Gt":{"cC":[]},"Z1":{"cC":[]},"fM":{"cC":[]},"Nx":{"cC":[]},"U1":{"cC":[]},"Fz":{"cC":[]},"a2q":{"cx":[]},"eO":{"cx":[]},"HX":{"aE":["1"],"aO":["1"],"y":["1"],"y.E":"1","aE.E":"1"},"a8V":{"fx":[]},"KL":{"Z4":[]},"jk":{"Z4":[]},"a1L":{"Z4":[]},"TR":{"cx":[]},"akm":{"U":["o"],"aO":["o"],"y":["o"]},"es":{"U":["o"],"aO":["o"],"y":["o"]},"axG":{"U":["o"],"aO":["o"],"y":["o"]},"akk":{"U":["o"],"aO":["o"],"y":["o"]},"axF":{"U":["o"],"aO":["o"],"y":["o"]},"akl":{"U":["o"],"aO":["o"],"y":["o"]},"xS":{"U":["o"],"aO":["o"],"y":["o"]},"ahQ":{"U":["R"],"aO":["R"],"y":["R"]},"ahR":{"U":["R"],"aO":["R"],"y":["R"]},"jW":{"yQ":["jW"]},"rG":{"yQ":["rG"]},"nC":{"lF":[],"dF":[]},"N_":{"ho":["A"],"ih":[],"qJ":["A"],"eM":[],"dq":["A"],"cE":[]},"TP":{"ho":["r"],"qJ":["r"],"eM":[],"dq":["r"],"cE":[]},"wK":{"wL":["r","ho","1"],"i7":["r","ho","1"],"A":[],"ao":["r","ho"],"r":[],"aC":[],"ao.1":"ho","i7.1":"ho","i7.2":"1","ao.0":"r"},"Pu":{"qU":[],"aF":[],"e":[]},"a1J":{"qU":[],"aF":[],"e":[]},"ho":{"qJ":["1"],"eM":[],"dq":["1"],"cE":[]},"lF":{"dF":[]},"p6":{"ft":["p6"],"ft.E":"p6"},"qJ":{"dq":["1"],"cE":[]},"i7":{"ao":["1","2"],"r":[],"aC":[]},"qU":{"aF":[],"e":[]},"R9":{"b0":[],"au":[],"v":[]},"Fq":{"lF":[],"dF":[]},"MY":{"eT":[],"aF":[],"e":[]},"MW":{"eT":[],"aF":[],"e":[]},"jy":{"dP":[],"eM":[],"dq":["A"],"cE":[]},"MZ":{"eb":["dP"],"b_":[],"e":[],"eb.T":"dP"},"DT":{"dH":["A","dP"],"A":[],"ao":["A","dP"],"r":[],"aC":[],"ao.1":"dP","dH.1":"dP","ao.0":"A"},"Yb":{"h":[]},"Fr":{"L":[]},"f8":{"y":["m"],"y.E":"m"},"c4":{"ba":["2","3"]},"y_":{"pm":["1","y<1>"],"pm.E":"1"},"x0":{"pm":["1","bq<1>"],"pm.E":"1"},"QG":{"cP":["U","q9"]},"a6w":{"cP":["U","q9"],"cP.S":"U","cP.T":"q9"},"hs":{"cx":[]},"Rf":{"aX":["fH"],"U":["fH"],"aO":["fH"],"y":["fH"],"aX.E":"fH","y.E":"fH"},"C2":{"fH":[]},"CD":{"fH":[]},"yg":{"e8":["es"]},"bT":{"ae":[]},"uG":{"bT":["R"],"ae":[]},"a0f":{"bT":["R"],"ae":[]},"a0g":{"bT":["R"],"ae":[]},"zF":{"bT":["1"],"ae":[]},"rF":{"bT":["R"],"ae":[]},"hB":{"bT":["R"],"ae":[]},"AY":{"bT":["R"],"ae":[]},"tH":{"bT":["R"],"ae":[]},"v6":{"bT":["1"],"ae":[]},"zR":{"bT":["1"],"ae":[]},"Ii":{"fX":[]},"En":{"fX":[]},"eo":{"fX":[]},"G7":{"fX":[]},"e7":{"fX":[]},"G6":{"fX":[]},"jG":{"fX":[]},"a1N":{"fX":[]},"aA":{"aq":["1"],"aA.T":"1","aq.T":"1"},"fV":{"aA":["x?"],"aq":["x?"],"aA.T":"x?","aq.T":"x?"},"aw":{"bT":["1"],"ae":[]},"eE":{"aq":["1"],"aq.T":"1"},"Eh":{"aA":["1"],"aq":["1"],"aA.T":"1","aq.T":"1"},"Y1":{"aA":["L?"],"aq":["L?"],"aA.T":"L?","aq.T":"L?"},"DL":{"aA":["w?"],"aq":["w?"],"aA.T":"w?","aq.T":"w?"},"nY":{"aA":["o"],"aq":["o"],"aA.T":"o","aq.T":"o"},"v8":{"aA":["1"],"aq":["1"],"aA.T":"1","aq.T":"1"},"fm":{"aq":["R"],"aq.T":"R"},"Gq":{"aq":["1"],"aq.T":"1"},"AK":{"W":[],"e":[]},"a1t":{"T":["AK"]},"a1s":{"ae":[]},"AL":{"W":[],"e":[]},"Hn":{"T":["AL"]},"cL":{"x":[]},"a1v":{"k9":[]},"ND":{"a5":[],"e":[]},"q4":{"W":[],"e":[]},"Ho":{"T":["q4"]},"NE":{"dw":[]},"b6J":{"bd":[],"b_":[],"e":[]},"a1y":{"e_":["a7"],"e_.T":"a7"},"PC":{"a7":[]},"AV":{"W":[],"e":[]},"Hq":{"T":["AV"]},"Pp":{"a5":[],"e":[]},"AU":{"W":[],"e":[]},"ye":{"W":[],"e":[]},"a1z":{"T":["AU"]},"yf":{"T":["ye<1>"]},"kf":{"iW":[]},"vb":{"W":[],"e":[]},"Hp":{"kU":["vb"],"T":["vb"]},"a1B":{"ae":[]},"Pr":{"k9":[]},"Hs":{"W":[],"e":[]},"Ps":{"a5":[],"e":[]},"a1D":{"bj":[],"aF":[],"e":[]},"a5y":{"A":[],"b2":["A"],"r":[],"aC":[]},"Ht":{"T":["Hs"]},"a3s":{"ae":[]},"a63":{"ae":[]},"a1u":{"ae":[]},"Hu":{"aF":[],"e":[]},"a1C":{"b0":[],"au":[],"v":[]},"u7":{"dH":["A","fP"],"A":[],"ao":["A","fP"],"r":[],"aC":[],"ao.1":"fP","dH.1":"fP","ao.0":"A"},"nH":{"W":[],"e":[]},"Hr":{"T":["nH"]},"a3x":{"ae":[]},"C5":{"da":[],"bd":[],"b_":[],"e":[]},"AX":{"a5":[],"e":[]},"p1":{"ds":[]},"vv":{"p1":[],"ds":[]},"Qa":{"p1":[],"ds":[]},"Q9":{"p1":[],"ds":[]},"vz":{"pG":[],"cC":[]},"PO":{"ds":[]},"a2B":{"ds":[]},"aZ":{"ae":[]},"cb":{"aZ":[],"ae":[]},"u1":{"ae":[]},"ku":{"ds":[]},"B4":{"ds":[]},"PM":{"ds":[]},"B5":{"ds":[]},"RC":{"h5":[]},"hc":{"h5":[]},"e2":{"h5":[],"e2.T":"1"},"Ct":{"j1":[]},"bp":{"y":["1"],"y.E":"1"},"eQ":{"y":["1"],"y.E":"1"},"cF":{"av":["1"]},"BI":{"c9":[]},"eu":{"bE":[]},"mr":{"bE":[]},"ok":{"bE":[]},"ol":{"bE":[]},"mq":{"bE":[]},"mt":{"bE":[]},"fK":{"bE":[]},"ms":{"bE":[]},"a09":{"bE":[]},"a9V":{"bE":[]},"rv":{"bE":[]},"a9R":{"rv":[],"bE":[]},"rA":{"bE":[]},"aa1":{"rA":[],"bE":[]},"a9X":{"mr":[],"bE":[]},"a9U":{"ok":[],"bE":[]},"a9W":{"ol":[],"bE":[]},"a9T":{"mq":[],"bE":[]},"rx":{"bE":[]},"a9Y":{"rx":[],"bE":[]},"aa5":{"mt":[],"bE":[]},"rB":{"fK":[],"bE":[]},"aa3":{"rB":[],"fK":[],"bE":[]},"rC":{"fK":[],"bE":[]},"aa4":{"rC":[],"fK":[],"bE":[]},"Uj":{"fK":[],"bE":[]},"aa2":{"fK":[],"bE":[]},"aa_":{"ms":[],"bE":[]},"rz":{"bE":[]},"aa0":{"rz":[],"bE":[]},"ry":{"bE":[]},"a9Z":{"ry":[],"bE":[]},"rw":{"bE":[]},"a9S":{"rw":[],"bE":[]},"jJ":{"dj":[],"du":[]},"It":{"z9":[]},"yJ":{"z9":[]},"jO":{"dj":[],"du":[]},"hZ":{"dj":[],"du":[]},"iF":{"hZ":[],"dj":[],"du":[]},"i6":{"hZ":[],"dj":[],"du":[]},"jV":{"hZ":[],"dj":[],"du":[]},"jE":{"dj":[],"du":[]},"dj":{"du":[]},"Dp":{"dj":[],"du":[]},"wx":{"dj":[],"du":[]},"hF":{"dj":[],"du":[]},"MK":{"dj":[],"du":[]},"l6":{"dj":[],"du":[]},"l7":{"dj":[],"du":[]},"A5":{"dj":[],"du":[]},"qH":{"kc":[]},"w2":{"kc":[]},"a0a":{"a5":[],"e":[]},"tJ":{"a5":[],"e":[]},"MC":{"a5":[],"e":[]},"MB":{"a5":[],"e":[]},"No":{"a5":[],"e":[]},"Nn":{"a5":[],"e":[]},"Q0":{"a5":[],"e":[]},"Q_":{"a5":[],"e":[]},"Q5":{"a5":[],"e":[]},"Q4":{"a5":[],"e":[]},"b5t":{"da":[],"bd":[],"b_":[],"e":[]},"Mj":{"a5":[],"e":[]},"CI":{"W":[],"e":[]},"Io":{"T":["CI"]},"yE":{"a5":[],"e":[]},"zX":{"W":[],"e":[]},"a4Z":{"L":[]},"GV":{"T":["zX"]},"a0y":{"bj":[],"aF":[],"e":[]},"a5t":{"A":[],"b2":["A"],"r":[],"aC":[]},"b5D":{"da":[],"bd":[],"b_":[],"e":[]},"wa":{"aA":["w?"],"aq":["w?"],"aA.T":"w?","aq.T":"w?"},"CS":{"aA":["h"],"aq":["h"],"aA.T":"h","aq.T":"h"},"b8V":{"da":[],"bd":[],"b_":[],"e":[]},"Ag":{"W":[],"e":[]},"H6":{"T":["Ag"]},"a3W":{"dS":[],"cr":["dS"]},"a3h":{"bj":[],"aF":[],"e":[]},"Jf":{"A":[],"b2":["A"],"r":[],"aC":[]},"Na":{"a5":[],"e":[]},"w8":{"nG":["o"],"x":[],"nG.T":"o"},"a1Y":{"k9":[]},"PK":{"a5":[],"e":[]},"vk":{"a5":[],"e":[]},"nJ":{"a5":[],"e":[]},"b78":{"da":[],"bd":[],"b_":[],"e":[]},"qa":{"a5":[],"e":[]},"b7b":{"da":[],"bd":[],"b_":[],"e":[]},"vr":{"W":[],"e":[]},"a2k":{"bU":[]},"b7H":{"da":[],"bd":[],"b_":[],"e":[]},"BE":{"bd":[],"b_":[],"e":[]},"GU":{"bT":["1"],"ae":[]},"JL":{"W":[],"e":[]},"BW":{"a5":[],"e":[]},"a6k":{"T":["JL"]},"a3a":{"W":[],"e":[]},"a39":{"bU":[]},"a2x":{"bU":[]},"a2y":{"bU":[]},"a4i":{"bU":[]},"BY":{"da":[],"bd":[],"b_":[],"e":[]},"nW":{"nZ":[],"m9":[]},"C8":{"nZ":[],"m9":[]},"C9":{"nZ":[],"m9":[]},"nZ":{"m9":[]},"IQ":{"bd":[],"b_":[],"e":[]},"Ic":{"W":[],"e":[]},"C7":{"a5":[],"e":[]},"Ib":{"T":["Ic"],"aSE":[]},"Rb":{"a5":[],"e":[]},"j_":{"cj":[]},"a49":{"j_":[],"cj":[]},"ka":{"j_":[],"cj":[]},"H4":{"W":[],"e":[]},"I0":{"W":[],"e":[]},"qL":{"W":[],"e":[]},"b8u":{"da":[],"bd":[],"b_":[],"e":[]},"Id":{"aZ":[],"ae":[]},"Ie":{"aA":["j_"],"aq":["j_"],"aA.T":"j_","aq.T":"j_"},"a3f":{"ae":[]},"a0P":{"T":["H4"]},"I1":{"T":["I0"]},"Ja":{"A":[],"oN":["fe","A"],"r":[],"aC":[]},"a1R":{"k3":["fe","A"],"aF":[],"e":[],"k3.0":"fe","k3.1":"A"},"If":{"T":["qL"]},"G1":{"W":[],"e":[]},"Kr":{"T":["G1"]},"RG":{"a5":[],"e":[]},"CH":{"W":[],"e":[]},"Je":{"A":[],"b2":["A"],"r":[],"aC":[]},"tp":{"aA":["cj?"],"aq":["cj?"],"aA.T":"cj?","aq.T":"cj?"},"Ip":{"W":[],"e":[]},"a3N":{"T":["CH"]},"a3e":{"bj":[],"aF":[],"e":[]},"a3J":{"T":["Ip"]},"K1":{"a5":[],"e":[]},"K2":{"ae":[]},"a3K":{"e_":["a4"],"e_.T":"a4"},"PE":{"a4":[]},"hx":{"Tw":["1"],"Dv":["1"],"f3":["1"],"fb":["1"],"d4":["1"]},"pr":{"W":[],"e":[]},"ps":{"W":[],"e":[]},"yN":{"W":[],"e":[]},"aaA":{"a5":[],"e":[]},"aay":{"T":["pr"]},"aaz":{"T":["ps"]},"a2t":{"a5":[],"e":[]},"a08":{"kQ":[]},"Pq":{"kQ":[]},"IP":{"T":["yN<1>"]},"L1":{"aZ":[],"ae":[]},"L2":{"aZ":[],"ae":[]},"IU":{"W":[],"e":[]},"IV":{"W":[],"e":[]},"Um":{"kQ":[]},"a4X":{"T":["IU"],"de":[]},"a4Y":{"T":["IV"]},"jA":{"W":[],"e":[]},"Ut":{"W":[],"e":[]},"ya":{"ae":[]},"Hb":{"T":["jA"]},"a5q":{"ae":[]},"DN":{"W":[],"e":[]},"a5r":{"T":["jA"]},"ba5":{"da":[],"bd":[],"b_":[],"e":[]},"rJ":{"W":[],"e":[]},"DM":{"T":["rJ"]},"Ep":{"W":[],"e":[]},"Jy":{"bd":[],"b_":[],"e":[]},"HQ":{"W":[],"e":[]},"wU":{"W":[],"e":[]},"Er":{"T":["wU"],"de":[]},"bdJ":{"W":[],"e":[]},"Eq":{"T":["Ep"]},"a68":{"aZ":[],"ae":[]},"H3":{"al":[],"lM":[]},"a0O":{"a5":[],"e":[]},"HR":{"T":["HQ"]},"a23":{"bn":["ht"],"bn.T":"ht"},"a69":{"bd":[],"b_":[],"e":[]},"a3_":{"a5":[],"e":[]},"yF":{"W":[],"e":[]},"VG":{"a5":[],"e":[]},"a3M":{"kU":["yF"],"T":["yF"]},"baC":{"da":[],"bd":[],"b_":[],"e":[]},"mQ":{"W":[],"e":[]},"K6":{"T":["mQ"]},"bb7":{"da":[],"bd":[],"b_":[],"e":[]},"Ir":{"W":[],"e":[]},"Yy":{"a5":[],"e":[]},"Is":{"T":["Ir"]},"Kl":{"aZ":[],"ae":[]},"a9_":{"lC":["k6"],"lC.T":"k6"},"a8Y":{"k6":[]},"a8Z":{"k6":[]},"bbn":{"bd":[],"b_":[],"e":[]},"YG":{"W":[],"e":[]},"a9g":{"bU":[]},"bbu":{"da":[],"bd":[],"b_":[],"e":[]},"FX":{"W":[],"e":[]},"Kp":{"T":["FX"]},"FY":{"hv":["m"],"W":[],"e":[],"hv.T":"m"},"z5":{"dQ":["m"],"T":["hv"]},"Tx":{"k9":[]},"a9l":{"ae":[]},"bbD":{"da":[],"bd":[],"b_":[],"e":[]},"Ku":{"W":[],"e":[]},"YQ":{"a5":[],"e":[]},"a9r":{"T":["Ku"]},"a9s":{"bj":[],"aF":[],"e":[]},"a9t":{"A":[],"b2":["A"],"r":[],"aC":[]},"a9o":{"eT":[],"aF":[],"e":[]},"a9p":{"b0":[],"au":[],"v":[]},"a5Q":{"A":[],"ao":["A","fP"],"r":[],"aC":[],"ao.1":"fP","ao.0":"A"},"a9n":{"a5":[],"e":[]},"a9q":{"a5":[],"e":[]},"YS":{"a5":[],"e":[]},"tD":{"a5":[],"e":[]},"Ia":{"da":[],"bd":[],"b_":[],"e":[]},"tE":{"aA":["je"],"aq":["je"],"aA.T":"je","aq.T":"je"},"zN":{"W":[],"e":[]},"a0q":{"T":["zN"]},"Gi":{"W":[],"e":[]},"Gj":{"T":["Gi"]},"a9D":{"a5":[],"e":[]},"bbX":{"da":[],"bd":[],"b_":[],"e":[]},"dn":{"hk":[]},"eK":{"hk":[]},"Ix":{"hk":[]},"a94":{"ae":[]},"dG":{"cj":[]},"jg":{"cj":[]},"MQ":{"cj":[]},"dV":{"cj":[]},"fi":{"cj":[]},"bm":{"iW":[]},"cm":{"k2":[]},"e5":{"dG":[],"cj":[]},"nG":{"x":[]},"a2":{"dh":[]},"dt":{"dh":[]},"p9":{"dh":[]},"Ug":{"ez":[]},"dI":{"dG":[],"cj":[]},"kV":{"dG":[],"cj":[]},"yX":{"ff":["dI"],"dG":[],"cj":[],"ff.T":"dI"},"yY":{"ff":["kV"],"dG":[],"cj":[],"ff.T":"kV"},"ff":{"dG":[],"cj":[]},"iw":{"iW":[]},"fy":{"dG":[],"cj":[]},"fR":{"dG":[],"cj":[]},"fS":{"dG":[],"cj":[]},"y5":{"hG":[]},"aac":{"hG":[]},"f9":{"ez":[],"kO":[],"aC":[]},"DR":{"A":[],"b2":["A"],"r":[],"aC":[]},"H2":{"aZ":[],"ae":[]},"a1S":{"mn":[]},"a6_":{"rQ":[],"b2":["A"],"r":[],"aC":[]},"al":{"lM":[]},"nB":{"m3":[]},"A":{"r":[],"aC":[]},"lI":{"i5":["A"]},"eM":{"cE":[]},"AI":{"eM":[],"dq":["1"],"cE":[]},"ih":{"eM":[],"dq":["A"],"cE":[]},"DW":{"dH":["A","ih"],"A":[],"ao":["A","ih"],"r":[],"aC":[],"ao.1":"ih","dH.1":"ih","ao.0":"A"},"Pv":{"ae":[]},"DX":{"A":[],"b2":["A"],"r":[],"aC":[]},"or":{"aZ":[],"ae":[]},"rN":{"A":[],"ao":["A","jd"],"r":[],"aC":[],"ao.1":"jd","ao.0":"A"},"a5A":{"A":[],"r":[],"aC":[]},"Kq":{"or":[],"aZ":[],"ae":[]},"H8":{"or":[],"aZ":[],"ae":[]},"yc":{"or":[],"aZ":[],"ae":[]},"DZ":{"A":[],"r":[],"aC":[]},"dP":{"eM":[],"dq":["A"],"cE":[]},"E_":{"dH":["A","dP"],"A":[],"ao":["A","dP"],"r":[],"aC":[],"ao.1":"dP","dH.1":"dP","ao.0":"A"},"fl":{"eR":[]},"Az":{"fl":[],"eR":[]},"Ax":{"fl":[],"eR":[]},"xQ":{"jT":[],"fl":[],"eR":[]},"TZ":{"jT":[],"fl":[],"eR":[]},"Cs":{"fl":[],"eR":[]},"zU":{"fl":[],"eR":[]},"Ue":{"eR":[]},"jT":{"fl":[],"eR":[]},"Ay":{"fl":[],"eR":[]},"C1":{"jT":[],"fl":[],"eR":[]},"A3":{"fl":[],"eR":[]},"BL":{"fl":[],"eR":[]},"TD":{"aZ":[],"ae":[]},"r":{"aC":[]},"dq":{"cE":[]},"hf":{"e4":[]},"I5":{"e4":[]},"PN":{"ds":[]},"mo":{"dJ":[]},"jd":{"dq":["A"],"cE":[]},"ln":{"eX":[],"aZ":[],"ae":[]},"os":{"A":[],"ao":["A","jd"],"r":[],"aC":[],"ao.1":"jd","ao.0":"A"},"oH":{"ae":[]},"DO":{"A":[],"b2":["A"],"r":[],"aC":[]},"mA":{"A":[],"b2":["A"],"r":[],"aC":[]},"V0":{"A":[],"b2":["A"],"r":[],"aC":[]},"E7":{"A":[],"b2":["A"],"r":[],"aC":[]},"DV":{"A":[],"b2":["A"],"r":[],"aC":[]},"UW":{"A":[],"b2":["A"],"r":[],"aC":[]},"E1":{"A":[],"b2":["A"],"r":[],"aC":[]},"UX":{"A":[],"b2":["A"],"r":[],"aC":[]},"UI":{"A":[],"b2":["A"],"r":[],"aC":[]},"UJ":{"A":[],"b2":["A"],"r":[],"aC":[]},"AZ":{"ae":[]},"yT":{"A":[],"b2":["A"],"r":[],"aC":[]},"UN":{"A":[],"b2":["A"],"r":[],"aC":[]},"UM":{"A":[],"b2":["A"],"r":[],"aC":[]},"UL":{"A":[],"b2":["A"],"r":[],"aC":[]},"Jj":{"A":[],"b2":["A"],"r":[],"aC":[]},"UY":{"A":[],"b2":["A"],"r":[],"aC":[]},"UZ":{"A":[],"b2":["A"],"r":[],"aC":[]},"UP":{"A":[],"b2":["A"],"r":[],"aC":[]},"V7":{"A":[],"b2":["A"],"r":[],"aC":[]},"US":{"A":[],"b2":["A"],"r":[],"aC":[]},"V_":{"A":[],"b2":["A"],"r":[],"aC":[]},"E3":{"A":[],"b2":["A"],"r":[],"kO":[],"aC":[]},"V2":{"A":[],"b2":["A"],"r":[],"aC":[]},"E0":{"A":[],"b2":["A"],"r":[],"aC":[]},"E4":{"A":[],"b2":["A"],"r":[],"aC":[]},"E2":{"A":[],"b2":["A"],"r":[],"aC":[]},"V3":{"A":[],"b2":["A"],"r":[],"aC":[]},"UK":{"A":[],"b2":["A"],"r":[],"aC":[]},"UQ":{"A":[],"b2":["A"],"r":[],"aC":[]},"UT":{"A":[],"b2":["A"],"r":[],"aC":[]},"UV":{"A":[],"b2":["A"],"r":[],"aC":[]},"UR":{"A":[],"b2":["A"],"r":[],"aC":[]},"DS":{"A":[],"b2":["A"],"r":[],"aC":[]},"eX":{"ae":[]},"rO":{"A":[],"b2":["A"],"r":[],"aC":[]},"E5":{"A":[],"b2":["A"],"r":[],"aC":[]},"UH":{"A":[],"b2":["A"],"r":[],"aC":[]},"E6":{"A":[],"b2":["A"],"r":[],"aC":[]},"UO":{"A":[],"b2":["A"],"r":[],"aC":[]},"DY":{"A":[],"b2":["A"],"r":[],"aC":[]},"mN":{"lM":[]},"xj":{"m3":[]},"mO":{"oL":[],"dq":["dc"],"cE":[]},"mP":{"oM":[],"dq":["dc"],"cE":[]},"dc":{"r":[],"aC":[]},"Y9":{"i5":["dc"]},"oL":{"cE":[]},"oM":{"cE":[]},"V5":{"wM":[],"dc":[],"ao":["A","l2"],"r":[],"aC":[],"ao.1":"l2","ao.0":"A"},"kI":{"cE":[]},"l2":{"oL":[],"dq":["A"],"kI":[],"cE":[]},"wM":{"dc":[],"ao":["A","l2"],"r":[],"aC":[]},"E8":{"dc":[],"b2":["dc"],"r":[],"aC":[]},"V6":{"dc":[],"b2":["dc"],"r":[],"aC":[]},"f7":{"eM":[],"dq":["A"],"cE":[]},"E9":{"dH":["A","f7"],"A":[],"ao":["A","f7"],"r":[],"aC":[],"ao.1":"f7","dH.1":"f7","ao.0":"A"},"nv":{"aA":["hk?"],"aq":["hk?"],"aA.T":"hk?","aq.T":"hk?"},"rQ":{"b2":["A"],"r":[],"aC":[]},"wO":{"jj":["1"],"A":[],"ao":["dc","1"],"DP":[],"r":[],"aC":[]},"Eb":{"jj":["mP"],"A":[],"ao":["dc","mP"],"DP":[],"r":[],"aC":[],"ao.1":"mP","jj.0":"mP","ao.0":"dc"},"V4":{"jj":["mO"],"A":[],"ao":["dc","mO"],"DP":[],"r":[],"aC":[],"ao.1":"mO","jj.0":"mO","ao.0":"dc"},"iG":{"aZ":[],"ae":[]},"lf":{"eM":[],"dq":["A"],"cE":[]},"Ec":{"dH":["A","lf"],"A":[],"ao":["A","lf"],"r":[],"aC":[],"ao.1":"lf","dH.1":"lf","ao.0":"A"},"tF":{"av":["~"]},"G8":{"cx":[]},"n7":{"cn":["n7"]},"kh":{"cn":["kh"]},"nl":{"cn":["nl"]},"x_":{"cn":["x_"]},"a6s":{"ds":[]},"EO":{"aZ":[],"ae":[]},"rp":{"cn":["x_"]},"tK":{"aUP":[]},"kJ":{"j0":[]},"qQ":{"j0":[]},"qP":{"j0":[]},"Dz":{"cx":[]},"CZ":{"cx":[]},"k7":{"dS":[]},"a1V":{"dS":[]},"a95":{"D0":[]},"on":{"my":[]},"wG":{"my":[]},"Eg":{"aZ":[],"ae":[]},"uP":{"hG":[]},"vW":{"hG":[]},"of":{"hG":[]},"qc":{"hG":[]},"YI":{"oS":[]},"YH":{"oS":[]},"YJ":{"oS":[]},"xC":{"oS":[]},"Qi":{"tz":[]},"a4p":{"G_":[]},"QR":{"fr":[]},"QS":{"fr":[]},"QV":{"fr":[]},"QX":{"fr":[]},"QU":{"fr":[]},"QW":{"fr":[]},"QY":{"fr":[]},"QT":{"fr":[]},"lA":{"W":[],"e":[]},"GP":{"bd":[],"b_":[],"e":[]},"qr":{"W":[],"e":[]},"aSm":{"be":[]},"b7f":{"be":[]},"b7e":{"be":[]},"uC":{"be":[]},"uL":{"be":[]},"ht":{"be":[]},"mv":{"be":[]},"cW":{"bn":["1"]},"dg":{"bn":["1"],"bn.T":"1"},"GQ":{"T":["lA"]},"HU":{"T":["qr"]},"Zf":{"bn":["aSm"],"bn.T":"aSm"},"Bb":{"bn":["be"],"bn.T":"be"},"PT":{"bn":["ht"]},"Us":{"cW":["mv"],"bn":["mv"],"bn.T":"mv","cW.T":"mv"},"IM":{"cW":["1"],"yM":["1"],"bn":["1"],"bn.T":"1","cW.T":"1"},"IN":{"cW":["1"],"yM":["1"],"bn":["1"],"bn.T":"1","cW.T":"1"},"Hk":{"bn":["1"],"bn.T":"1"},"zM":{"W":[],"e":[]},"a0p":{"T":["zM"]},"a0o":{"bj":[],"aF":[],"e":[]},"zT":{"bj":[],"aF":[],"e":[]},"GD":{"W":[],"e":[]},"KU":{"T":["GD"],"de":[]},"Mu":{"de":[]},"A2":{"W":[],"e":[]},"H_":{"T":["A2"]},"Cm":{"aZ":[],"ae":[]},"a4b":{"a5":[],"e":[]},"iY":{"bd":[],"b_":[],"e":[]},"uZ":{"bj":[],"aF":[],"e":[]},"uY":{"bj":[],"aF":[],"e":[]},"mZ":{"bj":[],"aF":[],"e":[]},"pZ":{"bj":[],"aF":[],"e":[]},"ex":{"bj":[],"aF":[],"e":[]},"iT":{"bj":[],"aF":[],"e":[]},"Cq":{"eb":["ih"],"b_":[],"e":[],"eb.T":"ih"},"eB":{"bj":[],"aF":[],"e":[]},"dX":{"bj":[],"aF":[],"e":[]},"xq":{"eT":[],"aF":[],"e":[]},"il":{"eb":["f7"],"b_":[],"e":[],"eb.T":"f7"},"wS":{"eT":[],"aF":[],"e":[]},"kr":{"eT":[],"aF":[],"e":[]},"fZ":{"eb":["dP"],"b_":[],"e":[],"eb.T":"dP"},"kA":{"fZ":[],"eb":["dP"],"b_":[],"e":[],"eb.T":"dP"},"b6Z":{"bd":[],"b_":[],"e":[]},"rb":{"bj":[],"aF":[],"e":[]},"kF":{"bj":[],"aF":[],"e":[]},"oA":{"bj":[],"aF":[],"e":[]},"tu":{"W":[],"e":[]},"v3":{"bj":[],"aF":[],"e":[]},"aa7":{"h3":[],"au":[],"v":[]},"aa8":{"bd":[],"b_":[],"e":[]},"TX":{"bj":[],"aF":[],"e":[]},"MD":{"bj":[],"aF":[],"e":[]},"B0":{"bj":[],"aF":[],"e":[]},"Nj":{"bj":[],"aF":[],"e":[]},"Uc":{"bj":[],"aF":[],"e":[]},"Ud":{"bj":[],"aF":[],"e":[]},"Nu":{"bj":[],"aF":[],"e":[]},"Qr":{"bj":[],"aF":[],"e":[]},"bR":{"bj":[],"aF":[],"e":[]},"jC":{"bj":[],"aF":[],"e":[]},"B_":{"eT":[],"aF":[],"e":[]},"Rw":{"bj":[],"aF":[],"e":[]},"U2":{"bj":[],"aF":[],"e":[]},"wn":{"bj":[],"aF":[],"e":[]},"a4f":{"b0":[],"au":[],"v":[]},"Rg":{"bj":[],"aF":[],"e":[]},"Yc":{"bj":[],"aF":[],"e":[]},"a6q":{"bj":[],"aF":[],"e":[]},"Ul":{"a5":[],"e":[]},"BD":{"eT":[],"aF":[],"e":[]},"a07":{"eT":[],"aF":[],"e":[]},"Ve":{"eT":[],"aF":[],"e":[]},"RA":{"bj":[],"aF":[],"e":[]},"j6":{"bj":[],"aF":[],"e":[]},"Mg":{"bj":[],"aF":[],"e":[]},"TC":{"bj":[],"aF":[],"e":[]},"MM":{"bj":[],"aF":[],"e":[]},"nN":{"bj":[],"aF":[],"e":[]},"R8":{"bj":[],"aF":[],"e":[]},"o3":{"a5":[],"e":[]},"dO":{"a5":[],"e":[]},"a8R":{"T":["tu"]},"J8":{"A":[],"b2":["A"],"r":[],"aC":[]},"Ek":{"e":[]},"Ei":{"au":[],"v":[]},"Zo":{"kW":[],"aC":[]},"vg":{"bj":[],"aF":[],"e":[]},"v9":{"a5":[],"e":[]},"a1P":{"ae":[]},"nI":{"da":[],"bd":[],"b_":[],"e":[]},"a4c":{"a5":[],"e":[]},"PG":{"a5":[],"e":[]},"Ba":{"W":[],"e":[]},"HA":{"T":["Ba"]},"nL":{"W":[],"e":[]},"HG":{"T":["nL"]},"vp":{"W":[],"e":[]},"nM":{"T":["vp"],"de":[]},"JC":{"W":[],"e":[]},"nh":{"y4":[],"ez":[]},"a19":{"bj":[],"aF":[],"e":[]},"a5x":{"A":[],"b2":["A"],"r":[],"aC":[]},"eD":{"cb":["cA"],"aZ":[],"ae":[]},"HH":{"eT":[],"aF":[],"e":[]},"a6b":{"T":["JC"],"aXN":[]},"a15":{"hG":[]},"na":{"cW":["1"],"bn":["1"],"bn.T":"1","cW.T":"1"},"KJ":{"cW":["1"],"bn":["1"],"bn.T":"1","cW.T":"1"},"KK":{"cW":["1"],"bn":["1"],"bn.T":"1","cW.T":"1"},"KQ":{"dg":["1"],"bn":["1"],"bn.T":"1"},"a6j":{"cW":["mI"],"bn":["mI"],"bn.T":"mI","cW.T":"mI"},"a1q":{"cW":["kt"],"bn":["kt"],"bn.T":"kt","cW.T":"kt"},"a4n":{"cW":["mm"],"bn":["mm"],"bn.T":"mm","cW.T":"mm"},"aan":{"cb":["v_"],"aZ":[],"ae":[],"de":[]},"a2i":{"cW":["kx"],"bn":["kx"],"bn.T":"kx","cW.T":"kx"},"a2j":{"cW":["ky"],"bn":["ky"],"bn.T":"ky","cW.T":"ky"},"cY":{"aZ":[],"ae":[]},"m_":{"cY":[],"aZ":[],"ae":[]},"a0z":{"de":[]},"BJ":{"aZ":[],"ae":[]},"qo":{"W":[],"e":[]},"qp":{"W":[],"e":[]},"HS":{"kG":["cY"],"bd":[],"b_":[],"e":[],"kG.T":"cY"},"yl":{"T":["qo"]},"a2J":{"W":[],"e":[]},"a2I":{"T":["qo"]},"Qc":{"a5":[],"e":[]},"aW0":{"bd":[],"b_":[],"e":[]},"BK":{"W":[],"e":[]},"aRH":{"be":[]},"rh":{"be":[]},"rD":{"be":[]},"aQE":{"be":[]},"HT":{"cY":[],"aZ":[],"ae":[]},"a2K":{"T":["BK"]},"Va":{"bn":["aRH"],"bn.T":"aRH"},"TN":{"bn":["rh"],"bn.T":"rh"},"Uo":{"bn":["rD"],"bn.T":"rD"},"B8":{"bn":["aQE"],"bn.T":"aQE"},"qw":{"W":[],"e":[]},"BP":{"T":["qw"]},"HV":{"bd":[],"b_":[],"e":[]},"hv":{"W":[],"e":[]},"dQ":{"T":["hv<1>"]},"i3":{"h5":[]},"by":{"i3":["1"],"h5":[]},"W":{"e":[]},"au":{"v":[]},"jc":{"au":[],"v":[]},"oh":{"au":[],"v":[]},"h3":{"au":[],"v":[]},"qD":{"i3":["1"],"h5":[]},"a5":{"e":[]},"b_":{"e":[]},"eb":{"b_":[],"e":[]},"bd":{"b_":[],"e":[]},"aF":{"e":[]},"Ru":{"aF":[],"e":[]},"bj":{"aF":[],"e":[]},"eT":{"aF":[],"e":[]},"Qb":{"aF":[],"e":[]},"AD":{"au":[],"v":[]},"xr":{"au":[],"v":[]},"DF":{"au":[],"v":[]},"b0":{"au":[],"v":[]},"Rt":{"b0":[],"au":[],"v":[]},"Fj":{"b0":[],"au":[],"v":[]},"ii":{"b0":[],"au":[],"v":[]},"V8":{"b0":[],"au":[],"v":[]},"a4a":{"au":[],"v":[]},"a4d":{"e":[]},"qA":{"a5":[],"e":[]},"j5":{"W":[],"e":[]},"wF":{"T":["j5"]},"cK":{"qC":["1"]},"a2S":{"bj":[],"aF":[],"e":[]},"qF":{"W":[],"e":[]},"yt":{"T":["qF"]},"vI":{"rf":[]},"m4":{"a5":[],"e":[]},"m6":{"da":[],"bd":[],"b_":[],"e":[]},"pO":{"aA":["al"],"aq":["al"],"aA.T":"al","aq.T":"al"},"lP":{"aA":["iW"],"aq":["iW"],"aA.T":"iW","aq.T":"iW"},"lS":{"aA":["dh"],"aq":["dh"],"aA.T":"dh","aq.T":"dh"},"pL":{"aA":["ch?"],"aq":["ch?"],"aA.T":"ch?","aq.T":"ch?"},"r8":{"aA":["bc"],"aq":["bc"],"aA.T":"bc","aq.T":"bc"},"tC":{"aA":["q"],"aq":["q"],"aA.T":"q","aq.T":"q"},"zG":{"W":[],"e":[]},"zJ":{"W":[],"e":[]},"zL":{"W":[],"e":[]},"zI":{"W":[],"e":[]},"zH":{"W":[],"e":[]},"zK":{"W":[],"e":[]},"Bl":{"aA":["a2"],"aq":["a2"],"aA.T":"a2","aq.T":"a2"},"R6":{"W":[],"e":[]},"vL":{"T":["1"]},"uF":{"T":["1"]},"a0i":{"T":["zG"]},"a0l":{"T":["zJ"]},"a0n":{"T":["zL"]},"a0k":{"T":["zI"]},"a0j":{"T":["zH"]},"a0m":{"T":["zK"]},"iZ":{"bd":[],"b_":[],"e":[]},"C6":{"h3":[],"au":[],"v":[]},"kG":{"bd":[],"b_":[],"e":[]},"yx":{"h3":[],"au":[],"v":[]},"da":{"bd":[],"b_":[],"e":[]},"tM":{"a5":[],"e":[]},"ly":{"aF":[],"e":[]},"yA":{"b0":[],"au":[],"v":[]},"Ik":{"bd":[],"b_":[],"e":[]},"qZ":{"W":[],"e":[]},"w_":{"aZ":[],"ae":[],"de":[]},"aau":{"e_":["a9"],"e_.T":"a9"},"PI":{"a9":[]},"a3z":{"T":["qZ"]},"aWI":{"bd":[],"b_":[],"e":[]},"UB":{"a5":[],"e":[]},"a46":{"ae":[]},"a3F":{"bj":[],"aF":[],"e":[]},"a5F":{"A":[],"b2":["A"],"r":[],"aC":[]},"jP":{"iZ":["dN"],"bd":[],"b_":[],"e":[],"iZ.T":"dN"},"Iu":{"W":[],"e":[]},"a3P":{"T":["Iu"],"de":[]},"wf":{"a5":[],"e":[]},"y7":{"dj":[],"du":[]},"Mq":{"W":[],"e":[]},"a0v":{"qC":["y7"]},"a3V":{"a5":[],"e":[]},"TJ":{"a5":[],"e":[]},"aX9":{"jY":[]},"qG":{"bd":[],"b_":[],"e":[]},"Dj":{"W":[],"e":[]},"jS":{"T":["Dj"]},"yI":{"pd":[]},"yH":{"pd":[]},"IF":{"pd":[]},"IG":{"pd":[]},"a2Y":{"aZ":[],"y":["iM"],"ae":[],"y.E":"iM"},"a2Z":{"eq":["ba>?"],"aZ":[],"ae":[]},"dT":{"b_":[],"e":[]},"IK":{"au":[],"v":[]},"oc":{"ae":[]},"nf":{"W":[],"e":[]},"IL":{"T":["nf"]},"wp":{"W":[],"e":[]},"Dt":{"T":["wp"]},"u8":{"A":[],"ao":["A","f7"],"r":[],"aC":[],"ao.1":"f7","ao.0":"A"},"ml":{"W":[],"e":[]},"pg":{"ft":["pg"],"ft.E":"pg"},"u9":{"bd":[],"b_":[],"e":[]},"ll":{"A":[],"b2":["A"],"r":[],"aC":[],"ft":["ll"],"ft.E":"ll"},"Jh":{"A":[],"b2":["A"],"r":[],"aC":[]},"yK":{"ly":["+(L,bc,L)"],"aF":[],"e":[],"ly.0":"+(L,bc,L)"},"Kw":{"eT":[],"aF":[],"e":[]},"a9w":{"b0":[],"au":[],"v":[]},"z8":{"f7":[],"eM":[],"dq":["A"],"cE":[]},"a4k":{"T":["ml"]},"yL":{"aF":[],"e":[]},"a4j":{"b0":[],"au":[],"v":[]},"a1U":{"bj":[],"aF":[],"e":[]},"Jg":{"f4":["+(L,bc,L)","A"],"A":[],"b2":["A"],"r":[],"aC":[],"f4.0":"+(L,bc,L)"},"BT":{"W":[],"e":[]},"FC":{"W":[],"e":[]},"od":{"hH":[]},"HZ":{"T":["BT"]},"HY":{"aZ":[],"ae":[]},"a2V":{"ae":[]},"Kj":{"T":["FC"]},"a8S":{"ae":[]},"aXb":{"e2":["1"],"h5":[]},"wr":{"a5":[],"e":[]},"Dv":{"f3":["1"],"fb":["1"],"d4":["1"]},"wy":{"bd":[],"b_":[],"e":[]},"DJ":{"W":[],"e":[]},"mz":{"T":["DJ"]},"a2r":{"bj":[],"aF":[],"e":[]},"a5C":{"A":[],"b2":["A"],"r":[],"kO":[],"aC":[]},"ot":{"W":[],"e":[]},"tI":{"bd":[],"b_":[],"e":[]},"Ej":{"W":[],"e":[]},"eq":{"aZ":[],"ae":[]},"a5Z":{"T":["ot"]},"Ju":{"T":["Ej"]},"c3":{"eq":["1"],"aZ":[],"ae":[]},"iL":{"c3":["1"],"eq":["1"],"aZ":[],"ae":[]},"Js":{"iL":["1"],"c3":["1"],"eq":["1"],"aZ":[],"ae":[]},"Ef":{"iL":["1"],"c3":["1"],"eq":["1"],"aZ":[],"ae":[],"c3.T":"1","iL.T":"1"},"mE":{"iL":["K"],"c3":["K"],"eq":["K"],"aZ":[],"ae":[],"c3.T":"K","iL.T":"K"},"Vd":{"iL":["m?"],"c3":["m?"],"eq":["m?"],"aZ":[],"ae":[],"c3.T":"m?","iL.T":"m?"},"Vj":{"W":[],"e":[]},"blr":{"bo_":["av"]},"yZ":{"T":["Vj<1>"]},"a67":{"bd":[],"b_":[],"e":[]},"a5W":{"c3":["ov?"],"eq":["ov?"],"aZ":[],"ae":[],"c3.T":"ov?"},"Iz":{"iZ":["pa"],"bd":[],"b_":[],"e":[],"iZ.T":"pa"},"yG":{"W":[],"e":[]},"pb":{"T":["yG<1>"]},"wq":{"d4":["1"]},"fb":{"d4":["1"]},"a24":{"bn":["ht"],"bn.T":"ht"},"f3":{"fb":["1"],"d4":["1"]},"DC":{"f3":["1"],"fb":["1"],"d4":["1"]},"Vl":{"a5":[],"e":[]},"Ev":{"bd":[],"b_":[],"e":[]},"Ew":{"aZ":[],"ae":[]},"JP":{"W":[],"e":[]},"Jx":{"e2":["h5"],"h5":[],"e2.T":"h5"},"JQ":{"T":["JP"]},"h8":{"i9":[],"hH":[]},"rZ":{"h8":[],"i9":[],"hH":[]},"k_":{"h8":[],"i9":[],"hH":[]},"jU":{"h8":[],"i9":[],"hH":[]},"j7":{"h8":[],"i9":[],"hH":[]},"Z6":{"h8":[],"i9":[],"hH":[]},"JE":{"bd":[],"b_":[],"e":[]},"lj":{"ft":["lj"],"ft.E":"lj"},"Ey":{"W":[],"e":[]},"VD":{"T":["Ey"]},"mG":{"iG":[],"aZ":[],"ae":[]},"rV":{"hH":[]},"Ez":{"mG":[],"iG":[],"aZ":[],"ae":[]},"VE":{"a5":[],"e":[]},"MT":{"a5":[],"e":[]},"Cx":{"a5":[],"e":[]},"EA":{"W":[],"e":[]},"JG":{"bd":[],"b_":[],"e":[]},"t_":{"T":["EA"]},"JI":{"W":[],"e":[]},"a6e":{"T":["JI"]},"JH":{"aZ":[],"ae":[]},"a6d":{"bj":[],"aF":[],"e":[]},"Jn":{"A":[],"b2":["A"],"r":[],"aC":[]},"a5X":{"c3":["R?"],"eq":["R?"],"aZ":[],"ae":[],"c3.T":"R?"},"eW":{"be":[]},"Eu":{"cW":["eW"],"bn":["eW"],"bn.T":"eW","cW.T":"eW"},"wH":{"W":[],"e":[]},"lo":{"hF":[],"dj":[],"du":[]},"pp":{"iF":[],"hZ":[],"dj":[],"du":[]},"p4":{"i6":[],"hZ":[],"dj":[],"du":[]},"wW":{"aZ":[],"ae":[]},"kU":{"T":["1"]},"baJ":{"W":[],"e":[]},"xs":{"aZ":[],"ae":[]},"wh":{"aZ":[],"ae":[]},"t0":{"W":[],"e":[]},"wZ":{"bd":[],"b_":[],"e":[]},"a6n":{"eX":[],"T":["t0"],"ae":[]},"VI":{"ae":[]},"Fg":{"W":[],"e":[]},"a8y":{"T":["Fg"]},"a8z":{"iZ":["Q"],"bd":[],"b_":[],"e":[],"iZ.T":"Q"},"ak":{"xg":[]},"tq":{"W":[],"e":[]},"Fh":{"W":[],"e":[]},"xh":{"aZ":[],"ae":[]},"K4":{"T":["tq"]},"Ah":{"a5":[],"e":[]},"Fi":{"aZ":[],"ae":[]},"K3":{"T":["Fh"]},"a8C":{"bd":[],"b_":[],"e":[]},"oI":{"a5":[],"e":[]},"z0":{"bj":[],"aF":[],"e":[]},"a8I":{"b0":[],"au":[],"v":[]},"Jp":{"A":[],"b2":["A"],"DP":[],"r":[],"aC":[]},"XZ":{"i9":[]},"Y_":{"bj":[],"aF":[],"e":[]},"a5K":{"A":[],"b2":["A"],"r":[],"aC":[]},"Yd":{"aF":[],"e":[]},"xl":{"aF":[],"e":[]},"Ya":{"xl":[],"aF":[],"e":[]},"xk":{"b0":[],"au":[],"v":[]},"Cl":{"eb":["kI"],"b_":[],"e":[],"eb.T":"kI"},"Fs":{"k3":["1","2"],"aF":[],"e":[]},"Ft":{"b0":[],"au":[],"v":[]},"Fu":{"aZ":[],"ae":[]},"Yi":{"bj":[],"aF":[],"e":[]},"yW":{"A":[],"b2":["A"],"r":[],"aC":[]},"Yh":{"aZ":[],"ae":[]},"Hx":{"aZ":[],"ae":[]},"Yv":{"a5":[],"e":[]},"FH":{"W":[],"e":[]},"a93":{"T":["FH"]},"QP":{"h1":[]},"QQ":{"h1":[]},"R0":{"h1":[]},"R2":{"h1":[]},"R_":{"h1":[]},"R1":{"h1":[]},"R3":{"h1":[]},"QZ":{"h1":[]},"Ea":{"A":[],"b2":["A"],"r":[],"aC":[]},"wN":{"A":[],"b2":["A"],"r":[],"aC":[]},"xE":{"bj":[],"aF":[],"e":[]},"YC":{"bj":[],"aF":[],"e":[]},"a2e":{"du":[]},"FR":{"bj":[],"aF":[],"e":[]},"vi":{"da":[],"bd":[],"b_":[],"e":[]},"b71":{"da":[],"bd":[],"b_":[],"e":[]},"JM":{"W":[],"e":[]},"a4e":{"a5":[],"e":[]},"bW":{"a5":[],"e":[]},"a6m":{"T":["JM"]},"a62":{"a5":[],"e":[]},"a6l":{"aZ":[],"ae":[]},"Bc":{"be":[]},"q6":{"be":[]},"q8":{"be":[]},"q7":{"be":[]},"B7":{"be":[]},"lU":{"be":[]},"lX":{"be":[]},"ql":{"be":[]},"qh":{"be":[]},"qi":{"be":[]},"i1":{"be":[]},"nO":{"be":[]},"lY":{"be":[]},"lW":{"be":[]},"qk":{"be":[]},"lV":{"be":[]},"mH":{"be":[]},"ahG":{"be":[]},"mI":{"be":[]},"kt":{"be":[]},"mm":{"be":[]},"op":{"be":[]},"jX":{"be":[]},"oW":{"be":[]},"jf":{"be":[]},"oU":{"be":[]},"kx":{"be":[]},"ky":{"be":[]},"PS":{"be":[]},"fP":{"eM":[],"dq":["A"],"cE":[]},"pj":{"W":[],"e":[]},"JN":{"W":[],"e":[]},"G2":{"W":[],"e":[]},"JR":{"T":["pj"]},"JO":{"T":["JN"]},"Kt":{"T":["G2"]},"AB":{"cb":["v_"],"aZ":[],"ae":[],"de":[]},"G9":{"W":[],"e":[]},"HK":{"bd":[],"b_":[],"e":[]},"a9z":{"T":["G9"]},"a1a":{"ae":[]},"Gd":{"W":[],"e":[]},"a9B":{"T":["Gd"]},"xM":{"aZ":[],"ae":[]},"zO":{"W":[],"e":[]},"e9":{"bj":[],"aF":[],"e":[]},"ib":{"W":[],"e":[]},"GT":{"T":["zO"]},"Y6":{"W":[],"e":[]},"Ty":{"W":[],"e":[]},"Vn":{"W":[],"e":[]},"Vi":{"W":[],"e":[]},"Y0":{"W":[],"e":[]},"Pz":{"W":[],"e":[]},"Mp":{"W":[],"e":[]},"xT":{"W":[],"e":[]},"xU":{"T":["xT<1>"]},"Gr":{"cb":["xV"],"aZ":[],"ae":[]},"dL":{"W":[],"e":[]},"zf":{"T":["dL<1>"]},"Gw":{"W":[],"e":[]},"ug":{"bd":[],"b_":[],"e":[]},"IS":{"bd":[],"b_":[],"e":[]},"KP":{"T":["Gw"],"de":[]},"UC":{"a5":[],"e":[]},"IY":{"aF":[],"e":[]},"a5c":{"b0":[],"au":[],"v":[]},"Hy":{"i3":["1"],"h5":[]},"Gz":{"eT":[],"aF":[],"e":[]},"aai":{"b0":[],"au":[],"v":[]},"XW":{"eT":[],"aF":[],"e":[]},"Ze":{"a5":[],"e":[]},"aak":{"bd":[],"b_":[],"e":[]},"aaj":{"bj":[],"aF":[],"e":[]},"a5S":{"A":[],"b2":["A"],"r":[],"aC":[]},"Rd":{"a5":[],"e":[]},"y4":{"ez":[]},"aap":{"eb":["jd"],"b_":[],"e":[],"eb.T":"jd"},"a0H":{"bj":[],"aF":[],"e":[]},"Jm":{"A":[],"b2":["A"],"r":[],"aC":[]},"cq":{"Zl":[]},"a0w":{"Zl":[]},"Zi":{"x":[],"cr":["x"]},"KR":{"x":[],"cr":["x"]},"Zj":{"dS":[],"cr":["dS"]},"KS":{"dS":[],"cr":["dS"]},"Zh":{"bl":[],"cr":["bl?"]},"a3t":{"cr":["bl?"]},"jm":{"bl":[],"cr":["bl?"]},"Zk":{"q":[],"cr":["q"]},"aas":{"q":[],"cr":["q"]},"Ig":{"cr":["1?"]},"bS":{"cr":["1"]},"iH":{"cr":["1"]},"bB":{"cr":["1"]},"Zm":{"cb":["bq"],"aZ":[],"ae":[]},"GM":{"W":[],"e":[]},"aaw":{"T":["GM"]},"hl":{"W":[],"e":[],"nw":["hl"],"nw.T":"hl"},"GS":{"T":["hl"]},"qm":{"eN":["R"],"eN.T":"R"},"D1":{"eN":["h"],"eN.T":"h"},"Vh":{"eN":["R"],"eN.T":"R"},"rT":{"eN":["h"],"eN.T":"h"},"ix":{"eN":["h"],"eN.T":"h"},"Qz":{"a7":[]},"a2U":{"e_":["a7"],"e_.T":"a7"},"NF":{"a7":[]},"NG":{"a7":[]},"NH":{"a7":[]},"NI":{"a7":[]},"NJ":{"a7":[]},"NK":{"a7":[]},"NL":{"a7":[]},"NM":{"a7":[]},"NN":{"a7":[]},"NO":{"a7":[]},"NP":{"a7":[]},"NQ":{"a7":[]},"NR":{"a7":[]},"NS":{"a7":[]},"AM":{"a7":[]},"NT":{"a7":[]},"NU":{"a7":[]},"AN":{"a7":[]},"NV":{"a7":[]},"NW":{"a7":[]},"NX":{"a7":[]},"NY":{"a7":[]},"NZ":{"a7":[]},"O_":{"a7":[]},"O0":{"a7":[]},"O1":{"a7":[]},"AO":{"a7":[]},"O2":{"a7":[]},"O3":{"a7":[]},"O4":{"a7":[]},"O5":{"a7":[]},"O6":{"a7":[]},"O7":{"a7":[]},"O8":{"a7":[]},"O9":{"a7":[]},"Oa":{"a7":[]},"Ob":{"a7":[]},"Oc":{"a7":[]},"Od":{"a7":[]},"Oe":{"a7":[]},"Of":{"a7":[]},"Og":{"a7":[]},"Oh":{"a7":[]},"Oi":{"a7":[]},"Oj":{"a7":[]},"Ok":{"a7":[]},"Ol":{"a7":[]},"Om":{"a7":[]},"On":{"a7":[]},"Oo":{"a7":[]},"Op":{"a7":[]},"Oq":{"a7":[]},"AP":{"a7":[]},"Or":{"a7":[]},"Os":{"a7":[]},"Ot":{"a7":[]},"Ou":{"a7":[]},"Ov":{"a7":[]},"Ow":{"a7":[]},"Ox":{"a7":[]},"Oy":{"a7":[]},"Oz":{"a7":[]},"OA":{"a7":[]},"OB":{"a7":[]},"OC":{"a7":[]},"OD":{"a7":[]},"OE":{"a7":[]},"OF":{"a7":[]},"OG":{"a7":[]},"OH":{"a7":[]},"OI":{"a7":[]},"OJ":{"a7":[]},"OK":{"a7":[]},"OL":{"a7":[]},"OM":{"a7":[]},"ON":{"a7":[]},"OO":{"a7":[]},"OP":{"a7":[]},"OQ":{"a7":[]},"OR":{"a7":[]},"OS":{"a7":[]},"OT":{"a7":[]},"OU":{"a7":[]},"OV":{"a7":[]},"OW":{"a7":[]},"OX":{"a7":[]},"OY":{"a7":[]},"OZ":{"a7":[]},"P_":{"a7":[]},"AQ":{"a7":[]},"P0":{"a7":[]},"P1":{"a7":[]},"P2":{"a7":[]},"P3":{"a7":[]},"P4":{"a7":[]},"P5":{"a7":[]},"P6":{"a7":[]},"AR":{"a7":[]},"P7":{"a7":[]},"P8":{"a7":[]},"P9":{"a7":[]},"Pa":{"a7":[]},"Pb":{"a7":[]},"Pc":{"a7":[]},"Pd":{"a7":[]},"Pe":{"a7":[]},"Pf":{"a7":[]},"Pg":{"a7":[]},"Ph":{"a7":[]},"Pi":{"a7":[]},"Pj":{"a7":[]},"Pk":{"a7":[]},"AS":{"a7":[]},"Pl":{"a7":[]},"AT":{"a7":[]},"Pm":{"a7":[]},"Pn":{"a7":[]},"Po":{"a7":[]},"RL":{"a4":[]},"RM":{"a4":[]},"RN":{"a4":[]},"RO":{"a4":[]},"RP":{"a4":[]},"RQ":{"a4":[]},"RR":{"a4":[]},"RS":{"a4":[]},"RT":{"a4":[]},"RU":{"a4":[]},"RV":{"a4":[]},"RW":{"a4":[]},"RX":{"a4":[]},"RY":{"a4":[]},"CK":{"a4":[]},"RZ":{"a4":[]},"S_":{"a4":[]},"CL":{"a4":[]},"S0":{"a4":[]},"S1":{"a4":[]},"S2":{"a4":[]},"S3":{"a4":[]},"S4":{"a4":[]},"S5":{"a4":[]},"S6":{"a4":[]},"S7":{"a4":[]},"CM":{"a4":[]},"S8":{"a4":[]},"S9":{"a4":[]},"Sa":{"a4":[]},"Sb":{"a4":[]},"Sc":{"a4":[]},"Sd":{"a4":[]},"Se":{"a4":[]},"Sf":{"a4":[]},"Sg":{"a4":[]},"Sh":{"a4":[]},"Si":{"a4":[]},"Sj":{"a4":[]},"Sk":{"a4":[]},"Sl":{"a4":[]},"Sm":{"a4":[]},"Sn":{"a4":[]},"So":{"a4":[]},"Sp":{"a4":[]},"Sq":{"a4":[]},"Sr":{"a4":[]},"Ss":{"a4":[]},"St":{"a4":[]},"Su":{"a4":[]},"Sv":{"a4":[]},"Sw":{"a4":[]},"CN":{"a4":[]},"Sx":{"a4":[]},"Sy":{"a4":[]},"Sz":{"a4":[]},"SA":{"a4":[]},"SB":{"a4":[]},"SC":{"a4":[]},"SD":{"a4":[]},"SE":{"a4":[]},"SF":{"a4":[]},"SG":{"a4":[]},"SH":{"a4":[]},"SI":{"a4":[]},"SJ":{"a4":[]},"SK":{"a4":[]},"SL":{"a4":[]},"SM":{"a4":[]},"SN":{"a4":[]},"SO":{"a4":[]},"SP":{"a4":[]},"SQ":{"a4":[]},"SR":{"a4":[]},"SS":{"a4":[]},"ST":{"a4":[]},"SU":{"a4":[]},"SV":{"a4":[]},"SW":{"a4":[]},"SX":{"a4":[]},"SY":{"a4":[]},"SZ":{"a4":[]},"T_":{"a4":[]},"T0":{"a4":[]},"T1":{"a4":[]},"T2":{"a4":[]},"T3":{"a4":[]},"T4":{"a4":[]},"T5":{"a4":[]},"T6":{"a4":[]},"CO":{"a4":[]},"T7":{"a4":[]},"T8":{"a4":[]},"T9":{"a4":[]},"Ta":{"a4":[]},"Tb":{"a4":[]},"Tc":{"a4":[]},"Td":{"a4":[]},"CP":{"a4":[]},"Te":{"a4":[]},"Tf":{"a4":[]},"Tg":{"a4":[]},"Th":{"a4":[]},"Ti":{"a4":[]},"Tj":{"a4":[]},"Tk":{"a4":[]},"Tl":{"a4":[]},"Tm":{"a4":[]},"Tn":{"a4":[]},"To":{"a4":[]},"Tp":{"a4":[]},"Tq":{"a4":[]},"Tr":{"a4":[]},"CQ":{"a4":[]},"Ts":{"a4":[]},"CR":{"a4":[]},"Tt":{"a4":[]},"Tu":{"a4":[]},"Tv":{"a4":[]},"Zp":{"a9":[]},"Zq":{"a9":[]},"Zr":{"a9":[]},"Zs":{"a9":[]},"Zt":{"a9":[]},"Zu":{"a9":[]},"Zv":{"a9":[]},"Zw":{"a9":[]},"Zx":{"a9":[]},"Zy":{"a9":[]},"Zz":{"a9":[]},"ZA":{"a9":[]},"ZB":{"a9":[]},"GE":{"a9":[]},"ZC":{"a9":[]},"ZD":{"a9":[]},"GF":{"a9":[]},"ZE":{"a9":[]},"ZF":{"a9":[]},"ZG":{"a9":[]},"ZH":{"a9":[]},"ZI":{"a9":[]},"ZJ":{"a9":[]},"ZK":{"a9":[]},"ZL":{"a9":[]},"GG":{"a9":[]},"ZM":{"a9":[]},"ZN":{"a9":[]},"ZO":{"a9":[]},"ZP":{"a9":[]},"ZQ":{"a9":[]},"ZR":{"a9":[]},"ZS":{"a9":[]},"ZT":{"a9":[]},"ZU":{"a9":[]},"ZV":{"a9":[]},"ZW":{"a9":[]},"ZX":{"a9":[]},"ZY":{"a9":[]},"ZZ":{"a9":[]},"a__":{"a9":[]},"a_0":{"a9":[]},"a_1":{"a9":[]},"a_2":{"a9":[]},"a_3":{"a9":[]},"a_4":{"a9":[]},"a_5":{"a9":[]},"a_6":{"a9":[]},"a_7":{"a9":[]},"a_8":{"a9":[]},"a_9":{"a9":[]},"GH":{"a9":[]},"a_a":{"a9":[]},"a_b":{"a9":[]},"a_c":{"a9":[]},"a_d":{"a9":[]},"a_e":{"a9":[]},"a_f":{"a9":[]},"a_g":{"a9":[]},"a_h":{"a9":[]},"a_i":{"a9":[]},"a_j":{"a9":[]},"a_k":{"a9":[]},"a_l":{"a9":[]},"a_m":{"a9":[]},"a_n":{"a9":[]},"a_o":{"a9":[]},"a_p":{"a9":[]},"a_q":{"a9":[]},"a_r":{"a9":[]},"a_s":{"a9":[]},"a_t":{"a9":[]},"a_u":{"a9":[]},"a_v":{"a9":[]},"a_w":{"a9":[]},"a_x":{"a9":[]},"a_y":{"a9":[]},"a_z":{"a9":[]},"a_A":{"a9":[]},"a_B":{"a9":[]},"a_C":{"a9":[]},"a_D":{"a9":[]},"a_E":{"a9":[]},"a_F":{"a9":[]},"a_G":{"a9":[]},"a_H":{"a9":[]},"a_I":{"a9":[]},"a_J":{"a9":[]},"GI":{"a9":[]},"a_K":{"a9":[]},"a_L":{"a9":[]},"a_M":{"a9":[]},"a_N":{"a9":[]},"a_O":{"a9":[]},"a_P":{"a9":[]},"a_Q":{"a9":[]},"GJ":{"a9":[]},"a_R":{"a9":[]},"a_S":{"a9":[]},"a_T":{"a9":[]},"a_U":{"a9":[]},"a_V":{"a9":[]},"a_W":{"a9":[]},"a_X":{"a9":[]},"a_Y":{"a9":[]},"a_Z":{"a9":[]},"a0_":{"a9":[]},"a00":{"a9":[]},"a01":{"a9":[]},"a02":{"a9":[]},"GK":{"a9":[]},"a03":{"a9":[]},"GL":{"a9":[]},"a04":{"a9":[]},"a05":{"a9":[]},"a06":{"a9":[]},"QA":{"a4":[]},"a3L":{"e_":["a4"],"e_.T":"a4"},"QC":{"a9":[]},"aav":{"e_":["a9"],"e_.T":"a9"},"GZ":{"fH":[]},"pI":{"W":[],"e":[]},"D5":{"a5":[],"e":[]},"a0G":{"T":["pI"]},"hn":{"aZ":[],"ae":[]},"eL":{"aZ":[],"ae":[]},"ic":{"aZ":[],"ae":[]},"mX":{"aZ":[],"ae":[]},"Qy":{"a5":[],"e":[]},"Qx":{"a5":[],"e":[]},"Dk":{"W":[],"e":[]},"TK":{"a5":[],"e":[]},"IJ":{"T":["Dk"]},"TL":{"a5":[],"e":[]},"A1":{"W":[],"e":[]},"yu":{"a5":[],"e":[]},"a0D":{"T":["A1"]},"a0C":{"a5":[],"e":[]},"a98":{"a5":[],"e":[]},"a2P":{"a5":[],"e":[]},"a9H":{"a5":[],"e":[]},"a2n":{"a5":[],"e":[]},"I7":{"a5":[],"e":[]},"aam":{"a5":[],"e":[]},"Hz":{"a5":[],"e":[]},"r_":{"W":[],"e":[]},"Il":{"T":["r_"]},"rK":{"W":[],"e":[]},"J4":{"T":["rK"]},"BV":{"W":[],"e":[]},"ph":{"W":[],"e":[]},"I3":{"T":["BV"]},"a2W":{"a5":[],"e":[]},"a2T":{"a5":[],"e":[]},"a55":{"a5":[],"e":[]},"a54":{"T":["ph"]},"a32":{"a5":[],"e":[]},"a2m":{"a5":[],"e":[]},"a31":{"a5":[],"e":[]},"a30":{"a5":[],"e":[]},"r1":{"W":[],"e":[]},"u4":{"a5":[],"e":[]},"Cr":{"W":[],"e":[]},"Im":{"T":["r1"]},"a9G":{"a5":[],"e":[]},"I4":{"a5":[],"e":[]},"a0S":{"a5":[],"e":[]},"a3r":{"T":["Cr"]},"CG":{"W":[],"e":[]},"a3H":{"T":["CG"]},"CY":{"W":[],"e":[]},"Iw":{"T":["CY"]},"aae":{"a5":[],"e":[]},"GW":{"a5":[],"e":[]},"I6":{"a5":[],"e":[]},"a3S":{"a5":[],"e":[]},"a9y":{"a5":[],"e":[]},"a3R":{"a5":[],"e":[]},"Iv":{"a5":[],"e":[]},"a3A":{"a5":[],"e":[]},"qy":{"W":[],"e":[]},"a2Q":{"T":["qy"]},"Gl":{"W":[],"e":[]},"a9K":{"T":["Gl"]},"a17":{"a5":[],"e":[]},"a16":{"a5":[],"e":[]},"a5_":{"a5":[],"e":[]},"a9J":{"a5":[],"e":[]},"a9L":{"a5":[],"e":[]},"KA":{"a5":[],"e":[]},"I8":{"a5":[],"e":[]},"a9I":{"a5":[],"e":[]},"V9":{"cx":[]},"uN":{"d1":["U"],"d1.T":"U"},"pV":{"cx":[]},"Yu":{"FB":[]},"Al":{"c4":["m","m","1"],"ba":["m","1"],"c4.V":"1","c4.K":"m","c4.C":"m"},"RD":{"cx":[]},"Vo":{"em":[]},"Vp":{"em":[]},"Vq":{"em":[]},"Vr":{"em":[]},"Vs":{"em":[]},"Vt":{"em":[]},"Vu":{"em":[]},"Vv":{"em":[]},"Vw":{"em":[]},"pf":{"au":[],"v":[]},"jb":{"e":[]},"wl":{"a5":[],"jb":[],"e":[]},"a47":{"au":[],"v":[]},"pe":{"a5":[],"e":[]},"ja":{"a5":[],"jb":[],"e":[]},"Fk":{"au":[],"v":[]},"XX":{"ja":[],"a5":[],"jb":[],"e":[]},"Ua":{"cx":[]},"Am":{"qK":["1"],"ja":[],"a5":[],"jb":[],"e":[]},"AG":{"ja":[],"a5":[],"jb":[],"e":[]},"AH":{"ja":[],"a5":[],"jb":[],"e":[]},"Cy":{"qK":["1"],"ja":[],"a5":[],"jb":[],"e":[]},"Ra":{"v":[]},"et":{"bd":[],"b_":[],"e":[]},"qK":{"ja":[],"a5":[],"jb":[],"e":[]},"I9":{"au":[],"v":[]},"tY":{"h3":[],"au":[],"Ra":["1"],"v":[]},"Hl":{"hd":["1","p0<1>"],"hd.D":"p0<1>"},"KO":{"hd":["1","ze<1>"],"hd.D":"ze<1>"},"TE":{"wl":[],"a5":[],"jb":[],"e":[]},"rE":{"qK":["1"],"ja":[],"a5":[],"jb":[],"e":[]},"Uw":{"cx":[]},"Uv":{"cx":[]},"ET":{"W":[],"e":[]},"x1":{"a5":[],"e":[]},"JU":{"T":["ET"]},"k0":{"W":[],"e":[]},"JV":{"T":["k0"]},"W9":{"a5":[],"e":[]},"ta":{"W":[],"e":[]},"EV":{"T":["ta"]},"oF":{"aZ":[],"ae":[]},"EU":{"W":[],"e":[]},"a6L":{"T":["EU"]},"tc":{"a5":[],"e":[]},"EX":{"f3":["1"],"fb":["1"],"d4":["1"]},"Wf":{"a5":[],"e":[]},"iv":{"hv":["1"],"W":[],"e":[]},"cT":{"dQ":["2"],"T":["hv<2>"],"cT.F":"1","cT.T":"2"},"x9":{"iv":["m"],"hv":["m"],"W":[],"e":[],"hv.T":"m","iv.T":"m"},"x6":{"cT":["x9","m"],"dQ":["m"],"T":["hv"],"cT.F":"x9","cT.T":"m"},"F_":{"W":[],"e":[]},"F0":{"T":["F_"]},"x7":{"bd":[],"b_":[],"e":[]},"Wg":{"a5":[],"e":[]},"td":{"W":[],"e":[]},"xa":{"T":["td"]},"F8":{"W":[],"e":[]},"XE":{"aZ":[],"ae":[]},"JY":{"T":["F8"]},"Fc":{"W":[],"e":[]},"XK":{"bd":[],"b_":[],"e":[]},"Fd":{"T":["Fc"]},"Ff":{"W":[],"e":[]},"XR":{"W":[],"e":[]},"XV":{"T":["Ff"]},"XU":{"bd":[],"b_":[],"e":[]},"QB":{"e_":["V"],"e_.T":"V"},"aM":{"MI":["aM","V"]},"EZ":{"W":[],"e":[]},"JW":{"T":["EZ"]},"F5":{"W":[],"e":[]},"a6U":{"T":["F5"],"de":[]},"th":{"W":[],"e":[]},"JZ":{"T":["th"]},"l_":{"a5":[],"e":[]},"XD":{"ae":[]},"F4":{"a5":[],"e":[]},"x8":{"da":[],"bd":[],"b_":[],"e":[]},"tn":{"aA":["l1"],"aq":["l1"],"aA.T":"l1","aq.T":"l1"},"ES":{"W":[],"e":[]},"tm":{"a5":[],"e":[]},"a6A":{"T":["ES"]},"kY":{"hl":[],"W":[],"e":[],"nw":["hl"],"nw.T":"hl"},"JT":{"T":["kY"]},"oG":{"fL":[]},"F1":{"W":[],"e":[]},"a6R":{"T":["F1"]},"D_":{"A":[],"b2":["A"],"r":[],"aC":[]},"xb":{"bj":[],"aF":[],"e":[]},"xc":{"A":[],"b2":["A"],"r":[],"aC":[]},"XB":{"bj":[],"aF":[],"e":[]},"F6":{"aZ":[],"ae":[]},"F7":{"W":[],"e":[]},"XC":{"T":["F7"]},"tj":{"bd":[],"b_":[],"e":[]},"W3":{"it":[]},"W2":{"it":[]},"W1":{"it":[]},"W0":{"it":[]},"W4":{"it":[]},"W5":{"it":[]},"Fa":{"a5":[],"e":[]},"XL":{"cb":["bq"],"aZ":[],"ae":[]},"Qh":{"k4":[],"cn":["k4"]},"yk":{"mR":[],"cn":["Ym"]},"k4":{"cn":["k4"]},"Yl":{"k4":[],"cn":["k4"]},"Ym":{"cn":["Ym"]},"Yn":{"cn":["Ym"]},"Yo":{"cx":[]},"xn":{"eO":[],"cx":[]},"xo":{"cn":["Ym"]},"mR":{"cn":["Ym"]},"Yw":{"eO":[],"cx":[]},"tU":{"d1":["1"],"d1.T":"1"},"HO":{"mS":["1"]},"b8U":{"W":[],"e":[]},"b7u":{"W":[],"e":[]},"b7v":{"T":["b7u"]},"bdP":{"bd":[],"b_":[],"e":[]},"bcR":{"bd":[],"b_":[],"e":[]}}')) -A.bdX(v.typeUniverse,JSON.parse('{"Rs":1,"n5":1,"Y4":1,"Y5":1,"Q3":1,"Qo":1,"C4":1,"BC":1,"Z3":1,"xY":1,"L8":2,"AF":1,"eS":1,"db":1,"wk":1,"mS":1,"e8":1,"D3":1,"iI":1,"nk":1,"FA":1,"Yt":2,"a0F":1,"tN":1,"Kh":1,"a1W":1,"tQ":1,"IR":1,"yj":1,"z2":1,"HN":1,"z1":2,"xZ":2,"KH":2,"CF":2,"K9":2,"K8":2,"Ka":1,"Kb":1,"KI":2,"tO":2,"N9":1,"Nr":2,"z3":1,"cn":1,"pq":1,"vy":1,"MR":2,"MX":1,"H5":1,"J6":1,"J7":1,"ek":2,"qJ":1,"PD":1,"zS":1,"v6":1,"Hg":1,"Hh":1,"Hi":1,"Dw":1,"L4":1,"Hm":1,"cb":1,"ku":1,"B4":1,"Dx":2,"Iq":1,"zg":1,"AI":1,"Hj":1,"Rr":1,"dq":1,"f5":1,"DQ":1,"AZ":1,"yT":1,"Jj":1,"wO":1,"Ko":1,"Lq":1,"Lr":1,"hV":1,"yn":1,"vL":1,"uF":1,"yw":1,"YX":1,"PH":1,"aXb":1,"eq":1,"ip":1,"Js":1,"zh":1,"b9X":1,"wq":1,"RB":1,"DC":1,"u2":1,"yR":1,"Fs":2,"K5":2,"eA":1,"dK":1,"Gf":1,"KC":1,"xW":1,"Cy":1,"Ra":1,"I9":1,"a1X":1,"aQ":2,"X":2,"HO":1}')) -var u={S:"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\u03f6\x00\u0404\u03f4 \u03f4\u03f6\u01f6\u01f6\u03f6\u03fc\u01f4\u03ff\u03ff\u0584\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u05d4\u01f4\x00\u01f4\x00\u0504\u05c4\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u0400\x00\u0400\u0200\u03f7\u0200\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u03ff\u0200\u0200\u0200\u03f7\x00",t:"\x01\x01)==\xb5\x8d\x15)QeyQQ\xc9===\xf1\xf0\x00\x01)==\xb5\x8d\x15)QeyQQ\xc9===\xf1\xf0\x01\x01)==\xb5\x8d\x15(QeyQQ\xc9===\xf1\xf0\x01\x01(<<\xb4\x8c\x15(PdxPP\xc8<<<\xf1\xf0\x01\x01)==\xb5\x8d\x15(PeyQQ\xc9===\xf1\xf0\x01\x01)==\xb5\x8d\x15(PdyPQ\xc9===\xf1\xf0\x01\x01)==\xb5\x8d\x15(QdxPP\xc9===\xf1\xf0\x01\x01)==\xb5\x8d\x15(QeyQQ\xc9\u011a==\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xdc\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\x01\x01)==\u0156\x8d\x15(QeyQQ\xc9===\xf1\xf0\x01\x01)==\xb5\x8d\x15(QeyQQ\xc9\u012e\u012e\u0142\xf1\xf0\x01\x01)==\xa1\x8d\x15(QeyQQ\xc9===\xf1\xf0\x00\x00(<<\xb4\x8c\x14(PdxPP\xc8<<<\xf0\xf0\x01\x01)==\xb5\x8d\x15)QeyQQ\xc9===\xf0\xf0??)\u0118=\xb5\x8c?)QeyQQ\xc9=\u0118\u0118?\xf0??)==\xb5\x8d?)QeyQQ\xc9\u012c\u012c\u0140?\xf0??)==\xb5\x8d?)QeyQQ\xc8\u0140\u0140\u0140?\xf0\xdc\xdc\xdc\xdc\xdc\u0168\xdc\xdc\xdc\xdc\xdc\xdc\xdc\xdc\xdc\xdc\xdc\xdc\xdc\x00\xa1\xa1\xa1\xa1\xa1\u0154\xa1\xa1\xa1\xa1\xa1\xa1\xa1\xa1\xa1\xa1\xa1\xa1\xa1\x00",e:"\x10\x10\b\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x10\x10\x10\x10\x10\x02\x02\x02\x04\x04\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x02\x01\x01\x01\x01\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x02\x0e\x02\x02\x02\x0e\x0e\x0e\x0e\x02\x02\x10\x02\x10\x04\x10\x04\x04\x02\x10\x10\x10\x02\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x02\x06\x02\x02\x02\x02\x06\x02\x06\x02\x02\x02\x02\x06\x06\x06\x02\x06\x02\x02\x02\x02\x02\x02\x02\x02\x04\x10\x10\x10\x10\x02\x02\x04\x04\x02\x02\x04\x04\x11\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x0e\x0e\x02\x0e\x10\x04\x04\x04\x04\x02\x10\x10\x10\x02\x10\x10\x10\x11\x02\x02\x02\x02\x02\x02\x02\x10\x10\x02\x0e\x0e\x0e\x02\x02\x02\x02\x02\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x0e\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x04\x10\x10\x10\x10\x10\x10\x02\x10\x10\x04\x04\x10\x10\x02\x10\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x04\x04\x04\x04\x04\x04\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x10\x10\x02\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x04\x10\x10\x10\x10\x10\x10\x10\x04\x04\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x02\x02\x10\x02\x10\x10\x10\x02\x10\x10\x02\x02\x02\x02\x02\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x04\x04\x10\x02\x02\x02\x02\x04\x10\x10\x10\x10\x10\x10\x10\x10\x04\x04\x04\x04\x11\x04\x04\x02\x10\x10\x10\x10\x10\x10\x10\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\f\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\f\r\r\r\r\r\r\r\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\x02\x02\x02\x02\x04\x10\x10\x10\x10\x02\x04\x04\x04\x02\x04\x04\x04\x11\b\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x01\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x10\x10\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x10\x10\x10\x10\x10\x10\x10\x02\x10\x10\x02\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x02\x02\x02\x10\x10\x10\x10\x10\x10\x01\x01\x01\x01\x01\x01\x01\x01\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x02\x02\x02\x02\x02\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x0e\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x06\x06\x06\x02\x02\x02\x02\x02\x10\x04\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x04\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\x02\x02\x02\x04\x04\x10\x04\x04\x10\x04\x04\x02\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x02\x02\x02\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x02\x02\x02\x10\x04\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x02\x0e\x0e\x02\x0e\x0e\x0e\x0e\x0e\x02\x02\x10\x02\x10\x10\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x02\x0e\x0e\x02\x0e\x0e\x0e\x0e\x0e\x02\x02\x10\x02\x04\x04\x10\x10\x10\x10\x02\x02\x04\x04\x02\x02\x04\x04\x11\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x02\x02\x02\x02\x0e\x0e\x02\x0e\n\n\n\n\n\n\n\x02\x02\x02\x02\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\v\x10\x10\b\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x10\x10\x10\x10\x10\x10\x10\x02\x10\x10\x10\x10\x10\x10\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x04\x10\x10\x10\x10\x10\x10\x10\x04\x10\x10\x04\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x02\x02\x02\x10\x02\x10\x10\x02\x10\x10\x10\x10\x10\x10\x10\b\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x04\x04\x04\x02\x10\x10\x02\x04\x04\x10\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x04\x04\x04\x04\x04\x02\x04\x04\x02\x02\x10\x10\x10\x10\b\x04\b\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x04\x10\x10\x10\x10\x02\x02\x10\x10\x04\x04\x04\x04\x10\x02\x02\x02\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x07\x01\x01\x00\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x02\x02\x02\x02\x04\x04\x10\x10\x04\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\b\x02\x10\x10\x10\x10\x02\x10\x10\x10\x02\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x10\x04\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x10\x02\x02\x04\x10\x10\x02\x02\x02\x02\x02\x02\x10\x04\x10\x10\x04\x04\x04\x10\x04\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x01\x03\x0f\x01\x01\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x04\x04\x10\x10\x04\x04\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x01\x01\x01\x01\x01\x01\x01\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x02\x02\x01\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x10\x10\x10\x02\x02\x10\x10\x02\x02\x02\x02\x02\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x0e\x0e\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x04\x10\x10\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x10\x04\x04\x10\x10\x10\x02\x10\x02\x04\x04\x04\x04\x04\x04\x04\x10\x04\x04\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x04\x10\x10\x10\x10\x04\x04\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x04\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x04\x10\x10\x10\x10\x10\x10\x10\x10\x10\x04\x10\x02\b\b\x02\x02\x02\x02\x02\x10\x10\x10\x10\x02\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x04\x10\x10\x10\x10\x10\x10\x10\x10\x04\x04\x10\x04\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x04\x10\x04\x04\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x04\x04\x04\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x04\x10\x10\x10\x10\x10\x10\x10\x10\x10\x04\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\b\b\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x04\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x10\x10\x02\x10\x04\x04\x02\x02\x02\x04\x04\x04\x02\x04\x04\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x10\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x04\x04\x10\x10\x10\x10\x04\x04\x10\x10\x04\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x02\x10\x04\x10\x04\x04\x04\x04\x02\x02\x04\x04\x02\x02\x04\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x02\x02\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x04\x04\x10\x10\x10\x10\x10\x10\x02\x10\x02\x02\x10\x02\x10\x10\x10\x04\x02\x04\x04\x10\x10\x10\b\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x10\x10\x02\x02\x02\x02\x10\x10\x02\x02\x10\x10\x10\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\b\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x10\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x04\x04\x04\x04\x10\x10\x04\x04\x04\x02\x02\x02\x02\x04\x04\x10\x04\x04\x04\x04\x04\x04\x10\x10\x10\x02\x02\x02\x02\x10\x10\x10\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x10\x04\x10\x02\x04\x04\x10\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x04\x10\x10\x10\x10\x04\x04\x10\x10\x02\x02\b\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\b\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x10\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x04\x04\x10\x10\x10\x10\x02\x02\x04\x04\x04\x04\x10\x10\x04\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x04\x10\x02\x02\x10\x10\x10\x10\x04\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x04\x10\x10\x10\x10\x10\x10\x10\x10\x04\x04\x10\x10\x10\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x04\x04\x10\x10\x10\x10\x10\x10\x04\x10\x04\x04\x10\x04\x10\x10\x04\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x04\x10\x10\x10\x04\x04\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x10\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x04\x04\x04\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\b\b\b\b\b\b\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x01\x02\x02\x02\x10\x10\x02\x10\x10\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x02\x06\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x02\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x04\b\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x04\x04\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\b\b\b\b\b\b\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x10\x04\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\n\x02\x02\x02\n\n\n\n\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x02\x06\x02\x06\x02\x02\x02\x02\x02\x02\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x06\x06\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x10\x02\x10\x02\x02\x02\x02\x04\x04\x04\x04\x04\x04\x04\x04\x10\x10\x10\x10\x10\x10\x10\x10\x04\x04\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x10\x02\x04\x10\x10\x10\x10\x10\x10\x10\x10\x10\x02\x02\x02\x04\x10\x10\x10\x10\x10\x02\x10\x10\x04\x02\x04\x04\x11\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x04\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x04\x10\x10\x04\x04\x02\x02\x02\x02\x02\x04\x10\x02\x02\x02\x02\x02\x02\x02\x02\x02",U:"\x15\x01)))\xb5\x8d\x01=Qeyey\xc9)))\xf1\xf0\x15\x01)))\xb5\x8d\x00=Qeyey\xc9)))\xf1\xf0\x15\x01)((\xb5\x8d\x01=Qeyey\xc9(((\xf1\xf0\x15\x01(((\xb4\x8c\x01"),cu:s("@<@>"),H6:s("zE"),BD:s("lz"),vH:s("b5t"),od:s("bn"),gj:s("lC"),pC:s("hk"),ZU:s("zF"),so:s("bT"),v:s("bT"),Bs:s("bT"),ph:s("zT"),fl:s("cs"),QM:s("cs"),U5:s("cs>"),JX:s("cs>"),kG:s("cs>"),dB:s("cs"),SB:s("cs<~>"),qH:s("b5D"),s1:s("zY"),vp:s("pG"),S7:s("A_"),jo:s("aUP"),_5:s("A0"),E:s("hn"),uj:s("uH"),W0:s("eL"),M1:s("Mz"),GV:s("ho"),Al:s("nz"),m_:s("ch"),k:s("al"),r:s("eM"),Jr:s("nC"),gP:s("jy"),pI:s("lJ"),V4:s("d9"),wY:s("dg"),nz:s("dg