identifier
stringlengths
42
383
collection
stringclasses
1 value
open_type
stringclasses
1 value
license
stringlengths
0
1.81k
date
float64
1.99k
2.02k
title
stringlengths
0
100
creator
stringlengths
1
39
language
stringclasses
157 values
language_type
stringclasses
2 values
word_count
int64
1
20k
token_count
int64
4
1.32M
text
stringlengths
5
1.53M
__index_level_0__
int64
0
57.5k
https://github.com/gaufung/PDA/blob/master/src/test/java/org/iecas/pda/TestLp.java
Github Open Source
Open Source
MIT
null
PDA
gaufung
Java
Code
144
841
package org.iecas.pda; import junit.framework.TestCase; import org.iecas.pda.io.DmuReader; import org.iecas.pda.io.DmuReaderFactory; import org.iecas.pda.lp.Dea; import org.iecas.pda.lp.EtaMax; import org.iecas.pda.lp.PhiMin; import org.iecas.pda.lp.ReciprocalDea; import org.iecas.pda.model.Dmu; import org.junit.Before; import java.util.Arrays; import java.util.List; /** * Created by gaufung on 06/07/2017. */ public class TestLp extends TestCase { private DmuReader reader; private List<Dmu> dmus_2006; private List<Dmu> dmus_2007; private Dea dea; @Before public void setUp() throws Exception{ reader = DmuReaderFactory.readerFromDB(); dmus_2006 = reader.read("2006"); dmus_2007 = reader.read("2007"); } public void testPhiMin() throws Exception{ dea = new ReciprocalDea(new PhiMin(dmus_2006, dmus_2006)); System.out.println(String.format("%s\n%s", "TT", Arrays.toString(dea.optimize().toArray()))); dea = new ReciprocalDea(new PhiMin(dmus_2006,dmus_2007)); System.out.println(String.format("%s\n%s", "TT1", Arrays.toString(dea.optimize().toArray()))); dea = new ReciprocalDea(new PhiMin(dmus_2007,dmus_2006)); System.out.println(String.format("%s\n%s", "T1T", Arrays.toString(dea.optimize().toArray()))); dea = new ReciprocalDea(new PhiMin(dmus_2007,dmus_2007)); System.out.println(String.format("%s\n%s", "T1T1", Arrays.toString(dea.optimize().toArray()))); } public void testEtaMax() throws Exception{ dea = new ReciprocalDea(new EtaMax(dmus_2006,dmus_2006)); System.out.println(String.format("%s\n%s", "TT", Arrays.toString(dea.optimize().toArray()))); dea = new ReciprocalDea(new EtaMax(dmus_2006,dmus_2007)); System.out.println(String.format("%s\n%s", "TT1", Arrays.toString(dea.optimize().toArray()))); dea = new ReciprocalDea(new EtaMax(dmus_2007,dmus_2006)); System.out.println(String.format("%s\n%s", "T1T", Arrays.toString(dea.optimize().toArray()))); dea = new ReciprocalDea(new EtaMax(dmus_2007,dmus_2007)); System.out.println(String.format("%s\n%s", "T1T1", Arrays.toString(dea.optimize().toArray()))); } }
1,506
https://github.com/yaronshahverdi/client-modules/blob/master/packages/gamut-labs/src/Testimonial/index.tsx
Github Open Source
Open Source
MIT
2,021
client-modules
yaronshahverdi
TSX
Code
420
1,333
import { Anchor, Box, FloatingCard, Text } from '@codecademy/gamut'; import { modeColorProps, system } from '@codecademy/gamut-styles'; import styled from '@emotion/styled'; import React, { ComponentProps, useMemo } from 'react'; import darkQuotes from '../assets/navyQuotes.svg'; const QuoteArt = styled.img` height: 25px; grid-area: art; `; const TestimonialPicture = styled.img` height: 98px; width: 98px; border-radius: 70px; grid-area: avatar; `; const TestimonialCard = styled(FloatingCard)(modeColorProps); const gridLayouts = { vertical: `'art art art' 'text text text' 'avatar byline byline' 'avatar byline byline' `, horizontal: `'avatar art text' 'byline art text' 'byline art text' 'byline art text' `, }; const TestimonialContent = styled(Box)( system.variant({ defaultVariant: 'horizontal', base: { display: 'grid', color: 'text-accent', gridTemplateColumns: 'repeat(2, minmax(0, max-content)) minmax(0, 1fr);', gridTemplateRows: 'repeat(max-content, 4)', gap: 16, }, variants: { horizontal: { gridTemplateAreas: { _: gridLayouts.vertical, md: gridLayouts.horizontal, }, }, vertical: { gridTemplateAreas: gridLayouts.vertical, }, }, }) ); export type TestimonialProps = ComponentProps<typeof TestimonialCard> & ComponentProps<typeof TestimonialContent> & { firstName: string; lastName: string; quote: string; /** * City location */ location: string; /** * associated occupation of the person. */ occupation?: string | null; /** * Associated workplace or institution */ company?: string | null; /** * Portrait image src */ imageUrl?: string | null; /** * setting this href will wrap the testimonial card with an anchor tag. */ href?: string | null; /** * used to conditonally hide the portrait photo */ hidePhoto?: boolean; onClick?: () => void; }; export const Testimonial: React.FC<TestimonialProps> = ({ firstName, lastName, company, occupation, location, href, quote, onClick, hidePhoto, imageUrl, variant, mode, ...rest }) => { const isVerticleLayout = variant === 'vertical'; const bottomText: string = useMemo(() => { if (company && location) return `@ ${company}, ${location}`; if (!company && location) return `${location}`; if (company && !location) return `@ ${company}`; return ''; }, [company, location]); const ariaLabel = `${firstName} ${lastName} ${bottomText}. ${quote}`; const renderTestimonial = () => ( <TestimonialCard {...rest} p={32} width="100%" height="100%" mode={mode}> <TestimonialContent variant={variant}> {!hidePhoto && imageUrl && ( <TestimonialPicture data-testid="testimonial-photo" src={imageUrl} alt="testimonial" /> )} <Box my={{ _: 'auto', md: isVerticleLayout && !hidePhoto ? 'auto' : 0 }} mr={32} gridArea={!hidePhoto ? 'byline' : 'avatar'} > <Text variant="p-small" as="p" fontFamily="accent"> {`${firstName} ${lastName[0]}.`} </Text> <Text variant="p-small" as="p" fontFamily="accent"> {occupation} </Text> {!!bottomText && ( <Text variant="p-small" as="p" fontFamily="accent"> {bottomText} </Text> )} </Box> <QuoteArt alt="" src={darkQuotes} /> <Text pt={{ _: 0, md: isVerticleLayout ? 0 : 4 }} pr={{ _: 16, sm: 0 }} gridArea="text" variant="title-md" as="p" > {quote} </Text> </TestimonialContent> </TestimonialCard> ); const renderTestimonialWithAnchor = () => ( <Anchor display={rest.display} data-testid="testimonial-link" href={href} variant="interface" onClick={onClick} aria-label={ariaLabel} > {renderTestimonial()} </Anchor> ); return href ? renderTestimonialWithAnchor() : renderTestimonial(); };
19,232
https://github.com/thepechinator/eslint-plugin-react/blob/master/tests/lib/rules/no-new-styled-component-in-react-methods.js
Github Open Source
Open Source
MIT
2,019
eslint-plugin-react
thepechinator
JavaScript
Code
1,051
3,189
/** * @fileoverview Prevent instantiation of a styled-component in React component methods * @author Paul Pechin */ 'use strict'; // ------------------------------------------------------------------------------ // Requirements // ------------------------------------------------------------------------------ const rule = require('../../../lib/rules/no-new-styled-component-in-react-methods'); const RuleTester = require('eslint').RuleTester; const parserOptions = { ecmaVersion: 2018, sourceType: 'module', ecmaFeatures: { experimentalObjectRestSpread: true, jsx: true } }; const ERROR_MESSAGE = 'Do not instantiate a styled-component in a React component method. It can lead to memory leaks.'; // ------------------------------------------------------------------------------ // Tests // ------------------------------------------------------------------------------ const ruleTester = new RuleTester(); ruleTester.run('no-new-styled-component-in-react-methods', rule, { valid: [ { code: ` const Button = styled.div\` position: relative; \`; const MyThing = styled(div)\` position: absolute; \`; var Hello = function() { return (<MyThing />) }; `, parserOptions: parserOptions }, { code: ` const Link = ({ className, children }) => ( <a className={className}> {children} </a> ) const StyledLink = styled(Link)\` color: palevioletred; font-weight: bold; \`; const MediaLinkBoxed = ({ ...props }) => { return ( <Container border {...props}> <StyledLink /> </Container> ); }; `, parserOptions: parserOptions }, { code: ` const Link = ({ className, children }) => ( <a className={className}> {children} </a> ) const StyledLink = Link.extend\` color: palevioletred; font-weight: bold; \`; const MediaLinkBoxed = ({ ...props }) => { return ( <Container border {...props}> <StyledLink /> </Container> ); }; `, parserOptions: parserOptions }, { code: ` const Text = Paragraph.withComponent('div'); const MediaLinkBoxed = ({ ...props }) => { return ( <Container border {...props}> <Text /> </Container> ); }; `, parserOptions: parserOptions }, { code: ` const Input = styled.input.attrs({ // we can define static props type: 'password', // or we can define dynamic ones margin: props => props.size || '1em', padding: props => props.size || '1em' })\` color: palevioletred; font-size: 1em; border: 2px solid palevioletred; border-radius: 3px; /* here we use the dynamically computed props */ margin: \${props => props.margin}; padding: \${props => props.padding}; \`; const MediaLinkBoxed = ({ ...props }) => { return ( <Container border {...props}> <Input /> </Container> ); }; `, parserOptions: parserOptions }, { code: ` const Link = ({ className, children }) => ( <a className={className}> {children} </a> ) const StyledLink = Link.extend\` color: palevioletred; font-weight: bold; \`; class Bellow extends React.Component { constructor(props) { super(props); this.state = { open: props.open, display: 'none', opacity: 0 }; this.handleHeadingClick = this.handleHeadingClick.bind(this); } componentDidMount() { if (this.props.open) { this.open(); } } handleHeadingClick(e, listener) { var bellow = this; } render() { const { title, children, listener } = this.props; return ( <BellowBox className={this.state.open ? 'bellow open' : 'bellow closed'} > <HeadingBox insetSpacing={2} border={true} onClick={e => this.handleHeadingClick(e, listener)} /> <BodyBox borderLeft={true} borderRight={true} borderBottom={true} > <Box insetSpacing={2} style={{ transition: 'opacity 0.33s ease', opacity: this.state.opacity, display: this.state.display, }} > {children} </Box> </BodyBox> </BellowBox> ); } } `, parserOptions: parserOptions, errors: [{ message: ERROR_MESSAGE }] } ], invalid: [ { code: ` var Hello = function() { const Button = styled.div\` position: relative; \` return (<Button />); }; `, parserOptions: parserOptions, errors: [{ message: ERROR_MESSAGE }] }, { code: ` const Link = ({ className, children }) => ( <a className={className}> {children} </a> ) const MediaLinkBoxed = ({ ...props }) => { const StyledLink = styled(Link)\` color: palevioletred; font-weight: bold; \`; return ( <Container border {...props}> <StyledLink /> </Container> ); }; `, parserOptions: parserOptions, errors: [{ message: ERROR_MESSAGE }] }, { code: ` const Link = ({ className, children }) => ( <a className={className}> {children} </a> ) const MediaLinkBoxed = ({ ...props }) => { const StyledLink = Link.extend\` color: palevioletred; font-weight: bold; \`; return ( <Container border {...props}> <StyledLink /> </Container> ); }; `, parserOptions: parserOptions, errors: [{ message: ERROR_MESSAGE }] }, { code: ` const MediaLinkBoxed = ({ ...props }) => { const Text = Paragraph.withComponent('div'); return ( <Container border {...props}> <Text /> </Container> ); }; `, parserOptions: parserOptions, errors: [{ message: ERROR_MESSAGE }] }, { code: ` const MediaLinkBoxed = ({ ...props }) => { const Text = Paragraph.withComponent('div').extend\` color: \${props => (props.invert ? 'initial' : gray50)}; \`; return ( <Container border {...props}> <Text /> </Container> ); }; `, parserOptions: parserOptions, errors: [{ message: ERROR_MESSAGE }, { message: ERROR_MESSAGE }] }, { code: ` const MediaLinkBoxed = ({ ...props }) => { const Input = styled.input.attrs({ // we can define static props type: 'password', // or we can define dynamic ones margin: props => props.size || '1em', padding: props => props.size || '1em' })\` color: palevioletred; font-size: 1em; border: 2px solid palevioletred; border-radius: 3px; /* here we use the dynamically computed props */ margin: \${props => props.margin}; padding: \${props => props.padding}; \`; return ( <Container border {...props}> <Input /> </Container> ); }; `, parserOptions: parserOptions, errors: [{ message: ERROR_MESSAGE }] }, { code: ` const Link = ({ className, children }) => ( <a className={className}> {children} </a> ) class Bellow extends React.Component { constructor(props) { super(props); this.state = { open: props.open, display: 'none', opacity: 0 }; this.handleHeadingClick = this.handleHeadingClick.bind(this); } componentDidMount() { if (this.props.open) { this.open(); } } handleHeadingClick(e, listener) { var bellow = this; const StyledLink = Link.extend\` color: palevioletred; font-weight: bold; \`; } render() { const { title, children, listener } = this.props; return ( <BellowBox className={this.state.open ? 'bellow open' : 'bellow closed'} > <HeadingBox insetSpacing={2} border={true} onClick={e => this.handleHeadingClick(e, listener)} /> <BodyBox borderLeft={true} borderRight={true} borderBottom={true} > <Box insetSpacing={2} style={{ transition: 'opacity 0.33s ease', opacity: this.state.opacity, display: this.state.display, }} > {children} </Box> </BodyBox> </BellowBox> ); } } `, parserOptions: parserOptions, errors: [{ message: ERROR_MESSAGE }] }, { code: ` class Bellow extends React.Component { constructor(props) { super(props); this.state = { open: props.open, display: 'none', opacity: 0 }; this.handleHeadingClick = this.handleHeadingClick.bind(this); this.Input = styled.input.attrs({ // we can define static props type: 'password', // or we can define dynamic ones margin: props => props.size || '1em', padding: props => props.size || '1em' })\` color: palevioletred; font-size: 1em; border: 2px solid palevioletred; border-radius: 3px; /* here we use the dynamically computed props */ margin: \${props => props.margin}; padding: \${props => props.padding}; \`; } componentDidMount() { if (this.props.open) { this.open(); } } handleHeadingClick(e, listener) { var bellow = this; } render() { const { title, children, listener } = this.props; return ( <BellowBox className={this.state.open ? 'bellow open' : 'bellow closed'} > <HeadingBox insetSpacing={2} border={true} onClick={e => this.handleHeadingClick(e, listener)} /> <BodyBox borderLeft={true} borderRight={true} borderBottom={true} > <Box insetSpacing={2} style={{ transition: 'opacity 0.33s ease', opacity: this.state.opacity, display: this.state.display, }} > {children} </Box> </BodyBox> </BellowBox> ); } } `, parserOptions: parserOptions, errors: [{ message: ERROR_MESSAGE }] } ] });
12,212
https://github.com/vothanhkiet/terraform-eks-with-weave/blob/master/src/weave/setup-weave.sh
Github Open Source
Open Source
MIT
2,019
terraform-eks-with-weave
vothanhkiet
Shell
Code
83
252
#!/usr/bin/env bash daemonsets_array=($(kubectl -n=kube-system get daemonsets --no-headers=true -o custom-columns=:metadata.name)) if [[ " ${daemonsets_array[@]} " =~ " aws-node " ]]; then echo 'found the aws-node daemonset, deleting it...' kubectl -n=kube-system delete daemonset "aws-node" fi echo 'Applying CNI genie manifest...' kubectl apply -f ./genie-plugin.yaml echo 'Applying weave manifest...' kubectl apply -f ./weave-cni.yaml echo 'Applying overlay network test pods and services...' kubectl apply -f ./test-overlay-services-and-deployments.yaml echo 'Complete. If there were changes to the weave configuration via the manifest, then you should rotate/replace current cluster worker nodes.'
15,522
https://github.com/pwerken/va-void/blob/master/src/Controller/GroupsController.php
Github Open Source
Open Source
0BSD
null
va-void
pwerken
PHP
Code
59
239
<?php namespace App\Controller; class GroupsController extends AppController { protected $searchFields = [ 'Groups.name' ]; public function initialize() { parent::initialize(); $this->mapMethod('add', [ 'referee' ]); $this->mapMethod('delete', [ 'super' ]); $this->mapMethod('edit', [ 'infobalie' ]); $this->mapMethod('index', [ 'player' ]); $this->mapMethod('view', [ 'player' ], true); } public function index() { if($this->setResponseModified()) return $this->response; $query = $this->Groups->find() ->select(['Groups.id', 'Groups.name'], true); $this->doRawIndex($query, 'Group', '/groups/'); } }
50,616
https://github.com/adamkrupadev/adam-video-conferencing/blob/master/src/Services/ConferenceManagement/Strive.Core/Services/Chat/ParticipantTypingTimer.cs
Github Open Source
Open Source
Apache-2.0
2,022
adam-video-conferencing
adamkrupadev
C#
Code
285
1,020
using System; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using MediatR; using Strive.Core.Services.Chat.Channels; using Strive.Core.Services.Chat.Requests; namespace Strive.Core.Services.Chat { public class ParticipantTypingTimer : IParticipantTypingTimer { private readonly IMediator _mediator; private readonly ITaskDelay _taskDelay; private readonly object _lock = new(); private readonly Dictionary<ParticipantInChannel, DateTimeOffset> _timers = new(); private CancellationTokenSource? _cancellationTokenSource; public ParticipantTypingTimer(IMediator mediator, ITaskDelay taskDelay) { _mediator = mediator; _taskDelay = taskDelay; } public void RemoveParticipantTypingAfter(Participant participant, ChatChannel channel, TimeSpan timespan) { var now = DateTimeOffset.UtcNow; var timeout = now.Add(timespan); lock (_lock) { var info = new ParticipantInChannel(participant, channel); _timers[info] = timeout; Reschedule(); } } public IEnumerable<ChatChannel> CancelAllTimersOfParticipant(Participant participant) { lock (_lock) { var participantChannels = _timers.Keys.Where(x => x.Participant.Equals(participant)).ToList(); foreach (var participantChannel in participantChannels) { _timers.Remove(participantChannel); } Reschedule(); return participantChannels.Select(x => x.Channel).ToList(); } } public void CancelTimer(Participant participant, ChatChannel channel) { lock (_lock) { var info = new ParticipantInChannel(participant, channel); if (_timers.Remove(info)) Reschedule(); } } public void CancelAllTimersOfConference(string conferenceId) { lock (_lock) { var timersToRemove = _timers.Keys.Where(x => x.Participant.ConferenceId == conferenceId).ToList(); foreach (var participantInChannel in timersToRemove) { _timers.Remove(participantInChannel); } if (timersToRemove.Any()) Reschedule(); } } private async void Reschedule() { while (true) { ParticipantInChannel nextParticipant; DateTimeOffset nextTime; CancellationToken token; lock (_lock) { // cancel existing cancellation token and set new token if (_cancellationTokenSource != null) { _cancellationTokenSource.Cancel(); _cancellationTokenSource.Dispose(); _cancellationTokenSource = null; } if (!_timers.Any()) return; var cancellationTokenSource = _cancellationTokenSource = new CancellationTokenSource(); token = cancellationTokenSource.Token; (nextParticipant, nextTime) = _timers.OrderBy(x => x.Value).First(); } var timeLeft = nextTime.Subtract(DateTimeOffset.UtcNow); if (timeLeft > TimeSpan.Zero) try { await _taskDelay.Delay(timeLeft, token); } catch (TaskCanceledException) { return; } bool remove; lock (_lock) { remove = _timers.Remove(nextParticipant); } if (remove) _ = RemoveParticipantTyping(nextParticipant); } } private async Task RemoveParticipantTyping(ParticipantInChannel participant) { await _mediator.Send(new SetParticipantTypingRequest(participant.Participant, participant.Channel, false)); } private record ParticipantInChannel(Participant Participant, ChatChannel Channel); } }
49,695
https://github.com/zing-dev/hello-shell/blob/master/command/string/7.sh
Github Open Source
Open Source
Apache-2.0
2,018
hello-shell
zing-dev
Shell
Code
99
588
#!/usr/bin/env bash #表达式 含义 #${#string} $string的长度 str1=123456789 echo ${str1} echo length is ${#str1} # #${string:position} 在$string中, 从位置$position开始提取子串 #6789 echo ${str1:5} #${string:position:length} 在$string中, 从位置$position开始提取长度为$length的子串 #67 echo ${str1:5:2} # #${string#substring} 从变量$string的开头, 删除最短匹配$substring的子串 str2='hello word and hello shell' #word and hello shell echo ${str2#hello} #'hello word and hello shell' echo ${str2} #${string##substring} 从变量$string的开头, 删除最长匹配$substring的子串 #llo word and hello shell echo ${str2##he} #${string%substring} 从变量$string的结尾, 删除最短匹配$substring的子串 #hello word and hello echo ${str2%shell} echo ${str2%and} #${string%%substring} 从变量$string的结尾, 删除最长匹配$substring的子串 echo ${str2%%and} # #${string/substring/replacement} 使用$replacement, 来代替第一个匹配的$substring echo ${str2/hello/HELLO} #${string//substring/replacement} 使用$replacement, 代替所有匹配的$substring echo ${str2//hello/HELLO} #${string/#substring/replacement} 如果$string的前缀匹配$substring, # 那么就用$replacement来代替匹配到的$substring echo ${str2/#hel/HEL} #${string/%substring/replacement} 如果$string的后缀匹配$substring, # 那么就用$replacement来代替匹配到的$substring echo ${str2/%ell/ELL} echo ${str2/%hello/HELLO}
32,732
https://github.com/shoaibahmedqureshi/openwhyd-ios/blob/master/Whyd/Controllers/HotTracks/HotTracksViewController.h
Github Open Source
Open Source
MIT
2,016
openwhyd-ios
shoaibahmedqureshi
Objective-C
Code
33
103
// // HotTracksViewController.h // Whyd // // Created by Damien Romito on 13/03/2014. // Copyright (c) 2014 Damien Romito. All rights reserved. // #import "TracksListViewController.h" #import "GenresView.h" @interface HotTracksViewController : TracksListViewController <GenresViewDelegate> @end
21,818
https://github.com/chonkerboi/pantheon-hermes/blob/master/pantheon-hermes/pantheon/hermes/gpu/meta.py
Github Open Source
Open Source
MIT
2,018
pantheon-hermes
chonkerboi
Python
Code
24
78
class GPUMeta(type): registry = dict() def __new__(mcs, *args, **kwargs): obj = super().__new__(mcs, *args, **kwargs) if obj.model is not None: mcs.registry[obj.model] = obj return obj
3,319
https://github.com/marktimbol/alsbeef/blob/master/app/Menu.php
Github Open Source
Open Source
MIT
null
alsbeef
marktimbol
PHP
Code
53
186
<?php namespace App; use Illuminate\Database\Eloquent\Model; use AlgoliaSearch\Laravel\AlgoliaEloquentTrait; class Menu extends Model { use AlgoliaEloquentTrait; protected $fillable = ['name', 'slug', 'description']; public static $autoIndex = true; public static $autoDelete = true; public $indices = ['alsbeef_menus']; public function getRouteKeyName() { return 'id'; } public function setNameAttribute($name) { $this->attributes['name'] = $name; $this->attributes['slug'] = str_slug($name); } }
26,537
https://github.com/dlannan/funLuaJit/blob/master/byt3d/ffi/win32.lua
Github Open Source
Open Source
MIT
2,021
funLuaJit
dlannan
Lua
Code
1,073
4,579
-- -- Created by David Lannan -- User: grover -- Date: 19/04/13 -- Time: 12:04 AM -- Copyright 2013 Developed for use with the byt3d engine. -- local ffi = require( "ffi" ) user32 = ffi.load( "USER32" ) kernel32 = ffi.load( "KERNEL32" ) ffi.cdef[[ typedef char* PCIDLIST_ABSOLUTE; typedef char* LPCTSTR; typedef char* LPTSTR; typedef char TCHAR; typedef uint32_t LPARAM; typedef uint32_t UINT; typedef uint32_t HWND; typedef uint32_t DWORD; typedef uint32_t LPVOID; typedef uint32_t LONG; typedef uint32_t HINSTANCE; typedef uint16_t WORD; typedef struct tagBITMAP { LONG bmType; LONG bmWidth; LONG bmHeight; LONG bmWidthBytes; WORD bmPlanes; WORD bmBitsPixel; void * bmBits; } BITMAP; typedef BITMAP *PBITMAP; typedef struct _SYSTEMTIME { WORD wYear; WORD wMonth; WORD wDayOfWeek; WORD wDay; WORD wHour; WORD wMinute; WORD wSecond; WORD wMilliseconds; } SYSTEMTIME; typedef SYSTEMTIME *PSYSTEMTIME; typedef struct tagBITMAPFILEHEADER { WORD bfType; DWORD bfSize; WORD bfReserved1; WORD bfReserved2; DWORD bfOffBits; } BITMAPFILEHEADER; typedef BITMAPFILEHEADER *PBITMAPFILEHEADER; typedef struct _SECURITY_ATTRIBUTES { DWORD nLength; LPVOID lpSecurityDescriptor; uint32_t bInheritHandle; } SECURITY_ATTRIBUTES; typedef SECURITY_ATTRIBUTES *PSECURITY_ATTRIBUTES; typedef SECURITY_ATTRIBUTES *LPSECURITY_ATTRIBUTES; typedef struct _FILETIME { DWORD dwLowDateTime; DWORD dwHighDateTime; } FILETIME; typedef FILETIME *PFILETIME; typedef struct _WIN32_FIND_DATA { DWORD dwFileAttributes; FILETIME ftCreationTime; FILETIME ftLastAccessTime; FILETIME ftLastWriteTime; DWORD nFileSizeHigh; DWORD nFileSizeLow; DWORD dwReserved0; DWORD dwReserved1; TCHAR cFileName[4096]; TCHAR cAlternateFileName[14]; } WIN32_FIND_DATA; typedef WIN32_FIND_DATA *PWIN32_FIND_DATA; typedef WIN32_FIND_DATA *LPWIN32_FIND_DATA; typedef struct tagOFN { DWORD lStructSize; HWND hwndOwner; HINSTANCE hInstance; LPCTSTR lpstrFilter; LPTSTR lpstrCustomFilter; DWORD nMaxCustFilter; DWORD nFilterIndex; LPTSTR lpstrFile; DWORD nMaxFile; LPTSTR lpstrFileTitle; DWORD nMaxFileTitle; LPCTSTR lpstrInitialDir; LPCTSTR lpstrTitle; DWORD Flags; WORD nFileOffset; WORD nFileExtension; LPCTSTR lpstrDefExt; LPARAM lCustData; void * lpfnHook; LPCTSTR lpTemplateName; void * pvReserved; DWORD dwReserved; DWORD FlagsEx; } OPENFILENAME; typedef OPENFILENAME *LPOPENFILENAME; typedef int32_t bool32; typedef intptr_t (__stdcall *WNDPROC)(void* hwnd, unsigned int message, uintptr_t wparam, intptr_t lparam); enum { CS_VREDRAW = 0x0001, CS_HREDRAW = 0x0002, CS_OWNDC = 0x0020, ES_LEFT = 0x00000000, ES_CENTER = 0x00000001, ES_RIGHT = 0x00000002, ES_MULTILINE = 0x00000004, ES_UPPERCASE = 0x00000008, ES_LOWERCASE = 0x00000010, ES_PASSWORD = 0x00000020, ES_AUTOVSCROLL = 0x00000040, ES_AUTOHSCROLL = 0x00000080, ES_NOHIDESEL = 0x00000100, ES_COMBO = 0x00000200, ES_OEMCONVERT = 0x00000400, ES_READONLY = 0x00000800, ES_WANTRETURN = 0x00001000, ES_NUMBER = 0x00002000, CTLCOLOR_MSGBOX = 0, CTLCOLOR_EDIT = 1, CTLCOLOR_LISTBOX = 2, CTLCOLOR_BTN = 3, CTLCOLOR_DLG = 4, CTLCOLOR_SCROLLBAR = 5, CTLCOLOR_STATIC = 6, CTLCOLOR_MAX = 7, COLOR_SCROLLBAR = 0, COLOR_BACKGROUND = 1, COLOR_ACTIVECAPTION = 2, COLOR_INACTIVECAPTION = 3, COLOR_MENU = 4, COLOR_WINDOW = 5, COLOR_WINDOWFRAME = 6, COLOR_MENUTEXT = 7, COLOR_WINDOWTEXT = 8, COLOR_CAPTIONTEXT = 9, COLOR_ACTIVEBORDER = 10, COLOR_INACTIVEBORDER = 11, COLOR_APPWORKSPACE = 12, COLOR_HIGHLIGHT = 13, COLOR_HIGHLIGHTTEXT = 14, COLOR_BTNFACE = 15, COLOR_BTNSHADOW = 16, COLOR_GRAYTEXT = 17, COLOR_BTNTEXT = 18, COLOR_INACTIVECAPTIONTEXT = 19, COLOR_BTNHIGHLIGHT = 20, COLOR_3DDKSHADOW = 21, COLOR_3DLIGHT = 22, COLOR_INFOTEXT = 23, COLOR_INFOBK = 24, COLOR_DESKTOP = COLOR_BACKGROUND, COLOR_3DFACE = COLOR_BTNFACE, COLOR_3DSHADOW = COLOR_BTNSHADOW, COLOR_3DHIGHLIGHT = COLOR_BTNHIGHLIGHT, COLOR_3DHILIGHT = COLOR_BTNHIGHLIGHT, COLOR_BTNHILIGHT = COLOR_BTNHIGHLIGHT, WM_CREATE = 0x0001, WM_DESTROY = 0x0002, WM_MOVE = 0x0003, WM_SIZE = 0x0005, WM_ACTIVATE = 0x0006, WM_KILLFOCUS = 0x0008, WM_ENABLE = 0x000A, WM_SETREDRAW = 0x000B, WM_SETTEXT = 0x000C, WM_GETTEXT = 0x000D, WM_GETTEXTLENGTH = 0x000E, WM_PAINT = 0x000F, WM_CLOSE = 0x0010, WM_QUERYENDSESSION = 0x0011, WM_QUIT = 0x0012, WM_QUERYOPEN = 0x0013, WM_ERASEBKGND = 0x0014, WM_SYSCOLORCHANGE = 0x0015, WM_ENDSESSION = 0x0016, WM_SHOWWINDOW = 0x0018, WM_WININICHANGE = 0x001A, WS_EX_DLGMODALFRAME = 0x00000001, WS_EX_NOPARENTNOTIFY = 0x00000004, WS_EX_TOPMOST = 0x00000008, WS_EX_ACCEPTFILES = 0x00000010, WS_EX_TRANSPARENT = 0x00000020, WS_EX_MDICHILD = 0x00000040, WS_EX_TOOLWINDOW = 0x00000080, WS_EX_WINDOWEDGE = 0x00000100, WS_EX_CLIENTEDGE = 0x00000200, WS_EX_CONTEXTHELP = 0x00000400, WS_EX_RIGHT = 0x00001000, WS_EX_LEFT = 0x00000000, WS_EX_RTLREADING = 0x00002000, WS_EX_LTRREADING = 0x00000000, WS_EX_LEFTSCROLLBAR = 0x00004000, WS_EX_RIGHTSCROLLBAR = 0x00000000, WS_EX_CONTROLPARENT = 0x00010000, WS_EX_STATICEDGE = 0x00020000, WS_EX_APPWINDOW = 0x00040000, WS_BORDER = 0x00800000, WS_CAPTION = 0x00C00000, WS_CHILD = 0x40000000, WS_CHILDWINDOW = 0x40000000, WS_CLIPCHILDREN = 0x02000000, WS_CLIPSIBLINGS = 0x04000000, WS_DISABLED = 0x08000000, WS_DLGFRAME = 0x00400000, WS_GROUP = 0x00020000, WS_HSCROLL = 0x00100000, WS_ICONIC = 0x20000000, WS_MAXIMIZE = 0x01000000, WS_MAXIMIZEBOX = 0x00010000, WS_MINIMIZE = 0x20000000, WS_MINIMIZEBOX = 0x00020000, WS_OVERLAPPED = 0x00000000, WS_SIZEBOX = 0x00040000, WS_SYSMENU = 0x00080000, WS_TABSTOP = 0x00010000, WS_THICKFRAME = 0x00040000, WS_TILED = 0x00000000, WS_VISIBLE = 0x10000000, WS_VSCROLL = 0x00200000, WS_POPUP = ((int)0x80000000), WS_OVERLAPPEDWINDOW = WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX, WS_POPUPWINDOW = WS_POPUP | WS_BORDER | WS_SYSMENU, WS_TILEDWINDOW = WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX, WAIT_OBJECT_0 = 0x00000000, PM_REMOVE = 0x0001, SW_SHOW = 5, INFINITE = 0xFFFFFFFF, QS_ALLEVENTS = 0x04BF, FILE_ATTRIBUTE_READONLY = 0x00000001, FILE_ATTRIBUTE_HIDDEN = 0x00000002, FILE_ATTRIBUTE_SYSTEM = 0x00000004, FILE_ATTRIBUTE_DIRECTORY = 0x00000010, FILE_ATTRIBUTE_ARCHIVE = 0x00000020, FILE_ATTRIBUTE_NORMAL = 0x00000080, FILE_ATTRIBUTE_TEMPORARY = 0x00000100, FILE_ATTRIBUTE_COMPRESSED = 0x00000800, FILE_ATTRIBUTE_OFFLINE = 0x00001000 }; typedef struct RECT { int32_t left, top, right, bottom; } RECT; typedef struct POINT { int32_t x, y; } POINT; typedef struct WNDCLASSEXA { uint32_t cbSize, style; WNDPROC lpfnWndProc; int32_t cbClsExtra, cbWndExtra; void* hInstance; void* hIcon; void* hCursor; int32_t hbrBackground; const char* lpszMenuName; const char* lpszClassName; void* hIconSm; } WNDCLASSEXA; typedef struct MSG { void* hwnd; uint32_t message; uintptr_t wParam, lParam; uint32_t time; POINT pt; } MSG; typedef struct SECURITY_ATTRIBUTES { uint32_t nLength; void* lpSecurityDescriptor; bool32 bInheritHandle; } SECURITY_ATTRIBUTES; typedef DWORD COLORREF; typedef DWORD* LPCOLORREF; enum { CF_TEXT = 1, CF_BITMAP = 2, CF_DIB = 8 }; int OpenClipboard(void*); void* GetClipboardData(unsigned); int CloseClipboard(); void* GlobalLock(void*); int GlobalUnlock(void*); size_t GlobalSize(void*); bool32 EmptyClipboard(void); bool32 IsClipboardFormatAvailable(uint32_t format); uint32_t LoadLibraryA( const char *lpFileName ); void * GetModuleHandleA(const char* name); uint16_t RegisterClassExA(const WNDCLASSEXA*); intptr_t DefWindowProcA(void* hwnd, uint32_t msg, uintptr_t wparam, uintptr_t lparam); void PostQuitMessage(int exitCode); void* LoadIconA(void* hInstance, const char* iconName); void* LoadCursorA(void* hInstance, const char* cursorName); uint32_t GetLastError(); void * CreateWindowExA(uint32_t exstyle, const char* classname, const char* windowname, int32_t style, int32_t x, int32_t y, int32_t width, int32_t height, void * parent_hwnd, void * hmenu, void * hinstance, void * param); bool32 ShowWindow(void* hwnd, int32_t command); bool32 UpdateWindow(void* hwnd); bool32 SetWindowTextA(void *hWnd, const char *lpString); int GetKeyState( int nVirtKey ); int GetMessageA(MSG* out_msg, void* hwnd, uint32_t filter_min, uint32_t filter_max); int PeekMessageA(MSG* out_msg, void* hwnd, uint32_t filter_min, uint32_t filter_max, uint32_t removalMode); bool32 TranslateMessage(const MSG* msg); intptr_t DispatchMessageA(const MSG* msg); bool32 InvalidateRect(void* hwnd, const RECT*, bool32 erase); void* CreateEventA(SECURITY_ATTRIBUTES*, bool32 manualReset, bool32 initialState, const char* name); uint32_t MsgWaitForMultipleObjects(uint32_t count, void** handles, bool32 waitAll, uint32_t ms, uint32_t wakeMask); bool32 GetOpenFileNameA( LPOPENFILENAME lpofn); bool32 CreateDirectoryA( const char* lpPathName, LPSECURITY_ATTRIBUTES lpsec ); uint32_t FindFirstFileA( const char* lpFileName, LPWIN32_FIND_DATA lpFindFileData ); bool32 FindNextFileA( uint32_t hFindFile, LPWIN32_FIND_DATA lpFindFileData ); bool32 FindClose( uint32_t hFindFile ); bool32 MessageBoxA(uint32_t, const char * message, const char * title, uint32_t ok); void keybd_event(uint8_t bVk, uint8_t bScan, uint32_t dwFlags, void * dwExtraInfo); void Sleep(DWORD dwMilliseconds); bool32 FileTimeToSystemTime( const FILETIME *lpFileTime, PSYSTEMTIME lpSystemTime); int GetObjectA(void * hgdiobj, uint32_t cbBuffer, void * lpvObject); uint32_t GetBitmapBits( void * hbmp, uint32_t cbBuffer,void * lpvBits); uint32_t CreateSolidBrush(uint32_t crColor); uint32_t GetSysColorBrush(int nIndex); ]]
15,552
https://github.com/tvst/streamlit/blob/master/component-lib/declarations/apache-arrow/Arrow.node.d.ts
Github Open Source
Open Source
Apache-2.0
2,021
streamlit
tvst
TypeScript
Code
4
11
export * from "./Arrow.dom";
11,771
https://github.com/littleeleventhwolf/datafuse/blob/master/common/datavalues/src/types/deserializations/variant.rs
Github Open Source
Open Source
Apache-2.0
null
datafuse
littleeleventhwolf
Rust
Code
306
1,047
// Copyright 2022 Datafuse Labs. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. use std::io::Read; use common_exception::Result; use common_io::prelude::BinaryRead; use common_io::prelude::BufferReadExt; use common_io::prelude::CpBufferReader; use crate::prelude::*; pub struct VariantDeserializer { pub buffer: Vec<u8>, pub builder: MutableObjectColumn<VariantValue>, } impl VariantDeserializer { pub fn with_capacity(capacity: usize) -> Self { Self { buffer: Vec::new(), builder: MutableObjectColumn::<VariantValue>::with_capacity(capacity), } } } impl TypeDeserializer for VariantDeserializer { #[allow(clippy::uninit_vec)] fn de_binary(&mut self, reader: &mut &[u8]) -> Result<()> { let offset: u64 = reader.read_uvarint()?; self.buffer.clear(); self.buffer.reserve(offset as usize); unsafe { self.buffer.set_len(offset as usize); } reader.read_exact(&mut self.buffer)?; let val = serde_json::from_slice(self.buffer.as_slice())?; self.builder.append_value(val); Ok(()) } fn de_default(&mut self) { self.builder .append_value(VariantValue::from(serde_json::Value::Null)); } fn de_fixed_binary_batch(&mut self, reader: &[u8], step: usize, rows: usize) -> Result<()> { for row in 0..rows { let reader = &reader[step * row..]; let val = serde_json::from_slice(reader)?; self.builder.append_value(val); } Ok(()) } fn de_json(&mut self, value: &serde_json::Value) -> Result<()> { self.builder.append_value(VariantValue::from(value)); Ok(()) } fn de_text(&mut self, reader: &mut CpBufferReader) -> Result<()> { self.buffer.clear(); reader.read_escaped_string_text(&mut self.buffer)?; let val = serde_json::from_slice(self.buffer.as_slice())?; self.builder.append_value(val); Ok(()) } fn de_whole_text(&mut self, reader: &[u8]) -> Result<()> { let val = serde_json::from_slice(reader)?; self.builder.append_value(val); Ok(()) } fn de_text_quoted(&mut self, reader: &mut CpBufferReader) -> Result<()> { self.buffer.clear(); reader.read_quoted_text(&mut self.buffer, b'\'')?; let val = serde_json::from_slice(self.buffer.as_slice())?; self.builder.append_value(val); Ok(()) } fn append_data_value(&mut self, value: DataValue) -> Result<()> { self.builder.append_data_value(value) } fn pop_data_value(&mut self) -> Result<DataValue> { self.builder.pop_data_value() } fn finish_to_column(&mut self) -> ColumnRef { self.builder.to_column() } }
4,755
https://github.com/anurjalal/accelbyte-go-sdk/blob/master/platform-sdk/pkg/platformclient/payment/list_ext_order_no_by_ext_tx_id_parameters.go
Github Open Source
Open Source
MIT
2,022
accelbyte-go-sdk
anurjalal
Go
Code
577
1,544
// Code generated by go-swagger; DO NOT EDIT. package payment // This file was generated by the swagger tool. // Editing this file might prove futile when you re-run the swagger generate command import ( "context" "net/http" "time" "github.com/go-openapi/errors" "github.com/go-openapi/runtime" cr "github.com/go-openapi/runtime/client" "github.com/go-openapi/strfmt" ) // NewListExtOrderNoByExtTxIDParams creates a new ListExtOrderNoByExtTxIDParams object // with the default values initialized. func NewListExtOrderNoByExtTxIDParams() *ListExtOrderNoByExtTxIDParams { var () return &ListExtOrderNoByExtTxIDParams{ timeout: cr.DefaultTimeout, } } // NewListExtOrderNoByExtTxIDParamsWithTimeout creates a new ListExtOrderNoByExtTxIDParams object // with the default values initialized, and the ability to set a timeout on a request func NewListExtOrderNoByExtTxIDParamsWithTimeout(timeout time.Duration) *ListExtOrderNoByExtTxIDParams { var () return &ListExtOrderNoByExtTxIDParams{ timeout: timeout, } } // NewListExtOrderNoByExtTxIDParamsWithContext creates a new ListExtOrderNoByExtTxIDParams object // with the default values initialized, and the ability to set a context for a request func NewListExtOrderNoByExtTxIDParamsWithContext(ctx context.Context) *ListExtOrderNoByExtTxIDParams { var () return &ListExtOrderNoByExtTxIDParams{ Context: ctx, } } // NewListExtOrderNoByExtTxIDParamsWithHTTPClient creates a new ListExtOrderNoByExtTxIDParams object // with the default values initialized, and the ability to set a custom HTTPClient for a request func NewListExtOrderNoByExtTxIDParamsWithHTTPClient(client *http.Client) *ListExtOrderNoByExtTxIDParams { var () return &ListExtOrderNoByExtTxIDParams{ HTTPClient: client, } } /*ListExtOrderNoByExtTxIDParams contains all the parameters to send to the API endpoint for the list ext order no by ext tx Id operation typically these are written to a http.Request */ type ListExtOrderNoByExtTxIDParams struct { /*ExtTxID*/ ExtTxID string /*Namespace*/ Namespace string timeout time.Duration Context context.Context HTTPClient *http.Client } // WithTimeout adds the timeout to the list ext order no by ext tx Id params func (o *ListExtOrderNoByExtTxIDParams) WithTimeout(timeout time.Duration) *ListExtOrderNoByExtTxIDParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the list ext order no by ext tx Id params func (o *ListExtOrderNoByExtTxIDParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the list ext order no by ext tx Id params func (o *ListExtOrderNoByExtTxIDParams) WithContext(ctx context.Context) *ListExtOrderNoByExtTxIDParams { o.SetContext(ctx) return o } // SetContext adds the context to the list ext order no by ext tx Id params func (o *ListExtOrderNoByExtTxIDParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the list ext order no by ext tx Id params func (o *ListExtOrderNoByExtTxIDParams) WithHTTPClient(client *http.Client) *ListExtOrderNoByExtTxIDParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the list ext order no by ext tx Id params func (o *ListExtOrderNoByExtTxIDParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithExtTxID adds the extTxID to the list ext order no by ext tx Id params func (o *ListExtOrderNoByExtTxIDParams) WithExtTxID(extTxID string) *ListExtOrderNoByExtTxIDParams { o.SetExtTxID(extTxID) return o } // SetExtTxID adds the extTxId to the list ext order no by ext tx Id params func (o *ListExtOrderNoByExtTxIDParams) SetExtTxID(extTxID string) { o.ExtTxID = extTxID } // WithNamespace adds the namespace to the list ext order no by ext tx Id params func (o *ListExtOrderNoByExtTxIDParams) WithNamespace(namespace string) *ListExtOrderNoByExtTxIDParams { o.SetNamespace(namespace) return o } // SetNamespace adds the namespace to the list ext order no by ext tx Id params func (o *ListExtOrderNoByExtTxIDParams) SetNamespace(namespace string) { o.Namespace = namespace } // WriteToRequest writes these params to a swagger request func (o *ListExtOrderNoByExtTxIDParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.timeout); err != nil { return err } var res []error // query param extTxId qrExtTxID := o.ExtTxID qExtTxID := qrExtTxID if qExtTxID != "" { if err := r.SetQueryParam("extTxId", qExtTxID); err != nil { return err } } // path param namespace if err := r.SetPathParam("namespace", o.Namespace); err != nil { return err } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }
328
https://github.com/JannisRex/AppData-Roaming-SL3/blob/master/Packages/Material Theme/schemes/Material-Theme.tmTheme
Github Open Source
Open Source
MIT
2,020
AppData-Roaming-SL3
JannisRex
XML Property List
Code
20,000
136,123
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>author</key> <string>Mattia Astorino</string> <key>colorSpaceName</key> <string>sRGB</string> <key>name</key> <string>Material-Theme</string> <key>semanticClass</key> <string>material.theme.default</string> <key>settings</key> <array> <dict> <key>settings</key> <dict> <key>activeGuide</key> <string>#80CBC470</string> <key>background</key> <string>#263238</string> <key>caret</key> <string>#FFCC00</string> <key>findHighlight</key> <string>#F8E71C</string> <key>foreground</key> <string>#eeffff</string> <key>guide</key> <string>#37474F80</string> <key>gutterForeground</key> <string>#37474F</string> <key>invisibles</key> <string>#65737e</string> <key>lineHighlight</key> <string>#00000050</string> <key>popupCss</key> <string>html { background-color: #263238; color: #eeffff; padding: 16px; } a { color: #B2CCD6; line-height: 16px; } .error, .deleted { color: #FF5370; } .success, .inserted { color: #C3E88D; } .warning, .modified { color: #FFCB6B; } .type { color: #89DDFF; font-style: italic; } .param { color: #F78C6C; } .current { text-decoration: underline; } </string> <key>selection</key> <string>#80CBC420</string> <key>selectionBorder</key> <string>#80CBC420</string> <key>shadow</key> <string>#00000010</string> <key>stackGuide</key> <string>#37474Fff</string> </dict> </dict> <dict> <key>name</key> <string>Comments</string> <key>scope</key> <string>comment, punctuation.definition.comment</string> <key>settings</key> <dict> <key>fontStyle</key> <string>italic</string> <key>foreground</key> <string>#546E7A</string> </dict> </dict> <dict> <key>name</key> <string>Variable</string> <key>scope</key> <string>variable, string constant.other.placeholder</string> <key>settings</key> <dict> <key>foreground</key> <string>#eeffff</string> </dict> </dict> <dict> <key>name</key> <string>Colors</string> <key>scope</key> <string>constant.other.color</string> <key>settings</key> <dict> <key>foreground</key> <string>#ffffff</string> </dict> </dict> <dict> <key>name</key> <string>Invalid</string> <key>scope</key> <string>invalid, invalid.illegal, invalid.broken</string> <key>settings</key> <dict> <key>background</key> <string>#FF5370</string> <key>foreground</key> <string>#ffffff</string> </dict> </dict> <dict> <key>name</key> <string>Unimplemented</string> <key>scope</key> <string>invalid.unimplemented</string> <key>settings</key> <dict> <key>background</key> <string>#C3E88D</string> <key>foreground</key> <string>#ffffff</string> </dict> </dict> <dict> <key>name</key> <string>Invalid deprecated</string> <key>scope</key> <string>invalid.deprecated</string> <key>settings</key> <dict> <key>background</key> <string>#C792EA</string> <key>foreground</key> <string>#ffffff</string> </dict> </dict> <dict> <key>name</key> <string>Keyword, Storage</string> <key>scope</key> <string>keyword, storage.type, storage.modifier</string> <key>settings</key> <dict> <key>foreground</key> <string>#C792EA</string> </dict> </dict> <dict> <key>name</key> <string>Keyword, Storage</string> <key>scope</key> <string>storage.type, keyword.control</string> <key>settings</key> <dict> <key>fontStyle</key> <string>italic</string> </dict> </dict> <dict> <key>name</key> <string>Operator, Misc</string> <key>scope</key> <string>keyword.operator, constant.other.color, punctuation, meta.tag, punctuation.definition.tag, punctuation.separator.inheritance.php, punctuation.definition.tag.html, punctuation.definition.tag.begin.html, punctuation.definition.tag.end.html, punctuation.section.embedded, keyword.other.template, keyword.other.substitution</string> <key>settings</key> <dict> <key>foreground</key> <string>#89DDFF</string> </dict> </dict> <dict> <key>name</key> <string>Tag</string> <key>scope</key> <string>entity.name.tag, meta.tag.sgml, markup.deleted.git_gutter</string> <key>settings</key> <dict> <key>foreground</key> <string>#f07178</string> </dict> </dict> <dict> <key>name</key> <string>Function, Special Method, Block Level</string> <key>scope</key> <string>entity.name.function, meta.function-call, variable.function, support.function, keyword.other.special-method, meta.block-level</string> <key>settings</key> <dict> <key>foreground</key> <string>#82AAFF</string> </dict> </dict> <dict> <key>name</key> <string>Other Variable, String Link</string> <key>scope</key> <string>support.other.variable, string.other.link</string> <key>settings</key> <dict> <key>foreground</key> <string>#f07178</string> </dict> </dict> <dict> <key>name</key> <string>Number, Constant, Function Argument, Tag Attribute, Embedded</string> <key>scope</key> <string>constant.numeric, constant.language, support.constant, constant.character, variable.parameter, keyword.other.unit</string> <key>settings</key> <dict> <key>foreground</key> <string>#F78C6C</string> </dict> </dict> <dict> <key>name</key> <string>String, Symbols, Inherited Class, Markup Heading</string> <key>scope</key> <string>string, constant.other.symbol, constant.other.key, entity.other.inherited-class, markup.heading, markup.inserted.git_gutter, meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js</string> <key>settings</key> <dict> <key>fontStyle</key> <string>normal</string> <key>foreground</key> <string>#C3E88D</string> </dict> </dict> <dict> <key>name</key> <string>Class, Support</string> <key>scope</key> <string>entity.name.class, entity.name.type.class, support.type, support.class, support.orther.namespace.use.php, meta.use.php, support.other.namespace.php, markup.changed.git_gutter, support.type.sys-types</string> <key>settings</key> <dict> <key>foreground</key> <string>#FFCB6B</string> </dict> </dict> <dict> <key>name</key> <string>CSS Class and Support</string> <key>scope</key> <string>source.css support.type, source.sass support.type, source.scss support.type, source.less support.type, source.stylus support.type</string> <key>settings</key> <dict> <key>foreground</key> <string>#B2CCD6</string> </dict> </dict> <dict> <key>name</key> <string>Sub-methods</string> <key>scope</key> <string>entity.name.module.js, variable.import.parameter.js, variable.other.class.js</string> <key>settings</key> <dict> <key>foreground</key> <string>#FF5370</string> </dict> </dict> <dict> <key>name</key> <string>Language methods</string> <key>scope</key> <string>variable.language</string> <key>settings</key> <dict> <key>fontStyle</key> <string>italic</string> <key>foreground</key> <string>#FF5370</string> </dict> </dict> <dict> <key>name</key> <string>entity.name.method.js</string> <key>scope</key> <string>entity.name.method.js</string> <key>settings</key> <dict> <key>foreground</key> <string>#82AAFF</string> </dict> </dict> <dict> <key>name</key> <string>meta.method.js</string> <key>scope</key> <string>meta.class-method.js entity.name.function.js, variable.function.constructor</string> <key>settings</key> <dict> <key>foreground</key> <string>#82AAFF</string> </dict> </dict> <dict> <key>name</key> <string>Attributes</string> <key>scope</key> <string>entity.other.attribute-name</string> <key>settings</key> <dict> <key>foreground</key> <string>#C792EA</string> </dict> </dict> <dict> <key>name</key> <string>HTML Attributes</string> <key>scope</key> <string>text.html.basic entity.other.attribute-name.html, text.html.basic entity.other.attribute-name</string> <key>settings</key> <dict> <key>fontStyle</key> <string>italic</string> <key>foreground</key> <string>#FFCB6B</string> </dict> </dict> <dict> <key>name</key> <string>CSS Classes</string> <key>scope</key> <string>entity.other.attribute-name.class</string> <key>settings</key> <dict> <key>foreground</key> <string>#FFCB6B</string> </dict> </dict> <dict> <key>name</key> <string>CSS Id</string> <key>scope</key> <string>source.sass keyword.control</string> <key>settings</key> <dict> <key>foreground</key> <string>#82AAFF</string> </dict> </dict> <dict> <key>name</key> <string>Inserted</string> <key>scope</key> <string>markup.inserted</string> <key>settings</key> <dict> <key>foreground</key> <string>#C3E88D</string> </dict> </dict> <dict> <key>name</key> <string>Deleted</string> <key>scope</key> <string>markup.deleted</string> <key>settings</key> <dict> <key>foreground</key> <string>#FF5370</string> </dict> </dict> <dict> <key>name</key> <string>Changed</string> <key>scope</key> <string>markup.changed</string> <key>settings</key> <dict> <key>foreground</key> <string>#C792EA</string> </dict> </dict> <dict> <key>name</key> <string>Regular Expressions</string> <key>scope</key> <string>string.regexp</string> <key>settings</key> <dict> <key>foreground</key> <string>#89DDFF</string> </dict> </dict> <dict> <key>name</key> <string>Escape Characters</string> <key>scope</key> <string>constant.character.escape</string> <key>settings</key> <dict> <key>foreground</key> <string>#89DDFF</string> </dict> </dict> <dict> <key>name</key> <string>URL</string> <key>scope</key> <string>*url*, *link*, *uri*</string> <key>settings</key> <dict> <key>fontStyle</key> <string>underline</string> </dict> </dict> <dict> <key>name</key> <string>Search Results Nums</string> <key>scope</key> <string>constant.numeric.line-number.find-in-files - match</string> <key>settings</key> <dict> <key>foreground</key> <string>#C17E70</string> </dict> </dict> <dict> <key>name</key> <string>Search Results Lines</string> <key>scope</key> <string>entity.name.filename.find-in-files</string> <key>settings</key> <dict> <key>foreground</key> <string>#C3E88D</string> </dict> </dict> <dict> <key>name</key> <string>Decorators</string> <key>scope</key> <string>tag.decorator.js entity.name.tag.js, tag.decorator.js punctuation.definition.tag.js</string> <key>settings</key> <dict> <key>fontStyle</key> <string>italic</string> <key>foreground</key> <string>#82AAFF</string> </dict> </dict> <dict> <key>name</key> <string>ES7 Bind Operator</string> <key>scope</key> <string>source.js constant.other.object.key.js string.unquoted.label.js</string> <key>settings</key> <dict> <key>fontStyle</key> <string>italic</string> <key>foreground</key> <string>#FF5370</string> </dict> </dict> <dict> <key>name</key> <string>JSON Key - Level 8</string> <key>scope</key> <string>source.json meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary.json string.quoted.double.json - meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary.json punctuation.definition.string - meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.definition.string</string> <key>settings</key> <dict> <key>foreground</key> <string>#C3E88D</string> </dict> </dict> <dict> <key>name</key> <string>JSON Key - Level 7</string> <key>scope</key> <string>source.json meta meta meta meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary.json string.quoted.double.json - meta meta meta meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta meta meta meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary.json punctuation.definition.string - meta meta meta meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.definition.string</string> <key>settings</key> <dict> <key>foreground</key> <string>#C792EA</string> </dict> </dict> <dict> <key>name</key> <string>JSON Key - Level 6</string> <key>scope</key> <string>source.json meta meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary.json string.quoted.double.json - meta meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary.json punctuation.definition.string - meta meta meta meta meta meta meta meta meta meta meta meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.definition.string</string> <key>settings</key> <dict> <key>foreground</key> <string>#f07178</string> </dict> </dict> <dict> <key>name</key> <string>JSON Key - Level 5</string> <key>scope</key> <string>source.json meta meta meta meta meta meta meta meta meta meta.structure.dictionary.json string.quoted.double.json - meta meta meta meta meta meta meta meta meta meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta meta meta meta meta meta meta meta meta meta.structure.dictionary.json punctuation.definition.string - meta meta meta meta meta meta meta meta meta meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.definition.string</string> <key>settings</key> <dict> <key>foreground</key> <string>#82AAFF</string> </dict> </dict> <dict> <key>name</key> <string>JSON Key - Level 4</string> <key>scope</key> <string>source.json meta meta meta meta meta meta meta meta.structure.dictionary.json string.quoted.double.json - meta meta meta meta meta meta meta meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta meta meta meta meta meta meta meta.structure.dictionary.json punctuation.definition.string - meta meta meta meta meta meta meta meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.definition.string</string> <key>settings</key> <dict> <key>foreground</key> <string>#C17E70</string> </dict> </dict> <dict> <key>name</key> <string>JSON Key - Level 3</string> <key>scope</key> <string>source.json meta meta meta meta meta meta.structure.dictionary.json string.quoted.double.json - meta meta meta meta meta meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta meta meta meta meta meta.structure.dictionary.json punctuation.definition.string - meta meta meta meta meta meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.definition.string</string> <key>settings</key> <dict> <key>foreground</key> <string>#FF5370</string> </dict> </dict> <dict> <key>name</key> <string>JSON Key - Level 2</string> <key>scope</key> <string>source.json meta meta meta meta.structure.dictionary.json string.quoted.double.json - meta meta meta meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta meta meta meta.structure.dictionary.json punctuation.definition.string - meta meta meta meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.definition.string</string> <key>settings</key> <dict> <key>foreground</key> <string>#F78C6C</string> </dict> </dict> <dict> <key>name</key> <string>JSON Key - Level 1</string> <key>scope</key> <string>source.json meta meta.structure.dictionary.json string.quoted.double.json - meta meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta meta.structure.dictionary.json punctuation.definition.string - meta meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.definition.string</string> <key>settings</key> <dict> <key>foreground</key> <string>#FFCB6B</string> </dict> </dict> <dict> <key>name</key> <string>JSON Key - Level 0</string> <key>scope</key> <string>source.json meta.structure.dictionary.json string.quoted.double.json - meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json, source.json meta.structure.dictionary.json punctuation.definition.string - meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.definition.string</string> <key>settings</key> <dict> <key>foreground</key> <string>#C792EA</string> </dict> </dict> <dict> <key>name</key> <string>Markdown - Plain</string> <key>scope</key> <string>text.html.markdown, punctuation.definition.list_item.markdown</string> <key>settings</key> <dict> <key>foreground</key> <string>#eeffff</string> </dict> </dict> <dict> <key>name</key> <string>Markdown - Markup Raw Inline</string> <key>scope</key> <string>text.html.markdown markup.raw.inline</string> <key>settings</key> <dict> <key>foreground</key> <string>#C792EA</string> </dict> </dict> <dict> <key>name</key> <string>Markdown - Markup Raw Inline Punctuation</string> <key>scope</key> <string>text.html.markdown punctuation.definition.raw.markdown</string> <key>settings</key> <dict> <key>foreground</key> <string>#65737e</string> </dict> </dict> <dict> <key>name</key> <string>Markdown - Line Break</string> <key>scope</key> <string>text.html.markdown meta.dummy.line-break</string> <key>settings</key> <dict> <key>foreground</key> <string></string> </dict> </dict> <dict> <key>name</key> <string>Markdown - Heading</string> <key>scope</key> <string>markdown.heading, markup.heading | markup.heading entity.name, markup.heading.markdown punctuation.definition.heading.markdown</string> <key>settings</key> <dict> <key>foreground</key> <string>#C3E88D</string> </dict> </dict> <dict> <key>name</key> <string>Markup - Italic</string> <key>scope</key> <string>markup.italic</string> <key>settings</key> <dict> <key>fontStyle</key> <string>italic</string> <key>foreground</key> <string>#f07178</string> </dict> </dict> <dict> <key>name</key> <string>Markup - Bold</string> <key>scope</key> <string>markup.bold, markup.bold string</string> <key>settings</key> <dict> <key>fontStyle</key> <string>bold</string> <key>foreground</key> <string>#f07178</string> </dict> </dict> <dict> <key>name</key> <string>Markup - Bold &amp; Italic</string> <key>scope</key> <string>markup.bold markup.italic, markup.italic markup.bold, markup.quote markup.bold, markup.bold markup.italic string, markup.italic markup.bold string, markup.quote markup.bold string</string> <key>settings</key> <dict> <key>fontStyle</key> <string>bold italic</string> </dict> </dict> <dict> <key>name</key> <string>Markup - Underline</string> <key>scope</key> <string>markup.underline</string> <key>settings</key> <dict> <key>fontStyle</key> <string>underline</string> <key>foreground</key> <string>#F78C6C</string> </dict> </dict> <dict> <key>name</key> <string>Markup - Strike</string> <key>scope</key> <string>markup.strike</string> <key>settings</key> <dict> <key>fontStyle</key> <string>strike</string> <key>foreground</key> <string></string> </dict> </dict> <dict> <key>name</key> <string>Markdown - Blockquote</string> <key>scope</key> <string>markup.quote punctuation.definition.blockquote.markdown</string> <key>settings</key> <dict> <key>background</key> <string>#65737e</string> <key>foreground</key> <string>#65737e</string> </dict> </dict> <dict> <key>name</key> <string>Markup - Quote</string> <key>scope</key> <string>markup.quote</string> <key>settings</key> <dict> <key>fontStyle</key> <string>italic</string> <key>foreground</key> <string></string> </dict> </dict> <dict> <key>name</key> <string>Markdown - Link</string> <key>scope</key> <string>string.other.link.title.markdown</string> <key>settings</key> <dict> <key>foreground</key> <string>#82AAFF</string> </dict> </dict> <dict> <key>name</key> <string>Markdown - Link Description</string> <key>scope</key> <string>string.other.link.description.title.markdown</string> <key>settings</key> <dict> <key>foreground</key> <string>#C792EA</string> </dict> </dict> <dict> <key>name</key> <string>Markdown - Link Anchor</string> <key>scope</key> <string>constant.other.reference.link.markdown</string> <key>settings</key> <dict> <key>foreground</key> <string>#FFCB6B</string> </dict> </dict> <dict> <key>name</key> <string>Markup - Raw Block</string> <key>scope</key> <string>markup.raw.block</string> <key>settings</key> <dict> <key>foreground</key> <string>#C792EA</string> </dict> </dict> <dict> <key>name</key> <string>Markdown - Raw Block Fenced</string> <key>scope</key> <string>markup.raw.block.fenced.markdown</string> <key>settings</key> <dict> <key>background</key> <string>#00000050</string> </dict> </dict> <dict> <key>name</key> <string>Markdown - Fenced Bode Block</string> <key>scope</key> <string>punctuation.definition.fenced.markdown</string> <key>settings</key> <dict> <key>background</key> <string>#00000050</string> </dict> </dict> <dict> <key>name</key> <string>Markdown - Fenced Bode Block Variable</string> <key>scope</key> <string>markup.raw.block.fenced.markdown, variable.language.fenced.markdown, punctuation.section.class.end</string> <key>settings</key> <dict> <key>foreground</key> <string>#eeffff</string> </dict> </dict> <dict> <key>name</key> <string>Markdown - Fenced Language</string> <key>scope</key> <string>variable.language.fenced.markdown</string> <key>settings</key> <dict> <key>fontStyle</key> <string></string> <key>foreground</key> <string>#65737e</string> </dict> </dict> <dict> <key>name</key> <string>Markdown - Punctuation Definition</string> <key>scope</key> <string>text.html.markdown punctuation.definition</string> <key>settings</key> <dict> <key>foreground</key> <string>#546E7A</string> </dict> </dict> <dict> <key>name</key> <string>Markdown HTML - Punctuation Definition</string> <key>scope</key> <string>text.html.markdown meta.disable-markdown punctuation.definition</string> <key>settings</key> <dict> <key>foreground</key> <string>#89DDFF</string> </dict> </dict> <dict> <key>name</key> <string>Markdown - Separator</string> <key>scope</key> <string>meta.separator</string> <key>settings</key> <dict> <key>background</key> <string>#00000050</string> <key>fontStyle</key> <string>bold</string> <key>foreground</key> <string>#65737e</string> </dict> </dict> <dict> <key>name</key> <string>Markup - Table</string> <key>scope</key> <string>markup.table</string> <key>settings</key> <dict> <key>background</key> <string></string> <key>foreground</key> <string>#eeffff</string> </dict> </dict> <dict> <key>name</key> <string>AceJump Label - Blue</string> <key>scope</key> <string>acejump.label.blue</string> <key>settings</key> <dict> <key>background</key> <string>#82AAFF</string> <key>foreground</key> <string>#ffffff</string> </dict> </dict> <dict> <key>name</key> <string>AceJump Label - Green</string> <key>scope</key> <string>acejump.label.green</string> <key>settings</key> <dict> <key>background</key> <string>#C3E88D</string> <key>foreground</key> <string>#ffffff</string> </dict> </dict> <dict> <key>name</key> <string>AceJump Label - Orange</string> <key>scope</key> <string>acejump.label.orange</string> <key>settings</key> <dict> <key>background</key> <string>#F78C6C</string> <key>foreground</key> <string>#ffffff</string> </dict> </dict> <dict> <key>name</key> <string>AceJump Label - Purple</string> <key>scope</key> <string>acejump.label.purple</string> <key>settings</key> <dict> <key>background</key> <string>#C792EA</string> <key>foreground</key> <string>#ffffff</string> </dict> </dict> <dict> <key>name</key> <string>SublimeLinter Warning</string> <key>scope</key> <string>sublimelinter.mark.warning</string> <key>settings</key> <dict> <key>foreground</key> <string>#FFCB6B</string> </dict> </dict> <dict> <key>name</key> <string>SublimeLinter Gutter Mark</string> <key>scope</key> <string>sublimelinter.gutter-mark</string> <key>settings</key> <dict> <key>foreground</key> <string>#ffffff</string> </dict> </dict> <dict> <key>name</key> <string>SublimeLinter Error</string> <key>scope</key> <string>sublimelinter.mark.error</string> <key>settings</key> <dict> <key>foreground</key> <string>#FF5370</string> </dict> </dict> <dict> <key>name</key> <string>SublimeLinter Annotation</string> <key>scope</key> <string>sublimelinter.annotations</string> <key>settings</key> <dict> <key>background</key> <string>#C17E70</string> </dict> </dict> <dict> <key>name</key> <string>GitGutter Ignored</string> <key>scope</key> <string>markup.ignored.git_gutter</string> <key>settings</key> <dict> <key>foreground</key> <string>#65737e</string> </dict> </dict> <dict> <key>name</key> <string>GitGutter Untracked</string> <key>scope</key> <string>markup.untracked.git_gutter</string> <key>settings</key> <dict> <key>foreground</key> <string>#65737e</string> </dict> </dict> <dict> <key>name</key> <string>GitGutter Inserted</string> <key>scope</key> <string>markup.inserted.git_gutter</string> <key>settings</key> <dict> <key>foreground</key> <string>#C3E88D</string> </dict> </dict> <dict> <key>name</key> <string>GitGutter Changed</string> <key>scope</key> <string>markup.changed.git_gutter</string> <key>settings</key> <dict> <key>foreground</key> <string>#FFCB6B</string> </dict> </dict> <dict> <key>name</key> <string>GitGutter Deleted</string> <key>scope</key> <string>markup.deleted.git_gutter</string> <key>settings</key> <dict> <key>foreground</key> <string>#FF5370</string> </dict> </dict> <dict> <key>name</key> <string>Bracket Curly</string> <key>scope</key> <string>brackethighlighter.default</string> <key>settings</key> <dict> <key>foreground</key> <string>#B2CCD6</string> </dict> </dict> <dict> <key>name</key> <string>Bracket Quote</string> <key>scope</key> <string>brackethighlighter.quote</string> <key>settings</key> <dict> <key>foreground</key> <string>#C3E88D</string> </dict> </dict> <dict> <key>name</key> <string>Bracket Unmatched</string> <key>scope</key> <string>brackethighlighter.unmatched</string> <key>settings</key> <dict> <key>foreground</key> <string>#FF5370</string> </dict> </dict> <dict> <key>scope</key> <string>col_gutter</string> <key>settings</key> <dict> <key>background</key> <string>#000000</string> <key>foreground</key> <string>#ffffff</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFFFFFFF</string> <key>settings</key> <dict> <key>background</key> <string>#FFFFFFFF</string> <key>foreground</key> <string>#7F7F7FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_000000FF</string> <key>settings</key> <dict> <key>background</key> <string>#000000FF</string> <key>foreground</key> <string>#808080FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_008000FF</string> <key>settings</key> <dict> <key>background</key> <string>#008000FF</string> <key>foreground</key> <string>#CBCBCBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF0000FF</string> <key>settings</key> <dict> <key>background</key> <string>#FF0000FF</string> <key>foreground</key> <string>#CCCCCCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_808000FF</string> <key>settings</key> <dict> <key>background</key> <string>#808000FF</string> <key>foreground</key> <string>#F1F1F1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_113377FF</string> <key>settings</key> <dict> <key>background</key> <string>#113377FF</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_60646DFF</string> <key>settings</key> <dict> <key>background</key> <string>#60646DFF</string> <key>foreground</key> <string>#E3E3E3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_0000000C</string> <key>settings</key> <dict> <key>background</key> <string>#0000000C</string> <key>foreground</key> <string>#ACACACFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_60646DCC</string> <key>settings</key> <dict> <key>background</key> <string>#60646DCC</string> <key>foreground</key> <string>#D9D9D9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_00000066</string> <key>settings</key> <dict> <key>background</key> <string>#00000066</string> <key>foreground</key> <string>#9C9C9CFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FBFBFBFF</string> <key>settings</key> <dict> <key>background</key> <string>#FBFBFBFF</string> <key>foreground</key> <string>#7B7B7BFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_2E78B7FF</string> <key>settings</key> <dict> <key>background</key> <string>#2E78B7FF</string> <key>foreground</key> <string>#E9E9E9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_CCCCCCFF</string> <key>settings</key> <dict> <key>background</key> <string>#CCCCCCFF</string> <key>foreground</key> <string>#4C4C4CFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_666804FF</string> <key>settings</key> <dict> <key>background</key> <string>#666804FF</string> <key>foreground</key> <string>#DCDCDCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_EAEB5EFF</string> <key>settings</key> <dict> <key>background</key> <string>#EAEB5EFF</string> <key>foreground</key> <string>#5A5A5AFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_2F95DCFF</string> <key>settings</key> <dict> <key>background</key> <string>#2F95DCFF</string> <key>foreground</key> <string>#FEFEFEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FEFEFEFF</string> <key>settings</key> <dict> <key>background</key> <string>#FEFEFEFF</string> <key>foreground</key> <string>#7E7E7EFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_DB1F2AFF</string> <key>settings</key> <dict> <key>background</key> <string>#DB1F2AFF</string> <key>foreground</key> <string>#D8D8D8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_DDBB11FF</string> <key>settings</key> <dict> <key>background</key> <string>#DDBB11FF</string> <key>foreground</key> <string>#313131FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_3F95DCFF</string> <key>settings</key> <dict> <key>background</key> <string>#3F95DCFF</string> <key>foreground</key> <string>#030303FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22EE77FF</string> <key>settings</key> <dict> <key>background</key> <string>#22EE77FF</string> <key>foreground</key> <string>#232323FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22EE7788</string> <key>settings</key> <dict> <key>background</key> <string>#22EE7788</string> <key>foreground</key> <string>#EDEDEDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_111111FF</string> <key>settings</key> <dict> <key>background</key> <string>#111111FF</string> <key>foreground</key> <string>#919191FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_784678FF</string> <key>settings</key> <dict> <key>background</key> <string>#784678FF</string> <key>foreground</key> <string>#DADADAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_D3D3D3FF</string> <key>settings</key> <dict> <key>background</key> <string>#D3D3D3FF</string> <key>foreground</key> <string>#535353FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_232323FF</string> <key>settings</key> <dict> <key>background</key> <string>#232323FF</string> <key>foreground</key> <string>#A3A3A3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFFF80FF</string> <key>settings</key> <dict> <key>background</key> <string>#FFFF80FF</string> <key>foreground</key> <string>#707070FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_373737FF</string> <key>settings</key> <dict> <key>background</key> <string>#373737FF</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_EEA702FF</string> <key>settings</key> <dict> <key>background</key> <string>#EEA702FF</string> <key>foreground</key> <string>#292929FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_C8FFC8FF</string> <key>settings</key> <dict> <key>background</key> <string>#C8FFC8FF</string> <key>foreground</key> <string>#686868FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFFFF0FF</string> <key>settings</key> <dict> <key>background</key> <string>#FFFFF0FF</string> <key>foreground</key> <string>#7D7D7DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_5D001EFF</string> <key>settings</key> <dict> <key>background</key> <string>#5D001EFF</string> <key>foreground</key> <string>#9F9F9FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88BDBCFF</string> <key>settings</key> <dict> <key>background</key> <string>#88BDBCFF</string> <key>foreground</key> <string>#2D2D2DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_8888BBDD</string> <key>settings</key> <dict> <key>background</key> <string>#8888BBDD</string> <key>foreground</key> <string>#010101FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_8888BBFF</string> <key>settings</key> <dict> <key>background</key> <string>#8888BBFF</string> <key>foreground</key> <string>#0D0D0DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_E0E0E0FF</string> <key>settings</key> <dict> <key>background</key> <string>#E0E0E0FF</string> <key>foreground</key> <string>#606060FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFA500FF</string> <key>settings</key> <dict> <key>background</key> <string>#FFA500FF</string> <key>foreground</key> <string>#2D2D2DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_00008BFF</string> <key>settings</key> <dict> <key>background</key> <string>#00008BFF</string> <key>foreground</key> <string>#8F8F8FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF00FFFF</string> <key>settings</key> <dict> <key>background</key> <string>#FF00FFFF</string> <key>foreground</key> <string>#E9E9E9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_00FFFFFF</string> <key>settings</key> <dict> <key>background</key> <string>#00FFFFFF</string> <key>foreground</key> <string>#323232FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_008080FF</string> <key>settings</key> <dict> <key>background</key> <string>#008080FF</string> <key>foreground</key> <string>#D9D9D9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_8B0000FF</string> <key>settings</key> <dict> <key>background</key> <string>#8B0000FF</string> <key>foreground</key> <string>#A9A9A9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFFF00FF</string> <key>settings</key> <dict> <key>background</key> <string>#FFFF00FF</string> <key>foreground</key> <string>#616161FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_0000FFFF</string> <key>settings</key> <dict> <key>background</key> <string>#0000FFFF</string> <key>foreground</key> <string>#9D9D9DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_8A2BE2FF</string> <key>settings</key> <dict> <key>background</key> <string>#8A2BE2FF</string> <key>foreground</key> <string>#DCDCDCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_DEB887FF</string> <key>settings</key> <dict> <key>background</key> <string>#DEB887FF</string> <key>foreground</key> <string>#3D3D3DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F0FFF0FF</string> <key>settings</key> <dict> <key>background</key> <string>#F0FFF0FF</string> <key>foreground</key> <string>#787878FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_0000CDFF</string> <key>settings</key> <dict> <key>background</key> <string>#0000CDFF</string> <key>foreground</key> <string>#979797FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_DA70D6FF</string> <key>settings</key> <dict> <key>background</key> <string>#DA70D6FF</string> <key>foreground</key> <string>#1B1B1BFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F0FF02FF</string> <key>settings</key> <dict> <key>background</key> <string>#F0FF02FF</string> <key>foreground</key> <string>#5D5D5DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F0FF18FF</string> <key>settings</key> <dict> <key>background</key> <string>#F0FF18FF</string> <key>foreground</key> <string>#606060FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_CCCCCCCC</string> <key>settings</key> <dict> <key>background</key> <string>#CCCCCCCC</string> <key>foreground</key> <string>#2C2C2CFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_DC143CFF</string> <key>settings</key> <dict> <key>background</key> <string>#DC143CFF</string> <key>foreground</key> <string>#D4D4D4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_9932CCFF</string> <key>settings</key> <dict> <key>background</key> <string>#9932CCFF</string> <key>foreground</key> <string>#E2E2E2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_8B008BFF</string> <key>settings</key> <dict> <key>background</key> <string>#8B008BFF</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_008B8BFF</string> <key>settings</key> <dict> <key>background</key> <string>#008B8BFF</string> <key>foreground</key> <string>#E1E1E1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFFFFF01</string> <key>settings</key> <dict> <key>background</key> <string>#FFFFFF01</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFFF0001</string> <key>settings</key> <dict> <key>background</key> <string>#FFFF0001</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_00FFFF01</string> <key>settings</key> <dict> <key>background</key> <string>#00FFFF01</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_2196F3FF</string> <key>settings</key> <dict> <key>background</key> <string>#2196F3FF</string> <key>foreground</key> <string>#FDFDFDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_773399FF</string> <key>settings</key> <dict> <key>background</key> <string>#773399FF</string> <key>foreground</key> <string>#D2D2D2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_7395AEFF</string> <key>settings</key> <dict> <key>background</key> <string>#7395AEFF</string> <key>foreground</key> <string>#0D0D0DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77339955</string> <key>settings</key> <dict> <key>background</key> <string>#77339955</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_555577FF</string> <key>settings</key> <dict> <key>background</key> <string>#555577FF</string> <key>foreground</key> <string>#D8D8D8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_555577AA</string> <key>settings</key> <dict> <key>background</key> <string>#555577AA</string> <key>foreground</key> <string>#CACACAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_557A95FF</string> <key>settings</key> <dict> <key>background</key> <string>#557A95FF</string> <key>foreground</key> <string>#F2F2F2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55DD55FF</string> <key>settings</key> <dict> <key>background</key> <string>#55DD55FF</string> <key>foreground</key> <string>#242424FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55DD55CC</string> <key>settings</key> <dict> <key>background</key> <string>#55DD55CC</string> <key>foreground</key> <string>#0D0D0DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_5D5C61FF</string> <key>settings</key> <dict> <key>background</key> <string>#5D5C61FF</string> <key>foreground</key> <string>#DCDCDCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22EE1111</string> <key>settings</key> <dict> <key>background</key> <string>#22EE1111</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22EE11FF</string> <key>settings</key> <dict> <key>background</key> <string>#22EE11FF</string> <key>foreground</key> <string>#171717FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_2E1114FF</string> <key>settings</key> <dict> <key>background</key> <string>#2E1114FF</string> <key>foreground</key> <string>#9A9A9AFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_007AFFFF</string> <key>settings</key> <dict> <key>background</key> <string>#007AFFFF</string> <key>foreground</key> <string>#E4E4E4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_3B5998FF</string> <key>settings</key> <dict> <key>background</key> <string>#3B5998FF</string> <key>foreground</key> <string>#D7D7D7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_4099FFFF</string> <key>settings</key> <dict> <key>background</key> <string>#4099FFFF</string> <key>foreground</key> <string>#0A0A0AFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_4F8EF7FF</string> <key>settings</key> <dict> <key>background</key> <string>#4F8EF7FF</string> <key>foreground</key> <string>#070707FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_990000FF</string> <key>settings</key> <dict> <key>background</key> <string>#990000FF</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_808080FF</string> <key>settings</key> <dict> <key>background</key> <string>#808080FF</string> <key>foreground</key> <string>#000000FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_CC9900FF</string> <key>settings</key> <dict> <key>background</key> <string>#CC9900FF</string> <key>foreground</key> <string>#161616FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_993300FF</string> <key>settings</key> <dict> <key>background</key> <string>#993300FF</string> <key>foreground</key> <string>#CBCBCBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_CC6600FF</string> <key>settings</key> <dict> <key>background</key> <string>#CC6600FF</string> <key>foreground</key> <string>#F8F8F8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_ADD8E6FF</string> <key>settings</key> <dict> <key>background</key> <string>#ADD8E6FF</string> <key>foreground</key> <string>#4C4C4CFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22FF99FF</string> <key>settings</key> <dict> <key>background</key> <string>#22FF99FF</string> <key>foreground</key> <string>#313131FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22FF9955</string> <key>settings</key> <dict> <key>background</key> <string>#22FF9955</string> <key>foreground</key> <string>#DADADAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_4D4D4DFF</string> <key>settings</key> <dict> <key>background</key> <string>#4D4D4DFF</string> <key>foreground</key> <string>#CDCDCDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_A39F9FFF</string> <key>settings</key> <dict> <key>background</key> <string>#A39F9FFF</string> <key>foreground</key> <string>#202020FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_EDEDEDFF</string> <key>settings</key> <dict> <key>background</key> <string>#EDEDEDFF</string> <key>foreground</key> <string>#6D6D6DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_3A3A3AFF</string> <key>settings</key> <dict> <key>background</key> <string>#3A3A3AFF</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_A9A9A9FF</string> <key>settings</key> <dict> <key>background</key> <string>#A9A9A9FF</string> <key>foreground</key> <string>#292929FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFFFFF19</string> <key>settings</key> <dict> <key>background</key> <string>#FFFFFF19</string> <key>foreground</key> <string>#C3C3C3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFFFFF33</string> <key>settings</key> <dict> <key>background</key> <string>#FFFFFF33</string> <key>foreground</key> <string>#D8D8D8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFFFFF66</string> <key>settings</key> <dict> <key>background</key> <string>#FFFFFF66</string> <key>foreground</key> <string>#020202FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFFFFF4C</string> <key>settings</key> <dict> <key>background</key> <string>#FFFFFF4C</string> <key>foreground</key> <string>#EDEDEDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_CED0CEFF</string> <key>settings</key> <dict> <key>background</key> <string>#CED0CEFF</string> <key>foreground</key> <string>#4F4F4FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_CCEEDD01</string> <key>settings</key> <dict> <key>background</key> <string>#CCEEDD01</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_CCEEDDFF</string> <key>settings</key> <dict> <key>background</key> <string>#CCEEDDFF</string> <key>foreground</key> <string>#616161FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_43464BFF</string> <key>settings</key> <dict> <key>background</key> <string>#43464BFF</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_9FA1A3FF</string> <key>settings</key> <dict> <key>background</key> <string>#9FA1A3FF</string> <key>foreground</key> <string>#202020FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_230423FF</string> <key>settings</key> <dict> <key>background</key> <string>#230423FF</string> <key>foreground</key> <string>#909090FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_230323FF</string> <key>settings</key> <dict> <key>background</key> <string>#230323FF</string> <key>foreground</key> <string>#909090FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_232823FF</string> <key>settings</key> <dict> <key>background</key> <string>#232823FF</string> <key>foreground</key> <string>#A5A5A5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_232626FF</string> <key>settings</key> <dict> <key>background</key> <string>#232626FF</string> <key>foreground</key> <string>#A5A5A5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_232603FF</string> <key>settings</key> <dict> <key>background</key> <string>#232603FF</string> <key>foreground</key> <string>#A1A1A1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_232623FF</string> <key>settings</key> <dict> <key>background</key> <string>#232623FF</string> <key>foreground</key> <string>#A4A4A4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_232622FF</string> <key>settings</key> <dict> <key>background</key> <string>#232622FF</string> <key>foreground</key> <string>#A4A4A4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_232628FF</string> <key>settings</key> <dict> <key>background</key> <string>#232628FF</string> <key>foreground</key> <string>#A5A5A5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_373C37FF</string> <key>settings</key> <dict> <key>background</key> <string>#373C37FF</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_370637FF</string> <key>settings</key> <dict> <key>background</key> <string>#370637FF</string> <key>foreground</key> <string>#9A9A9AFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_370537FF</string> <key>settings</key> <dict> <key>background</key> <string>#370537FF</string> <key>foreground</key> <string>#999999FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_373C06FF</string> <key>settings</key> <dict> <key>background</key> <string>#373C06FF</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_373C3EFF</string> <key>settings</key> <dict> <key>background</key> <string>#373C3EFF</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_373C05FF</string> <key>settings</key> <dict> <key>background</key> <string>#373C05FF</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_373A37FF</string> <key>settings</key> <dict> <key>background</key> <string>#373A37FF</string> <key>foreground</key> <string>#B8B8B8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_373A05FF</string> <key>settings</key> <dict> <key>background</key> <string>#373A05FF</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_373A06FF</string> <key>settings</key> <dict> <key>background</key> <string>#373A06FF</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_373A3CFF</string> <key>settings</key> <dict> <key>background</key> <string>#373A3CFF</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_03A9F4FF</string> <key>settings</key> <dict> <key>background</key> <string>#03A9F4FF</string> <key>foreground</key> <string>#FFFFFFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F2F2F2FF</string> <key>settings</key> <dict> <key>background</key> <string>#F2F2F2FF</string> <key>foreground</key> <string>#727272FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFFFFFB2</string> <key>settings</key> <dict> <key>background</key> <string>#FFFFFFB2</string> <key>foreground</key> <string>#404040FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_0000003F</string> <key>settings</key> <dict> <key>background</key> <string>#0000003F</string> <key>foreground</key> <string>#A3A3A3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_B721FFFF</string> <key>settings</key> <dict> <key>background</key> <string>#B721FFFF</string> <key>foreground</key> <string>#E7E7E7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFFFFFBF</string> <key>settings</key> <dict> <key>background</key> <string>#FFFFFFBF</string> <key>foreground</key> <string>#4A4A4AFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_888888FF</string> <key>settings</key> <dict> <key>background</key> <string>#888888FF</string> <key>foreground</key> <string>#080808FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFFFFFE5</string> <key>settings</key> <dict> <key>background</key> <string>#FFFFFFE5</string> <key>foreground</key> <string>#696969FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_21D4FDFF</string> <key>settings</key> <dict> <key>background</key> <string>#21D4FDFF</string> <key>foreground</key> <string>#232323FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_1A1917FF</string> <key>settings</key> <dict> <key>background</key> <string>#1A1917FF</string> <key>foreground</key> <string>#999999FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFFFFFCC</string> <key>settings</key> <dict> <key>background</key> <string>#FFFFFFCC</string> <key>foreground</key> <string>#555555FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFFFFFD8</string> <key>settings</key> <dict> <key>background</key> <string>#FFFFFFD8</string> <key>foreground</key> <string>#5F5F5FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFF8F8F8</string> <key>settings</key> <dict> <key>background</key> <string>#FFF8F8F8</string> <key>foreground</key> <string>#747474FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF3C3C3C</string> <key>settings</key> <dict> <key>background</key> <string>#FF3C3C3C</string> <key>foreground</key> <string>#BFBFBFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_28A4C9FF</string> <key>settings</key> <dict> <key>background</key> <string>#28A4C9FF</string> <key>foreground</key> <string>#030303FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFC12E2A</string> <key>settings</key> <dict> <key>background</key> <string>#FFC12E2A</string> <key>foreground</key> <string>#C7C7C7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_9ACFEAFF</string> <key>settings</key> <dict> <key>background</key> <string>#9ACFEAFF</string> <key>foreground</key> <string>#424242FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFC4E3F3</string> <key>settings</key> <dict> <key>background</key> <string>#FFC4E3F3</string> <key>foreground</key> <string>#515151FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF286090</string> <key>settings</key> <dict> <key>background</key> <string>#FF286090</string> <key>foreground</key> <string>#D2D2D2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_B9DEF0FF</string> <key>settings</key> <dict> <key>background</key> <string>#B9DEF0FF</string> <key>foreground</key> <string>#545454FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFD0E9C6</string> <key>settings</key> <dict> <key>background</key> <string>#FFD0E9C6</string> <key>foreground</key> <string>#393939FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F8F8F8FF</string> <key>settings</key> <dict> <key>background</key> <string>#F8F8F8FF</string> <key>foreground</key> <string>#787878FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F5F5F5FF</string> <key>settings</key> <dict> <key>background</key> <string>#F5F5F5FF</string> <key>foreground</key> <string>#757575FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_EBCCCCFF</string> <key>settings</key> <dict> <key>background</key> <string>#EBCCCCFF</string> <key>foreground</key> <string>#555555FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF2B669A</string> <key>settings</key> <dict> <key>background</key> <string>#FF2B669A</string> <key>foreground</key> <string>#D6D6D6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF222222</string> <key>settings</key> <dict> <key>background</key> <string>#FF222222</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F0AD4EFF</string> <key>settings</key> <dict> <key>background</key> <string>#F0AD4EFF</string> <key>foreground</key> <string>#363636FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_00000013</string> <key>settings</key> <dict> <key>background</key> <string>#00000013</string> <key>foreground</key> <string>#ABABABFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_286090FF</string> <key>settings</key> <dict> <key>background</key> <string>#286090FF</string> <key>foreground</key> <string>#D4D4D4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_0000001F</string> <key>settings</key> <dict> <key>background</key> <string>#0000001F</string> <key>foreground</key> <string>#A9A9A9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_C9302CFF</string> <key>settings</key> <dict> <key>background</key> <string>#C9302CFF</string> <key>foreground</key> <string>#DDDDDDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFDBDBDB</string> <key>settings</key> <dict> <key>background</key> <string>#FFDBDBDB</string> <key>foreground</key> <string>#4B4B4BFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFC9302C</string> <key>settings</key> <dict> <key>background</key> <string>#FFC9302C</string> <key>foreground</key> <string>#C9C9C9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF5BC0DE</string> <key>settings</key> <dict> <key>background</key> <string>#FF5BC0DE</string> <key>foreground</key> <string>#0A0A0AFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFE0E0E0</string> <key>settings</key> <dict> <key>background</key> <string>#FFE0E0E0</string> <key>foreground</key> <string>#525252FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF449D44</string> <key>settings</key> <dict> <key>background</key> <string>#FF449D44</string> <key>foreground</key> <string>#C6C6C6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_B2DBA1FF</string> <key>settings</key> <dict> <key>background</key> <string>#B2DBA1FF</string> <key>foreground</key> <string>#484848FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFF8EFC0</string> <key>settings</key> <dict> <key>background</key> <string>#FFF8EFC0</string> <key>foreground</key> <string>#474747FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_EC971FFF</string> <key>settings</key> <dict> <key>background</key> <string>#EC971FFF</string> <key>foreground</key> <string>#222222FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFD9EDF7</string> <key>settings</key> <dict> <key>background</key> <string>#FFD9EDF7</string> <key>foreground</key> <string>#606060FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_222222FF</string> <key>settings</key> <dict> <key>background</key> <string>#222222FF</string> <key>foreground</key> <string>#A2A2A2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_2E6DA4FF</string> <key>settings</key> <dict> <key>background</key> <string>#2E6DA4FF</string> <key>foreground</key> <string>#E0E0E0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_419641FF</string> <key>settings</key> <dict> <key>background</key> <string>#419641FF</string> <key>foreground</key> <string>#F2F2F2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_C8E5BCFF</string> <key>settings</key> <dict> <key>background</key> <string>#C8E5BCFF</string> <key>foreground</key> <string>#575757FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFFFFF26</string> <key>settings</key> <dict> <key>background</key> <string>#FFFFFF26</string> <key>foreground</key> <string>#CECECEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_3C3C3CFF</string> <key>settings</key> <dict> <key>background</key> <string>#3C3C3CFF</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_C4E3F3FF</string> <key>settings</key> <dict> <key>background</key> <string>#C4E3F3FF</string> <key>foreground</key> <string>#5B5B5BFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFB9DEF0</string> <key>settings</key> <dict> <key>background</key> <string>#FFB9DEF0</string> <key>foreground</key> <string>#484848FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_E8E8E8FF</string> <key>settings</key> <dict> <key>background</key> <string>#E8E8E8FF</string> <key>foreground</key> <string>#686868FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F8EFC0FF</string> <key>settings</key> <dict> <key>background</key> <string>#F8EFC0FF</string> <key>foreground</key> <string>#6C6C6CFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_EB9316FF</string> <key>settings</key> <dict> <key>background</key> <string>#EB9316FF</string> <key>foreground</key> <string>#1F1F1FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFE8E8E8</string> <key>settings</key> <dict> <key>background</key> <string>#FFE8E8E8</string> <key>foreground</key> <string>#5D5D5DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFD9534F</string> <key>settings</key> <dict> <key>background</key> <string>#FFD9534F</string> <key>foreground</key> <string>#E2E2E2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_E2E2E2FF</string> <key>settings</key> <dict> <key>background</key> <string>#E2E2E2FF</string> <key>foreground</key> <string>#626262FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_00B3EEFF</string> <key>settings</key> <dict> <key>background</key> <string>#00B3EEFF</string> <key>foreground</key> <string>#040404FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF2AABD2</string> <key>settings</key> <dict> <key>background</key> <string>#FF2AABD2</string> <key>foreground</key> <string>#EBEBEBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF080808</string> <key>settings</key> <dict> <key>background</key> <string>#FF080808</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFF0AD4E</string> <key>settings</key> <dict> <key>background</key> <string>#FFF0AD4E</string> <key>foreground</key> <string>#E9E9E9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFFFFF3F</string> <key>settings</key> <dict> <key>background</key> <string>#FFFFFF3F</string> <key>foreground</key> <string>#E2E2E2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF2E6DA4</string> <key>settings</key> <dict> <key>background</key> <string>#FF2E6DA4</string> <key>foreground</key> <string>#DBDBDBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFFAF2CC</string> <key>settings</key> <dict> <key>background</key> <string>#FFFAF2CC</string> <key>foreground</key> <string>#515151FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_DBDBDBFF</string> <key>settings</key> <dict> <key>background</key> <string>#DBDBDBFF</string> <key>foreground</key> <string>#5B5B5BFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_E38D13FF</string> <key>settings</key> <dict> <key>background</key> <string>#E38D13FF</string> <key>foreground</key> <string>#181818FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFF2DEDE</string> <key>settings</key> <dict> <key>background</key> <string>#FFF2DEDE</string> <key>foreground</key> <string>#5A5A5AFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_449D44FF</string> <key>settings</key> <dict> <key>background</key> <string>#449D44FF</string> <key>foreground</key> <string>#F8F8F8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_D9534FFF</string> <key>settings</key> <dict> <key>background</key> <string>#D9534FFF</string> <key>foreground</key> <string>#FAFAFAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF31B0D5</string> <key>settings</key> <dict> <key>background</key> <string>#FF31B0D5</string> <key>foreground</key> <string>#F0F0F0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_31B0D5FF</string> <key>settings</key> <dict> <key>background</key> <string>#31B0D5FF</string> <key>foreground</key> <string>#0E0E0EFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_265A88FF</string> <key>settings</key> <dict> <key>background</key> <string>#265A88FF</string> <key>foreground</key> <string>#CFCFCFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFEC971F</string> <key>settings</key> <dict> <key>background</key> <string>#FFEC971F</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_5CB85CFF</string> <key>settings</key> <dict> <key>background</key> <string>#5CB85CFF</string> <key>foreground</key> <string>#121212FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_C3325FFF</string> <key>settings</key> <dict> <key>background</key> <string>#C3325FFF</string> <key>foreground</key> <string>#E2E2E2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FAF2CCFF</string> <key>settings</key> <dict> <key>background</key> <string>#FAF2CCFF</string> <key>foreground</key> <string>#707070FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF5CB85C</string> <key>settings</key> <dict> <key>background</key> <string>#FF5CB85C</string> <key>foreground</key> <string>#D4D4D4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_555555FF</string> <key>settings</key> <dict> <key>background</key> <string>#555555FF</string> <key>foreground</key> <string>#D5D5D5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFE7C3C3</string> <key>settings</key> <dict> <key>background</key> <string>#FFE7C3C3</string> <key>foreground</key> <string>#3E3E3EFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F5E79EFF</string> <key>settings</key> <dict> <key>background</key> <string>#F5E79EFF</string> <key>foreground</key> <string>#626262FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_3E8F3EFF</string> <key>settings</key> <dict> <key>background</key> <string>#3E8F3EFF</string> <key>foreground</key> <string>#EDEDEDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_2B669AFF</string> <key>settings</key> <dict> <key>background</key> <string>#2B669AFF</string> <key>foreground</key> <string>#DADADAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FCF8E3FF</string> <key>settings</key> <dict> <key>background</key> <string>#FCF8E3FF</string> <key>foreground</key> <string>#767676FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_D0E9C6FF</string> <key>settings</key> <dict> <key>background</key> <string>#D0E9C6FF</string> <key>foreground</key> <string>#5D5D5DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFFCF8E3</string> <key>settings</key> <dict> <key>background</key> <string>#FFFCF8E3</string> <key>foreground</key> <string>#656565FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFEB9316</string> <key>settings</key> <dict> <key>background</key> <string>#FFEB9316</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F2DEDEFF</string> <key>settings</key> <dict> <key>background</key> <string>#F2DEDEFF</string> <key>foreground</key> <string>#636363FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_E7C3C3FF</string> <key>settings</key> <dict> <key>background</key> <string>#E7C3C3FF</string> <key>foreground</key> <string>#4D4D4DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_DCDCDCFF</string> <key>settings</key> <dict> <key>background</key> <string>#DCDCDCFF</string> <key>foreground</key> <string>#5C5C5CFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF0F0F0F</string> <key>settings</key> <dict> <key>background</key> <string>#FF0F0F0F</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_5BC0DEFF</string> <key>settings</key> <dict> <key>background</key> <string>#5BC0DEFF</string> <key>foreground</key> <string>#252525FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_0F0F0FFF</string> <key>settings</key> <dict> <key>background</key> <string>#0F0F0FFF</string> <key>foreground</key> <string>#8F8F8FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_333333FF</string> <key>settings</key> <dict> <key>background</key> <string>#333333FF</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFEBCCCC</string> <key>settings</key> <dict> <key>background</key> <string>#FFEBCCCC</string> <key>foreground</key> <string>#474747FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_DCA7A7FF</string> <key>settings</key> <dict> <key>background</key> <string>#DCA7A7FF</string> <key>foreground</key> <string>#363636FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_DFF0D8FF</string> <key>settings</key> <dict> <key>background</key> <string>#DFF0D8FF</string> <key>foreground</key> <string>#686868FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_EBEBEBFF</string> <key>settings</key> <dict> <key>background</key> <string>#EBEBEBFF</string> <key>foreground</key> <string>#6B6B6BFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_7A43B6FF</string> <key>settings</key> <dict> <key>background</key> <string>#7A43B6FF</string> <key>foreground</key> <string>#E0E0E0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFE2E2E2</string> <key>settings</key> <dict> <key>background</key> <string>#FFE2E2E2</string> <key>foreground</key> <string>#555555FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFDFF0D8</string> <key>settings</key> <dict> <key>background</key> <string>#FFDFF0D8</string> <key>foreground</key> <string>#4D4D4DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFF5F5F5</string> <key>settings</key> <dict> <key>background</key> <string>#FFF5F5F5</string> <key>foreground</key> <string>#707070FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_2AABD2FF</string> <key>settings</key> <dict> <key>background</key> <string>#2AABD2FF</string> <key>foreground</key> <string>#080808FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_080808FF</string> <key>settings</key> <dict> <key>background</key> <string>#080808FF</string> <key>foreground</key> <string>#888888FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_C12E2AFF</string> <key>settings</key> <dict> <key>background</key> <string>#C12E2AFF</string> <key>foreground</key> <string>#D9D9D9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_00000033</string> <key>settings</key> <dict> <key>background</key> <string>#00000033</string> <key>foreground</key> <string>#A5A5A5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFEBEBEB</string> <key>settings</key> <dict> <key>background</key> <string>#FFEBEBEB</string> <key>foreground</key> <string>#616161FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_245580FF</string> <key>settings</key> <dict> <key>background</key> <string>#245580FF</string> <key>foreground</key> <string>#CBCBCBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF419641</string> <key>settings</key> <dict> <key>background</key> <string>#FF419641</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFC8E5BC</string> <key>settings</key> <dict> <key>background</key> <string>#FFC8E5BC</string> <key>foreground</key> <string>#2E2E2EFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_B92C28FF</string> <key>settings</key> <dict> <key>background</key> <string>#B92C28FF</string> <key>foreground</key> <string>#D5D5D5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF265A88</string> <key>settings</key> <dict> <key>background</key> <string>#FF265A88</string> <key>foreground</key> <string>#D0D0D0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_337AB7FF</string> <key>settings</key> <dict> <key>background</key> <string>#337AB7FF</string> <key>foreground</key> <string>#EBEBEBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_D9EDF7FF</string> <key>settings</key> <dict> <key>background</key> <string>#D9EDF7FF</string> <key>foreground</key> <string>#686868FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF337AB7</string> <key>settings</key> <dict> <key>background</key> <string>#FF337AB7</string> <key>foreground</key> <string>#E3E3E3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_DDDDDDFF</string> <key>settings</key> <dict> <key>background</key> <string>#DDDDDDFF</string> <key>foreground</key> <string>#5D5D5DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_262626FF</string> <key>settings</key> <dict> <key>background</key> <string>#262626FF</string> <key>foreground</key> <string>#A6A6A6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_D5D5D5FF</string> <key>settings</key> <dict> <key>background</key> <string>#D5D5D5FF</string> <key>foreground</key> <string>#555555FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_398439FF</string> <key>settings</key> <dict> <key>background</key> <string>#398439FF</string> <key>foreground</key> <string>#E5E5E5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_843534FF</string> <key>settings</key> <dict> <key>background</key> <string>#843534FF</string> <key>foreground</key> <string>#CCCCCCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66AFE9FF</string> <key>settings</key> <dict> <key>background</key> <string>#66AFE9FF</string> <key>foreground</key> <string>#1F1F1FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66512CFF</string> <key>settings</key> <dict> <key>background</key> <string>#66512CFF</string> <key>foreground</key> <string>#D3D3D3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_8C8C8CFF</string> <key>settings</key> <dict> <key>background</key> <string>#8C8C8CFF</string> <key>foreground</key> <string>#0C0C0CFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F7ECB5FF</string> <key>settings</key> <dict> <key>background</key> <string>#F7ECB5FF</string> <key>foreground</key> <string>#696969FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_D43F3AFF</string> <key>settings</key> <dict> <key>background</key> <string>#D43F3AFF</string> <key>foreground</key> <string>#EAEAEAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_46B8DAFF</string> <key>settings</key> <dict> <key>background</key> <string>#46B8DAFF</string> <key>foreground</key> <string>#191919FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_E4B9C0FF</string> <key>settings</key> <dict> <key>background</key> <string>#E4B9C0FF</string> <key>foreground</key> <string>#464646FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_777777FF</string> <key>settings</key> <dict> <key>background</key> <string>#777777FF</string> <key>foreground</key> <string>#F7F7F7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_AC2925FF</string> <key>settings</key> <dict> <key>background</key> <string>#AC2925FF</string> <key>foreground</key> <string>#CFCFCFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_A6E1ECFF</string> <key>settings</key> <dict> <key>background</key> <string>#A6E1ECFF</string> <key>foreground</key> <string>#505050FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F9F9F9FF</string> <key>settings</key> <dict> <key>background</key> <string>#F9F9F9FF</string> <key>foreground</key> <string>#797979FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_255625FF</string> <key>settings</key> <dict> <key>background</key> <string>#255625FF</string> <key>foreground</key> <string>#C1C1C1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_CE8483FF</string> <key>settings</key> <dict> <key>background</key> <string>#CE8483FF</string> <key>foreground</key> <string>#1A1A1AFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_00000001</string> <key>settings</key> <dict> <key>background</key> <string>#00000001</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F9F2F4FF</string> <key>settings</key> <dict> <key>background</key> <string>#F9F2F4FF</string> <key>foreground</key> <string>#747474FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_00000026</string> <key>settings</key> <dict> <key>background</key> <string>#00000026</string> <key>foreground</key> <string>#A8A8A8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_1B6D85FF</string> <key>settings</key> <dict> <key>background</key> <string>#1B6D85FF</string> <key>foreground</key> <string>#D7D7D7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_0000002C</string> <key>settings</key> <dict> <key>background</key> <string>#0000002C</string> <key>foreground</key> <string>#A6A6A6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_EBCCD1FF</string> <key>settings</key> <dict> <key>background</key> <string>#EBCCD1FF</string> <key>foreground</key> <string>#555555FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_C7DDEFFF</string> <key>settings</key> <dict> <key>background</key> <string>#C7DDEFFF</string> <key>foreground</key> <string>#585858FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_C0A16BFF</string> <key>settings</key> <dict> <key>background</key> <string>#C0A16BFF</string> <key>foreground</key> <string>#242424FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_2B542CFF</string> <key>settings</key> <dict> <key>background</key> <string>#2B542CFF</string> <key>foreground</key> <string>#C3C3C3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_C7254EFF</string> <key>settings</key> <dict> <key>background</key> <string>#C7254EFF</string> <key>foreground</key> <string>#DADADAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_C1E2B3FF</string> <key>settings</key> <dict> <key>background</key> <string>#C1E2B3FF</string> <key>foreground</key> <string>#525252FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_AFD9EEFF</string> <key>settings</key> <dict> <key>background</key> <string>#AFD9EEFF</string> <key>foreground</key> <string>#4E4E4EFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_122B40FF</string> <key>settings</key> <dict> <key>background</key> <string>#122B40FF</string> <key>foreground</key> <string>#A5A5A5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_5E5E5EFF</string> <key>settings</key> <dict> <key>background</key> <string>#5E5E5EFF</string> <key>foreground</key> <string>#DEDEDEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_EEEEEEFF</string> <key>settings</key> <dict> <key>background</key> <string>#EEEEEEFF</string> <key>foreground</key> <string>#6E6E6EFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_D58512FF</string> <key>settings</key> <dict> <key>background</key> <string>#D58512FF</string> <key>foreground</key> <string>#0F0F0FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66AFE999</string> <key>settings</key> <dict> <key>background</key> <string>#66AFE999</string> <key>foreground</key> <string>#F2F2F2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_E5E5E5FF</string> <key>settings</key> <dict> <key>background</key> <string>#E5E5E5FF</string> <key>foreground</key> <string>#656565FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_101010FF</string> <key>settings</key> <dict> <key>background</key> <string>#101010FF</string> <key>foreground</key> <string>#909090FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_67B168FF</string> <key>settings</key> <dict> <key>background</key> <string>#67B168FF</string> <key>foreground</key> <string>#121212FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_23527CFF</string> <key>settings</key> <dict> <key>background</key> <string>#23527CFF</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_761C19FF</string> <key>settings</key> <dict> <key>background</key> <string>#761C19FF</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_269ABCFF</string> <key>settings</key> <dict> <key>background</key> <string>#269ABCFF</string> <key>foreground</key> <string>#FBFBFBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_E3E3E3FF</string> <key>settings</key> <dict> <key>background</key> <string>#E3E3E3FF</string> <key>foreground</key> <string>#636363FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_245269FF</string> <key>settings</key> <dict> <key>background</key> <string>#245269FF</string> <key>foreground</key> <string>#C6C6C6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_EEA236FF</string> <key>settings</key> <dict> <key>background</key> <string>#EEA236FF</string> <key>foreground</key> <string>#2C2C2CFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F7F7F7FF</string> <key>settings</key> <dict> <key>background</key> <string>#F7F7F7FF</string> <key>foreground</key> <string>#777777FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_BCE8F1FF</string> <key>settings</key> <dict> <key>background</key> <string>#BCE8F1FF</string> <key>foreground</key> <string>#5B5B5BFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_204D74FF</string> <key>settings</key> <dict> <key>background</key> <string>#204D74FF</string> <key>foreground</key> <string>#C3C3C3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_D6E9C6FF</string> <key>settings</key> <dict> <key>background</key> <string>#D6E9C6FF</string> <key>foreground</key> <string>#5F5F5FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_D4D4D4FF</string> <key>settings</key> <dict> <key>background</key> <string>#D4D4D4FF</string> <key>foreground</key> <string>#545454FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_9D9D9DFF</string> <key>settings</key> <dict> <key>background</key> <string>#9D9D9DFF</string> <key>foreground</key> <string>#1D1D1DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_A94442FF</string> <key>settings</key> <dict> <key>background</key> <string>#A94442FF</string> <key>foreground</key> <string>#E1E1E1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_C0C0C0FF</string> <key>settings</key> <dict> <key>background</key> <string>#C0C0C0FF</string> <key>foreground</key> <string>#404040FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_ADADADFF</string> <key>settings</key> <dict> <key>background</key> <string>#ADADADFF</string> <key>foreground</key> <string>#2D2D2DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_00000019</string> <key>settings</key> <dict> <key>background</key> <string>#00000019</string> <key>foreground</key> <string>#AAAAAAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_31708FFF</string> <key>settings</key> <dict> <key>background</key> <string>#31708FFF</string> <key>foreground</key> <string>#E0E0E0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_00000099</string> <key>settings</key> <dict> <key>background</key> <string>#00000099</string> <key>foreground</key> <string>#929292FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_C9E2B3FF</string> <key>settings</key> <dict> <key>background</key> <string>#C9E2B3FF</string> <key>foreground</key> <string>#555555FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FAEBCCFF</string> <key>settings</key> <dict> <key>background</key> <string>#FAEBCCFF</string> <key>foreground</key> <string>#6B6B6BFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_3C763DFF</string> <key>settings</key> <dict> <key>background</key> <string>#3C763DFF</string> <key>foreground</key> <string>#DEDEDEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_0000007F</string> <key>settings</key> <dict> <key>background</key> <string>#0000007F</string> <key>foreground</key> <string>#979797FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_8A6D3BFF</string> <key>settings</key> <dict> <key>background</key> <string>#8A6D3BFF</string> <key>foreground</key> <string>#EFEFEFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_E4B9B9FF</string> <key>settings</key> <dict> <key>background</key> <string>#E4B9B9FF</string> <key>foreground</key> <string>#454545FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_E7E7E7FF</string> <key>settings</key> <dict> <key>background</key> <string>#E7E7E7FF</string> <key>foreground</key> <string>#676767FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_E6E6E6FF</string> <key>settings</key> <dict> <key>background</key> <string>#E6E6E6FF</string> <key>foreground</key> <string>#666666FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_80000001</string> <key>settings</key> <dict> <key>background</key> <string>#80000001</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_4CAE4CFF</string> <key>settings</key> <dict> <key>background</key> <string>#4CAE4CFF</string> <key>foreground</key> <string>#050505FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_985F0DFF</string> <key>settings</key> <dict> <key>background</key> <string>#985F0DFF</string> <key>foreground</key> <string>#E6E6E6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F7E1B5FF</string> <key>settings</key> <dict> <key>background</key> <string>#F7E1B5FF</string> <key>foreground</key> <string>#626262FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_737373FF</string> <key>settings</key> <dict> <key>background</key> <string>#737373FF</string> <key>foreground</key> <string>#F3F3F3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_444444FF</string> <key>settings</key> <dict> <key>background</key> <string>#444444FF</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_999999FF</string> <key>settings</key> <dict> <key>background</key> <string>#999999FF</string> <key>foreground</key> <string>#191919FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_B0BEC5FF</string> <key>settings</key> <dict> <key>background</key> <string>#B0BEC5FF</string> <key>foreground</key> <string>#3A3A3AFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_747474FF</string> <key>settings</key> <dict> <key>background</key> <string>#747474FF</string> <key>foreground</key> <string>#F4F4F4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_BBBBBBFF</string> <key>settings</key> <dict> <key>background</key> <string>#BBBBBBFF</string> <key>foreground</key> <string>#3B3B3BFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_666666FF</string> <key>settings</key> <dict> <key>background</key> <string>#666666FF</string> <key>foreground</key> <string>#E6E6E6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_333248FF</string> <key>settings</key> <dict> <key>background</key> <string>#333248FF</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_337788FF</string> <key>settings</key> <dict> <key>background</key> <string>#337788FF</string> <key>foreground</key> <string>#E4E4E4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_337799FF</string> <key>settings</key> <dict> <key>background</key> <string>#337799FF</string> <key>foreground</key> <string>#E6E6E6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33779966</string> <key>settings</key> <dict> <key>background</key> <string>#33779966</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_379683FF</string> <key>settings</key> <dict> <key>background</key> <string>#379683FF</string> <key>foreground</key> <string>#F7F7F7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_928E94FF</string> <key>settings</key> <dict> <key>background</key> <string>#928E94FF</string> <key>foreground</key> <string>#0F0F0FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_BB11AAFF</string> <key>settings</key> <dict> <key>background</key> <string>#BB11AAFF</string> <key>foreground</key> <string>#D5D5D5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_B1A296FF</string> <key>settings</key> <dict> <key>background</key> <string>#B1A296FF</string> <key>foreground</key> <string>#252525FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_BB11AA22</string> <key>settings</key> <dict> <key>background</key> <string>#BB11AA22</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_B0A296FF</string> <key>settings</key> <dict> <key>background</key> <string>#B0A296FF</string> <key>foreground</key> <string>#242424FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11AA11FF</string> <key>settings</key> <dict> <key>background</key> <string>#11AA11FF</string> <key>foreground</key> <string>#EAEAEAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11AA11AA</string> <key>settings</key> <dict> <key>background</key> <string>#11AA11AA</string> <key>foreground</key> <string>#D6D6D6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_1A1A1DFF</string> <key>settings</key> <dict> <key>background</key> <string>#1A1A1DFF</string> <key>foreground</key> <string>#9A9A9AFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_992288EE</string> <key>settings</key> <dict> <key>background</key> <string>#992288EE</string> <key>foreground</key> <string>#CECECEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_992288FF</string> <key>settings</key> <dict> <key>background</key> <string>#992288FF</string> <key>foreground</key> <string>#D1D1D1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44EE44FF</string> <key>settings</key> <dict> <key>background</key> <string>#44EE44FF</string> <key>foreground</key> <string>#272727FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44EE44EE</string> <key>settings</key> <dict> <key>background</key> <string>#44EE44EE</string> <key>foreground</key> <string>#1F1F1FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_4E4E50FF</string> <key>settings</key> <dict> <key>background</key> <string>#4E4E50FF</string> <key>foreground</key> <string>#CECECEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_6F2232FF</string> <key>settings</key> <dict> <key>background</key> <string>#6F2232FF</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66FF22FF</string> <key>settings</key> <dict> <key>background</key> <string>#66FF22FF</string> <key>foreground</key> <string>#383838FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66FF2222</string> <key>settings</key> <dict> <key>background</key> <string>#66FF2222</string> <key>foreground</key> <string>#C1C1C1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_995500FF</string> <key>settings</key> <dict> <key>background</key> <string>#995500FF</string> <key>foreground</key> <string>#DFDFDFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99550077</string> <key>settings</key> <dict> <key>background</key> <string>#99550077</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99550088</string> <key>settings</key> <dict> <key>background</key> <string>#99550088</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_950740FF</string> <key>settings</key> <dict> <key>background</key> <string>#950740FF</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_CC3300FF</string> <key>settings</key> <dict> <key>background</key> <string>#CC3300FF</string> <key>foreground</key> <string>#DADADAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_C3073FFF</string> <key>settings</key> <dict> <key>background</key> <string>#C3073FFF</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_CC330077</string> <key>settings</key> <dict> <key>background</key> <string>#CC330077</string> <key>foreground</key> <string>#C3C3C3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_661188FF</string> <key>settings</key> <dict> <key>background</key> <string>#661188FF</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_61892FFF</string> <key>settings</key> <dict> <key>background</key> <string>#61892FFF</string> <key>foreground</key> <string>#F2F2F2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_8866CCFF</string> <key>settings</key> <dict> <key>background</key> <string>#8866CCFF</string> <key>foreground</key> <string>#FBFBFBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_8866CC22</string> <key>settings</key> <dict> <key>background</key> <string>#8866CC22</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_86C232FF</string> <key>settings</key> <dict> <key>background</key> <string>#86C232FF</string> <key>foreground</key> <string>#1F1F1FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_222629FF</string> <key>settings</key> <dict> <key>background</key> <string>#222629FF</string> <key>foreground</key> <string>#A5A5A5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22222266</string> <key>settings</key> <dict> <key>background</key> <string>#22222266</string> <key>foreground</key> <string>#A9A9A9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_447744BB</string> <key>settings</key> <dict> <key>background</key> <string>#447744BB</string> <key>foreground</key> <string>#D4D4D4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_447744FF</string> <key>settings</key> <dict> <key>background</key> <string>#447744FF</string> <key>foreground</key> <string>#E1E1E1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_474B4FFF</string> <key>settings</key> <dict> <key>background</key> <string>#474B4FFF</string> <key>foreground</key> <string>#CACACAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66BB66FF</string> <key>settings</key> <dict> <key>background</key> <string>#66BB66FF</string> <key>foreground</key> <string>#171717FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_6B6E70FF</string> <key>settings</key> <dict> <key>background</key> <string>#6B6E70FF</string> <key>foreground</key> <string>#EDEDEDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66BB66EE</string> <key>settings</key> <dict> <key>background</key> <string>#66BB66EE</string> <key>foreground</key> <string>#101010FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFC0CBFF</string> <key>settings</key> <dict> <key>background</key> <string>#FFC0CBFF</string> <key>foreground</key> <string>#545454FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_800080FF</string> <key>settings</key> <dict> <key>background</key> <string>#800080FF</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66666666</string> <key>settings</key> <dict> <key>background</key> <string>#66666666</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_666666DD</string> <key>settings</key> <dict> <key>background</key> <string>#666666DD</string> <key>foreground</key> <string>#DEDEDEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_666666AA</string> <key>settings</key> <dict> <key>background</key> <string>#666666AA</string> <key>foreground</key> <string>#D3D3D3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66666622</string> <key>settings</key> <dict> <key>background</key> <string>#66666622</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66666611</string> <key>settings</key> <dict> <key>background</key> <string>#66666611</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66666644</string> <key>settings</key> <dict> <key>background</key> <string>#66666644</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66666633</string> <key>settings</key> <dict> <key>background</key> <string>#66666633</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66666655</string> <key>settings</key> <dict> <key>background</key> <string>#66666655</string> <key>foreground</key> <string>#C1C1C1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66666699</string> <key>settings</key> <dict> <key>background</key> <string>#66666699</string> <key>foreground</key> <string>#D0D0D0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66666601</string> <key>settings</key> <dict> <key>background</key> <string>#66666601</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FAFAFAFF</string> <key>settings</key> <dict> <key>background</key> <string>#FAFAFAFF</string> <key>foreground</key> <string>#7A7A7AFF</string> </dict> </dict> <dict> <key>scope</key> <<<<<<< HEAD ======= <string>col_005BEAFF</string> <key>settings</key> <dict> <key>background</key> <string>#005BEAFF</string> <key>foreground</key> <string>#D0D0D0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_616161FF</string> <key>settings</key> <dict> <key>background</key> <string>#616161FF</string> <key>foreground</key> <string>#E1E1E1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66A6FFFF</string> <key>settings</key> <dict> <key>background</key> <string>#66A6FFFF</string> <key>foreground</key> <string>#1D1D1DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_00D2FFFF</string> <key>settings</key> <dict> <key>background</key> <string>#00D2FFFF</string> <key>foreground</key> <string>#181818FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_076585FF</string> <key>settings</key> <dict> <key>background</key> <string>#076585FF</string> <key>foreground</key> <string>#CCCCCCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_3CD3ADFF</string> <key>settings</key> <dict> <key>background</key> <string>#3CD3ADFF</string> <key>foreground</key> <string>#212121FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_1F1C2CFF</string> <key>settings</key> <dict> <key>background</key> <string>#1F1C2CFF</string> <key>foreground</key> <string>#9E9E9EFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F7B733FF</string> <key>settings</key> <dict> <key>background</key> <string>#F7B733FF</string> <key>foreground</key> <string>#3B3B3BFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_AFC3CCFF</string> <key>settings</key> <dict> <key>background</key> <string>#AFC3CCFF</string> <key>foreground</key> <string>#3E3E3EFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_9DD6EBFF</string> <key>settings</key> <dict> <key>background</key> <string>#9DD6EBFF</string> <key>foreground</key> <string>#474747FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_468189FF</string> <key>settings</key> <dict> <key>background</key> <string>#468189FF</string> <key>foreground</key> <string>#F0F0F0FF</string> </dict> </dict> <dict> <key>scope</key> >>>>>>> 25f12c8d93d4d051f0c6ee2ff419a37bb7562b84 <string>col_000080FF</string> <key>settings</key> <dict> <key>background</key> <<<<<<< HEAD <string>#000080FF</string> <key>foreground</key> <string>#8E8E8EFF</string> ======= <string>#000080FF</string> <key>foreground</key> <string>#8E8E8EFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_1B0A0CFF</string> <key>settings</key> <dict> <key>background</key> <string>#1B0A0CFF</string> <key>foreground</key> <string>#8F8F8FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_AE8C73FF</string> <key>settings</key> <dict> <key>background</key> <string>#AE8C73FF</string> <key>foreground</key> <string>#131313FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_226F5FFF</string> <key>settings</key> <dict> <key>background</key> <string>#226F5FFF</string> <key>foreground</key> <string>#D6D6D6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_45B3E0FF</string> <key>settings</key> <dict> <key>background</key> <string>#45B3E0FF</string> <key>foreground</key> <string>#171717FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFFAFAFF</string> <key>settings</key> <dict> <key>background</key> <string>#FFFAFAFF</string> <key>foreground</key> <string>#7B7B7BFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_D2691EFF</string> <key>settings</key> <dict> <key>background</key> <string>#D2691EFF</string> <key>foreground</key> <string>#FFFFFFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF6347FF</string> <key>settings</key> <dict> <key>background</key> <string>#FF6347FF</string> <key>foreground</key> <string>#0E0E0EFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_7CFC00FF</string> <key>settings</key> <dict> <key>background</key> <string>#7CFC00FF</string> <key>foreground</key> <string>#393939FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_357FC0FF</string> <key>settings</key> <dict> <key>background</key> <string>#357FC0FF</string> <key>foreground</key> <string>#F0F0F0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_4098E0FF</string> <key>settings</key> <dict> <key>background</key> <string>#4098E0FF</string> <key>foreground</key> <string>#050505FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_2C3E50FF</string> <key>settings</key> <dict> <key>background</key> <string>#2C3E50FF</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_00000051</string> <key>settings</key> <dict> <key>background</key> <string>#00000051</string> <key>foreground</key> <string>#A0A0A0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_AAAAAAFF</string> <key>settings</key> <dict> <key>background</key> <string>#AAAAAAFF</string> <key>foreground</key> <string>#2A2A2AFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11111111</string> <key>settings</key> <dict> <key>background</key> <string>#11111111</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_111100FF</string> <key>settings</key> <dict> <key>background</key> <string>#111100FF</string> <key>foreground</key> <string>#8F8F8FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FCEFE9FF</string> <key>settings</key> <dict> <key>background</key> <string>#FCEFE9FF</string> <key>foreground</key> <string>#727272FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_ECBFBEFF</string> <key>settings</key> <dict> <key>background</key> <string>#ECBFBEFF</string> <key>foreground</key> <string>#4C4C4CFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F4E4E2FF</string> <key>settings</key> <dict> <key>background</key> <string>#F4E4E2FF</string> <key>foreground</key> <string>#686868FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F1A895FF</string> <key>settings</key> <dict> <key>background</key> <string>#F1A895FF</string> <key>foreground</key> <string>#3B3B3BFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_C4C4CCFF</string> <key>settings</key> <dict> <key>background</key> <string>#C4C4CCFF</string> <key>foreground</key> <string>#444444FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_BC2E4CFF</string> <key>settings</key> <dict> <key>background</key> <string>#BC2E4CFF</string> <key>foreground</key> <string>#DBDBDBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F18A69FF</string> <key>settings</key> <dict> <key>background</key> <string>#F18A69FF</string> <key>foreground</key> <string>#252525FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_90EE90FF</string> <key>settings</key> <dict> <key>background</key> <string>#90EE90FF</string> <key>foreground</key> <string>#474747FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_D13E60FF</string> <key>settings</key> <dict> <key>background</key> <string>#D13E60FF</string> <key>foreground</key> <string>#EDEDEDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_323232FF</string> <key>settings</key> <dict> <key>background</key> <string>#323232FF</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_D97E7CFF</string> <key>settings</key> <dict> <key>background</key> <string>#D97E7CFF</string> <key>foreground</key> <string>#181818FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_2D2E2EFF</string> <key>settings</key> <dict> <key>background</key> <string>#2D2E2EFF</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_4C4D4DBF</string> <key>settings</key> <dict> <key>background</key> <string>#4C4D4DBF</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF90EE90</string> <key>settings</key> <dict> <key>background</key> <string>#FF90EE90</string> <key>foreground</key> <string>#FEFEFEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_0090EE90</string> <key>settings</key> <dict> <key>background</key> <string>#0090EE90</string> <key>foreground</key> <string>#D3D3D3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_90EE9001</string> <key>settings</key> <dict> <key>background</key> <string>#90EE9001</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_90EE9050</string> <key>settings</key> <dict> <key>background</key> <string>#90EE9050</string> <key>foreground</key> <string>#DEDEDEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_90EE9090</string> <key>settings</key> <dict> <key>background</key> <string>#90EE9090</string> <key>foreground</key> <string>#040404FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_90EE9099</string> <key>settings</key> <dict> <key>background</key> <string>#90EE9099</string> <key>foreground</key> <string>#0A0A0AFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_545454FF</string> <key>settings</key> <dict> <key>background</key> <string>#545454FF</string> <key>foreground</key> <string>#D4D4D4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_545454BF</string> <key>settings</key> <dict> <key>background</key> <string>#545454BF</string> <key>foreground</key> <string>#CACACAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_545454B2</string> <key>settings</key> <dict> <key>background</key> <string>#545454B2</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_636B6FFF</string> <key>settings</key> <dict> <key>background</key> <string>#636B6FFF</string> <key>foreground</key> <string>#E9E9E9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF00003F</string> <key>settings</key> <dict> <key>background</key> <string>#FF00003F</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_0000CCFF</string> <key>settings</key> <dict> <key>background</key> <string>#0000CCFF</string> <key>foreground</key> <string>#979797FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_0000005B</string> <key>settings</key> <dict> <key>background</key> <string>#0000005B</string> <key>foreground</key> <string>#9E9E9EFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_4682B4FF</string> <key>settings</key> <dict> <key>background</key> <string>#4682B4FF</string> <key>foreground</key> <string>#F5F5F5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_B0E0E6FF</string> <key>settings</key> <dict> <key>background</key> <string>#B0E0E6FF</string> <key>foreground</key> <string>#525252FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_87CEEBFF</string> <key>settings</key> <dict> <key>background</key> <string>#87CEEBFF</string> <key>foreground</key> <string>#3C3C3CFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_222266FF</string> <key>settings</key> <dict> <key>background</key> <string>#222266FF</string> <key>foreground</key> <string>#A9A9A9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22DD2288</string> <key>settings</key> <dict> <key>background</key> <string>#22DD2288</string> <key>foreground</key> <string>#E2E2E2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22DD22FF</string> <key>settings</key> <dict> <key>background</key> <string>#22DD22FF</string> <key>foreground</key> <string>#0F0F0FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_2D283EFF</string> <key>settings</key> <dict> <key>background</key> <string>#2D283EFF</string> <key>foreground</key> <string>#ACACACFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_880022BB</string> <key>settings</key> <dict> <key>background</key> <string>#880022BB</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_880022FF</string> <key>settings</key> <dict> <key>background</key> <string>#880022FF</string> <key>foreground</key> <string>#ACACACFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_802BB1FF</string> <key>settings</key> <dict> <key>background</key> <string>#802BB1FF</string> <key>foreground</key> <string>#D3D3D3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_556644FF</string> <key>settings</key> <dict> <key>background</key> <string>#556644FF</string> <key>foreground</key> <string>#DDDDDDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_564F6FFF</string> <key>settings</key> <dict> <key>background</key> <string>#564F6FFF</string> <key>foreground</key> <string>#D4D4D4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_DD11DD77</string> <key>settings</key> <dict> <key>background</key> <string>#DD11DD77</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_DD11DDFF</string> <key>settings</key> <dict> <key>background</key> <string>#DD11DDFF</string> <key>foreground</key> <string>#E5E5E5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_D1D7E0FF</string> <key>settings</key> <dict> <key>background</key> <string>#D1D7E0FF</string> <key>foreground</key> <string>#565656FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44CC44FF</string> <key>settings</key> <dict> <key>background</key> <string>#44CC44FF</string> <key>foreground</key> <string>#131313FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44CC4499</string> <key>settings</key> <dict> <key>background</key> <string>#44CC4499</string> <key>foreground</key> <string>#EBEBEBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_4C495DFF</string> <key>settings</key> <dict> <key>background</key> <string>#4C495DFF</string> <key>foreground</key> <string>#CCCCCCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_884444DD</string> <key>settings</key> <dict> <key>background</key> <string>#884444DD</string> <key>foreground</key> <string>#D2D2D2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_884444FF</string> <key>settings</key> <dict> <key>background</key> <string>#884444FF</string> <key>foreground</key> <string>#D8D8D8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_844D36FF</string> <key>settings</key> <dict> <key>background</key> <string>#844D36FF</string> <key>foreground</key> <string>#DADADAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_8866BBFF</string> <key>settings</key> <dict> <key>background</key> <string>#8866BBFF</string> <key>foreground</key> <string>#F9F9F9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_8866BB33</string> <key>settings</key> <dict> <key>background</key> <string>#8866BB33</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_86B3D1FF</string> <key>settings</key> <dict> <key>background</key> <string>#86B3D1FF</string> <key>foreground</key> <string>#282828FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_474853FF</string> <key>settings</key> <dict> <key>background</key> <string>#474853FF</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44774488</string> <key>settings</key> <dict> <key>background</key> <string>#44774488</string> <key>foreground</key> <string>#CACACAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_AAAAAA01</string> <key>settings</key> <dict> <key>background</key> <string>#AAAAAA01</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_AAA0A0FF</string> <key>settings</key> <dict> <key>background</key> <string>#AAA0A0FF</string> <key>foreground</key> <string>#222222FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88EE88FF</string> <key>settings</key> <dict> <key>background</key> <string>#88EE88FF</string> <key>foreground</key> <string>#434343FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_8E8268FF</string> <key>settings</key> <dict> <key>background</key> <string>#8E8268FF</string> <key>foreground</key> <string>#020202FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88EE8822</string> <key>settings</key> <dict> <key>background</key> <string>#88EE8822</string> <key>foreground</key> <string>#C2C2C2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_119911FF</string> <key>settings</key> <dict> <key>background</key> <string>#119911FF</string> <key>foreground</key> <string>#E0E0E0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_19181AFF</string> <key>settings</key> <dict> <key>background</key> <string>#19181AFF</string> <key>foreground</key> <string>#989898FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11991188</string> <key>settings</key> <dict> <key>background</key> <string>#11991188</string> <key>foreground</key> <string>#C9C9C9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_CCEEBBFF</string> <key>settings</key> <dict> <key>background</key> <string>#CCEEBBFF</string> <key>foreground</key> <string>#5E5E5EFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_CCEEBBCC</string> <key>settings</key> <dict> <key>background</key> <string>#CCEEBBCC</string> <key>foreground</key> <string>#3B3B3BFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_CEBC81FF</string> <key>settings</key> <dict> <key>background</key> <string>#CEBC81FF</string> <key>foreground</key> <string>#3A3A3AFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_AA1166FF</string> <key>settings</key> <dict> <key>background</key> <string>#AA1166FF</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_A16E83FF</string> <key>settings</key> <dict> <key>background</key> <string>#A16E83FF</string> <key>foreground</key> <string>#FFFFFFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_AA1166EE</string> <key>settings</key> <dict> <key>background</key> <string>#AA1166EE</string> <key>foreground</key> <string>#C6C6C6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_BB1199FF</string> <key>settings</key> <dict> <key>background</key> <string>#BB1199FF</string> <key>foreground</key> <string>#D3D3D3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_B19F9EFF</string> <key>settings</key> <dict> <key>background</key> <string>#B19F9EFF</string> <key>foreground</key> <string>#242424FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_479761FF</string> <key>settings</key> <dict> <key>background</key> <string>#479761FF</string> <key>foreground</key> <string>#F8F8F8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44779977</string> <key>settings</key> <dict> <key>background</key> <string>#44779977</string> <key>foreground</key> <string>#CBCBCBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_447799FF</string> <key>settings</key> <dict> <key>background</key> <string>#447799FF</string> <key>foreground</key> <string>#EBEBEBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66EE7701</string> <key>settings</key> <dict> <key>background</key> <string>#66EE7701</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_182628FF</string> <key>settings</key> <dict> <key>background</key> <string>#182628FF</string> <key>foreground</key> <string>#A2A2A2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_118822FF</string> <key>settings</key> <dict> <key>background</key> <string>#118822FF</string> <key>foreground</key> <string>#D8D8D8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33BB9944</string> <key>settings</key> <dict> <key>background</key> <string>#33BB9944</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_3B945EFF</string> <key>settings</key> <dict> <key>background</key> <string>#3B945EFF</string> <key>foreground</key> <string>#F3F3F3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33BB99FF</string> <key>settings</key> <dict> <key>background</key> <string>#33BB99FF</string> <key>foreground</key> <string>#0E0E0EFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_65CCB8FF</string> <key>settings</key> <dict> <key>background</key> <string>#65CCB8FF</string> <key>foreground</key> <string>#2A2A2AFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_5577BBAA</string> <key>settings</key> <dict> <key>background</key> <string>#5577BBAA</string> <key>foreground</key> <string>#DDDDDDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_5577BBFF</string> <key>settings</key> <dict> <key>background</key> <string>#5577BBFF</string> <key>foreground</key> <string>#F4F4F4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_57BA98FF</string> <key>settings</key> <dict> <key>background</key> <string>#57BA98FF</string> <key>foreground</key> <string>#181818FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF22FF22</string> <key>settings</key> <dict> <key>background</key> <string>#FF22FF22</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF22FFFF</string> <key>settings</key> <dict> <key>background</key> <string>#FF22FFFF</string> <key>foreground</key> <string>#FDFDFDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_6655CCFF</string> <key>settings</key> <dict> <key>background</key> <string>#6655CCFF</string> <key>foreground</key> <string>#E7E7E7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_6655CCCC</string> <key>settings</key> <dict> <key>background</key> <string>#6655CCCC</string> <key>foreground</key> <string>#DCDCDCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_65CCB7FF</string> <key>settings</key> <dict> <key>background</key> <string>#65CCB7FF</string> <key>foreground</key> <string>#2A2A2AFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_97477DFF</string> <key>settings</key> <dict> <key>background</key> <string>#97477DFF</string> <key>foreground</key> <string>#E5E5E5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22441155</string> <key>settings</key> <dict> <key>background</key> <string>#22441155</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_224411FF</string> <key>settings</key> <dict> <key>background</key> <string>#224411FF</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_24150EFF</string> <key>settings</key> <dict> <key>background</key> <string>#24150EFF</string> <key>foreground</key> <string>#989898FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33FF22AA</string> <key>settings</key> <dict> <key>background</key> <string>#33FF22AA</string> <key>foreground</key> <string>#000000FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33FF22FF</string> <key>settings</key> <dict> <key>background</key> <string>#33FF22FF</string> <key>foreground</key> <string>#282828FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_3F2A1DFF</string> <key>settings</key> <dict> <key>background</key> <string>#3F2A1DFF</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF22EEFF</string> <key>settings</key> <dict> <key>background</key> <string>#FF22EEFF</string> <key>foreground</key> <string>#FBFBFBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF22EEBB</string> <key>settings</key> <dict> <key>background</key> <string>#FF22EEBB</string> <key>foreground</key> <string>#E7E7E7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F2EBE0FF</string> <key>settings</key> <dict> <key>background</key> <string>#F2EBE0FF</string> <key>foreground</key> <string>#6B6B6BFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F2EBE9FF</string> <key>settings</key> <dict> <key>background</key> <string>#F2EBE9FF</string> <key>foreground</key> <string>#6C6C6CFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88EE77FF</string> <key>settings</key> <dict> <key>background</key> <string>#88EE77FF</string> <key>foreground</key> <string>#414141FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88EE6622</string> <key>settings</key> <dict> <key>background</key> <string>#88EE6622</string> <key>foreground</key> <string>#C2C2C2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88EE66FF</string> <key>settings</key> <dict> <key>background</key> <string>#88EE66FF</string> <key>foreground</key> <string>#3F3F3FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_8E6248FF</string> <key>settings</key> <dict> <key>background</key> <string>#8E6248FF</string> <key>foreground</key> <string>#ECECECFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88CC7744</string> <key>settings</key> <dict> <key>background</key> <string>#88CC7744</string> <key>foreground</key> <string>#D0D0D0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88CC77FF</string> <key>settings</key> <dict> <key>background</key> <string>#88CC77FF</string> <key>foreground</key> <string>#2D2D2DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_8C7462FF</string> <key>settings</key> <dict> <key>background</key> <string>#8C7462FF</string> <key>foreground</key> <string>#F9F9F9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_CC114401</string> <key>settings</key> <dict> <key>background</key> <string>#CC114401</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_CC1144FF</string> <key>settings</key> <dict> <key>background</key> <string>#CC1144FF</string> <key>foreground</key> <string>#CECECEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_C1403DFF</string> <key>settings</key> <dict> <key>background</key> <string>#C1403DFF</string> <key>foreground</key> <string>#E6E6E6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_AA7799CC</string> <key>settings</key> <dict> <key>background</key> <string>#AA7799CC</string> <key>foreground</key> <string>#F7F7F7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_AA7799FF</string> <key>settings</key> <dict> <key>background</key> <string>#AA7799FF</string> <key>foreground</key> <string>#0A0A0AFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_A79C93FF</string> <key>settings</key> <dict> <key>background</key> <string>#A79C93FF</string> <key>foreground</key> <string>#1E1E1EFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_00229944</string> <key>settings</key> <dict> <key>background</key> <string>#00229944</string> <key>foreground</key> <string>#ACACACFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_002299FF</string> <key>settings</key> <dict> <key>background</key> <string>#002299FF</string> <key>foreground</key> <string>#A5A5A5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_0294A5FF</string> <key>settings</key> <dict> <key>background</key> <string>#0294A5FF</string> <key>foreground</key> <string>#EAEAEAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_003333FF</string> <key>settings</key> <dict> <key>background</key> <string>#003333FF</string> <key>foreground</key> <string>#A3A3A3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_00333355</string> <key>settings</key> <dict> <key>background</key> <string>#00333355</string> <key>foreground</key> <string>#ABABABFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_03353EFF</string> <key>settings</key> <dict> <key>background</key> <string>#03353EFF</string> <key>foreground</key> <string>#A7A7A7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_00440066</string> <key>settings</key> <dict> <key>background</key> <string>#00440066</string> <key>foreground</key> <string>#ACACACFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_04060FFF</string> <key>settings</key> <dict> <key>background</key> <string>#04060FFF</string> <key>foreground</key> <string>#868686FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_004400FF</string> <key>settings</key> <dict> <key>background</key> <string>#004400FF</string> <key>foreground</key> <string>#A7A7A7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_000088FF</string> <key>settings</key> <dict> <key>background</key> <string>#000088FF</string> <key>foreground</key> <string>#8F8F8FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_00DD0055</string> <key>settings</key> <dict> <key>background</key> <string>#00DD0055</string> <key>foreground</key> <string>#CACACAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_00DD00FF</string> <key>settings</key> <dict> <key>background</key> <string>#00DD00FF</string> <key>foreground</key> <string>#010101FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_0D050EFF</string> <key>settings</key> <dict> <key>background</key> <string>#0D050EFF</string> <key>foreground</key> <string>#888888FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22BB1199</string> <key>settings</key> <dict> <key>background</key> <string>#22BB1199</string> <key>foreground</key> <string>#DBDBDBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_2B193EFF</string> <key>settings</key> <dict> <key>background</key> <string>#2B193EFF</string> <key>foreground</key> <string>#A2A2A2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22BB11FF</string> <key>settings</key> <dict> <key>background</key> <string>#22BB11FF</string> <key>foreground</key> <string>#F9F9F9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_D53C3CFF</string> <key>settings</key> <dict> <key>background</key> <string>#D53C3CFF</string> <key>foreground</key> <string>#E9E9E9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_DD5533FF</string> <key>settings</key> <dict> <key>background</key> <string>#DD5533FF</string> <key>foreground</key> <string>#F9F9F9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_DD5533CC</string> <key>settings</key> <dict> <key>background</key> <string>#DD5533CC</string> <key>foreground</key> <string>#EAEAEAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_AA3344FF</string> <key>settings</key> <dict> <key>background</key> <string>#AA3344FF</string> <key>foreground</key> <string>#D8D8D8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_AA334444</string> <key>settings</key> <dict> <key>background</key> <string>#AA334444</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_A3445DFF</string> <key>settings</key> <dict> <key>background</key> <string>#A3445DFF</string> <key>foreground</key> <string>#E3E3E3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88DD22DD</string> <key>settings</key> <dict> <key>background</key> <string>#88DD22DD</string> <key>foreground</key> <string>#1D1D1DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88DD22FF</string> <key>settings</key> <dict> <key>background</key> <string>#88DD22FF</string> <key>foreground</key> <string>#2E2E2EFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_8D2D56FF</string> <key>settings</key> <dict> <key>background</key> <string>#8D2D56FF</string> <key>foreground</key> <string>#CECECEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_AA4499FF</string> <key>settings</key> <dict> <key>background</key> <string>#AA4499FF</string> <key>foreground</key> <string>#ECECECFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_AA449977</string> <key>settings</key> <dict> <key>background</key> <string>#AA449977</string> <key>foreground</key> <string>#CBCBCBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_A4978EFF</string> <key>settings</key> <dict> <key>background</key> <string>#A4978EFF</string> <key>foreground</key> <string>#191919FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_552255FF</string> <key>settings</key> <dict> <key>background</key> <string>#552255FF</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_552255BB</string> <key>settings</key> <dict> <key>background</key> <string>#552255BB</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_525B56FF</string> <key>settings</key> <dict> <key>background</key> <string>#525B56FF</string> <key>foreground</key> <string>#D7D7D7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_113322FF</string> <key>settings</key> <dict> <key>background</key> <string>#113322FF</string> <key>foreground</key> <string>#A6A6A6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_132226FF</string> <key>settings</key> <dict> <key>background</key> <string>#132226FF</string> <key>foreground</key> <string>#9D9D9DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_BBEE99FF</string> <key>settings</key> <dict> <key>background</key> <string>#BBEE99FF</string> <key>foreground</key> <string>#555555FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_BE9063FF</string> <key>settings</key> <dict> <key>background</key> <string>#BE9063FF</string> <key>foreground</key> <string>#181818FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_004400CC</string> <key>settings</key> <dict> <key>background</key> <string>#004400CC</string> <key>foreground</key> <string>#A9A9A9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_040C0EFF</string> <key>settings</key> <dict> <key>background</key> <string>#040C0EFF</string> <key>foreground</key> <string>#898989FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_00770001</string> <key>settings</key> <dict> <key>background</key> <string>#00770001</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_007700FF</string> <key>settings</key> <dict> <key>background</key> <string>#007700FF</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_07000EFF</string> <key>settings</key> <dict> <key>background</key> <string>#07000EFF</string> <key>foreground</key> <string>#838383FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_DD775544</string> <key>settings</key> <dict> <key>background</key> <string>#DD775544</string> <key>foreground</key> <string>#C9C9C9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_D75404FF</string> <key>settings</key> <dict> <key>background</key> <string>#D75404FF</string> <key>foreground</key> <string>#F2F2F2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_DD7755FF</string> <key>settings</key> <dict> <key>background</key> <string>#DD7755FF</string> <key>foreground</key> <string>#111111FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF0088FF</string> <key>settings</key> <dict> <key>background</key> <string>#FF0088FF</string> <key>foreground</key> <string>#DBDBDBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF0088BB</string> <key>settings</key> <dict> <key>background</key> <string>#FF0088BB</string> <key>foreground</key> <string>#CFCFCFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F08B33FF</string> <key>settings</key> <dict> <key>background</key> <string>#F08B33FF</string> <key>foreground</key> <string>#1F1F1FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_EEEECCCC</string> <key>settings</key> <dict> <key>background</key> <string>#EEEECCCC</string> <key>foreground</key> <string>#444444FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_EEEECCFF</string> <key>settings</key> <dict> <key>background</key> <string>#EEEECCFF</string> <key>foreground</key> <string>#6A6A6AFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_EECC8DFF</string> <key>settings</key> <dict> <key>background</key> <string>#EECC8DFF</string> <key>foreground</key> <string>#4E4E4EFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88AA22FF</string> <key>settings</key> <dict> <key>background</key> <string>#88AA22FF</string> <key>foreground</key> <string>#101010FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88AA22CC</string> <key>settings</key> <dict> <key>background</key> <string>#88AA22CC</string> <key>foreground</key> <string>#FCFCFCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_8A2C02FF</string> <key>settings</key> <dict> <key>background</key> <string>#8A2C02FF</string> <key>foreground</key> <string>#C3C3C3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF1144FF</string> <key>settings</key> <dict> <key>background</key> <string>#FF1144FF</string> <key>foreground</key> <string>#DDDDDDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF1144DD</string> <key>settings</key> <dict> <key>background</key> <string>#FF1144DD</string> <key>foreground</key> <string>#D7D7D7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F14D49FF</string> <key>settings</key> <dict> <key>background</key> <string>#F14D49FF</string> <key>foreground</key> <string>#FDFDFDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_000000DD</string> <key>settings</key> <dict> <key>background</key> <string>#000000DD</string> <key>foreground</key> <string>#868686FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_000D29FF</string> <key>settings</key> <dict> <key>background</key> <string>#000D29FF</string> <key>foreground</key> <string>#8C8C8CFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_111188FF</string> <key>settings</key> <dict> <key>background</key> <string>#111188FF</string> <key>foreground</key> <string>#9E9E9EFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_111188CC</string> <key>settings</key> <dict> <key>background</key> <string>#111188CC</string> <key>foreground</key> <string>#A1A1A1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_118C8BFF</string> <key>settings</key> <dict> <key>background</key> <string>#118C8BFF</string> <key>foreground</key> <string>#E7E7E7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_BBCCAAFF</string> <key>settings</key> <dict> <key>background</key> <string>#BBCCAAFF</string> <key>foreground</key> <string>#434343FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_BBCCAA11</string> <key>settings</key> <dict> <key>background</key> <string>#BBCCAA11</string> <key>foreground</key> <string>#B8B8B8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_BCA18DFF</string> <key>settings</key> <dict> <key>background</key> <string>#BCA18DFF</string> <key>foreground</key> <string>#262626FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF2277FF</string> <key>settings</key> <dict> <key>background</key> <string>#FF2277FF</string> <key>foreground</key> <string>#EDEDEDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF227744</string> <key>settings</key> <dict> <key>background</key> <string>#FF227744</string> <key>foreground</key> <string>#BFBFBFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F2746BFF</string> <key>settings</key> <dict> <key>background</key> <string>#F2746BFF</string> <key>foreground</key> <string>#181818FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F2746AFF</string> <key>settings</key> <dict> <key>background</key> <string>#F2746AFF</string> <key>foreground</key> <string>#181818FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F27462FF</string> <key>settings</key> <dict> <key>background</key> <string>#F27462FF</string> <key>foreground</key> <string>#171717FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F27461FF</string> <key>settings</key> <dict> <key>background</key> <string>#F27461FF</string> <key>foreground</key> <string>#171717FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F27460FF</string> <key>settings</key> <dict> <key>background</key> <string>#F27460FF</string> <key>foreground</key> <string>#171717FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_114433FF</string> <key>settings</key> <dict> <key>background</key> <string>#114433FF</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11443322</string> <key>settings</key> <dict> <key>background</key> <string>#11443322</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_14325CFF</string> <key>settings</key> <dict> <key>background</key> <string>#14325CFF</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_AA5533FF</string> <key>settings</key> <dict> <key>background</key> <string>#AA5533FF</string> <key>foreground</key> <string>#EAEAEAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_AA5533AA</string> <key>settings</key> <dict> <key>background</key> <string>#AA5533AA</string> <key>foreground</key> <string>#D6D6D6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_A53A3BFF</string> <key>settings</key> <dict> <key>background</key> <string>#A53A3BFF</string> <key>foreground</key> <string>#DADADAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_553399FF</string> <key>settings</key> <dict> <key>background</key> <string>#553399FF</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55339988</string> <key>settings</key> <dict> <key>background</key> <string>#55339988</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_5398D9FF</string> <key>settings</key> <dict> <key>background</key> <string>#5398D9FF</string> <key>foreground</key> <string>#0A0A0AFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF44EEFF</string> <key>settings</key> <dict> <key>background</key> <string>#FF44EEFF</string> <key>foreground</key> <string>#0F0F0FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F4E3B1FF</string> <key>settings</key> <dict> <key>background</key> <string>#F4E3B1FF</string> <key>foreground</key> <string>#626262FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF44EE33</string> <key>settings</key> <dict> <key>background</key> <string>#FF44EE33</string> <key>foreground</key> <string>#C2C2C2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_DD9966BB</string> <key>settings</key> <dict> <key>background</key> <string>#DD9966BB</string> <key>foreground</key> <string>#070707FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_DD9966FF</string> <key>settings</key> <dict> <key>background</key> <string>#DD9966FF</string> <key>foreground</key> <string>#272727FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_D96B0CFF</string> <key>settings</key> <dict> <key>background</key> <string>#D96B0CFF</string> <key>foreground</key> <string>#010101FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_B5B5B5FF</string> <key>settings</key> <dict> <key>background</key> <string>#B5B5B5FF</string> <key>foreground</key> <string>#353535FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_332211FF</string> <key>settings</key> <dict> <key>background</key> <string>#332211FF</string> <key>foreground</key> <string>#A5A5A5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F0F0F0FF</string> <key>settings</key> <dict> <key>background</key> <string>#F0F0F0FF</string> <key>foreground</key> <string>#707070FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F5F0F0FF</string> <key>settings</key> <dict> <key>background</key> <string>#F5F0F0FF</string> <key>foreground</key> <string>#717171FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F5F5F0FF</string> <key>settings</key> <dict> <key>background</key> <string>#F5F5F0FF</string> <key>foreground</key> <string>#747474FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F5F5A5FF</string> <key>settings</key> <dict> <key>background</key> <string>#F5F5A5FF</string> <key>foreground</key> <string>#6B6B6BFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_F5A5A5FF</string> <key>settings</key> <dict> <key>background</key> <string>#F5A5A5FF</string> <key>foreground</key> <string>#3C3C3CFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_A5A5A5FF</string> <key>settings</key> <dict> <key>background</key> <string>#A5A5A5FF</string> <key>foreground</key> <string>#252525FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_AAA5A5A5</string> <key>settings</key> <dict> <key>background</key> <string>#AAA5A5A5</string> <key>foreground</key> <string>#FCFCFCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF4500FF</string> <key>settings</key> <dict> <key>background</key> <string>#FF4500FF</string> <key>foreground</key> <string>#F4F4F4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_00EEEEFF</string> <key>settings</key> <dict> <key>background</key> <string>#00EEEEFF</string> <key>foreground</key> <string>#262626FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FFF000FF</string> <key>settings</key> <dict> <key>background</key> <string>#FFF000FF</string> <key>foreground</key> <string>#595959FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_FF80EDFF</string> <key>settings</key> <dict> <key>background</key> <string>#FF80EDFF</string> <key>foreground</key> <string>#323232FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_62FF62FF</string> <key>settings</key> <dict> <key>background</key> <string>#62FF62FF</string> <key>foreground</key> <string>#3E3E3EFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_445544FF</string> <key>settings</key> <dict> <key>background</key> <string>#445544FF</string> <key>foreground</key> <string>#CDCDCDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_225511FF</string> <key>settings</key> <dict> <key>background</key> <string>#225511FF</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_445599FF</string> <key>settings</key> <dict> <key>background</key> <string>#445599FF</string> <key>foreground</key> <string>#D7D7D7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_448866FF</string> <key>settings</key> <dict> <key>background</key> <string>#448866FF</string> <key>foreground</key> <string>#EFEFEFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_445511FF</string> <key>settings</key> <dict> <key>background</key> <string>#445511FF</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_445555FF</string> <key>settings</key> <dict> <key>background</key> <string>#445555FF</string> <key>foreground</key> <string>#CFCFCFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_110022FF</string> <key>settings</key> <dict> <key>background</key> <string>#110022FF</string> <key>foreground</key> <string>#888888FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55008822</string> <key>settings</key> <dict> <key>background</key> <string>#55008822</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_228833FF</string> <key>settings</key> <dict> <key>background</key> <string>#228833FF</string> <key>foreground</key> <string>#DFDFDFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_447700FF</string> <key>settings</key> <dict> <key>background</key> <string>#447700FF</string> <key>foreground</key> <string>#DADADAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_442244FF</string> <key>settings</key> <dict> <key>background</key> <string>#442244FF</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_443311FF</string> <key>settings</key> <dict> <key>background</key> <string>#443311FF</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_223366FF</string> <key>settings</key> <dict> <key>background</key> <string>#223366FF</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_224400FF</string> <key>settings</key> <dict> <key>background</key> <string>#224400FF</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_226677FF</string> <key>settings</key> <dict> <key>background</key> <string>#226677FF</string> <key>foreground</key> <string>#D3D3D3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_222244FF</string> <key>settings</key> <dict> <key>background</key> <string>#222244FF</string> <key>foreground</key> <string>#A5A5A5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66440044</string> <key>settings</key> <dict> <key>background</key> <string>#66440044</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99446633</string> <key>settings</key> <dict> <key>background</key> <string>#99446633</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66664411</string> <key>settings</key> <dict> <key>background</key> <string>#66664411</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22222211</string> <key>settings</key> <dict> <key>background</key> <string>#22222211</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99008855</string> <key>settings</key> <dict> <key>background</key> <string>#99008855</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77223311</string> <key>settings</key> <dict> <key>background</key> <string>#77223311</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66998899</string> <key>settings</key> <dict> <key>background</key> <string>#66998899</string> <key>foreground</key> <string>#E4E4E4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88661199</string> <key>settings</key> <dict> <key>background</key> <string>#88661199</string> <key>foreground</key> <string>#D0D0D0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66112201</string> <key>settings</key> <dict> <key>background</key> <string>#66112201</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44448877</string> <key>settings</key> <dict> <key>background</key> <string>#44448877</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77551188</string> <key>settings</key> <dict> <key>background</key> <string>#77551188</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44004477</string> <key>settings</key> <dict> <key>background</key> <string>#44004477</string> <key>foreground</key> <string>#A6A6A6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99554422</string> <key>settings</key> <dict> <key>background</key> <string>#99554422</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11227722</string> <key>settings</key> <dict> <key>background</key> <string>#11227722</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99552211</string> <key>settings</key> <dict> <key>background</key> <string>#99552211</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99555533</string> <key>settings</key> <dict> <key>background</key> <string>#99555533</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22004422</string> <key>settings</key> <dict> <key>background</key> <string>#22004422</string> <key>foreground</key> <string>#ABABABFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66997711</string> <key>settings</key> <dict> <key>background</key> <string>#66997711</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88663355</string> <key>settings</key> <dict> <key>background</key> <string>#88663355</string> <key>foreground</key> <string>#C2C2C2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33338833</string> <key>settings</key> <dict> <key>background</key> <string>#33338833</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66337722</string> <key>settings</key> <dict> <key>background</key> <string>#66337722</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_449922FF</string> <key>settings</key> <dict> <key>background</key> <string>#449922FF</string> <key>foreground</key> <string>#F2F2F2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88669933</string> <key>settings</key> <dict> <key>background</key> <string>#88669933</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_998844FF</string> <key>settings</key> <dict> <key>background</key> <string>#998844FF</string> <key>foreground</key> <string>#050505FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11992255</string> <key>settings</key> <dict> <key>background</key> <string>#11992255</string> <key>foreground</key> <string>#C0C0C0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44993377</string> <key>settings</key> <dict> <key>background</key> <string>#44993377</string> <key>foreground</key> <string>#CFCFCFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11449988</string> <key>settings</key> <dict> <key>background</key> <string>#11449988</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88334411</string> <key>settings</key> <dict> <key>background</key> <string>#88334411</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88992266</string> <key>settings</key> <dict> <key>background</key> <string>#88992266</string> <key>foreground</key> <string>#D1D1D1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11551133</string> <key>settings</key> <dict> <key>background</key> <string>#11551133</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44227799</string> <key>settings</key> <dict> <key>background</key> <string>#44227799</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11995501</string> <key>settings</key> <dict> <key>background</key> <string>#11995501</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11664488</string> <key>settings</key> <dict> <key>background</key> <string>#11664488</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44996611</string> <key>settings</key> <dict> <key>background</key> <string>#44996611</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66774466</string> <key>settings</key> <dict> <key>background</key> <string>#66774466</string> <key>foreground</key> <string>#C7C7C7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33221101</string> <key>settings</key> <dict> <key>background</key> <string>#33221101</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99449977</string> <key>settings</key> <dict> <key>background</key> <string>#99449977</string> <key>foreground</key> <string>#C9C9C9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77778888</string> <key>settings</key> <dict> <key>background</key> <string>#77778888</string> <key>foreground</key> <string>#D6D6D6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66442211</string> <key>settings</key> <dict> <key>background</key> <string>#66442211</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11668855</string> <key>settings</key> <dict> <key>background</key> <string>#11668855</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33110099</string> <key>settings</key> <dict> <key>background</key> <string>#33110099</string> <key>foreground</key> <string>#A1A1A1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99003333</string> <key>settings</key> <dict> <key>background</key> <string>#99003333</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77558833</string> <key>settings</key> <dict> <key>background</key> <string>#77558833</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44228844</string> <key>settings</key> <dict> <key>background</key> <string>#44228844</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22772201</string> <key>settings</key> <dict> <key>background</key> <string>#22772201</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33332255</string> <key>settings</key> <dict> <key>background</key> <string>#33332255</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33885599</string> <key>settings</key> <dict> <key>background</key> <string>#33885599</string> <key>foreground</key> <string>#D1D1D1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11667766</string> <key>settings</key> <dict> <key>background</key> <string>#11667766</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88885588</string> <key>settings</key> <dict> <key>background</key> <string>#88885588</string> <key>foreground</key> <string>#DBDBDBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88668822</string> <key>settings</key> <dict> <key>background</key> <string>#88668822</string> <key>foreground</key> <string>#B8B8B8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_775522FF</string> <key>settings</key> <dict> <key>background</key> <string>#775522FF</string> <key>foreground</key> <string>#D9D9D9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99337766</string> <key>settings</key> <dict> <key>background</key> <string>#99337766</string> <key>foreground</key> <string>#BFBFBFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11994455</string> <key>settings</key> <dict> <key>background</key> <string>#11994455</string> <key>foreground</key> <string>#C1C1C1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88880088</string> <key>settings</key> <dict> <key>background</key> <string>#88880088</string> <key>foreground</key> <string>#D6D6D6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55226688</string> <key>settings</key> <dict> <key>background</key> <string>#55226688</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99889933</string> <key>settings</key> <dict> <key>background</key> <string>#99889933</string> <key>foreground</key> <string>#C2C2C2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44223322</string> <key>settings</key> <dict> <key>background</key> <string>#44223322</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77448833</string> <key>settings</key> <dict> <key>background</key> <string>#77448833</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11225544</string> <key>settings</key> <dict> <key>background</key> <string>#11225544</string> <key>foreground</key> <string>#ABABABFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22773333</string> <key>settings</key> <dict> <key>background</key> <string>#22773333</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33669999</string> <key>settings</key> <dict> <key>background</key> <string>#33669999</string> <key>foreground</key> <string>#CACACAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33993301</string> <key>settings</key> <dict> <key>background</key> <string>#33993301</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77009901</string> <key>settings</key> <dict> <key>background</key> <string>#77009901</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66996699</string> <key>settings</key> <dict> <key>background</key> <string>#66996699</string> <key>foreground</key> <string>#E2E2E2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11995599</string> <key>settings</key> <dict> <key>background</key> <string>#11995599</string> <key>foreground</key> <string>#D1D1D1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22001155</string> <key>settings</key> <dict> <key>background</key> <string>#22001155</string> <key>foreground</key> <string>#A3A3A3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88884411</string> <key>settings</key> <dict> <key>background</key> <string>#88884411</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22222277</string> <key>settings</key> <dict> <key>background</key> <string>#22222277</string> <key>foreground</key> <string>#A8A8A8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77118833</string> <key>settings</key> <dict> <key>background</key> <string>#77118833</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11663322</string> <key>settings</key> <dict> <key>background</key> <string>#11663322</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11335533</string> <key>settings</key> <dict> <key>background</key> <string>#11335533</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66886633</string> <key>settings</key> <dict> <key>background</key> <string>#66886633</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11779977</string> <key>settings</key> <dict> <key>background</key> <string>#11779977</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55669922</string> <key>settings</key> <dict> <key>background</key> <string>#55669922</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99000001</string> <key>settings</key> <dict> <key>background</key> <string>#99000001</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_558877FF</string> <key>settings</key> <dict> <key>background</key> <string>#558877FF</string> <key>foreground</key> <string>#F6F6F6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99111155</string> <key>settings</key> <dict> <key>background</key> <string>#99111155</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33553322</string> <key>settings</key> <dict> <key>background</key> <string>#33553322</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77335511</string> <key>settings</key> <dict> <key>background</key> <string>#77335511</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88002277</string> <key>settings</key> <dict> <key>background</key> <string>#88002277</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66775522</string> <key>settings</key> <dict> <key>background</key> <string>#66775522</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99558844</string> <key>settings</key> <dict> <key>background</key> <string>#99558844</string> <key>foreground</key> <string>#C0C0C0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77993399</string> <key>settings</key> <dict> <key>background</key> <string>#77993399</string> <key>foreground</key> <string>#E1E1E1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55775577</string> <key>settings</key> <dict> <key>background</key> <string>#55775577</string> <key>foreground</key> <string>#CACACAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55665588</string> <key>settings</key> <dict> <key>background</key> <string>#55665588</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44550088</string> <key>settings</key> <dict> <key>background</key> <string>#44550088</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22778844</string> <key>settings</key> <dict> <key>background</key> <string>#22778844</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22771188</string> <key>settings</key> <dict> <key>background</key> <string>#22771188</string> <key>foreground</key> <string>#C1C1C1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88779933</string> <key>settings</key> <dict> <key>background</key> <string>#88779933</string> <key>foreground</key> <string>#BFBFBFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44998811</string> <key>settings</key> <dict> <key>background</key> <string>#44998811</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88665522</string> <key>settings</key> <dict> <key>background</key> <string>#88665522</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22331177</string> <key>settings</key> <dict> <key>background</key> <string>#22331177</string> <key>foreground</key> <string>#ACACACFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44333344</string> <key>settings</key> <dict> <key>background</key> <string>#44333344</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55116601</string> <key>settings</key> <dict> <key>background</key> <string>#55116601</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99117733</string> <key>settings</key> <dict> <key>background</key> <string>#99117733</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99442244</string> <key>settings</key> <dict> <key>background</key> <string>#99442244</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88228866</string> <key>settings</key> <dict> <key>background</key> <string>#88228866</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88558844</string> <key>settings</key> <dict> <key>background</key> <string>#88558844</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88555566</string> <key>settings</key> <dict> <key>background</key> <string>#88555566</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22556688</string> <key>settings</key> <dict> <key>background</key> <string>#22556688</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44771155</string> <key>settings</key> <dict> <key>background</key> <string>#44771155</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11998801</string> <key>settings</key> <dict> <key>background</key> <string>#11998801</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99004499</string> <key>settings</key> <dict> <key>background</key> <string>#99004499</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_662277FF</string> <key>settings</key> <dict> <key>background</key> <string>#662277FF</string> <key>foreground</key> <string>#C0C0C0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33228899</string> <key>settings</key> <dict> <key>background</key> <string>#33228899</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77999933</string> <key>settings</key> <dict> <key>background</key> <string>#77999933</string> <key>foreground</key> <string>#C2C2C2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33666688</string> <key>settings</key> <dict> <key>background</key> <string>#33666688</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_441166FF</string> <key>settings</key> <dict> <key>background</key> <string>#441166FF</string> <key>foreground</key> <string>#A9A9A9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44776633</string> <key>settings</key> <dict> <key>background</key> <string>#44776633</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99880022</string> <key>settings</key> <dict> <key>background</key> <string>#99880022</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11440011</string> <key>settings</key> <dict> <key>background</key> <string>#11440011</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33667722</string> <key>settings</key> <dict> <key>background</key> <string>#33667722</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_665555FF</string> <key>settings</key> <dict> <key>background</key> <string>#665555FF</string> <key>foreground</key> <string>#DADADAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77660077</string> <key>settings</key> <dict> <key>background</key> <string>#77660077</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22888877</string> <key>settings</key> <dict> <key>background</key> <string>#22888877</string> <key>foreground</key> <string>#CACACAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77663322</string> <key>settings</key> <dict> <key>background</key> <string>#77663322</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99775511</string> <key>settings</key> <dict> <key>background</key> <string>#99775511</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33885544</string> <key>settings</key> <dict> <key>background</key> <string>#33885544</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66661177</string> <key>settings</key> <dict> <key>background</key> <string>#66661177</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33667755</string> <key>settings</key> <dict> <key>background</key> <string>#33667755</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11997788</string> <key>settings</key> <dict> <key>background</key> <string>#11997788</string> <key>foreground</key> <string>#CFCFCFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77779977</string> <key>settings</key> <dict> <key>background</key> <string>#77779977</string> <key>foreground</key> <string>#D2D2D2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99335588</string> <key>settings</key> <dict> <key>background</key> <string>#99335588</string> <key>foreground</key> <string>#C3C3C3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44993366</string> <key>settings</key> <dict> <key>background</key> <string>#44993366</string> <key>foreground</key> <string>#CACACAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66773399</string> <key>settings</key> <dict> <key>background</key> <string>#66773399</string> <key>foreground</key> <string>#D2D2D2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_990066FF</string> <key>settings</key> <dict> <key>background</key> <string>#990066FF</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_770000FF</string> <key>settings</key> <dict> <key>background</key> <string>#770000FF</string> <key>foreground</key> <string>#A3A3A3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22774455</string> <key>settings</key> <dict> <key>background</key> <string>#22774455</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66665533</string> <key>settings</key> <dict> <key>background</key> <string>#66665533</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99447777</string> <key>settings</key> <dict> <key>background</key> <string>#99447777</string> <key>foreground</key> <string>#C7C7C7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99334455</string> <key>settings</key> <dict> <key>background</key> <string>#99334455</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22889955</string> <key>settings</key> <dict> <key>background</key> <string>#22889955</string> <key>foreground</key> <string>#C3C3C3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55996644</string> <key>settings</key> <dict> <key>background</key> <string>#55996644</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99445555</string> <key>settings</key> <dict> <key>background</key> <string>#99445555</string> <key>foreground</key> <string>#BFBFBFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66334466</string> <key>settings</key> <dict> <key>background</key> <string>#66334466</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77338866</string> <key>settings</key> <dict> <key>background</key> <string>#77338866</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66003355</string> <key>settings</key> <dict> <key>background</key> <string>#66003355</string> <key>foreground</key> <string>#ABABABFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44003377</string> <key>settings</key> <dict> <key>background</key> <string>#44003377</string> <key>foreground</key> <string>#A5A5A5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99336633</string> <key>settings</key> <dict> <key>background</key> <string>#99336633</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55995599</string> <key>settings</key> <dict> <key>background</key> <string>#55995599</string> <key>foreground</key> <string>#DDDDDDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77777701</string> <key>settings</key> <dict> <key>background</key> <string>#77777701</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88333301</string> <key>settings</key> <dict> <key>background</key> <string>#88333301</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99007788</string> <key>settings</key> <dict> <key>background</key> <string>#99007788</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_338866FF</string> <key>settings</key> <dict> <key>background</key> <string>#338866FF</string> <key>foreground</key> <string>#EAEAEAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11222201</string> <key>settings</key> <dict> <key>background</key> <string>#11222201</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11443301</string> <key>settings</key> <dict> <key>background</key> <string>#11443301</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66006622</string> <key>settings</key> <dict> <key>background</key> <string>#66006622</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99008877</string> <key>settings</key> <dict> <key>background</key> <string>#99008877</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11991199</string> <key>settings</key> <dict> <key>background</key> <string>#11991199</string> <key>foreground</key> <string>#CCCCCCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99888844</string> <key>settings</key> <dict> <key>background</key> <string>#99888844</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55333388</string> <key>settings</key> <dict> <key>background</key> <string>#55333388</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88113399</string> <key>settings</key> <dict> <key>background</key> <string>#88113399</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_557744FF</string> <key>settings</key> <dict> <key>background</key> <string>#557744FF</string> <key>foreground</key> <string>#E7E7E7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44220033</string> <key>settings</key> <dict> <key>background</key> <string>#44220033</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66888811</string> <key>settings</key> <dict> <key>background</key> <string>#66888811</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99227711</string> <key>settings</key> <dict> <key>background</key> <string>#99227711</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99993301</string> <key>settings</key> <dict> <key>background</key> <string>#99993301</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88449999</string> <key>settings</key> <dict> <key>background</key> <string>#88449999</string> <key>foreground</key> <string>#CDCDCDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11779911</string> <key>settings</key> <dict> <key>background</key> <string>#11779911</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99339922</string> <key>settings</key> <dict> <key>background</key> <string>#99339922</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99441122</string> <key>settings</key> <dict> <key>background</key> <string>#99441122</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77006601</string> <key>settings</key> <dict> <key>background</key> <string>#77006601</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11558833</string> <key>settings</key> <dict> <key>background</key> <string>#11558833</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22338801</string> <key>settings</key> <dict> <key>background</key> <string>#22338801</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_662211FF</string> <key>settings</key> <dict> <key>background</key> <string>#662211FF</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44778899</string> <key>settings</key> <dict> <key>background</key> <string>#44778899</string> <key>foreground</key> <string>#D2D2D2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88005544</string> <key>settings</key> <dict> <key>background</key> <string>#88005544</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55991133</string> <key>settings</key> <dict> <key>background</key> <string>#55991133</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_884433FF</string> <key>settings</key> <dict> <key>background</key> <string>#884433FF</string> <key>foreground</key> <string>#D6D6D6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66332277</string> <key>settings</key> <dict> <key>background</key> <string>#66332277</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66115577</string> <key>settings</key> <dict> <key>background</key> <string>#66115577</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66110055</string> <key>settings</key> <dict> <key>background</key> <string>#66110055</string> <key>foreground</key> <string>#ACACACFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66449944</string> <key>settings</key> <dict> <key>background</key> <string>#66449944</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_885533FF</string> <key>settings</key> <dict> <key>background</key> <string>#885533FF</string> <key>foreground</key> <string>#E0E0E0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99771188</string> <key>settings</key> <dict> <key>background</key> <string>#99771188</string> <key>foreground</key> <string>#D4D4D4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99001188</string> <key>settings</key> <dict> <key>background</key> <string>#99001188</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99224466</string> <key>settings</key> <dict> <key>background</key> <string>#99224466</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77221101</string> <key>settings</key> <dict> <key>background</key> <string>#77221101</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_888855FF</string> <key>settings</key> <dict> <key>background</key> <string>#888855FF</string> <key>foreground</key> <string>#020202FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77552244</string> <key>settings</key> <dict> <key>background</key> <string>#77552244</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88332211</string> <key>settings</key> <dict> <key>background</key> <string>#88332211</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11111133</string> <key>settings</key> <dict> <key>background</key> <string>#11111133</string> <key>foreground</key> <string>#A9A9A9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99003311</string> <key>settings</key> <dict> <key>background</key> <string>#99003311</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55004444</string> <key>settings</key> <dict> <key>background</key> <string>#55004444</string> <key>foreground</key> <string>#ABABABFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55337799</string> <key>settings</key> <dict> <key>background</key> <string>#55337799</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77449999</string> <key>settings</key> <dict> <key>background</key> <string>#77449999</string> <key>foreground</key> <string>#CACACAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66776655</string> <key>settings</key> <dict> <key>background</key> <string>#66776655</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55005522</string> <key>settings</key> <dict> <key>background</key> <string>#55005522</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33661199</string> <key>settings</key> <dict> <key>background</key> <string>#33661199</string> <key>foreground</key> <string>#C1C1C1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88665577</string> <key>settings</key> <dict> <key>background</key> <string>#88665577</string> <key>foreground</key> <string>#CCCCCCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88115577</string> <key>settings</key> <dict> <key>background</key> <string>#88115577</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11881122</string> <key>settings</key> <dict> <key>background</key> <string>#11881122</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77667799</string> <key>settings</key> <dict> <key>background</key> <string>#77667799</string> <key>foreground</key> <string>#D4D4D4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_779933FF</string> <key>settings</key> <dict> <key>background</key> <string>#779933FF</string> <key>foreground</key> <string>#030303FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99226601</string> <key>settings</key> <dict> <key>background</key> <string>#99226601</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_661111FF</string> <key>settings</key> <dict> <key>background</key> <string>#661111FF</string> <key>foreground</key> <string>#AAAAAAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44229944</string> <key>settings</key> <dict> <key>background</key> <string>#44229944</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55002233</string> <key>settings</key> <dict> <key>background</key> <string>#55002233</string> <key>foreground</key> <string>#ABABABFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88550044</string> <key>settings</key> <dict> <key>background</key> <string>#88550044</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_888899FF</string> <key>settings</key> <dict> <key>background</key> <string>#888899FF</string> <key>foreground</key> <string>#090909FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66559977</string> <key>settings</key> <dict> <key>background</key> <string>#66559977</string> <key>foreground</key> <string>#C6C6C6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77114411</string> <key>settings</key> <dict> <key>background</key> <string>#77114411</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44222288</string> <key>settings</key> <dict> <key>background</key> <string>#44222288</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77667777</string> <key>settings</key> <dict> <key>background</key> <string>#77667777</string> <key>foreground</key> <string>#CBCBCBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55994466</string> <key>settings</key> <dict> <key>background</key> <string>#55994466</string> <key>foreground</key> <string>#CDCDCDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33337711</string> <key>settings</key> <dict> <key>background</key> <string>#33337711</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99440099</string> <key>settings</key> <dict> <key>background</key> <string>#99440099</string> <key>foreground</key> <string>#C6C6C6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11776633</string> <key>settings</key> <dict> <key>background</key> <string>#11776633</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55997777</string> <key>settings</key> <dict> <key>background</key> <string>#55997777</string> <key>foreground</key> <string>#D5D5D5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44330022</string> <key>settings</key> <dict> <key>background</key> <string>#44330022</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66226601</string> <key>settings</key> <dict> <key>background</key> <string>#66226601</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_441177FF</string> <key>settings</key> <dict> <key>background</key> <string>#441177FF</string> <key>foreground</key> <string>#ABABABFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88003301</string> <key>settings</key> <dict> <key>background</key> <string>#88003301</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33334477</string> <key>settings</key> <dict> <key>background</key> <string>#33334477</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11559988</string> <key>settings</key> <dict> <key>background</key> <string>#11559988</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66888888</string> <key>settings</key> <dict> <key>background</key> <string>#66888888</string> <key>foreground</key> <string>#D9D9D9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77229901</string> <key>settings</key> <dict> <key>background</key> <string>#77229901</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66007755</string> <key>settings</key> <dict> <key>background</key> <string>#66007755</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77884455</string> <key>settings</key> <dict> <key>background</key> <string>#77884455</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33330022</string> <key>settings</key> <dict> <key>background</key> <string>#33330022</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33552266</string> <key>settings</key> <dict> <key>background</key> <string>#33552266</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88555511</string> <key>settings</key> <dict> <key>background</key> <string>#88555511</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77117733</string> <key>settings</key> <dict> <key>background</key> <string>#77117733</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77772277</string> <key>settings</key> <dict> <key>background</key> <string>#77772277</string> <key>foreground</key> <string>#CCCCCCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99669901</string> <key>settings</key> <dict> <key>background</key> <string>#99669901</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88779922</string> <key>settings</key> <dict> <key>background</key> <string>#88779922</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11007777</string> <key>settings</key> <dict> <key>background</key> <string>#11007777</string> <key>foreground</key> <string>#A1A1A1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77665522</string> <key>settings</key> <dict> <key>background</key> <string>#77665522</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88119901</string> <key>settings</key> <dict> <key>background</key> <string>#88119901</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66996655</string> <key>settings</key> <dict> <key>background</key> <string>#66996655</string> <key>foreground</key> <string>#CBCBCBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99117722</string> <key>settings</key> <dict> <key>background</key> <string>#99117722</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99558899</string> <key>settings</key> <dict> <key>background</key> <string>#99558899</string> <key>foreground</key> <string>#D5D5D5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_999966FF</string> <key>settings</key> <dict> <key>background</key> <string>#999966FF</string> <key>foreground</key> <string>#131313FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88558877</string> <key>settings</key> <dict> <key>background</key> <string>#88558877</string> <key>foreground</key> <string>#CACACAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55116677</string> <key>settings</key> <dict> <key>background</key> <string>#55116677</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22778877</string> <key>settings</key> <dict> <key>background</key> <string>#22778877</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44333399</string> <key>settings</key> <dict> <key>background</key> <string>#44333399</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77336699</string> <key>settings</key> <dict> <key>background</key> <string>#77336699</string> <key>foreground</key> <string>#C1C1C1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33992222</string> <key>settings</key> <dict> <key>background</key> <string>#33992222</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88446633</string> <key>settings</key> <dict> <key>background</key> <string>#88446633</string> <key>foreground</key> <string>#B8B8B8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66883377</string> <key>settings</key> <dict> <key>background</key> <string>#66883377</string> <key>foreground</key> <string>#CFCFCFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_993311FF</string> <key>settings</key> <dict> <key>background</key> <string>#993311FF</string> <key>foreground</key> <string>#CDCDCDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88883377</string> <key>settings</key> <dict> <key>background</key> <string>#88883377</string> <key>foreground</key> <string>#D4D4D4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99888899</string> <key>settings</key> <dict> <key>background</key> <string>#99888899</string> <key>foreground</key> <string>#E7E7E7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_448844FF</string> <key>settings</key> <dict> <key>background</key> <string>#448844FF</string> <key>foreground</key> <string>#EBEBEBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11225533</string> <key>settings</key> <dict> <key>background</key> <string>#11225533</string> <key>foreground</key> <string>#ACACACFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99551177</string> <key>settings</key> <dict> <key>background</key> <string>#99551177</string> <key>foreground</key> <string>#C6C6C6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88889922</string> <key>settings</key> <dict> <key>background</key> <string>#88889922</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99223377</string> <key>settings</key> <dict> <key>background</key> <string>#99223377</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66770099</string> <key>settings</key> <dict> <key>background</key> <string>#66770099</string> <key>foreground</key> <string>#CFCFCFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88660077</string> <key>settings</key> <dict> <key>background</key> <string>#88660077</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99444411</string> <key>settings</key> <dict> <key>background</key> <string>#99444411</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_666622FF</string> <key>settings</key> <dict> <key>background</key> <string>#666622FF</string> <key>foreground</key> <string>#DEDEDEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55661101</string> <key>settings</key> <dict> <key>background</key> <string>#55661101</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99115577</string> <key>settings</key> <dict> <key>background</key> <string>#99115577</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22777777</string> <key>settings</key> <dict> <key>background</key> <string>#22777777</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77223301</string> <key>settings</key> <dict> <key>background</key> <string>#77223301</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77997711</string> <key>settings</key> <dict> <key>background</key> <string>#77997711</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22223377</string> <key>settings</key> <dict> <key>background</key> <string>#22223377</string> <key>foreground</key> <string>#A9A9A9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11889988</string> <key>settings</key> <dict> <key>background</key> <string>#11889988</string> <key>foreground</key> <string>#CCCCCCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66334444</string> <key>settings</key> <dict> <key>background</key> <string>#66334444</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66669966</string> <key>settings</key> <dict> <key>background</key> <string>#66669966</string> <key>foreground</key> <string>#C7C7C7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44006688</string> <key>settings</key> <dict> <key>background</key> <string>#44006688</string> <key>foreground</key> <string>#A7A7A7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55775566</string> <key>settings</key> <dict> <key>background</key> <string>#55775566</string> <key>foreground</key> <string>#C6C6C6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66337799</string> <key>settings</key> <dict> <key>background</key> <string>#66337799</string> <key>foreground</key> <string>#BFBFBFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_224499FF</string> <key>settings</key> <dict> <key>background</key> <string>#224499FF</string> <key>foreground</key> <string>#C3C3C3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77999922</string> <key>settings</key> <dict> <key>background</key> <string>#77999922</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99552201</string> <key>settings</key> <dict> <key>background</key> <string>#99552201</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55779999</string> <key>settings</key> <dict> <key>background</key> <string>#55779999</string> <key>foreground</key> <string>#D6D6D6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33774455</string> <key>settings</key> <dict> <key>background</key> <string>#33774455</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44557766</string> <key>settings</key> <dict> <key>background</key> <string>#44557766</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33662266</string> <key>settings</key> <dict> <key>background</key> <string>#33662266</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44996677</string> <key>settings</key> <dict> <key>background</key> <string>#44996677</string> <key>foreground</key> <string>#D1D1D1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77222255</string> <key>settings</key> <dict> <key>background</key> <string>#77222255</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22552201</string> <key>settings</key> <dict> <key>background</key> <string>#22552201</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66337711</string> <key>settings</key> <dict> <key>background</key> <string>#66337711</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22559901</string> <key>settings</key> <dict> <key>background</key> <string>#22559901</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55224455</string> <key>settings</key> <dict> <key>background</key> <string>#55224455</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66336622</string> <key>settings</key> <dict> <key>background</key> <string>#66336622</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99228855</string> <key>settings</key> <dict> <key>background</key> <string>#99228855</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_772288FF</string> <key>settings</key> <dict> <key>background</key> <string>#772288FF</string> <key>foreground</key> <string>#C7C7C7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77007766</string> <key>settings</key> <dict> <key>background</key> <string>#77007766</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88333377</string> <key>settings</key> <dict> <key>background</key> <string>#88333377</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11112255</string> <key>settings</key> <dict> <key>background</key> <string>#11112255</string> <key>foreground</key> <string>#A5A5A5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55557733</string> <key>settings</key> <dict> <key>background</key> <string>#55557733</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44331155</string> <key>settings</key> <dict> <key>background</key> <string>#44331155</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11443377</string> <key>settings</key> <dict> <key>background</key> <string>#11443377</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66999922</string> <key>settings</key> <dict> <key>background</key> <string>#66999922</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_774433FF</string> <key>settings</key> <dict> <key>background</key> <string>#774433FF</string> <key>foreground</key> <string>#D1D1D1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66006611</string> <key>settings</key> <dict> <key>background</key> <string>#66006611</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66113333</string> <key>settings</key> <dict> <key>background</key> <string>#66113333</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66227722</string> <key>settings</key> <dict> <key>background</key> <string>#66227722</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22669933</string> <key>settings</key> <dict> <key>background</key> <string>#22669933</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11443333</string> <key>settings</key> <dict> <key>background</key> <string>#11443333</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44666611</string> <key>settings</key> <dict> <key>background</key> <string>#44666611</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66991144</string> <key>settings</key> <dict> <key>background</key> <string>#66991144</string> <key>foreground</key> <string>#C3C3C3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33881199</string> <key>settings</key> <dict> <key>background</key> <string>#33881199</string> <key>foreground</key> <string>#CDCDCDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33666611</string> <key>settings</key> <dict> <key>background</key> <string>#33666611</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33992233</string> <key>settings</key> <dict> <key>background</key> <string>#33992233</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33995511</string> <key>settings</key> <dict> <key>background</key> <string>#33995511</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99664401</string> <key>settings</key> <dict> <key>background</key> <string>#99664401</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88660044</string> <key>settings</key> <dict> <key>background</key> <string>#88660044</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77225533</string> <key>settings</key> <dict> <key>background</key> <string>#77225533</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99994433</string> <key>settings</key> <dict> <key>background</key> <string>#99994433</string> <key>foreground</key> <string>#C2C2C2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88449988</string> <key>settings</key> <dict> <key>background</key> <string>#88449988</string> <key>foreground</key> <string>#CACACAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44888899</string> <key>settings</key> <dict> <key>background</key> <string>#44888899</string> <key>foreground</key> <string>#D8D8D8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11006699</string> <key>settings</key> <dict> <key>background</key> <string>#11006699</string> <key>foreground</key> <string>#9C9C9CFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99449988</string> <key>settings</key> <dict> <key>background</key> <string>#99449988</string> <key>foreground</key> <string>#CCCCCCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77006633</string> <key>settings</key> <dict> <key>background</key> <string>#77006633</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33009901</string> <key>settings</key> <dict> <key>background</key> <string>#33009901</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55991122</string> <key>settings</key> <dict> <key>background</key> <string>#55991122</string> <key>foreground</key> <string>#B8B8B8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11112244</string> <key>settings</key> <dict> <key>background</key> <string>#11112244</string> <key>foreground</key> <string>#A7A7A7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77331155</string> <key>settings</key> <dict> <key>background</key> <string>#77331155</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88116601</string> <key>settings</key> <dict> <key>background</key> <string>#88116601</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77009977</string> <key>settings</key> <dict> <key>background</key> <string>#77009977</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99004455</string> <key>settings</key> <dict> <key>background</key> <string>#99004455</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77227799</string> <key>settings</key> <dict> <key>background</key> <string>#77227799</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99772233</string> <key>settings</key> <dict> <key>background</key> <string>#99772233</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33559955</string> <key>settings</key> <dict> <key>background</key> <string>#33559955</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66551155</string> <key>settings</key> <dict> <key>background</key> <string>#66551155</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88002266</string> <key>settings</key> <dict> <key>background</key> <string>#88002266</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55443399</string> <key>settings</key> <dict> <key>background</key> <string>#55443399</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11663311</string> <key>settings</key> <dict> <key>background</key> <string>#11663311</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99999955</string> <key>settings</key> <dict> <key>background</key> <string>#99999955</string> <key>foreground</key> <string>#D2D2D2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55118877</string> <key>settings</key> <dict> <key>background</key> <string>#55118877</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88333322</string> <key>settings</key> <dict> <key>background</key> <string>#88333322</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66117799</string> <key>settings</key> <dict> <key>background</key> <string>#66117799</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99880044</string> <key>settings</key> <dict> <key>background</key> <string>#99880044</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55221188</string> <key>settings</key> <dict> <key>background</key> <string>#55221188</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99445577</string> <key>settings</key> <dict> <key>background</key> <string>#99445577</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_553311FF</string> <key>settings</key> <dict> <key>background</key> <string>#553311FF</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88113344</string> <key>settings</key> <dict> <key>background</key> <string>#88113344</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55006601</string> <key>settings</key> <dict> <key>background</key> <string>#55006601</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_663388FF</string> <key>settings</key> <dict> <key>background</key> <string>#663388FF</string> <key>foreground</key> <string>#CBCBCBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22881155</string> <key>settings</key> <dict> <key>background</key> <string>#22881155</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77772299</string> <key>settings</key> <dict> <key>background</key> <string>#77772299</string> <key>foreground</key> <string>#D4D4D4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33996666</string> <key>settings</key> <dict> <key>background</key> <string>#33996666</string> <key>foreground</key> <string>#CACACAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88119955</string> <key>settings</key> <dict> <key>background</key> <string>#88119955</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99000033</string> <key>settings</key> <dict> <key>background</key> <string>#99000033</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33119966</string> <key>settings</key> <dict> <key>background</key> <string>#33119966</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88336655</string> <key>settings</key> <dict> <key>background</key> <string>#88336655</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_888822FF</string> <key>settings</key> <dict> <key>background</key> <string>#888822FF</string> <key>foreground</key> <string>#FCFCFCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77118899</string> <key>settings</key> <dict> <key>background</key> <string>#77118899</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55222299</string> <key>settings</key> <dict> <key>background</key> <string>#55222299</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44229977</string> <key>settings</key> <dict> <key>background</key> <string>#44229977</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33886622</string> <key>settings</key> <dict> <key>background</key> <string>#33886622</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88338811</string> <key>settings</key> <dict> <key>background</key> <string>#88338811</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11660066</string> <key>settings</key> <dict> <key>background</key> <string>#11660066</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55000088</string> <key>settings</key> <dict> <key>background</key> <string>#55000088</string> <key>foreground</key> <string>#A3A3A3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33338811</string> <key>settings</key> <dict> <key>background</key> <string>#33338811</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99550044</string> <key>settings</key> <dict> <key>background</key> <string>#99550044</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33007744</string> <key>settings</key> <dict> <key>background</key> <string>#33007744</string> <key>foreground</key> <string>#AAAAAAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55661122</string> <key>settings</key> <dict> <key>background</key> <string>#55661122</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99885566</string> <key>settings</key> <dict> <key>background</key> <string>#99885566</string> <key>foreground</key> <string>#D2D2D2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55994455</string> <key>settings</key> <dict> <key>background</key> <string>#55994455</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99226633</string> <key>settings</key> <dict> <key>background</key> <string>#99226633</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22449999</string> <key>settings</key> <dict> <key>background</key> <string>#22449999</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88003333</string> <key>settings</key> <dict> <key>background</key> <string>#88003333</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55666688</string> <key>settings</key> <dict> <key>background</key> <string>#55666688</string> <key>foreground</key> <string>#C9C9C9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33886677</string> <key>settings</key> <dict> <key>background</key> <string>#33886677</string> <key>foreground</key> <string>#CACACAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11002201</string> <key>settings</key> <dict> <key>background</key> <string>#11002201</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66226677</string> <key>settings</key> <dict> <key>background</key> <string>#66226677</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44330055</string> <key>settings</key> <dict> <key>background</key> <string>#44330055</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55447766</string> <key>settings</key> <dict> <key>background</key> <string>#55447766</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11666611</string> <key>settings</key> <dict> <key>background</key> <string>#11666611</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66009911</string> <key>settings</key> <dict> <key>background</key> <string>#66009911</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66007744</string> <key>settings</key> <dict> <key>background</key> <string>#66007744</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88330055</string> <key>settings</key> <dict> <key>background</key> <string>#88330055</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_558844FF</string> <key>settings</key> <dict> <key>background</key> <string>#558844FF</string> <key>foreground</key> <string>#F0F0F0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88004422</string> <key>settings</key> <dict> <key>background</key> <string>#88004422</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44990001</string> <key>settings</key> <dict> <key>background</key> <string>#44990001</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55005566</string> <key>settings</key> <dict> <key>background</key> <string>#55005566</string> <key>foreground</key> <string>#AAAAAAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22004499</string> <key>settings</key> <dict> <key>background</key> <string>#22004499</string> <key>foreground</key> <string>#9D9D9DFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55995588</string> <key>settings</key> <dict> <key>background</key> <string>#55995588</string> <key>foreground</key> <string>#D8D8D8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_775588FF</string> <key>settings</key> <dict> <key>background</key> <string>#775588FF</string> <key>foreground</key> <string>#E4E4E4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77663311</string> <key>settings</key> <dict> <key>background</key> <string>#77663311</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99881133</string> <key>settings</key> <dict> <key>background</key> <string>#99881133</string> <key>foreground</key> <string>#BFBFBFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44559988</string> <key>settings</key> <dict> <key>background</key> <string>#44559988</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99112222</string> <key>settings</key> <dict> <key>background</key> <string>#99112222</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66229944</string> <key>settings</key> <dict> <key>background</key> <string>#66229944</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88224433</string> <key>settings</key> <dict> <key>background</key> <string>#88224433</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66773388</string> <key>settings</key> <dict> <key>background</key> <string>#66773388</string> <key>foreground</key> <string>#CECECEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66559966</string> <key>settings</key> <dict> <key>background</key> <string>#66559966</string> <key>foreground</key> <string>#C3C3C3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44777744</string> <key>settings</key> <dict> <key>background</key> <string>#44777744</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22884477</string> <key>settings</key> <dict> <key>background</key> <string>#22884477</string> <key>foreground</key> <string>#C6C6C6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22440088</string> <key>settings</key> <dict> <key>background</key> <string>#22440088</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55999922</string> <key>settings</key> <dict> <key>background</key> <string>#55999922</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11229955</string> <key>settings</key> <dict> <key>background</key> <string>#11229955</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77771101</string> <key>settings</key> <dict> <key>background</key> <string>#77771101</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_334477FF</string> <key>settings</key> <dict> <key>background</key> <string>#334477FF</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11558855</string> <key>settings</key> <dict> <key>background</key> <string>#11558855</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99009988</string> <key>settings</key> <dict> <key>background</key> <string>#99009988</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22119955</string> <key>settings</key> <dict> <key>background</key> <string>#22119955</string> <key>foreground</key> <string>#ABABABFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88772299</string> <key>settings</key> <dict> <key>background</key> <string>#88772299</string> <key>foreground</key> <string>#D7D7D7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33557733</string> <key>settings</key> <dict> <key>background</key> <string>#33557733</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77774401</string> <key>settings</key> <dict> <key>background</key> <string>#77774401</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99334444</string> <key>settings</key> <dict> <key>background</key> <string>#99334444</string> <key>foreground</key> <string>#B8B8B8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77222266</string> <key>settings</key> <dict> <key>background</key> <string>#77222266</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55996633</string> <key>settings</key> <dict> <key>background</key> <string>#55996633</string> <key>foreground</key> <string>#BFBFBFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55331144</string> <key>settings</key> <dict> <key>background</key> <string>#55331144</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99445544</string> <key>settings</key> <dict> <key>background</key> <string>#99445544</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22779901</string> <key>settings</key> <dict> <key>background</key> <string>#22779901</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88443322</string> <key>settings</key> <dict> <key>background</key> <string>#88443322</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99005577</string> <key>settings</key> <dict> <key>background</key> <string>#99005577</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77553399</string> <key>settings</key> <dict> <key>background</key> <string>#77553399</string> <key>foreground</key> <string>#C9C9C9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88331155</string> <key>settings</key> <dict> <key>background</key> <string>#88331155</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99221166</string> <key>settings</key> <dict> <key>background</key> <string>#99221166</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77991122</string> <key>settings</key> <dict> <key>background</key> <string>#77991122</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88771199</string> <key>settings</key> <dict> <key>background</key> <string>#88771199</string> <key>foreground</key> <string>#D6D6D6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66553399</string> <key>settings</key> <dict> <key>background</key> <string>#66553399</string> <key>foreground</key> <string>#C6C6C6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66887744</string> <key>settings</key> <dict> <key>background</key> <string>#66887744</string> <key>foreground</key> <string>#C3C3C3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99887701</string> <key>settings</key> <dict> <key>background</key> <string>#99887701</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88445599</string> <key>settings</key> <dict> <key>background</key> <string>#88445599</string> <key>foreground</key> <string>#C9C9C9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77330066</string> <key>settings</key> <dict> <key>background</key> <string>#77330066</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33997755</string> <key>settings</key> <dict> <key>background</key> <string>#33997755</string> <key>foreground</key> <string>#C6C6C6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33008822</string> <key>settings</key> <dict> <key>background</key> <string>#33008822</string> <key>foreground</key> <string>#ACACACFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99110066</string> <key>settings</key> <dict> <key>background</key> <string>#99110066</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66668822</string> <key>settings</key> <dict> <key>background</key> <string>#66668822</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66778844</string> <key>settings</key> <dict> <key>background</key> <string>#66778844</string> <key>foreground</key> <string>#C1C1C1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22882222</string> <key>settings</key> <dict> <key>background</key> <string>#22882222</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99666644</string> <key>settings</key> <dict> <key>background</key> <string>#99666644</string> <key>foreground</key> <string>#C1C1C1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66882211</string> <key>settings</key> <dict> <key>background</key> <string>#66882211</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_442299FF</string> <key>settings</key> <dict> <key>background</key> <string>#442299FF</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22444488</string> <key>settings</key> <dict> <key>background</key> <string>#22444488</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66220022</string> <key>settings</key> <dict> <key>background</key> <string>#66220022</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55226601</string> <key>settings</key> <dict> <key>background</key> <string>#55226601</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44110044</string> <key>settings</key> <dict> <key>background</key> <string>#44110044</string> <key>foreground</key> <string>#AAAAAAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66110044</string> <key>settings</key> <dict> <key>background</key> <string>#66110044</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44225566</string> <key>settings</key> <dict> <key>background</key> <string>#44225566</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99778822</string> <key>settings</key> <dict> <key>background</key> <string>#99778822</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44005501</string> <key>settings</key> <dict> <key>background</key> <string>#44005501</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77009999</string> <key>settings</key> <dict> <key>background</key> <string>#77009999</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66776644</string> <key>settings</key> <dict> <key>background</key> <string>#66776644</string> <key>foreground</key> <string>#C0C0C0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88332201</string> <key>settings</key> <dict> <key>background</key> <string>#88332201</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44441111</string> <key>settings</key> <dict> <key>background</key> <string>#44441111</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22118822</string> <key>settings</key> <dict> <key>background</key> <string>#22118822</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88999955</string> <key>settings</key> <dict> <key>background</key> <string>#88999955</string> <key>foreground</key> <string>#D0D0D0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33887733</string> <key>settings</key> <dict> <key>background</key> <string>#33887733</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77999999</string> <key>settings</key> <dict> <key>background</key> <string>#77999999</string> <key>foreground</key> <string>#E8E8E8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_664488FF</string> <key>settings</key> <dict> <key>background</key> <string>#664488FF</string> <key>foreground</key> <string>#D5D5D5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33002266</string> <key>settings</key> <dict> <key>background</key> <string>#33002266</string> <key>foreground</key> <string>#A3A3A3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99229966</string> <key>settings</key> <dict> <key>background</key> <string>#99229966</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11111122</string> <key>settings</key> <dict> <key>background</key> <string>#11111122</string> <key>foreground</key> <string>#ABABABFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99008833</string> <key>settings</key> <dict> <key>background</key> <string>#99008833</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33776655</string> <key>settings</key> <dict> <key>background</key> <string>#33776655</string> <key>foreground</key> <string>#BFBFBFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66111177</string> <key>settings</key> <dict> <key>background</key> <string>#66111177</string> <key>foreground</key> <string>#ACACACFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55337788</string> <key>settings</key> <dict> <key>background</key> <string>#55337788</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66113366</string> <key>settings</key> <dict> <key>background</key> <string>#66113366</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77880044</string> <key>settings</key> <dict> <key>background</key> <string>#77880044</string> <key>foreground</key> <string>#C1C1C1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88115566</string> <key>settings</key> <dict> <key>background</key> <string>#88115566</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22558844</string> <key>settings</key> <dict> <key>background</key> <string>#22558844</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22662288</string> <key>settings</key> <dict> <key>background</key> <string>#22662288</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11335566</string> <key>settings</key> <dict> <key>background</key> <string>#11335566</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77667788</string> <key>settings</key> <dict> <key>background</key> <string>#77667788</string> <key>foreground</key> <string>#D0D0D0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77117788</string> <key>settings</key> <dict> <key>background</key> <string>#77117788</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99221188</string> <key>settings</key> <dict> <key>background</key> <string>#99221188</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88228855</string> <key>settings</key> <dict> <key>background</key> <string>#88228855</string> <key>foreground</key> <string>#B8B8B8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11553355</string> <key>settings</key> <dict> <key>background</key> <string>#11553355</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66993377</string> <key>settings</key> <dict> <key>background</key> <string>#66993377</string> <key>foreground</key> <string>#D3D3D3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77996611</string> <key>settings</key> <dict> <key>background</key> <string>#77996611</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22442233</string> <key>settings</key> <dict> <key>background</key> <string>#22442233</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99008811</string> <key>settings</key> <dict> <key>background</key> <string>#99008811</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99003322</string> <key>settings</key> <dict> <key>background</key> <string>#99003322</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66778899</string> <key>settings</key> <dict> <key>background</key> <string>#66778899</string> <key>foreground</key> <string>#D8D8D8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11996633</string> <key>settings</key> <dict> <key>background</key> <string>#11996633</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11226666</string> <key>settings</key> <dict> <key>background</key> <string>#11226666</string> <key>foreground</key> <string>#AAAAAAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66667733</string> <key>settings</key> <dict> <key>background</key> <string>#66667733</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99119955</string> <key>settings</key> <dict> <key>background</key> <string>#99119955</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66001188</string> <key>settings</key> <dict> <key>background</key> <string>#66001188</string> <key>foreground</key> <string>#A7A7A7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66332266</string> <key>settings</key> <dict> <key>background</key> <string>#66332266</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99113355</string> <key>settings</key> <dict> <key>background</key> <string>#99113355</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66551166</string> <key>settings</key> <dict> <key>background</key> <string>#66551166</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99119933</string> <key>settings</key> <dict> <key>background</key> <string>#99119933</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11442277</string> <key>settings</key> <dict> <key>background</key> <string>#11442277</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33114433</string> <key>settings</key> <dict> <key>background</key> <string>#33114433</string> <key>foreground</key> <string>#ACACACFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44882288</string> <key>settings</key> <dict> <key>background</key> <string>#44882288</string> <key>foreground</key> <string>#CDCDCDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77556633</string> <key>settings</key> <dict> <key>background</key> <string>#77556633</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44888888</string> <key>settings</key> <dict> <key>background</key> <string>#44888888</string> <key>foreground</key> <string>#D3D3D3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88999977</string> <key>settings</key> <dict> <key>background</key> <string>#88999977</string> <key>foreground</key> <string>#DEDEDEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_662288FF</string> <key>settings</key> <dict> <key>background</key> <string>#662288FF</string> <key>foreground</key> <string>#C1C1C1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_774466FF</string> <key>settings</key> <dict> <key>background</key> <string>#774466FF</string> <key>foreground</key> <string>#D7D7D7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66115588</string> <key>settings</key> <dict> <key>background</key> <string>#66115588</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77228877</string> <key>settings</key> <dict> <key>background</key> <string>#77228877</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33006644</string> <key>settings</key> <dict> <key>background</key> <string>#33006644</string> <key>foreground</key> <string>#A9A9A9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88227799</string> <key>settings</key> <dict> <key>background</key> <string>#88227799</string> <key>foreground</key> <string>#BFBFBFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66994444</string> <key>settings</key> <dict> <key>background</key> <string>#66994444</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_778822FF</string> <key>settings</key> <dict> <key>background</key> <string>#778822FF</string> <key>foreground</key> <string>#F7F7F7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44338801</string> <key>settings</key> <dict> <key>background</key> <string>#44338801</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99224477</string> <key>settings</key> <dict> <key>background</key> <string>#99224477</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88339901</string> <key>settings</key> <dict> <key>background</key> <string>#88339901</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66774477</string> <key>settings</key> <dict> <key>background</key> <string>#66774477</string> <key>foreground</key> <string>#CBCBCBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88332266</string> <key>settings</key> <dict> <key>background</key> <string>#88332266</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11880011</string> <key>settings</key> <dict> <key>background</key> <string>#11880011</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77778899</string> <key>settings</key> <dict> <key>background</key> <string>#77778899</string> <key>foreground</key> <string>#DBDBDBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_888844FF</string> <key>settings</key> <dict> <key>background</key> <string>#888844FF</string> <key>foreground</key> <string>#000000FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77559922</string> <key>settings</key> <dict> <key>background</key> <string>#77559922</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99118822</string> <key>settings</key> <dict> <key>background</key> <string>#99118822</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55771111</string> <key>settings</key> <dict> <key>background</key> <string>#55771111</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66776622</string> <key>settings</key> <dict> <key>background</key> <string>#66776622</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99666655</string> <key>settings</key> <dict> <key>background</key> <string>#99666655</string> <key>foreground</key> <string>#C6C6C6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44116644</string> <key>settings</key> <dict> <key>background</key> <string>#44116644</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99114499</string> <key>settings</key> <dict> <key>background</key> <string>#99114499</string> <key>foreground</key> <string>#B8B8B8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11555511</string> <key>settings</key> <dict> <key>background</key> <string>#11555511</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_669977FF</string> <key>settings</key> <dict> <key>background</key> <string>#669977FF</string> <key>foreground</key> <string>#050505FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22882233</string> <key>settings</key> <dict> <key>background</key> <string>#22882233</string> <key>foreground</key> <string>#B8B8B8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_332266FF</string> <key>settings</key> <dict> <key>background</key> <string>#332266FF</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88006699</string> <key>settings</key> <dict> <key>background</key> <string>#88006699</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55993333</string> <key>settings</key> <dict> <key>background</key> <string>#55993333</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88110022</string> <key>settings</key> <dict> <key>background</key> <string>#88110022</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22660066</string> <key>settings</key> <dict> <key>background</key> <string>#22660066</string> <key>foreground</key> <string>#B8B8B8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22008822</string> <key>settings</key> <dict> <key>background</key> <string>#22008822</string> <key>foreground</key> <string>#ACACACFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55661133</string> <key>settings</key> <dict> <key>background</key> <string>#55661133</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44668811</string> <key>settings</key> <dict> <key>background</key> <string>#44668811</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77999966</string> <key>settings</key> <dict> <key>background</key> <string>#77999966</string> <key>foreground</key> <string>#D5D5D5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77004477</string> <key>settings</key> <dict> <key>background</key> <string>#77004477</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44996699</string> <key>settings</key> <dict> <key>background</key> <string>#44996699</string> <key>foreground</key> <string>#DBDBDBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99885522</string> <key>settings</key> <dict> <key>background</key> <string>#99885522</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55224499</string> <key>settings</key> <dict> <key>background</key> <string>#55224499</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33661144</string> <key>settings</key> <dict> <key>background</key> <string>#33661144</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77007711</string> <key>settings</key> <dict> <key>background</key> <string>#77007711</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77443388</string> <key>settings</key> <dict> <key>background</key> <string>#77443388</string> <key>foreground</key> <string>#C1C1C1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33884477</string> <key>settings</key> <dict> <key>background</key> <string>#33884477</string> <key>foreground</key> <string>#C9C9C9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66448866</string> <key>settings</key> <dict> <key>background</key> <string>#66448866</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33664488</string> <key>settings</key> <dict> <key>background</key> <string>#33664488</string> <key>foreground</key> <string>#C2C2C2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44336644</string> <key>settings</key> <dict> <key>background</key> <string>#44336644</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55449988</string> <key>settings</key> <dict> <key>background</key> <string>#55449988</string> <key>foreground</key> <string>#C2C2C2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99886677</string> <key>settings</key> <dict> <key>background</key> <string>#99886677</string> <key>foreground</key> <string>#D9D9D9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77997744</string> <key>settings</key> <dict> <key>background</key> <string>#77997744</string> <key>foreground</key> <string>#C7C7C7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44110099</string> <key>settings</key> <dict> <key>background</key> <string>#44110099</string> <key>foreground</key> <string>#A5A5A5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66556611</string> <key>settings</key> <dict> <key>background</key> <string>#66556611</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66005588</string> <key>settings</key> <dict> <key>background</key> <string>#66005588</string> <key>foreground</key> <string>#ABABABFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22117744</string> <key>settings</key> <dict> <key>background</key> <string>#22117744</string> <key>foreground</key> <string>#ABABABFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66337744</string> <key>settings</key> <dict> <key>background</key> <string>#66337744</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44993311</string> <key>settings</key> <dict> <key>background</key> <string>#44993311</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99990055</string> <key>settings</key> <dict> <key>background</key> <string>#99990055</string> <key>foreground</key> <string>#CCCCCCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88992244</string> <key>settings</key> <dict> <key>background</key> <string>#88992244</string> <key>foreground</key> <string>#C6C6C6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22007755</string> <key>settings</key> <dict> <key>background</key> <string>#22007755</string> <key>foreground</key> <string>#A7A7A7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33221122</string> <key>settings</key> <dict> <key>background</key> <string>#33221122</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_880033FF</string> <key>settings</key> <dict> <key>background</key> <string>#880033FF</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33224411</string> <key>settings</key> <dict> <key>background</key> <string>#33224411</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55445566</string> <key>settings</key> <dict> <key>background</key> <string>#55445566</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99666622</string> <key>settings</key> <dict> <key>background</key> <string>#99666622</string> <key>foreground</key> <string>#B8B8B8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44339988</string> <key>settings</key> <dict> <key>background</key> <string>#44339988</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33667788</string> <key>settings</key> <dict> <key>background</key> <string>#33667788</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22330011</string> <key>settings</key> <dict> <key>background</key> <string>#22330011</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22558888</string> <key>settings</key> <dict> <key>background</key> <string>#22558888</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77883333</string> <key>settings</key> <dict> <key>background</key> <string>#77883333</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77444455</string> <key>settings</key> <dict> <key>background</key> <string>#77444455</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66442233</string> <key>settings</key> <dict> <key>background</key> <string>#66442233</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66445511</string> <key>settings</key> <dict> <key>background</key> <string>#66445511</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22009988</string> <key>settings</key> <dict> <key>background</key> <string>#22009988</string> <key>foreground</key> <string>#A4A4A4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11667722</string> <key>settings</key> <dict> <key>background</key> <string>#11667722</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99446666</string> <key>settings</key> <dict> <key>background</key> <string>#99446666</string> <key>foreground</key> <string>#C3C3C3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77443322</string> <key>settings</key> <dict> <key>background</key> <string>#77443322</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88885566</string> <key>settings</key> <dict> <key>background</key> <string>#88885566</string> <key>foreground</key> <string>#D0D0D0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66113355</string> <key>settings</key> <dict> <key>background</key> <string>#66113355</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88669966</string> <key>settings</key> <dict> <key>background</key> <string>#88669966</string> <key>foreground</key> <string>#CBCBCBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66663399</string> <key>settings</key> <dict> <key>background</key> <string>#66663399</string> <key>foreground</key> <string>#CCCCCCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22119911</string> <key>settings</key> <dict> <key>background</key> <string>#22119911</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88777733</string> <key>settings</key> <dict> <key>background</key> <string>#88777733</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99337744</string> <key>settings</key> <dict> <key>background</key> <string>#99337744</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77661188</string> <key>settings</key> <dict> <key>background</key> <string>#77661188</string> <key>foreground</key> <string>#C9C9C9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11662211</string> <key>settings</key> <dict> <key>background</key> <string>#11662211</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55992233</string> <key>settings</key> <dict> <key>background</key> <string>#55992233</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66223344</string> <key>settings</key> <dict> <key>background</key> <string>#66223344</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11779955</string> <key>settings</key> <dict> <key>background</key> <string>#11779955</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33772255</string> <key>settings</key> <dict> <key>background</key> <string>#33772255</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66116699</string> <key>settings</key> <dict> <key>background</key> <string>#66116699</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_555588FF</string> <key>settings</key> <dict> <key>background</key> <string>#555588FF</string> <key>foreground</key> <string>#DADADAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44114488</string> <key>settings</key> <dict> <key>background</key> <string>#44114488</string> <key>foreground</key> <string>#AAAAAAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77009922</string> <key>settings</key> <dict> <key>background</key> <string>#77009922</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88883322</string> <key>settings</key> <dict> <key>background</key> <string>#88883322</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88991101</string> <key>settings</key> <dict> <key>background</key> <string>#88991101</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22995522</string> <key>settings</key> <dict> <key>background</key> <string>#22995522</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77774466</string> <key>settings</key> <dict> <key>background</key> <string>#77774466</string> <key>foreground</key> <string>#C9C9C9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22776699</string> <key>settings</key> <dict> <key>background</key> <string>#22776699</string> <key>foreground</key> <string>#C9C9C9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22228801</string> <key>settings</key> <dict> <key>background</key> <string>#22228801</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88225533</string> <key>settings</key> <dict> <key>background</key> <string>#88225533</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88995555</string> <key>settings</key> <dict> <key>background</key> <string>#88995555</string> <key>foreground</key> <string>#CECECEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11662277</string> <key>settings</key> <dict> <key>background</key> <string>#11662277</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44338855</string> <key>settings</key> <dict> <key>background</key> <string>#44338855</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66331188</string> <key>settings</key> <dict> <key>background</key> <string>#66331188</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99998855</string> <key>settings</key> <dict> <key>background</key> <string>#99998855</string> <key>foreground</key> <string>#D1D1D1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_990055FF</string> <key>settings</key> <dict> <key>background</key> <string>#990055FF</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77335577</string> <key>settings</key> <dict> <key>background</key> <string>#77335577</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66443344</string> <key>settings</key> <dict> <key>background</key> <string>#66443344</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88664499</string> <key>settings</key> <dict> <key>background</key> <string>#88664499</string> <key>foreground</key> <string>#D3D3D3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99442288</string> <key>settings</key> <dict> <key>background</key> <string>#99442288</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22996655</string> <key>settings</key> <dict> <key>background</key> <string>#22996655</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77660066</string> <key>settings</key> <dict> <key>background</key> <string>#77660066</string> <key>foreground</key> <string>#C2C2C2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33113377</string> <key>settings</key> <dict> <key>background</key> <string>#33113377</string> <key>foreground</key> <string>#A7A7A7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44773399</string> <key>settings</key> <dict> <key>background</key> <string>#44773399</string> <key>foreground</key> <string>#CCCCCCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88555501</string> <key>settings</key> <dict> <key>background</key> <string>#88555501</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77004488</string> <key>settings</key> <dict> <key>background</key> <string>#77004488</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55993355</string> <key>settings</key> <dict> <key>background</key> <string>#55993355</string> <key>foreground</key> <string>#C7C7C7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_994455FF</string> <key>settings</key> <dict> <key>background</key> <string>#994455FF</string> <key>foreground</key> <string>#DFDFDFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33332299</string> <key>settings</key> <dict> <key>background</key> <string>#33332299</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_991144FF</string> <key>settings</key> <dict> <key>background</key> <string>#991144FF</string> <key>foreground</key> <string>#BFBFBFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66663377</string> <key>settings</key> <dict> <key>background</key> <string>#66663377</string> <key>foreground</key> <string>#C6C6C6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88119933</string> <key>settings</key> <dict> <key>background</key> <string>#88119933</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77228833</string> <key>settings</key> <dict> <key>background</key> <string>#77228833</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66996601</string> <key>settings</key> <dict> <key>background</key> <string>#66996601</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11552255</string> <key>settings</key> <dict> <key>background</key> <string>#11552255</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22332255</string> <key>settings</key> <dict> <key>background</key> <string>#22332255</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66999988</string> <key>settings</key> <dict> <key>background</key> <string>#66999988</string> <key>foreground</key> <string>#DFDFDFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11221122</string> <key>settings</key> <dict> <key>background</key> <string>#11221122</string> <key>foreground</key> <string>#ACACACFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11994444</string> <key>settings</key> <dict> <key>background</key> <string>#11994444</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11774466</string> <key>settings</key> <dict> <key>background</key> <string>#11774466</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11994499</string> <key>settings</key> <dict> <key>background</key> <string>#11994499</string> <key>foreground</key> <string>#D0D0D0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55778866</string> <key>settings</key> <dict> <key>background</key> <string>#55778866</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33990088</string> <key>settings</key> <dict> <key>background</key> <string>#33990088</string> <key>foreground</key> <string>#CECECEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88225588</string> <key>settings</key> <dict> <key>background</key> <string>#88225588</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66775511</string> <key>settings</key> <dict> <key>background</key> <string>#66775511</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77008899</string> <key>settings</key> <dict> <key>background</key> <string>#77008899</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66772288</string> <key>settings</key> <dict> <key>background</key> <string>#66772288</string> <key>foreground</key> <string>#CDCDCDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55999911</string> <key>settings</key> <dict> <key>background</key> <string>#55999911</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33990011</string> <key>settings</key> <dict> <key>background</key> <string>#33990011</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22335544</string> <key>settings</key> <dict> <key>background</key> <string>#22335544</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66111101</string> <key>settings</key> <dict> <key>background</key> <string>#66111101</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88337755</string> <key>settings</key> <dict> <key>background</key> <string>#88337755</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77226677</string> <key>settings</key> <dict> <key>background</key> <string>#77226677</string> <key>foreground</key> <string>#B8B8B8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22550044</string> <key>settings</key> <dict> <key>background</key> <string>#22550044</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33223388</string> <key>settings</key> <dict> <key>background</key> <string>#33223388</string> <key>foreground</key> <string>#ABABABFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55220066</string> <key>settings</key> <dict> <key>background</key> <string>#55220066</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11773333</string> <key>settings</key> <dict> <key>background</key> <string>#11773333</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22008899</string> <key>settings</key> <dict> <key>background</key> <string>#22008899</string> <key>foreground</key> <string>#A2A2A2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11335501</string> <key>settings</key> <dict> <key>background</key> <string>#11335501</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11667777</string> <key>settings</key> <dict> <key>background</key> <string>#11667777</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44883344</string> <key>settings</key> <dict> <key>background</key> <string>#44883344</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_114499FF</string> <key>settings</key> <dict> <key>background</key> <string>#114499FF</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33558899</string> <key>settings</key> <dict> <key>background</key> <string>#33558899</string> <key>foreground</key> <string>#C3C3C3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33998811</string> <key>settings</key> <dict> <key>background</key> <string>#33998811</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77991133</string> <key>settings</key> <dict> <key>background</key> <string>#77991133</string> <key>foreground</key> <string>#BFBFBFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77771177</string> <key>settings</key> <dict> <key>background</key> <string>#77771177</string> <key>foreground</key> <string>#CBCBCBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66661155</string> <key>settings</key> <dict> <key>background</key> <string>#66661155</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77779955</string> <key>settings</key> <dict> <key>background</key> <string>#77779955</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88882255</string> <key>settings</key> <dict> <key>background</key> <string>#88882255</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22112255</string> <key>settings</key> <dict> <key>background</key> <string>#22112255</string> <key>foreground</key> <string>#A7A7A7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99336655</string> <key>settings</key> <dict> <key>background</key> <string>#99336655</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_222211FF</string> <key>settings</key> <dict> <key>background</key> <string>#222211FF</string> <key>foreground</key> <string>#A0A0A0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11664433</string> <key>settings</key> <dict> <key>background</key> <string>#11664433</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77881177</string> <key>settings</key> <dict> <key>background</key> <string>#77881177</string> <key>foreground</key> <string>#CFCFCFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33559999</string> <key>settings</key> <dict> <key>background</key> <string>#33559999</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77222222</string> <key>settings</key> <dict> <key>background</key> <string>#77222222</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66004411</string> <key>settings</key> <dict> <key>background</key> <string>#66004411</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66001177</string> <key>settings</key> <dict> <key>background</key> <string>#66001177</string> <key>foreground</key> <string>#A8A8A8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_997755FF</string> <key>settings</key> <dict> <key>background</key> <string>#997755FF</string> <key>foreground</key> <string>#FDFDFDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99665566</string> <key>settings</key> <dict> <key>background</key> <string>#99665566</string> <key>foreground</key> <string>#CACACAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66775501</string> <key>settings</key> <dict> <key>background</key> <string>#66775501</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88444488</string> <key>settings</key> <dict> <key>background</key> <string>#88444488</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11008899</string> <key>settings</key> <dict> <key>background</key> <string>#11008899</string> <key>foreground</key> <string>#9F9F9FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99551188</string> <key>settings</key> <dict> <key>background</key> <string>#99551188</string> <key>foreground</key> <string>#CACACAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33555533</string> <key>settings</key> <dict> <key>background</key> <string>#33555533</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11777701</string> <key>settings</key> <dict> <key>background</key> <string>#11777701</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_776600FF</string> <key>settings</key> <dict> <key>background</key> <string>#776600FF</string> <key>foreground</key> <string>#DFDFDFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88888888</string> <key>settings</key> <dict> <key>background</key> <string>#88888888</string> <key>foreground</key> <string>#DEDEDEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99339901</string> <key>settings</key> <dict> <key>background</key> <string>#99339901</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88229988</string> <key>settings</key> <dict> <key>background</key> <string>#88229988</string> <key>foreground</key> <string>#BFBFBFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_662299FF</string> <key>settings</key> <dict> <key>background</key> <string>#662299FF</string> <key>foreground</key> <string>#C3C3C3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77334488</string> <key>settings</key> <dict> <key>background</key> <string>#77334488</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22004444</string> <key>settings</key> <dict> <key>background</key> <string>#22004444</string> <key>foreground</key> <string>#A7A7A7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22559955</string> <key>settings</key> <dict> <key>background</key> <string>#22559955</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33441111</string> <key>settings</key> <dict> <key>background</key> <string>#33441111</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77664433</string> <key>settings</key> <dict> <key>background</key> <string>#77664433</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11339977</string> <key>settings</key> <dict> <key>background</key> <string>#11339977</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55550022</string> <key>settings</key> <dict> <key>background</key> <string>#55550022</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44220055</string> <key>settings</key> <dict> <key>background</key> <string>#44220055</string> <key>foreground</key> <string>#ACACACFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88443333</string> <key>settings</key> <dict> <key>background</key> <string>#88443333</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88992277</string> <key>settings</key> <dict> <key>background</key> <string>#88992277</string> <key>foreground</key> <string>#D7D7D7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55887701</string> <key>settings</key> <dict> <key>background</key> <string>#55887701</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33778888</string> <key>settings</key> <dict> <key>background</key> <string>#33778888</string> <key>foreground</key> <string>#CBCBCBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88223333</string> <key>settings</key> <dict> <key>background</key> <string>#88223333</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66445501</string> <key>settings</key> <dict> <key>background</key> <string>#66445501</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66888899</string> <key>settings</key> <dict> <key>background</key> <string>#66888899</string> <key>foreground</key> <string>#DEDEDEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99449901</string> <key>settings</key> <dict> <key>background</key> <string>#99449901</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66442222</string> <key>settings</key> <dict> <key>background</key> <string>#66442222</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77444444</string> <key>settings</key> <dict> <key>background</key> <string>#77444444</string> <key>foreground</key> <string>#B8B8B8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22220066</string> <key>settings</key> <dict> <key>background</key> <string>#22220066</string> <key>foreground</key> <string>#A8A8A8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99331188</string> <key>settings</key> <dict> <key>background</key> <string>#99331188</string> <key>foreground</key> <string>#BFBFBFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99559944</string> <key>settings</key> <dict> <key>background</key> <string>#99559944</string> <key>foreground</key> <string>#C0C0C0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66335588</string> <key>settings</key> <dict> <key>background</key> <string>#66335588</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44881144</string> <key>settings</key> <dict> <key>background</key> <string>#44881144</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22993344</string> <key>settings</key> <dict> <key>background</key> <string>#22993344</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44228855</string> <key>settings</key> <dict> <key>background</key> <string>#44228855</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22772211</string> <key>settings</key> <dict> <key>background</key> <string>#22772211</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77448801</string> <key>settings</key> <dict> <key>background</key> <string>#77448801</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55333301</string> <key>settings</key> <dict> <key>background</key> <string>#55333301</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88668833</string> <key>settings</key> <dict> <key>background</key> <string>#88668833</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88885599</string> <key>settings</key> <dict> <key>background</key> <string>#88885599</string> <key>foreground</key> <string>#E0E0E0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22111199</string> <key>settings</key> <dict> <key>background</key> <string>#22111199</string> <key>foreground</key> <string>#A0A0A0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33665501</string> <key>settings</key> <dict> <key>background</key> <string>#33665501</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33005544</string> <key>settings</key> <dict> <key>background</key> <string>#33005544</string> <key>foreground</key> <string>#A9A9A9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_880011FF</string> <key>settings</key> <dict> <key>background</key> <string>#880011FF</string> <key>foreground</key> <string>#AAAAAAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88880099</string> <key>settings</key> <dict> <key>background</key> <string>#88880099</string> <key>foreground</key> <string>#DBDBDBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66330044</string> <key>settings</key> <dict> <key>background</key> <string>#66330044</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88887755</string> <key>settings</key> <dict> <key>background</key> <string>#88887755</string> <key>foreground</key> <string>#CCCCCCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55884401</string> <key>settings</key> <dict> <key>background</key> <string>#55884401</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22997722</string> <key>settings</key> <dict> <key>background</key> <string>#22997722</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_550055FF</string> <key>settings</key> <dict> <key>background</key> <string>#550055FF</string> <key>foreground</key> <string>#A3A3A3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33774401</string> <key>settings</key> <dict> <key>background</key> <string>#33774401</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99440077</string> <key>settings</key> <dict> <key>background</key> <string>#99440077</string> <key>foreground</key> <string>#C1C1C1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99221177</string> <key>settings</key> <dict> <key>background</key> <string>#99221177</string> <key>foreground</key> <string>#B8B8B8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88442222</string> <key>settings</key> <dict> <key>background</key> <string>#88442222</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88228844</string> <key>settings</key> <dict> <key>background</key> <string>#88228844</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77996601</string> <key>settings</key> <dict> <key>background</key> <string>#77996601</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77886699</string> <key>settings</key> <dict> <key>background</key> <string>#77886699</string> <key>foreground</key> <string>#DFDFDFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99668888</string> <key>settings</key> <dict> <key>background</key> <string>#99668888</string> <key>foreground</key> <string>#D6D6D6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99110088</string> <key>settings</key> <dict> <key>background</key> <string>#99110088</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66446699</string> <key>settings</key> <dict> <key>background</key> <string>#66446699</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66889977</string> <key>settings</key> <dict> <key>background</key> <string>#66889977</string> <key>foreground</key> <string>#D4D4D4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22886633</string> <key>settings</key> <dict> <key>background</key> <string>#22886633</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77220055</string> <key>settings</key> <dict> <key>background</key> <string>#77220055</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66667722</string> <key>settings</key> <dict> <key>background</key> <string>#66667722</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22221111</string> <key>settings</key> <dict> <key>background</key> <string>#22221111</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11999955</string> <key>settings</key> <dict> <key>background</key> <string>#11999955</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77005566</string> <key>settings</key> <dict> <key>background</key> <string>#77005566</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33001111</string> <key>settings</key> <dict> <key>background</key> <string>#33001111</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99880055</string> <key>settings</key> <dict> <key>background</key> <string>#99880055</string> <key>foreground</key> <string>#C9C9C9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11550088</string> <key>settings</key> <dict> <key>background</key> <string>#11550088</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22442222</string> <key>settings</key> <dict> <key>background</key> <string>#22442222</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33551144</string> <key>settings</key> <dict> <key>background</key> <string>#33551144</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55443355</string> <key>settings</key> <dict> <key>background</key> <string>#55443355</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33223366</string> <key>settings</key> <dict> <key>background</key> <string>#33223366</string> <key>foreground</key> <string>#ACACACFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88556611</string> <key>settings</key> <dict> <key>background</key> <string>#88556611</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55446601</string> <key>settings</key> <dict> <key>background</key> <string>#55446601</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55226611</string> <key>settings</key> <dict> <key>background</key> <string>#55226611</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33668855</string> <key>settings</key> <dict> <key>background</key> <string>#33668855</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66550066</string> <key>settings</key> <dict> <key>background</key> <string>#66550066</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77776633</string> <key>settings</key> <dict> <key>background</key> <string>#77776633</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88555577</string> <key>settings</key> <dict> <key>background</key> <string>#88555577</string> <key>foreground</key> <string>#C7C7C7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66332299</string> <key>settings</key> <dict> <key>background</key> <string>#66332299</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77994488</string> <key>settings</key> <dict> <key>background</key> <string>#77994488</string> <key>foreground</key> <string>#DCDCDCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66005599</string> <key>settings</key> <dict> <key>background</key> <string>#66005599</string> <key>foreground</key> <string>#AAAAAAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99669922</string> <key>settings</key> <dict> <key>background</key> <string>#99669922</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33332288</string> <key>settings</key> <dict> <key>background</key> <string>#33332288</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22665533</string> <key>settings</key> <dict> <key>background</key> <string>#22665533</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66996633</string> <key>settings</key> <dict> <key>background</key> <string>#66996633</string> <key>foreground</key> <string>#C0C0C0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55116611</string> <key>settings</key> <dict> <key>background</key> <string>#55116611</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99443388</string> <key>settings</key> <dict> <key>background</key> <string>#99443388</string> <key>foreground</key> <string>#C6C6C6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88226677</string> <key>settings</key> <dict> <key>background</key> <string>#88226677</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88119922</string> <key>settings</key> <dict> <key>background</key> <string>#88119922</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22110001</string> <key>settings</key> <dict> <key>background</key> <string>#22110001</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77660044</string> <key>settings</key> <dict> <key>background</key> <string>#77660044</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55449922</string> <key>settings</key> <dict> <key>background</key> <string>#55449922</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11883311</string> <key>settings</key> <dict> <key>background</key> <string>#11883311</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66882244</string> <key>settings</key> <dict> <key>background</key> <string>#66882244</string> <key>foreground</key> <string>#C0C0C0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22449933</string> <key>settings</key> <dict> <key>background</key> <string>#22449933</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11116633</string> <key>settings</key> <dict> <key>background</key> <string>#11116633</string> <key>foreground</key> <string>#ABABABFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11225555</string> <key>settings</key> <dict> <key>background</key> <string>#11225555</string> <key>foreground</key> <string>#AAAAAAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66666677</string> <key>settings</key> <dict> <key>background</key> <string>#66666677</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55999933</string> <key>settings</key> <dict> <key>background</key> <string>#55999933</string> <key>foreground</key> <string>#C0C0C0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66440055</string> <key>settings</key> <dict> <key>background</key> <string>#66440055</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88007777</string> <key>settings</key> <dict> <key>background</key> <string>#88007777</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55993322</string> <key>settings</key> <dict> <key>background</key> <string>#55993322</string> <key>foreground</key> <string>#B8B8B8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77118811</string> <key>settings</key> <dict> <key>background</key> <string>#77118811</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77882201</string> <key>settings</key> <dict> <key>background</key> <string>#77882201</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55001188</string> <key>settings</key> <dict> <key>background</key> <string>#55001188</string> <key>foreground</key> <string>#A4A4A4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88116611</string> <key>settings</key> <dict> <key>background</key> <string>#88116611</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33006622</string> <key>settings</key> <dict> <key>background</key> <string>#33006622</string> <key>foreground</key> <string>#ACACACFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77997777</string> <key>settings</key> <dict> <key>background</key> <string>#77997777</string> <key>foreground</key> <string>#D9D9D9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11331199</string> <key>settings</key> <dict> <key>background</key> <string>#11331199</string> <key>foreground</key> <string>#A9A9A9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44111111</string> <key>settings</key> <dict> <key>background</key> <string>#44111111</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_883388FF</string> <key>settings</key> <dict> <key>background</key> <string>#883388FF</string> <key>foreground</key> <string>#D6D6D6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99446699</string> <key>settings</key> <dict> <key>background</key> <string>#99446699</string> <key>foreground</key> <string>#CDCDCDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99555501</string> <key>settings</key> <dict> <key>background</key> <string>#99555501</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66448855</string> <key>settings</key> <dict> <key>background</key> <string>#66448855</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77007701</string> <key>settings</key> <dict> <key>background</key> <string>#77007701</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55668877</string> <key>settings</key> <dict> <key>background</key> <string>#55668877</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66336601</string> <key>settings</key> <dict> <key>background</key> <string>#66336601</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44114411</string> <key>settings</key> <dict> <key>background</key> <string>#44114411</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77119955</string> <key>settings</key> <dict> <key>background</key> <string>#77119955</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99886666</string> <key>settings</key> <dict> <key>background</key> <string>#99886666</string> <key>foreground</key> <string>#D3D3D3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33002201</string> <key>settings</key> <dict> <key>background</key> <string>#33002201</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88669901</string> <key>settings</key> <dict> <key>background</key> <string>#88669901</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33883377</string> <key>settings</key> <dict> <key>background</key> <string>#33883377</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55339944</string> <key>settings</key> <dict> <key>background</key> <string>#55339944</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77222233</string> <key>settings</key> <dict> <key>background</key> <string>#77222233</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33225544</string> <key>settings</key> <dict> <key>background</key> <string>#33225544</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55999988</string> <key>settings</key> <dict> <key>background</key> <string>#55999988</string> <key>foreground</key> <string>#DCDCDCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44777711</string> <key>settings</key> <dict> <key>background</key> <string>#44777711</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66337733</string> <key>settings</key> <dict> <key>background</key> <string>#66337733</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77669999</string> <key>settings</key> <dict> <key>background</key> <string>#77669999</string> <key>foreground</key> <string>#D6D6D6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88333311</string> <key>settings</key> <dict> <key>background</key> <string>#88333311</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99004444</string> <key>settings</key> <dict> <key>background</key> <string>#99004444</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44004488</string> <key>settings</key> <dict> <key>background</key> <string>#44004488</string> <key>foreground</key> <string>#A4A4A4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44119922</string> <key>settings</key> <dict> <key>background</key> <string>#44119922</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66004401</string> <key>settings</key> <dict> <key>background</key> <string>#66004401</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99990044</string> <key>settings</key> <dict> <key>background</key> <string>#99990044</string> <key>foreground</key> <string>#C6C6C6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99222288</string> <key>settings</key> <dict> <key>background</key> <string>#99222288</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88223322</string> <key>settings</key> <dict> <key>background</key> <string>#88223322</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55666677</string> <key>settings</key> <dict> <key>background</key> <string>#55666677</string> <key>foreground</key> <string>#C6C6C6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99882299</string> <key>settings</key> <dict> <key>background</key> <string>#99882299</string> <key>foreground</key> <string>#E0E0E0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99888855</string> <key>settings</key> <dict> <key>background</key> <string>#99888855</string> <key>foreground</key> <string>#CECECEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66227701</string> <key>settings</key> <dict> <key>background</key> <string>#66227701</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88222255</string> <key>settings</key> <dict> <key>background</key> <string>#88222255</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_880077FF</string> <key>settings</key> <dict> <key>background</key> <string>#880077FF</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88005555</string> <key>settings</key> <dict> <key>background</key> <string>#88005555</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66222233</string> <key>settings</key> <dict> <key>background</key> <string>#66222233</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77220077</string> <key>settings</key> <dict> <key>background</key> <string>#77220077</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88446699</string> <key>settings</key> <dict> <key>background</key> <string>#88446699</string> <key>foreground</key> <string>#CACACAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55559944</string> <key>settings</key> <dict> <key>background</key> <string>#55559944</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_779977FF</string> <key>settings</key> <dict> <key>background</key> <string>#779977FF</string> <key>foreground</key> <string>#0A0A0AFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99339933</string> <key>settings</key> <dict> <key>background</key> <string>#99339933</string> <key>foreground</key> <string>#B8B8B8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66006633</string> <key>settings</key> <dict> <key>background</key> <string>#66006633</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66999944</string> <key>settings</key> <dict> <key>background</key> <string>#66999944</string> <key>foreground</key> <string>#C7C7C7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66992233</string> <key>settings</key> <dict> <key>background</key> <string>#66992233</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_991177FF</string> <key>settings</key> <dict> <key>background</key> <string>#991177FF</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77006611</string> <key>settings</key> <dict> <key>background</key> <string>#77006611</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22000055</string> <key>settings</key> <dict> <key>background</key> <string>#22000055</string> <key>foreground</key> <string>#A2A2A2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77884433</string> <key>settings</key> <dict> <key>background</key> <string>#77884433</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77116644</string> <key>settings</key> <dict> <key>background</key> <string>#77116644</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88663388</string> <key>settings</key> <dict> <key>background</key> <string>#88663388</string> <key>foreground</key> <string>#CECECEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99115511</string> <key>settings</key> <dict> <key>background</key> <string>#99115511</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66116688</string> <key>settings</key> <dict> <key>background</key> <string>#66116688</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66224455</string> <key>settings</key> <dict> <key>background</key> <string>#66224455</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88883355</string> <key>settings</key> <dict> <key>background</key> <string>#88883355</string> <key>foreground</key> <string>#C9C9C9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11888801</string> <key>settings</key> <dict> <key>background</key> <string>#11888801</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_881199FF</string> <key>settings</key> <dict> <key>background</key> <string>#881199FF</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88990022</string> <key>settings</key> <dict> <key>background</key> <string>#88990022</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99227722</string> <key>settings</key> <dict> <key>background</key> <string>#99227722</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11117766</string> <key>settings</key> <dict> <key>background</key> <string>#11117766</string> <key>foreground</key> <string>#A7A7A7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44119933</string> <key>settings</key> <dict> <key>background</key> <string>#44119933</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44008801</string> <key>settings</key> <dict> <key>background</key> <string>#44008801</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44992211</string> <key>settings</key> <dict> <key>background</key> <string>#44992211</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88776644</string> <key>settings</key> <dict> <key>background</key> <string>#88776644</string> <key>foreground</key> <string>#C3C3C3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99000011</string> <key>settings</key> <dict> <key>background</key> <string>#99000011</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88552266</string> <key>settings</key> <dict> <key>background</key> <string>#88552266</string> <key>foreground</key> <string>#C2C2C2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88995566</string> <key>settings</key> <dict> <key>background</key> <string>#88995566</string> <key>foreground</key> <string>#D4D4D4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77335566</string> <key>settings</key> <dict> <key>background</key> <string>#77335566</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33668822</string> <key>settings</key> <dict> <key>background</key> <string>#33668822</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99558855</string> <key>settings</key> <dict> <key>background</key> <string>#99558855</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88002201</string> <key>settings</key> <dict> <key>background</key> <string>#88002201</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55000055</string> <key>settings</key> <dict> <key>background</key> <string>#55000055</string> <key>foreground</key> <string>#A7A7A7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77228844</string> <key>settings</key> <dict> <key>background</key> <string>#77228844</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33888811</string> <key>settings</key> <dict> <key>background</key> <string>#33888811</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88226699</string> <key>settings</key> <dict> <key>background</key> <string>#88226699</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99444444</string> <key>settings</key> <dict> <key>background</key> <string>#99444444</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55994477</string> <key>settings</key> <dict> <key>background</key> <string>#55994477</string> <key>foreground</key> <string>#D2D2D2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_222288FF</string> <key>settings</key> <dict> <key>background</key> <string>#222288FF</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_447788FF</string> <key>settings</key> <dict> <key>background</key> <string>#447788FF</string> <key>foreground</key> <string>#E9E9E9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77114422</string> <key>settings</key> <dict> <key>background</key> <string>#77114422</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_992222FF</string> <key>settings</key> <dict> <key>background</key> <string>#992222FF</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44886601</string> <key>settings</key> <dict> <key>background</key> <string>#44886601</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88447777</string> <key>settings</key> <dict> <key>background</key> <string>#88447777</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33337777</string> <key>settings</key> <dict> <key>background</key> <string>#33337777</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66774444</string> <key>settings</key> <dict> <key>background</key> <string>#66774444</string> <key>foreground</key> <string>#BFBFBFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77774422</string> <key>settings</key> <dict> <key>background</key> <string>#77774422</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55009999</string> <key>settings</key> <dict> <key>background</key> <string>#55009999</string> <key>foreground</key> <string>#ACACACFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88446611</string> <key>settings</key> <dict> <key>background</key> <string>#88446611</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66330022</string> <key>settings</key> <dict> <key>background</key> <string>#66330022</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99227744</string> <key>settings</key> <dict> <key>background</key> <string>#99227744</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99445588</string> <key>settings</key> <dict> <key>background</key> <string>#99445588</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77008866</string> <key>settings</key> <dict> <key>background</key> <string>#77008866</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55005501</string> <key>settings</key> <dict> <key>background</key> <string>#55005501</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88334477</string> <key>settings</key> <dict> <key>background</key> <string>#88334477</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33883355</string> <key>settings</key> <dict> <key>background</key> <string>#33883355</string> <key>foreground</key> <string>#C1C1C1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88116644</string> <key>settings</key> <dict> <key>background</key> <string>#88116644</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11002299</string> <key>settings</key> <dict> <key>background</key> <string>#11002299</string> <key>foreground</key> <string>#989898FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66226611</string> <key>settings</key> <dict> <key>background</key> <string>#66226611</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44330033</string> <key>settings</key> <dict> <key>background</key> <string>#44330033</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88448811</string> <key>settings</key> <dict> <key>background</key> <string>#88448811</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77116666</string> <key>settings</key> <dict> <key>background</key> <string>#77116666</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66009977</string> <key>settings</key> <dict> <key>background</key> <string>#66009977</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22337788</string> <key>settings</key> <dict> <key>background</key> <string>#22337788</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_880044FF</string> <key>settings</key> <dict> <key>background</key> <string>#880044FF</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77229911</string> <key>settings</key> <dict> <key>background</key> <string>#77229911</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77884422</string> <key>settings</key> <dict> <key>background</key> <string>#77884422</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44661155</string> <key>settings</key> <dict> <key>background</key> <string>#44661155</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44770044</string> <key>settings</key> <dict> <key>background</key> <string>#44770044</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_882222FF</string> <key>settings</key> <dict> <key>background</key> <string>#882222FF</string> <key>foreground</key> <string>#C0C0C0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77008888</string> <key>settings</key> <dict> <key>background</key> <string>#77008888</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55110033</string> <key>settings</key> <dict> <key>background</key> <string>#55110033</string> <key>foreground</key> <string>#ACACACFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77003399</string> <key>settings</key> <dict> <key>background</key> <string>#77003399</string> <key>foreground</key> <string>#ABABABFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88551122</string> <key>settings</key> <dict> <key>background</key> <string>#88551122</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_669988FF</string> <key>settings</key> <dict> <key>background</key> <string>#669988FF</string> <key>foreground</key> <string>#070707FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_991188FF</string> <key>settings</key> <dict> <key>background</key> <string>#991188FF</string> <key>foreground</key> <string>#C7C7C7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77226666</string> <key>settings</key> <dict> <key>background</key> <string>#77226666</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88337744</string> <key>settings</key> <dict> <key>background</key> <string>#88337744</string> <key>foreground</key> <string>#B8B8B8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33223377</string> <key>settings</key> <dict> <key>background</key> <string>#33223377</string> <key>foreground</key> <string>#ACACACFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11996699</string> <key>settings</key> <dict> <key>background</key> <string>#11996699</string> <key>foreground</key> <string>#D2D2D2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77885599</string> <key>settings</key> <dict> <key>background</key> <string>#77885599</string> <key>foreground</key> <string>#DDDDDDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55999901</string> <key>settings</key> <dict> <key>background</key> <string>#55999901</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11773322</string> <key>settings</key> <dict> <key>background</key> <string>#11773322</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99006688</string> <key>settings</key> <dict> <key>background</key> <string>#99006688</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11998844</string> <key>settings</key> <dict> <key>background</key> <string>#11998844</string> <key>foreground</key> <string>#BFBFBFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88778855</string> <key>settings</key> <dict> <key>background</key> <string>#88778855</string> <key>foreground</key> <string>#C9C9C9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77771166</string> <key>settings</key> <dict> <key>background</key> <string>#77771166</string> <key>foreground</key> <string>#C7C7C7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22887701</string> <key>settings</key> <dict> <key>background</key> <string>#22887701</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66229922</string> <key>settings</key> <dict> <key>background</key> <string>#66229922</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55448855</string> <key>settings</key> <dict> <key>background</key> <string>#55448855</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99115566</string> <key>settings</key> <dict> <key>background</key> <string>#99115566</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66334477</string> <key>settings</key> <dict> <key>background</key> <string>#66334477</string> <key>foreground</key> <string>#B8B8B8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77338877</string> <key>settings</key> <dict> <key>background</key> <string>#77338877</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_889977FF</string> <key>settings</key> <dict> <key>background</key> <string>#889977FF</string> <key>foreground</key> <string>#101010FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66991155</string> <key>settings</key> <dict> <key>background</key> <string>#66991155</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55992277</string> <key>settings</key> <dict> <key>background</key> <string>#55992277</string> <key>foreground</key> <string>#D0D0D0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66889933</string> <key>settings</key> <dict> <key>background</key> <string>#66889933</string> <key>foreground</key> <string>#BFBFBFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88000055</string> <key>settings</key> <dict> <key>background</key> <string>#88000055</string> <key>foreground</key> <string>#ACACACFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33997788</string> <key>settings</key> <dict> <key>background</key> <string>#33997788</string> <key>foreground</key> <string>#D5D5D5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_995599FF</string> <key>settings</key> <dict> <key>background</key> <string>#995599FF</string> <key>foreground</key> <string>#F1F1F1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55336622</string> <key>settings</key> <dict> <key>background</key> <string>#55336622</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66334422</string> <key>settings</key> <dict> <key>background</key> <string>#66334422</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77110022</string> <key>settings</key> <dict> <key>background</key> <string>#77110022</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88446688</string> <key>settings</key> <dict> <key>background</key> <string>#88446688</string> <key>foreground</key> <string>#C7C7C7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66880001</string> <key>settings</key> <dict> <key>background</key> <string>#66880001</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99888811</string> <key>settings</key> <dict> <key>background</key> <string>#99888811</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_338844FF</string> <key>settings</key> <dict> <key>background</key> <string>#338844FF</string> <key>foreground</key> <string>#E6E6E6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22331111</string> <key>settings</key> <dict> <key>background</key> <string>#22331111</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55553311</string> <key>settings</key> <dict> <key>background</key> <string>#55553311</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44666677</string> <key>settings</key> <dict> <key>background</key> <string>#44666677</string> <key>foreground</key> <string>#C3C3C3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77774455</string> <key>settings</key> <dict> <key>background</key> <string>#77774455</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55996601</string> <key>settings</key> <dict> <key>background</key> <string>#55996601</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66330099</string> <key>settings</key> <dict> <key>background</key> <string>#66330099</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_332222FF</string> <key>settings</key> <dict> <key>background</key> <string>#332222FF</string> <key>foreground</key> <string>#A7A7A7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66559933</string> <key>settings</key> <dict> <key>background</key> <string>#66559933</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99220055</string> <key>settings</key> <dict> <key>background</key> <string>#99220055</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22889977</string> <key>settings</key> <dict> <key>background</key> <string>#22889977</string> <key>foreground</key> <string>#CBCBCBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_336600FF</string> <key>settings</key> <dict> <key>background</key> <string>#336600FF</string> <key>foreground</key> <string>#CBCBCBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44221101</string> <key>settings</key> <dict> <key>background</key> <string>#44221101</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33994466</string> <key>settings</key> <dict> <key>background</key> <string>#33994466</string> <key>foreground</key> <string>#C9C9C9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66555599</string> <key>settings</key> <dict> <key>background</key> <string>#66555599</string> <key>foreground</key> <string>#C8C8C8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99006677</string> <key>settings</key> <dict> <key>background</key> <string>#99006677</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33335533</string> <key>settings</key> <dict> <key>background</key> <string>#33335533</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88772244</string> <key>settings</key> <dict> <key>background</key> <string>#88772244</string> <key>foreground</key> <string>#C1C1C1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99116666</string> <key>settings</key> <dict> <key>background</key> <string>#99116666</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88229966</string> <key>settings</key> <dict> <key>background</key> <string>#88229966</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77112211</string> <key>settings</key> <dict> <key>background</key> <string>#77112211</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_440077FF</string> <key>settings</key> <dict> <key>background</key> <string>#440077FF</string> <key>foreground</key> <string>#A1A1A1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88220033</string> <key>settings</key> <dict> <key>background</key> <string>#88220033</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77338888</string> <key>settings</key> <dict> <key>background</key> <string>#77338888</string> <key>foreground</key> <string>#C1C1C1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66880055</string> <key>settings</key> <dict> <key>background</key> <string>#66880055</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77112288</string> <key>settings</key> <dict> <key>background</key> <string>#77112288</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11333301</string> <key>settings</key> <dict> <key>background</key> <string>#11333301</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55118888</string> <key>settings</key> <dict> <key>background</key> <string>#55118888</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33117799</string> <key>settings</key> <dict> <key>background</key> <string>#33117799</string> <key>foreground</key> <string>#AAAAAAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44889966</string> <key>settings</key> <dict> <key>background</key> <string>#44889966</string> <key>foreground</key> <string>#CBCBCBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55229955</string> <key>settings</key> <dict> <key>background</key> <string>#55229955</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88886644</string> <key>settings</key> <dict> <key>background</key> <string>#88886644</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66773355</string> <key>settings</key> <dict> <key>background</key> <string>#66773355</string> <key>foreground</key> <string>#C2C2C2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55228899</string> <key>settings</key> <dict> <key>background</key> <string>#55228899</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33009955</string> <key>settings</key> <dict> <key>background</key> <string>#33009955</string> <key>foreground</key> <string>#AAAAAAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88888822</string> <key>settings</key> <dict> <key>background</key> <string>#88888822</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77331166</string> <key>settings</key> <dict> <key>background</key> <string>#77331166</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88224488</string> <key>settings</key> <dict> <key>background</key> <string>#88224488</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77995501</string> <key>settings</key> <dict> <key>background</key> <string>#77995501</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99557744</string> <key>settings</key> <dict> <key>background</key> <string>#99557744</string> <key>foreground</key> <string>#BFBFBFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88887733</string> <key>settings</key> <dict> <key>background</key> <string>#88887733</string> <key>foreground</key> <string>#C0C0C0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77220022</string> <key>settings</key> <dict> <key>background</key> <string>#77220022</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77225501</string> <key>settings</key> <dict> <key>background</key> <string>#77225501</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99441166</string> <key>settings</key> <dict> <key>background</key> <string>#99441166</string> <key>foreground</key> <string>#BFBFBFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33004488</string> <key>settings</key> <dict> <key>background</key> <string>#33004488</string> <key>foreground</key> <string>#A2A2A2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77992266</string> <key>settings</key> <dict> <key>background</key> <string>#77992266</string> <key>foreground</key> <string>#CFCFCFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66665501</string> <key>settings</key> <dict> <key>background</key> <string>#66665501</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77113399</string> <key>settings</key> <dict> <key>background</key> <string>#77113399</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22444422</string> <key>settings</key> <dict> <key>background</key> <string>#22444422</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77005588</string> <key>settings</key> <dict> <key>background</key> <string>#77005588</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_668811FF</string> <key>settings</key> <dict> <key>background</key> <string>#668811FF</string> <key>foreground</key> <string>#F0F0F0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77446677</string> <key>settings</key> <dict> <key>background</key> <string>#77446677</string> <key>foreground</key> <string>#C1C1C1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88227744</string> <key>settings</key> <dict> <key>background</key> <string>#88227744</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55772266</string> <key>settings</key> <dict> <key>background</key> <string>#55772266</string> <key>foreground</key> <string>#C3C3C3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44995533</string> <key>settings</key> <dict> <key>background</key> <string>#44995533</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66333366</string> <key>settings</key> <dict> <key>background</key> <string>#66333366</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66115533</string> <key>settings</key> <dict> <key>background</key> <string>#66115533</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22660055</string> <key>settings</key> <dict> <key>background</key> <string>#22660055</string> <key>foreground</key> <string>#B6B6B6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99003355</string> <key>settings</key> <dict> <key>background</key> <string>#99003355</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_115588FF</string> <key>settings</key> <dict> <key>background</key> <string>#115588FF</string> <key>foreground</key> <string>#C6C6C6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77773311</string> <key>settings</key> <dict> <key>background</key> <string>#77773311</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77333355</string> <key>settings</key> <dict> <key>background</key> <string>#77333355</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77552255</string> <key>settings</key> <dict> <key>background</key> <string>#77552255</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66887711</string> <key>settings</key> <dict> <key>background</key> <string>#66887711</string> <key>foreground</key> <string>#B4B4B4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22664401</string> <key>settings</key> <dict> <key>background</key> <string>#22664401</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77559999</string> <key>settings</key> <dict> <key>background</key> <string>#77559999</string> <key>foreground</key> <string>#D0D0D0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66888833</string> <key>settings</key> <dict> <key>background</key> <string>#66888833</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66117788</string> <key>settings</key> <dict> <key>background</key> <string>#66117788</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11772288</string> <key>settings</key> <dict> <key>background</key> <string>#11772288</string> <key>foreground</key> <string>#C0C0C0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22774488</string> <key>settings</key> <dict> <key>background</key> <string>#22774488</string> <key>foreground</key> <string>#C4C4C4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88335501</string> <key>settings</key> <dict> <key>background</key> <string>#88335501</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_773300FF</string> <key>settings</key> <dict> <key>background</key> <string>#773300FF</string> <key>foreground</key> <string>#C1C1C1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11660033</string> <key>settings</key> <dict> <key>background</key> <string>#11660033</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33330066</string> <key>settings</key> <dict> <key>background</key> <string>#33330066</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66997744</string> <key>settings</key> <dict> <key>background</key> <string>#66997744</string> <key>foreground</key> <string>#C6C6C6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77114455</string> <key>settings</key> <dict> <key>background</key> <string>#77114455</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11007788</string> <key>settings</key> <dict> <key>background</key> <string>#11007788</string> <key>foreground</key> <string>#9F9F9FFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77667733</string> <key>settings</key> <dict> <key>background</key> <string>#77667733</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77111133</string> <key>settings</key> <dict> <key>background</key> <string>#77111133</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77449933</string> <key>settings</key> <dict> <key>background</key> <string>#77449933</string> <key>foreground</key> <string>#B8B8B8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77771122</string> <key>settings</key> <dict> <key>background</key> <string>#77771122</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_449999FF</string> <key>settings</key> <dict> <key>background</key> <string>#449999FF</string> <key>foreground</key> <string>#FFFFFFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22449901</string> <key>settings</key> <dict> <key>background</key> <string>#22449901</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99119988</string> <key>settings</key> <dict> <key>background</key> <string>#99119988</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88111101</string> <key>settings</key> <dict> <key>background</key> <string>#88111101</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66226644</string> <key>settings</key> <dict> <key>background</key> <string>#66226644</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22992266</string> <key>settings</key> <dict> <key>background</key> <string>#22992266</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66775599</string> <key>settings</key> <dict> <key>background</key> <string>#66775599</string> <key>foreground</key> <string>#D4D4D4FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66552211</string> <key>settings</key> <dict> <key>background</key> <string>#66552211</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77991199</string> <key>settings</key> <dict> <key>background</key> <string>#77991199</string> <key>foreground</key> <string>#DFDFDFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88009911</string> <key>settings</key> <dict> <key>background</key> <string>#88009911</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22770022</string> <key>settings</key> <dict> <key>background</key> <string>#22770022</string> <key>foreground</key> <string>#B3B3B3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55667788</string> <key>settings</key> <dict> <key>background</key> <string>#55667788</string> <key>foreground</key> <string>#CACACAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66441101</string> <key>settings</key> <dict> <key>background</key> <string>#66441101</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77330099</string> <key>settings</key> <dict> <key>background</key> <string>#77330099</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88003344</string> <key>settings</key> <dict> <key>background</key> <string>#88003344</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55997733</string> <key>settings</key> <dict> <key>background</key> <string>#55997733</string> <key>foreground</key> <string>#BFBFBFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55887744</string> <key>settings</key> <dict> <key>background</key> <string>#55887744</string> <key>foreground</key> <string>#C2C2C2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66774433</string> <key>settings</key> <dict> <key>background</key> <string>#66774433</string> <key>foreground</key> <string>#BBBBBBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33223311</string> <key>settings</key> <dict> <key>background</key> <string>#33223311</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99994401</string> <key>settings</key> <dict> <key>background</key> <string>#99994401</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88880055</string> <key>settings</key> <dict> <key>background</key> <string>#88880055</string> <key>foreground</key> <string>#C7C7C7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66771101</string> <key>settings</key> <dict> <key>background</key> <string>#66771101</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55005588</string> <key>settings</key> <dict> <key>background</key> <string>#55005588</string> <key>foreground</key> <string>#A8A8A8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33117733</string> <key>settings</key> <dict> <key>background</key> <string>#33117733</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88993322</string> <key>settings</key> <dict> <key>background</key> <string>#88993322</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22664444</string> <key>settings</key> <dict> <key>background</key> <string>#22664444</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44222299</string> <key>settings</key> <dict> <key>background</key> <string>#44222299</string> <key>foreground</key> <string>#ADADADFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44338877</string> <key>settings</key> <dict> <key>background</key> <string>#44338877</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_333388FF</string> <key>settings</key> <dict> <key>background</key> <string>#333388FF</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66002255</string> <key>settings</key> <dict> <key>background</key> <string>#66002255</string> <key>foreground</key> <string>#AAAAAAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66113301</string> <key>settings</key> <dict> <key>background</key> <string>#66113301</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88448888</string> <key>settings</key> <dict> <key>background</key> <string>#88448888</string> <key>foreground</key> <string>#C9C9C9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22552222</string> <key>settings</key> <dict> <key>background</key> <string>#22552222</string> <key>foreground</key> <string>#B1B1B1FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33779911</string> <key>settings</key> <dict> <key>background</key> <string>#33779911</string> <key>foreground</key> <string>#B2B2B2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11996688</string> <key>settings</key> <dict> <key>background</key> <string>#11996688</string> <key>foreground</key> <string>#CECECEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77443355</string> <key>settings</key> <dict> <key>background</key> <string>#77443355</string> <key>foreground</key> <string>#BABABAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99889901</string> <key>settings</key> <dict> <key>background</key> <string>#99889901</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_884488FF</string> <key>settings</key> <dict> <key>background</key> <string>#884488FF</string> <key>foreground</key> <string>#E0E0E0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99996633</string> <key>settings</key> <dict> <key>background</key> <string>#99996633</string> <key>foreground</key> <string>#C3C3C3FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44332244</string> <key>settings</key> <dict> <key>background</key> <string>#44332244</string> <key>foreground</key> <string>#B0B0B0FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77558801</string> <key>settings</key> <dict> <key>background</key> <string>#77558801</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66664444</string> <key>settings</key> <dict> <key>background</key> <string>#66664444</string> <key>foreground</key> <string>#BCBCBCFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66667755</string> <key>settings</key> <dict> <key>background</key> <string>#66667755</string> <key>foreground</key> <string>#C2C2C2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66118801</string> <key>settings</key> <dict> <key>background</key> <string>#66118801</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_992255FF</string> <key>settings</key> <dict> <key>background</key> <string>#992255FF</string> <key>foreground</key> <string>#CBCBCBFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_22111133</string> <key>settings</key> <dict> <key>background</key> <string>#22111133</string> <key>foreground</key> <string>#AAAAAAFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44773377</string> <key>settings</key> <dict> <key>background</key> <string>#44773377</string> <key>foreground</key> <string>#C5C5C5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55447777</string> <key>settings</key> <dict> <key>background</key> <string>#55447777</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44991122</string> <key>settings</key> <dict> <key>background</key> <string>#44991122</string> <key>foreground</key> <string>#B7B7B7FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11557777</string> <key>settings</key> <dict> <key>background</key> <string>#11557777</string> <key>foreground</key> <string>#B9B9B9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44887788</string> <key>settings</key> <dict> <key>background</key> <string>#44887788</string> <key>foreground</key> <string>#D2D2D2FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88228888</string> <key>settings</key> <dict> <key>background</key> <string>#88228888</string> <key>foreground</key> <string>#BEBEBEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_11225588</string> <key>settings</key> <dict> <key>background</key> <string>#11225588</string> <key>foreground</key> <string>#A8A8A8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77886655</string> <key>settings</key> <dict> <key>background</key> <string>#77886655</string> <key>foreground</key> <string>#C9C9C9FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_44554401</string> <key>settings</key> <dict> <key>background</key> <string>#44554401</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99331133</string> <key>settings</key> <dict> <key>background</key> <string>#99331133</string> <key>foreground</key> <string>#B5B5B5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33000001</string> <key>settings</key> <dict> <key>background</key> <string>#33000001</string> <key>foreground</key> <string>#AEAEAEFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_77661177</string> <key>settings</key> <dict> <key>background</key> <string>#77661177</string> <key>foreground</key> <string>#C6C6C6FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33001155</string> <key>settings</key> <dict> <key>background</key> <string>#33001155</string> <key>foreground</key> <string>#A5A5A5FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_55113399</string> <key>settings</key> <dict> <key>background</key> <string>#55113399</string> <key>foreground</key> <string>#ABABABFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88227788</string> <key>settings</key> <dict> <key>background</key> <string>#88227788</string> <key>foreground</key> <string>#BDBDBDFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_99559901</string> <key>settings</key> <dict> <key>background</key> <string>#99559901</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_66447744</string> <key>settings</key> <dict> <key>background</key> <string>#66447744</string> <key>foreground</key> <string>#B8B8B8FF</string> </dict> </dict> <dict> <key>scope</key> <string>col_33226622</string> <key>settings</key> <dict> <key>background</key> <string>#33226622</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key> <string>col_88006622</string> <key>settings</key> <dict> <key>background</key> <string>#88006622</string> <key>foreground</key> <string>#AFAFAFFF</string> </dict> </dict> <dict> <key>scope</key>
21,384
https://github.com/esoha-nvidia/tpcx-bb/blob/master/tpcx_bb/queries/q05/tpcx_bb_query_05_sql.py
Github Open Source
Open Source
Apache-2.0
null
tpcx-bb
esoha-nvidia
Python
Code
588
1,844
# # Copyright (c) 2019-2020, NVIDIA CORPORATION. # Copyright (c) 2019-2020, BlazingSQL, 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. # import sys from blazingsql import BlazingContext from xbb_tools.cluster_startup import attach_to_cluster from dask_cuda import LocalCUDACluster from dask.distributed import Client, wait from dask import delayed import os from xbb_tools.utils import ( benchmark, tpcxbb_argparser, run_query, ) from xbb_tools.cupy_metrics import cupy_conf_mat, cupy_precision_score from sklearn.metrics import roc_auc_score import cupy as cp # Logistic Regression params # solver = "LBFGS" Used by passing `penalty=None` or "l2" # step_size = 1 Not used # numCorrections = 10 Not used iterations = 100 C = 10_000 # reg_lambda = 0 hence C for model is a large value convergence_tol = 1e-9 def read_tables(data_dir, bc): bc.create_table("web_clickstreams", data_dir + "web_clickstreams/*.parquet") bc.create_table("customer", data_dir + "customer/*.parquet") bc.create_table("item", data_dir + "item/*.parquet") bc.create_table( "customer_demographics", data_dir + "customer_demographics/*.parquet" ) def build_and_predict_model(ml_input_df): """ Create a standardized feature matrix X and target array y. Returns the model and accuracy statistics """ import cuml feature_names = ["college_education", "male"] + [ "clicks_in_%d" % i for i in range(1, 8) ] X = ml_input_df[feature_names] # Standardize input matrix X = (X - X.mean()) / X.std() y = ml_input_df["clicks_in_category"] model = cuml.LogisticRegression( tol=convergence_tol, penalty="none", solver="qn", fit_intercept=True, max_iter=iterations, C=C, ) model.fit(X, y) # # Predict and evaluate accuracy # (Should be 1.0) at SF-1 # results_dict = {} y_pred = model.predict(X) results_dict["auc"] = roc_auc_score(y.to_array(), y_pred.to_array()) results_dict["precision"] = cupy_precision_score(cp.asarray(y), cp.asarray(y_pred)) results_dict["confusion_matrix"] = cupy_conf_mat(cp.asarray(y), cp.asarray(y_pred)) results_dict["output_type"] = "supervised" return results_dict def main(data_dir, client, bc, config): benchmark(read_tables, data_dir, bc, dask_profile=config["dask_profile"]) query = """ SELECT --wcs_user_sk, clicks_in_category, CASE WHEN cd_education_status IN ('Advanced Degree', 'College', '4 yr Degree', '2 yr Degree') THEN 1 ELSE 0 END AS college_education, CASE WHEN cd_gender = 'M' THEN 1 ELSE 0 END AS male, clicks_in_1, clicks_in_2, clicks_in_3, clicks_in_4, clicks_in_5, clicks_in_6, clicks_in_7 FROM ( SELECT wcs_user_sk, SUM( CASE WHEN i_category = 'Books' THEN 1 ELSE 0 END) AS clicks_in_category, SUM( CASE WHEN i_category_id = 1 THEN 1 ELSE 0 END) AS clicks_in_1, SUM( CASE WHEN i_category_id = 2 THEN 1 ELSE 0 END) AS clicks_in_2, SUM( CASE WHEN i_category_id = 3 THEN 1 ELSE 0 END) AS clicks_in_3, SUM( CASE WHEN i_category_id = 4 THEN 1 ELSE 0 END) AS clicks_in_4, SUM( CASE WHEN i_category_id = 5 THEN 1 ELSE 0 END) AS clicks_in_5, SUM( CASE WHEN i_category_id = 6 THEN 1 ELSE 0 END) AS clicks_in_6, SUM( CASE WHEN i_category_id = 7 THEN 1 ELSE 0 END) AS clicks_in_7 FROM web_clickstreams INNER JOIN item it ON ( wcs_item_sk = i_item_sk AND wcs_user_sk IS NOT NULL ) GROUP BY wcs_user_sk ) q05_user_clicks_in_cat INNER JOIN customer ct ON wcs_user_sk = c_customer_sk INNER JOIN customer_demographics ON c_current_cdemo_sk = cd_demo_sk """ cust_and_clicks_ddf = bc.sql(query) cust_and_clicks_ddf = cust_and_clicks_ddf.repartition(npartitions=1) # Convert clicks_in_category to a binary label cust_and_clicks_ddf["clicks_in_category"] = ( cust_and_clicks_ddf["clicks_in_category"] > cust_and_clicks_ddf["clicks_in_category"].mean() ).astype("int64") # Converting the dataframe to float64 as cuml logistic reg requires this ml_input_df = cust_and_clicks_ddf.astype("float64") ml_input_df = ml_input_df.persist() wait(ml_input_df) ml_tasks = [delayed(build_and_predict_model)(df) for df in ml_input_df.to_delayed()] results_dict = client.compute(*ml_tasks, sync=True) return results_dict if __name__ == "__main__": config = tpcxbb_argparser() client, bc = attach_to_cluster(config, create_blazing_context=True) run_query(config=config, client=client, query_func=main, blazing_context=bc)
34,112
https://github.com/abhijithvijayan/ts-utils/blob/master/tests/isBrowser.test.ts
Github Open Source
Open Source
MIT
2,021
ts-utils
abhijithvijayan
TypeScript
Code
22
56
import {isBrowser} from '../source'; describe('Tests for isBrowser()', () => { it('should return false for node.js runtime', () => { expect(isBrowser()).toEqual(false); }); });
44,190
https://github.com/Shivam010/slice/blob/master/templates/_SimpleType/last.go
Github Open Source
Open Source
MIT
2,022
slice
Shivam010
Go
Code
32
93
package __SimpleType func Last(slice []_SimpleType) (res _SimpleType) { if len(slice) == 0 { return } res = slice[len(slice) - 1] return } func (c *chain) Last() *chain { return &chain{value: []_SimpleType{Last(c.value)}} }
7,274
https://github.com/biobankinguk/biobankinguk/blob/master/lib/Core/Submissions/Types/CacheKeys.cs
Github Open Source
Open Source
MIT
2,023
biobankinguk
biobankinguk
C#
Code
70
166
namespace Biobanks.Submissions.Types { public static class CacheKeys { public static string MaterialTypes = "MaterialTypes"; public static string Organisations = "Organisations"; public static string SampleContentMethods = "SampleContentMethods"; public static string Sexes = "Sexes"; public static string SnomedTags = "SnomedTags"; public static string OntologyTerms = "OntologyTerms"; public static string StorageTemperatures = "StorageTemperatures"; public static string TreatmentLocations = "TreatmentLocations"; public static string Ontologies = "Ontologies"; public static string PreservationTypes = "PreservationTypes"; } }
33,704
https://github.com/Nayed/jsonvalide/blob/master/main.js
Github Open Source
Open Source
MIT
null
jsonvalide
Nayed
JavaScript
Code
14
51
import React from 'react' import ReactDOM from 'react-dom' import ReactApp from './components/ReactApp.jsx' ReactDOM.render(<ReactApp/>, document.getElementById('app'))
2,513
https://github.com/tianjuan/focalboard/blob/master/webapp/src/widgets/editableDayPicker.tsx
Github Open Source
Open Source
Apache-2.0
2,021
focalboard
tianjuan
TypeScript
Code
170
585
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. import React, {useState} from 'react' import {useIntl} from 'react-intl' import DayPickerInput from 'react-day-picker/DayPickerInput' import MomentLocaleUtils from 'react-day-picker/moment' import 'react-day-picker/lib/style.css' import './editableDayPicker.scss' type Props = { className: string value: string dateFormat: string onChange: (value: string | undefined) => void } const loadedLocales: Record<string, any> = {} function EditableDayPicker(props: Props): JSX.Element { const {className, onChange, dateFormat} = props const intl = useIntl() const [value, setValue] = useState(props.value ? new Date(parseInt(props.value, 10)) : undefined) const locale = intl.locale.toLowerCase() if (locale && locale !== 'en' && !loadedLocales[locale]) { /* eslint-disable global-require */ loadedLocales[locale] = require(`moment/locale/${locale}`) /* eslint-disable global-require */ } const saveSelection = () => onChange(value?.getTime().toString()) return ( <div className={'EditableDayPicker ' + className}> <DayPickerInput value={value} onDayChange={(day: any) => setValue(day)} onDayPickerHide={saveSelection} inputProps={{ onKeyUp: (e: KeyboardEvent) => { if (e.key === 'Enter') { saveSelection() } }, }} dayPickerProps={{ locale, localeUtils: MomentLocaleUtils, todayButton: intl.formatMessage({id: 'EditableDayPicker.today', defaultMessage: 'Today'}), }} formatDate={MomentLocaleUtils.formatDate} parseDate={MomentLocaleUtils.parseDate} format={dateFormat} placeholder={`${MomentLocaleUtils.formatDate(new Date(), dateFormat, locale)}`} /> </div> ) } export default EditableDayPicker
18,532
https://github.com/andmorefine/go-test/blob/master/test-7/p337/main.go
Github Open Source
Open Source
MIT
null
go-test
andmorefine
Go
Code
61
225
package main import ( "encoding/json" "fmt" "log" "time" ) type User struct { Id int Name string Email string Created time.Time } func main() { /* User型に対応したJSON文字列 */ src := ` { "Id":12, "Name":"田中花子", "Email":"tanaka@example.com", "Created":"2015-12-02T10:00:00.000000000+09:00" } ` /* User型の初期化 */ u := new(User) /* JSONデコード */ err := json.Unmarshal([]byte(src), u) if err != nil { log.Fatal(err) } fmt.Printf("%+v\n", u) }
34,803
https://github.com/TaylanUB/scheme-srfis/blob/master/srfi/67.sld
Github Open Source
Open Source
MIT
2,021
scheme-srfis
TaylanUB
Scheme
Code
190
770
(define-library (srfi 67) (export </<=? </<? <=/<=? <=/<? <=? <? =? >/>=? >/>? >=/>=? >=/>? >=? >? boolean-compare chain<=? chain<? chain=? chain>=? chain>? char-compare char-compare-ci compare-by< compare-by<= compare-by=/< compare-by=/> compare-by> compare-by>= complex-compare cond-compare debug-compare default-compare if-not=? if3 if<=? if<? if=? if>=? if>? integer-compare kth-largest list-compare list-compare-as-vector max-compare min-compare not=? number-compare pair-compare pair-compare-car pair-compare-cdr pairwise-not=? rational-compare real-compare refine-compare select-compare symbol-compare vector-compare vector-compare-as-list bytevector-compare bytevector-compare-as-list ) (import (scheme base) (scheme case-lambda) (scheme char) (scheme complex) (srfi 27)) (include "67.upstream.scm") (begin (define (bytevector-compare bv1 bv2) (let ((len1 (bytevector-length bv1)) (len2 (bytevector-length bv2))) (cond ((< len1 len2) -1) ((> len1 len2) +1) (else (let lp ((i 0)) (if (= i len1) 0 (let ((b1 (bytevector-u8-ref bv1 i)) (b2 (bytevector-u8-ref bv2 i))) (cond ((< b1 b2) -1) ((> b1 b2) +1) (else (lp (+ 1 i))))))))))) (define (bytevector-compare-as-list bv1 bv2) (let ((len1 (bytevector-length bv1)) (len2 (bytevector-length bv2))) (let lp ((i 0)) (cond ((or (= i len1) (= i len2)) (cond ((< len1 len2) -1) ((> len1 len2) +1) (else 0))) (else (let ((b1 (bytevector-u8-ref bv1 i)) (b2 (bytevector-u8-ref bv2 i))) (cond ((< b1 b2) -1) ((> b1 b2) +1) (else (lp (+ 1 i)))))))))) ))
40,214
https://github.com/Syntheti/Justin/blob/master/commands/rate.js
Github Open Source
Open Source
MIT
2,021
Justin
Syntheti
JavaScript
Code
68
173
const Discord = require('discord.js'); exports.run = async (client, message, args) => { try { const rating = Math.floor(Math.random() * 11); return message.channel.send("I rate it a " + rating + "\10") } catch (err) { return message.channel.send(`Oh no, an error occurred: \`${err.message}\`. Try again later!`); } }; exports.conf = { guildOnly: false, aliases: [], commandCategory: 'fun' }; exports.help = { name: 'rate', description: 'Will rate something.', usage: 'rate' };
42,613
https://github.com/dbash/zerowaste/blob/master/taco_aug_scripts/analyze.py
Github Open Source
Open Source
MIT
2,022
zerowaste
dbash
Python
Code
157
576
import os from pathlib import Path import shutil from shutil import copyfile import sys # insert at 1, 0 is the script path (or '' in REPL) sys.path.insert(1, '/home/guest/mabdelfa/zerowaste/DRS/utils/transforms') from PIL import Image import imageio import numpy from numpy import asarray import numpy as np #/research/axns2/mabdelfa/before_after_voc_format/SegmentationClass #VOC2012 #before_after_voc_format #dataset_conversion #/research/axns2/mabdelfa/sem_conv directory_of_interest = "/research/axns2/mabdelfa/TACO/data/batch_" count = 0 total = 15 total_files = 0 for i in range(1, total+1): my_dir = directory_of_interest + str(i) directory = os.fsencode(my_dir) path, dirs, files = next(os.walk(directory)) file_count = len(files) total_files += file_count for file in os.listdir(directory): filename = os.fsdecode(file) if filename.endswith(".jpg"): count +=1 print('copying... ', filename) my_file = Path(my_dir + "/" + filename) save_path = "/research/axns2/mabdelfa/TACO/data/coco_format/data/" + filename shutil.copy2(my_file, save_path) print('total_files: ' , total_files) """ for file in os.listdir(directory): count +=1 filename = os.fsdecode(file) my_file = Path(directory_of_interest + "/" + filename) save_path = "/research/axns2/mabdelfa/before_after_voc_format/temp/" + filename gt_map = Image.open(my_file) gt_map = gt_map.resize((500,350)) data = asarray(gt_map) print ('Image: ', data.shape, gt_map.mode, count) gt_map.save(save_path) """
16,696
https://github.com/oualidktata/Okt.Portal.Api/blob/master/Portal.Api.Repositories/Repositories/AccountRepo/AccountRepoOptions.cs
Github Open Source
Open Source
MIT
null
Okt.Portal.Api
oualidktata
C#
Code
21
68
 using Portal.Api.Repositories.Contracts; namespace Portal.Api.Repositories.Repos { public class AccountRepoOptions : IAccountRepoOptions { public string CacheItemName { get; set; } } }
34,476
https://github.com/flowersteam/TeachMyAgent/blob/master/run.py
Github Open Source
Open Source
MIT
2,022
TeachMyAgent
flowersteam
Python
Code
101
412
import argparse import os from TeachMyAgent.run_utils.environment_args_handler import EnvironmentArgsHandler from TeachMyAgent.run_utils.teacher_args_handler import TeacherArgsHandler from TeachMyAgent.run_utils.student_args_handler import StudentArgsHandler if __name__ == '__main__': # Argument definition print('Preparing the parsing...') parser = argparse.ArgumentParser() parser.add_argument('--exp_name', type=str, default='test') parser.add_argument('--seed', '-s', type=int, default=0) StudentArgsHandler.set_parser_arguments(parser) EnvironmentArgsHandler.set_parser_arguments(parser) TeacherArgsHandler.set_parser_arguments(parser) # Argument parsing args = parser.parse_args() # Bind this run to specific GPU if there is one if args.gpu_id is not None: os.environ["CUDA_VISIBLE_DEVICES"] = str(args.gpu_id) print('Setting up the environment...') env_f, param_env_bounds, initial_dist, target_dist = EnvironmentArgsHandler.get_object_from_arguments(args) print('Setting up the teacher algorithm...') Teacher = TeacherArgsHandler.get_object_from_arguments(args, param_env_bounds, initial_dist, target_dist) print('Setting up the student algorithm...') # Launch student's training student_function = StudentArgsHandler.get_object_from_arguments(args, env_f, Teacher) print('Training...') student_function()
24,715
https://github.com/mstrkingdom/samples/blob/master/snippets/visualbasic/VS_Snippets_Wpf/ClockController_procedural_snip/visualbasic/sampleviewer.xaml.vb
Github Open Source
Open Source
CC-BY-4.0, MIT
null
samples
mstrkingdom
Visual Basic
Code
58
178
'This is a list of commonly used namespaces for a window. Imports Microsoft.VisualBasic Imports System.Windows Imports System.Windows.Controls Imports System.Windows.Documents Imports System.Windows.Navigation Imports System.Windows.Shapes Imports System.Windows.Data Imports System.Windows.Media.Media3D Imports System.Windows.Media.Animation Imports System.Windows.Media Namespace SDKSample ''' <summary> ''' Interaction logic for SampleViewer.xaml ''' </summary> Partial Public Class SampleViewer Inherits Window Public Sub New() InitializeComponent() End Sub End Class End Namespace
42,650
https://github.com/skyshe/artemis/blob/master/other/bgpstream_retrieve_prefix_records.py
Github Open Source
Open Source
TCL, BSD-3-Clause, PostgreSQL
null
artemis
skyshe
Python
Code
394
1,454
#!/usr/bin/env python import argparse import csv import os import sys import netaddr import ujson from _pybgpstream import BGPRecord from _pybgpstream import BGPStream # install as described in https://bgpstream.caida.org/docs/install/pybgpstream def is_valid_ip_prefix(pref_str=None): """ Check if given prefix (in string format) is a valid IPv4/IPv6 prefix http://netaddr.readthedocs.io/en/latest/tutorial_01.html :param pref_str: <str> prefix :return: <bool> whether prefix is valid """ try: netaddr.IPNetwork(pref_str) except Exception: return False return True def run_bgpstream(prefix, start, end, out_file): """ Retrieve all records related to a certain prefix for a certain time period and save them on a .csv file https://bgpstream.caida.org/docs/api/pybgpstream/_pybgpstream.html :param prefix: <str> input prefix :param start: <int> start timestamp in UNIX epochs :param end: <int> end timestamp in UNIX epochs :param out_file: <str> .csv file to store information format: PREFIX|ORIGIN_AS|PEER_AS|AS_PATH|PROJECT|COLLECTOR|TYPE|COMMUNITIES|TIME :return: - """ # create a new bgpstream instance and a reusable bgprecord instance stream = BGPStream() rec = BGPRecord() # consider collectors from routeviews and ris stream.add_filter("project", "routeviews") stream.add_filter("project", "ris") # filter prefix stream.add_filter("prefix", prefix) # filter record type stream.add_filter("record-type", "updates") # filter based on timing stream.add_interval_filter(start, end) # start the stream stream.start() # set the csv writer with open(out_file, "w") as f: csv_writer = csv.writer(f, delimiter="|") # get next record while stream.get_next_record(rec): if (rec.status != "valid") or (rec.type != "update"): continue # get next element elem = rec.get_next_elem() while elem: if elem.type in ["A", "W"]: elem_csv_list = [] if elem.type == "A": elem_csv_list = [ str(elem.fields["prefix"]), str(elem.fields["as-path"].split(" ")[-1]), str(elem.peer_asn), str(elem.fields["as-path"]), str(rec.project), str(rec.collector), str(elem.type), ujson.dumps(elem.fields["communities"]), str(elem.time), ] else: elem_csv_list = [ str(elem.fields["prefix"]), "", str(elem.peer_asn), "", str(rec.project), str(rec.collector), str(elem.type), ujson.dumps([]), str(rec.time), ] csv_writer.writerow(elem_csv_list) elem = rec.get_next_elem() # release resources del rec del stream def main(): parser = argparse.ArgumentParser( description="retrieve all records related to a specific IP prefix" ) parser.add_argument( "-p", "--prefix", dest="prefix", type=str, help="prefix to check", required=True ) parser.add_argument( "-s", "--start", dest="start_time", type=int, help="start timestamp (in UNIX epochs)", required=True, ) parser.add_argument( "-e", "--end", dest="end_time", type=int, help="end timestamp (in UNIX epochs)", required=True, ) parser.add_argument( "-o", "--out_dir", dest="output_dir", type=str, help="output dir to store the retrieved information", required=True, ) args = parser.parse_args() if not is_valid_ip_prefix(args.prefix): print("Prefix '{}' is not valid!".format(args.prefix)) sys.exit(1) # for UNIX epoch timestamps, please check https://www.epochconverter.com/ if not args.start_time < args.end_time: print( "Start time '{}' is greater or equal than end time '{}'".format( args.start_time, args.end_time ) ) sys.exit(1) output_dir = args.output_dir.rstrip("/") if not os.path.isdir(output_dir): os.mkdir(output_dir) out_file = "{}/PREFIX_{}-START_{}-END_{}.csv".format( args.output_dir, args.prefix.replace("/", "+"), args.start_time, args.end_time ) run_bgpstream(args.prefix, args.start_time, args.end_time, out_file) if __name__ == "__main__": main()
42,169
https://github.com/constellation-app/constellation/blob/master/CoreUtilities/src/au/gov/asd/tac/constellation/utilities/stream/ExtendedBuffer.java
Github Open Source
Open Source
Apache-2.0
2,023
constellation
constellation-app
Java
Code
1,723
3,342
/* * Copyright 2010-2021 Australian Signals Directorate * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package au.gov.asd.tac.constellation.utilities.stream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.concurrent.BlockingQueue; import java.util.concurrent.LinkedBlockingQueue; import java.util.concurrent.atomic.AtomicLong; /** * Extended buffer manager allowing streaming to/from a buffer structure which in fact is a collection * of fixed size buffers stored in a blocking queue. * * @author sirius */ public class ExtendedBuffer { /** * Define individual buffer used by <code>ExtendedBuffer</code>. Each buffer will have * fixed maximum length, defined by value of <code>bufferSize</code> passed to * <code>ExtendedBuffer</code> constructor and maintain awareness of number of bytes * populated/read. */ private static class Buffer { private int length; private int position = 0; private byte[] data; } // Marker to denote end of file. private static final Buffer END_OF_FILE_MARKER = new Buffer(); static { END_OF_FILE_MARKER.length = 0; END_OF_FILE_MARKER.data = null; } // Maximum size of data to store in each buffer instance private final int bufferSize; // queue containing all buffers, each added buffer will have max size of // <code>bufferSize</code>. private final BlockingQueue<Buffer> queue = new LinkedBlockingQueue<>(); // Buffer objects used for input/output of 'next' buffer to be added/removed from queue. private Buffer outputBuffer; private Buffer inputBuffer; // Maintain atomically count of how many bytes are availalbe in the buffer(s) to read. private final AtomicLong available = new AtomicLong(0L); /** * constructor to create ExtendedBuffer with defined maximum size of individual buffers and * set up input/output streams to the buffers. * * @param bufferSize The size of each individual buffer. */ public ExtendedBuffer(final int bufferSize) { this.bufferSize = bufferSize; outputBuffer = new Buffer(); outputBuffer.data = new byte[bufferSize]; inputBuffer = new Buffer(); inputBuffer.length = inputBuffer.position = bufferSize; } /** * Return InputStream handle. * * @return Handle to the input stream that manages reads from <code>ExtendedBuffer</code>. */ public InputStream getInputStream() { return inputStream; } /** * Return OutputStream handle. * * @return Handle to the output stream that manages writes to <code>ExtendedBuffer</code>. */ public OutputStream getOutputStream() { return outputStream; } /** * Return number of bytes available to read in the <code>ExtendedBuffer</code> * * @return Number of bytes available to read. */ public long getAvailableSize() { return available.get(); } /** * Return the buffer size defined for individual buffer instances in the extended buffer. * * @return The allocated buffer size. */ public int getBufferSize() { return this.bufferSize; } /** * Get the entire available extended buffer data in a byte array. * <p> * This is a one-off read, when the data has been read, it is gone. * * @return The buffer data in a byte array. */ public byte[] getData() { final byte[] data = new byte[(int) available.get()]; int position = 0; if (inputBuffer != null) { final int bytesToCopy = inputBuffer.length - inputBuffer.position; if (bytesToCopy > 0) { System.arraycopy(inputBuffer.data, inputBuffer.position, data, position, bytesToCopy); position += bytesToCopy; } } Buffer buffer = queue.poll(); while (buffer != null) { System.arraycopy(buffer.data, 0, data, position, buffer.length); position += buffer.length; buffer = queue.poll(); } available.set(0L); return data; } private final InputStream inputStream = new InputStream() { /** * Read values byte by byte from buffer. As buffers are read from <code>queue</code> * they are stored one at a time in <code>inputBuffer</code>. * Read values are converted to integers. -1 is returned when no data is available to read. * Read will block if buffer has been partially filled by outputStream but not yet added * to buffer queue and will remain blocked until the buffer is added to the queue. */ @Override public int read() throws IOException { if (inputBuffer.position < inputBuffer.length) { // There are still bytes to read in inputBuffer, read the next one and reduce // the atomic available count available.getAndDecrement(); return inputBuffer.data[inputBuffer.position++] & 0xFF; } else if (inputBuffer.length < bufferSize) { // nothing left to read return -1; } else { // see if another buffer can be taken from head of the queue of buffers, if there // are no queues available, block until queue becomes available. This occurs if a // buffer has partially been filled by outputStream, but is awaitying further // content. try { inputBuffer = queue.take(); if (inputBuffer.length == 0) { // retrieved buffer is empty, nothing left to read return -1; } // Read the first byte from the newly taken buffer. inputBuffer now populated // for subsequent take calls. Reduce the atomic available counter // note - when buffers are added to thew queue their position is set to 0 available.getAndDecrement(); return inputBuffer.data[inputBuffer.position++] & 0xFF; } catch (InterruptedException ex) { Thread.currentThread().interrupt(); throw new IOException(ex); } } } /** * Read values from buffer into byte array. As buffers are read from <code>queue</code> * they are stored one at a time in <code>inputBuffer</code>. * Read values are converted to integers. -1 is returned when no data is available to read. * Read will block if buffer has been partially filled by outputStream but not yet added * to buffer queue and will remain blocked until the buffer is added to the queue. * * @param b Byte array to read content into. * @param off Offset into <code>b</code> to start output. Throws IOException if offset is * out of range of the destination array. * @param len Number of bytes to read. */ @Override public int read(byte[] b, int off, int len) throws IOException { // Offset into destination array must reside within array if (off >= b.length) { throw new IOException("Destination offset outside of range"); } // Check if off + len would spill over the back of the source array and adjust len accordingly len = Math.min(len, b.length - off); int byteCount = 0; while (len > 0) { // If this buffer has been exhausted then attempt to get the next buffer if (inputBuffer.position == inputBuffer.length) { // If this buffer is the last buffer then return if (inputBuffer.length < bufferSize) { return byteCount == 0 ? -1 : byteCount; } else { try { inputBuffer = queue.take(); } catch (InterruptedException ex) { Thread.currentThread().interrupt(); throw new IOException(ex); } } } final int bytesToRead = Math.min(inputBuffer.length - inputBuffer.position, len); System.arraycopy(inputBuffer.data, inputBuffer.position, b, off, bytesToRead); byteCount += bytesToRead; inputBuffer.position += bytesToRead; available.getAndAdd(-bytesToRead); len -= bytesToRead; off += bytesToRead; } return byteCount; } }; /** * Manage output stream as a queue of output buffers to ensure all content is handled. * Each individual buffer has a defined maximum size. * After stream is closed all content will have been written into ExtendedBuffer.queue * and will contain potentially multiple buffers of size bufferSize. */ private final OutputStream outputStream = new OutputStream() { /** * Writes the 8 low-order bits (lowest order byte) of <code>b</code> to the end of * the currently active <code>outputBuffer</code>. The 24 high order bits are * ignored. * If as a result of the write <code>outputBuffer</code> has been filled, it is added * to <code>ExtendedBuffer.queue</code> and a new buffer created to handle future calls * to <code>write</code>. * * @param b The integer to extract lowest 8 bits from. */ @Override public void write(int b) throws IOException { // Append the lowest order byte from supplied integer to outputBuffer. outputBuffer.data[outputBuffer.position++] = (byte) b; // Handle outputBuffer becoming full by adding the buffer to ExtendedBuffer.queue // and preparing a new outPutbuffer fur subsequent writes. if (outputBuffer.position == bufferSize) { addBufferToQueue(outputBuffer); outputBuffer = new Buffer(); outputBuffer.data = new byte[bufferSize]; } } /** * Read a subset of bytes read from supplied byte array and write them into outputBuffer field. * Should size of the data to be read exceed outputBuffer size (as specified by bufferSize) * outputBuffer is iteratively filled and added to buffer queue, allowing full content to be read * into 1 or more buffers, but each buffer has a known maximum size. * * @param b The byte array to read bytes from. * @param off The offset from start of source byte array to start reading from. Throws IOException * if offset is out of range of the source array. * @param len The maximum number of bytes to read from the source byte array. */ @Override public void write(byte[] b, int off, int len) throws IOException { // Offset into source array must reside within array if (off >= b.length) { throw new IOException("Source offset outside of range"); } // Check if off + len would spill over the back of the source array and adjust len accordingly len = Math.min(len, b.length - off); while (len > 0) { // Determine how many bytes from b (up to a maximum of len) can fit into the the output buffer // given the buffer size and current position. final int bytesToCopy = Math.min(bufferSize - outputBuffer.position, len); // Nibble off the number of bytes that can be read into the outputBuffer System.arraycopy(b, off, outputBuffer.data, outputBuffer.position, bytesToCopy); outputBuffer.position += bytesToCopy; // outputBuffer is full, add it to the buffer queue for future processing and continue reading if (outputBuffer.position == bufferSize) { addBufferToQueue(outputBuffer); outputBuffer = new Buffer(); outputBuffer.data = new byte[bufferSize]; } len -= bytesToCopy; off += bytesToCopy; } } /** * Close the output stream, ensuring that all output buffers have been added to * ExtendedBuffer.queue. */ @Override public void close() { addBufferToQueue(outputBuffer); if (outputBuffer.length == bufferSize) { queue.add(END_OF_FILE_MARKER); } outputBuffer = null; } /** * Add the supplied buffer to the buffer queue and increment the atomic 'available' counter * indicating how many bytes are queued in buffers ready to read. * * @param buffer The buffer being added to <code>ExtendedBuffer.queue</code>. */ private void addBufferToQueue(Buffer buffer) { // Set the size of content in the buffer and reset buffer position to start of buffer. // Add the buffer to the queue. buffer.length = buffer.position; buffer.position = 0; // Increment atomoic available value to include the total bytes in the buffer. available.addAndGet(buffer.length); // Add the buffer to the queue of buffers. queue.add(buffer); } }; }
14,522
https://github.com/jiladahe1997/rt-thread/blob/master/components/drivers/ipc/waitqueue.c
Github Open Source
Open Source
Apache-2.0
null
rt-thread
jiladahe1997
C
Code
555
1,538
/* * Copyright (c) 2006-2021, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * 2018/06/26 Bernard Fix the wait queue issue when wakeup a soon * to blocked thread. * 2022-01-24 THEWON let rt_wqueue_wait return thread->error when using signal */ #include <stdint.h> #include <rthw.h> #include <rtdevice.h> #include <rtservice.h> /** * @brief This function will insert a node to the wait queue. * * @param queue is a pointer to the wait queue. * * @param node is a pointer to the node to be inserted. */ void rt_wqueue_add(rt_wqueue_t *queue, struct rt_wqueue_node *node) { rt_base_t level; level = rt_hw_interrupt_disable(); rt_list_insert_before(&(queue->waiting_list), &(node->list)); rt_hw_interrupt_enable(level); } /** * @brief This function will remove a node from the wait queue. * * @param queue is a pointer to the wait queue. * * @param node is a pointer to the node to be removed. */ void rt_wqueue_remove(struct rt_wqueue_node *node) { rt_base_t level; level = rt_hw_interrupt_disable(); rt_list_remove(&(node->list)); rt_hw_interrupt_enable(level); } /** * @brief This function is the default wakeup function, but it doesn't do anything in actual. * It always return 0, user should define their own wakeup function. * * @param queue is a pointer to the wait queue. * * @param key is the wakeup condition. * * @return always return 0. */ int __wqueue_default_wake(struct rt_wqueue_node *wait, void *key) { return 0; } /** * @brief This function will wake up a pending thread on the specified waiting queue that meets the conditions. * * @param queue is a pointer to the wait queue. * * @param key is the wakeup conditions, but it is not effective now, because * default wakeup function always return 0. * If user wants to use it, user should define their own wakeup function. */ void rt_wqueue_wakeup(rt_wqueue_t *queue, void *key) { rt_base_t level; register int need_schedule = 0; rt_list_t *queue_list; struct rt_list_node *node; struct rt_wqueue_node *entry; queue_list = &(queue->waiting_list); level = rt_hw_interrupt_disable(); /* set wakeup flag in the queue */ queue->flag = RT_WQ_FLAG_WAKEUP; if (!(rt_list_isempty(queue_list))) { for (node = queue_list->next; node != queue_list; node = node->next) { entry = rt_list_entry(node, struct rt_wqueue_node, list); if (entry->wakeup(entry, key) == 0) { rt_thread_resume(entry->polling_thread); need_schedule = 1; rt_wqueue_remove(entry); break; } } } rt_hw_interrupt_enable(level); if (need_schedule) rt_schedule(); } /** * @brief This function will join a thread to the specified waiting queue, the thread will holds a wait or * timeout return on the specified wait queue. * * @param queue is a pointer to the wait queue. * * @param condition is parameters compatible with POSIX standard interface (currently meaningless, just pass in 0). * * @param msec is the timeout value, unit is millisecond. * * @return Return 0 if the thread is woken up. */ int rt_wqueue_wait(rt_wqueue_t *queue, int condition, int msec) { int tick; rt_thread_t tid = rt_thread_self(); rt_timer_t tmr = &(tid->thread_timer); struct rt_wqueue_node __wait; rt_base_t level; /* current context checking */ RT_DEBUG_NOT_IN_INTERRUPT; tick = rt_tick_from_millisecond(msec); if ((condition) || (tick == 0)) return 0; __wait.polling_thread = rt_thread_self(); __wait.key = 0; __wait.wakeup = __wqueue_default_wake; rt_list_init(&__wait.list); level = rt_hw_interrupt_disable(); /* reset thread error */ tid->error = RT_EOK; if (queue->flag == RT_WQ_FLAG_WAKEUP) { /* already wakeup */ goto __exit_wakeup; } rt_wqueue_add(queue, &__wait); rt_thread_suspend(tid); /* start timer */ if (tick != RT_WAITING_FOREVER) { rt_timer_control(tmr, RT_TIMER_CTRL_SET_TIME, &tick); rt_timer_start(tmr); } rt_hw_interrupt_enable(level); rt_schedule(); level = rt_hw_interrupt_disable(); __exit_wakeup: queue->flag = RT_WQ_FLAG_CLEAN; rt_hw_interrupt_enable(level); rt_wqueue_remove(&__wait); return tid->error; }
39,628
https://github.com/hoverzheng/spark2.4.4_note/blob/master/delta/target/java/org/apache/spark/sql/delta/util/AnalysisHelper.java
Github Open Source
Open Source
PSF-2.0, BSD-2-Clause, Apache-2.0, CC0-1.0, MIT, MIT-0, ECL-2.0, BSD-3-Clause-No-Nuclear-License-2014, BSD-3-Clause
null
spark2.4.4_note
hoverzheng
Java
Code
132
594
package org.apache.spark.sql.delta.util; public interface AnalysisHelper { /** LogicalPlan to help resolve the given expression */ static public class FakeLogicalPlan extends org.apache.spark.sql.catalyst.plans.logical.LogicalPlan implements scala.Product, scala.Serializable { public org.apache.spark.sql.catalyst.expressions.Expression expr () { throw new RuntimeException(); } public scala.collection.Seq<org.apache.spark.sql.catalyst.plans.logical.LogicalPlan> children () { throw new RuntimeException(); } // not preceding public FakeLogicalPlan (org.apache.spark.sql.catalyst.expressions.Expression expr, scala.collection.Seq<org.apache.spark.sql.catalyst.plans.logical.LogicalPlan> children) { throw new RuntimeException(); } public scala.collection.Seq<org.apache.spark.sql.catalyst.expressions.Attribute> output () { throw new RuntimeException(); } } static public class FakeLogicalPlan$ extends scala.runtime.AbstractFunction2<org.apache.spark.sql.catalyst.expressions.Expression, scala.collection.Seq<org.apache.spark.sql.catalyst.plans.logical.LogicalPlan>, org.apache.spark.sql.delta.util.AnalysisHelper.FakeLogicalPlan> implements scala.Serializable { /** * Static reference to the singleton instance of this Scala object. */ public static final FakeLogicalPlan$ MODULE$ = null; public FakeLogicalPlan$ () { throw new RuntimeException(); } } public org.apache.spark.sql.catalyst.expressions.Expression tryResolveReferences (org.apache.spark.sql.SparkSession sparkSession, org.apache.spark.sql.catalyst.expressions.Expression expr, org.apache.spark.sql.catalyst.plans.logical.LogicalPlan planContainingExpr) ; public org.apache.spark.sql.Dataset<org.apache.spark.sql.Row> toDataset (org.apache.spark.sql.SparkSession sparkSession, org.apache.spark.sql.catalyst.plans.logical.LogicalPlan logicalPlan) ; public void improveUnsupportedOpError (scala.Function0<scala.runtime.BoxedUnit> f) ; }
36,957
https://github.com/BlueLort/GameX-Engine/blob/master/Game X Engine/src/UI/GXUserInterface.h
Github Open Source
Open Source
MIT
2,021
GameX-Engine
BlueLort
C
Code
75
297
#pragma once #include "Config.h" #include "UI/ImGUI_SDLGL/ImGUI_SDLGL.h" namespace gx { #ifdef USING_OPENGL class GX_DLL GXUserInterface { public: GXUserInterface(const std::string& layerName) :imguiSDLGL(layerName){ } inline void init() { imguiSDLGL.init(); } inline void destroy() { imguiSDLGL.destroy(); } inline void onGUIRender() { imguiSDLGL.onGUIRender(); } inline void startFrame() { imguiSDLGL.startFrame(); } inline void render() { imguiSDLGL.render(); } inline void endFrame() { imguiSDLGL.endFrame(); } //EVENTS template<class T> inline static GXint32 handleEvent(std::shared_ptr<T>& Event) { return ImGUI_SDLGL::handleEvent(Event); } private: ImGUI_SDLGL imguiSDLGL; }; #endif }
23,234
https://github.com/matrx-software/matrx/blob/master/matrx/defaults.py
Github Open Source
Open Source
MIT
2,021
matrx
matrx-software
Python
Code
106
428
# from matrx.goals.goals import LimitedTimeGoal ###################### # AgentBody defaults # ###################### AGENTBODY_IS_TRAVERSABLE = False AGENTBODY_IS_MOVABLE = False AGENTBODY_SPEED_IN_TICKS = 1 AGENTBODY_VIS_SIZE = 1.0 AGENTBODY_VIS_COLOUR = "#92f441" AGENTBODY_VIS_OPACITY = 1.0 AGENTBODY_VIS_SHAPE = 1 AGENTBODY_VIS_DEPTH = 100 AGENTBODY_VIS_BUSY = False AGENTBODY_POSSIBLE_ACTIONS = "*" ###################### # EnvObject defaults # ###################### ENVOBJECT_IS_TRAVERSABLE = False ENVOBJECT_IS_MOVABLE = None ENVOBJECT_VIS_SIZE = 1.0 ENVOBJECT_VIS_SHAPE = 0 ENVOBJECT_VIS_COLOUR = "#4286f4" ENVOBJECT_VIS_OPACITY = 1.0 ENVOBJECT_VIS_DEPTH = 80 ENVOBJECT_VIS_FROM_CENTER = True ###################### # GridWorld defaults # ###################### GRIDWORLD_RANDOM_SEED = 1 GRIDWORLD_SIZE = [25, 25] GRIDWORLD_STEP_DURATION = 0.1 GRIDWORLD_TIME_FOCUS = "step" GRIDWORLD_RUN_VIS_SERVER = False GRIDWORLD_RUN_API = False # GRIDWORLD_SIMULATION_GOAL = LimitedTimeGoal GRIDWORLD_SIM_GOAL_ARGUMENTS = { "max_nr_ticks": -1 }
6,713
https://github.com/MarimerLLC/CslaGenFork/blob/master/trunk/Samples/DeepLoad/DeepLoadUnitTests/SelfLoad/SelfLoadSoftDelete_ERLevel.cs
Github Open Source
Open Source
MIT, LicenseRef-scancode-unknown-license-reference
2,023
CslaGenFork
MarimerLLC
C#
Code
1,898
10,309
using System; using SelfLoadSoftDelete.Business.ERLevel; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace DeepLoadUnitTests { /// <summary> /// Summary description for UnitTest1 /// </summary> [TestClass] public class SelfLoadSoftDelete_ERLevel { private const string ContinentName = "Dinossauria"; private const string SubContinentName = "East Dinossauria"; private const string CountryName = "Dinossaur Republic"; private const string RegionName = "Central Dino Region"; private const string CityName = "Dinossaur City"; private const string CityRoadName = "Main Dino Road"; /// <summary> ///Gets or sets the test context which provides ///information about and functionality for the current test run. ///</summary> public TestContext TestContext { get; set; } #region Additional test attributes // Use ClassInitialize to run code before running the first test in the class [ClassInitialize] public static void ClassInitialize(TestContext testContext) { CleanDb.DoClean(); } // Use ClassCleanup to run code after all tests in a class have run [ClassCleanup] public static void ClassCleanup() { CleanDb.DoClean(); } // Use TestInitialize to run code before running each test // [TestInitialize()] // public void MyTestInitialize() { } // // Use TestCleanup to run code after each test has run // [TestCleanup()] // public void MyTestCleanup() { } #endregion // ReSharper disable InconsistentNaming #region Continent [TestMethod] public void Test_01_Create_Continent_To_Delete() { var continent = G02_Continent.NewG02_Continent(); continent.Continent_Name = ContinentName; continent = continent.Save(); Assert.AreEqual(4, continent.Continent_ID); continent = G02_Continent.GetG02_Continent(4); Assert.AreEqual(ContinentName, continent.Continent_Name); } [TestMethod] public void Test_02_Delete_Continent() { var continent = G02_Continent.GetG02_Continent(4); G02_Continent.DeleteG02_Continent(4); continent.Continent_Name = "Deleted"; try { continent = continent.Save(); Assert.Fail(continent.Continent_Name + " wasn't deleted."); } catch (Csla.DataPortalException ex) { //Assert.Fail(ex.GetBaseException().Message); } continent = G02_Continent.GetG02_Continent(4); if (continent.Continent_ID == 4) Assert.Fail(continent.Continent_Name + " wasn't deleted."); } [TestMethod] public void Test_03_Create_Continent() { var continent = G02_Continent.NewG02_Continent(); continent.Continent_Name = ContinentName; continent.G03_Continent_SingleObject.Continent_Child_Name = ContinentName + " Child"; continent.G03_Continent_ASingleObject.Continent_Child_Name = ContinentName + " ReChild"; continent = continent.Save(); Assert.AreEqual(5, continent.Continent_ID); continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(ContinentName, continent.Continent_Name); Assert.AreEqual(ContinentName + " Child", continent.G03_Continent_SingleObject.Continent_Child_Name); Assert.AreEqual(ContinentName + " ReChild", continent.G03_Continent_ASingleObject.Continent_Child_Name); } [TestMethod] public void Test_04_Edit_Continent() { var continent = G02_Continent.GetG02_Continent(5); continent.Continent_Name += " Edited"; continent.G03_Continent_SingleObject.Continent_Child_Name += " Edited"; continent.G03_Continent_ASingleObject.Continent_Child_Name += " Edited"; continent = continent.Save(); continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(ContinentName + " Edited", continent.Continent_Name); Assert.AreEqual(ContinentName + " Child" + " Edited", continent.G03_Continent_SingleObject.Continent_Child_Name); Assert.AreEqual(ContinentName + " ReChild" + " Edited", continent.G03_Continent_ASingleObject.Continent_Child_Name); } #endregion #region SubContinent [TestMethod] public void Test_05_Add_SubContinent_To_Delete() { var continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(0, continent.G03_SubContinentObjects.Count); var subContinent = continent.G03_SubContinentObjects.AddNew(); subContinent.SubContinent_Name = SubContinentName; continent = continent.Save(); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(7, subContinent.SubContinent_ID); continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(SubContinentName, subContinent.SubContinent_Name); } [TestMethod] public void Test_06_Delete_SubContinent() { var continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); var subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(7, subContinent.SubContinent_ID); continent.G03_SubContinentObjects.Remove(7); continent = continent.Save(); subContinent.SubContinent_Name = "Deleted"; try { continent = continent.Save(); Assert.Fail(subContinent.SubContinent_Name + " wasn't deleted."); } catch (Csla.DataPortalException ex) { //Assert.Fail(ex.GetBaseException().Message); } continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(0, continent.G03_SubContinentObjects.Count); } [TestMethod] public void Test_07_Add_SubContinent() { var continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(0, continent.G03_SubContinentObjects.Count); var subContinent = continent.G03_SubContinentObjects.AddNew(); subContinent.SubContinent_Name = SubContinentName; subContinent.G05_SubContinent_SingleObject.SubContinent_Child_Name = SubContinentName + " Child"; subContinent.G05_SubContinent_ASingleObject.SubContinent_Child_Name = SubContinentName + " ReChild"; continent = continent.Save(); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(8, subContinent.SubContinent_ID); continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(SubContinentName, subContinent.SubContinent_Name); Assert.AreEqual(SubContinentName + " Child", subContinent.G05_SubContinent_SingleObject.SubContinent_Child_Name); Assert.AreEqual(SubContinentName + " ReChild", subContinent.G05_SubContinent_ASingleObject.SubContinent_Child_Name); } [TestMethod] public void Test_08_Edit_SubContinent() { var continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); var subContinent = continent.G03_SubContinentObjects.FindG04_SubContinentBySubContinent_ID(8); subContinent.SubContinent_Name += " Edited"; subContinent.G05_SubContinent_SingleObject.SubContinent_Child_Name += " Edited"; subContinent.G05_SubContinent_ASingleObject.SubContinent_Child_Name += " Edited"; continent = continent.Save(); continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(SubContinentName + " Edited", subContinent.SubContinent_Name); Assert.AreEqual(SubContinentName + " Child" + " Edited", subContinent.G05_SubContinent_SingleObject.SubContinent_Child_Name); Assert.AreEqual(SubContinentName + " ReChild" + " Edited", subContinent.G05_SubContinent_ASingleObject.SubContinent_Child_Name); } #endregion #region Country [TestMethod] public void Test_09_Add_Country_To_Delete() { var continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); var subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(0, subContinent.G05_CountryObjects.Count); var country = subContinent.G05_CountryObjects.AddNew(); country.Country_Name = CountryName; continent = continent.Save(); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(10, country.Country_ID); continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(CountryName, country.Country_Name); } [TestMethod] public void Test_10_Delete_Country() { var continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); var subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); var country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(10, country.Country_ID); subContinent.G05_CountryObjects.Remove(10); continent = continent.Save(); country.Country_Name = "Deleted"; try { continent = continent.Save(); Assert.Fail(country.Country_Name + " wasn't deleted."); } catch (Csla.DataPortalException ex) { //Assert.Fail(ex.GetBaseException().Message); } continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(0, subContinent.G05_CountryObjects.Count); } [TestMethod] public void Test_11_Add_Country() { var continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); var subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(0, subContinent.G05_CountryObjects.Count); var country = subContinent.G05_CountryObjects.AddNew(); country.Country_Name = CountryName; country.G07_Country_SingleObject.Country_Child_Name = CountryName + " Child"; country.G07_Country_ASingleObject.Country_Child_Name = CountryName + " ReChild"; continent = continent.Save(); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(11, country.Country_ID); continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(CountryName, country.Country_Name); Assert.AreEqual(CountryName + " Child", country.G07_Country_SingleObject.Country_Child_Name); Assert.AreEqual(CountryName + " ReChild", country.G07_Country_ASingleObject.Country_Child_Name); } [TestMethod] public void Test_12_Edit_Country() { var continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); var subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); var country = subContinent.G05_CountryObjects.FindG06_CountryByCountry_ID(11); country.Country_Name += " Edited"; country.G07_Country_SingleObject.Country_Child_Name += " Edited"; country.G07_Country_ASingleObject.Country_Child_Name += " Edited"; continent = continent.Save(); continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(CountryName + " Edited", country.Country_Name); Assert.AreEqual(CountryName + " Child" + " Edited", country.G07_Country_SingleObject.Country_Child_Name); Assert.AreEqual(CountryName + " ReChild" + " Edited", country.G07_Country_ASingleObject.Country_Child_Name); } #endregion #region Region [TestMethod] public void Test_13_Add_Region_To_Delete() { var continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); var subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); var country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(0, country.G07_RegionObjects.Count); var region = country.G07_RegionObjects.AddNew(); region.Region_Name = RegionName; continent = continent.Save(); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); region = country.G07_RegionObjects[0]; Assert.AreEqual(28, region.Region_ID); continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); region = country.G07_RegionObjects[0]; Assert.AreEqual(RegionName, region.Region_Name); } [TestMethod] public void Test_14_Delete_Region() { var continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); var subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); var country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); var region = country.G07_RegionObjects[0]; Assert.AreEqual(28, region.Region_ID); country.G07_RegionObjects.Remove(28); continent = continent.Save(); region.Region_Name = "Deleted"; try { continent = continent.Save(); Assert.Fail(region.Region_Name + " wasn't deleted."); } catch (Csla.DataPortalException ex) { //Assert.Fail(ex.GetBaseException().Message); } continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(0, country.G07_RegionObjects.Count); } [TestMethod] public void Test_15_Add_Region() { var continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); var subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); var country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(0, country.G07_RegionObjects.Count); var region = country.G07_RegionObjects.AddNew(); region.Region_Name = RegionName; region.G09_Region_SingleObject.Region_Child_Name = RegionName + " Child"; region.G09_Region_ASingleObject.Region_Child_Name = RegionName + " ReChild"; continent = continent.Save(); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); region = country.G07_RegionObjects[0]; Assert.AreEqual(29, region.Region_ID); continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); region = country.G07_RegionObjects[0]; Assert.AreEqual(RegionName, region.Region_Name); Assert.AreEqual(RegionName + " Child", region.G09_Region_SingleObject.Region_Child_Name); Assert.AreEqual(RegionName + " ReChild", region.G09_Region_ASingleObject.Region_Child_Name); } [TestMethod] public void Test_16_Edit_Region() { var continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); var subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); var country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); var region = country.G07_RegionObjects.FindG08_RegionByRegion_ID(29); region.Region_Name += " Edited"; region.G09_Region_SingleObject.Region_Child_Name += " Edited"; region.G09_Region_ASingleObject.Region_Child_Name += " Edited"; continent = continent.Save(); continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); region = country.G07_RegionObjects[0]; Assert.AreEqual(RegionName + " Edited", region.Region_Name); Assert.AreEqual(RegionName + " Child" + " Edited", region.G09_Region_SingleObject.Region_Child_Name); Assert.AreEqual(RegionName + " ReChild" + " Edited", region.G09_Region_ASingleObject.Region_Child_Name); } #endregion #region City [TestMethod] public void Test_17_Add_City_To_Delete() { var continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); var subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); var country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); var region = country.G07_RegionObjects[0]; Assert.AreEqual(0, region.G09_CityObjects.Count); var city = region.G09_CityObjects.AddNew(); city.City_Name = CityName; continent = continent.Save(); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); region = country.G07_RegionObjects[0]; Assert.AreEqual(1, region.G09_CityObjects.Count); city = region.G09_CityObjects[0]; Assert.AreEqual(28, city.City_ID); continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); region = country.G07_RegionObjects[0]; Assert.AreEqual(1, region.G09_CityObjects.Count); city = region.G09_CityObjects[0]; Assert.AreEqual(CityName, city.City_Name); } [TestMethod] public void Test_18_Delete_City() { var continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); var subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); var country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); var region = country.G07_RegionObjects[0]; Assert.AreEqual(1, region.G09_CityObjects.Count); var city = region.G09_CityObjects[0]; Assert.AreEqual(28, city.City_ID); region.G09_CityObjects.Remove(28); continent = continent.Save(); city.City_Name = "Deleted"; try { continent = continent.Save(); Assert.Fail(city.City_Name + " wasn't deleted."); } catch (Csla.DataPortalException ex) { //Assert.Fail(ex.GetBaseException().Message); } continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); region = country.G07_RegionObjects[0]; Assert.AreEqual(0, region.G09_CityObjects.Count); } [TestMethod] public void Test_19_Add_City() { var continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); var subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); var country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); var region = country.G07_RegionObjects[0]; Assert.AreEqual(0, region.G09_CityObjects.Count); var city = region.G09_CityObjects.AddNew(); city.City_Name = CityName; city.G11_City_SingleObject.City_Child_Name = CityName + " Child"; city.G11_City_ASingleObject.City_Child_Name = CityName + " ReChild"; continent = continent.Save(); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); region = country.G07_RegionObjects[0]; Assert.AreEqual(1, region.G09_CityObjects.Count); city = region.G09_CityObjects[0]; Assert.AreEqual(29, city.City_ID); continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); region = country.G07_RegionObjects[0]; Assert.AreEqual(1, region.G09_CityObjects.Count); city = region.G09_CityObjects[0]; Assert.AreEqual(CityName, city.City_Name); Assert.AreEqual(CityName + " Child", city.G11_City_SingleObject.City_Child_Name); Assert.AreEqual(CityName + " ReChild", city.G11_City_ASingleObject.City_Child_Name); } [TestMethod] public void Test_20_Edit_City() { var continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); var subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); var country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); var region = country.G07_RegionObjects[0]; Assert.AreEqual(1, region.G09_CityObjects.Count); var city = region.G09_CityObjects.FindG10_CityByCity_ID(29); city.City_Name += " Edited"; city.G11_City_SingleObject.City_Child_Name += " Edited"; city.G11_City_ASingleObject.City_Child_Name += " Edited"; continent = continent.Save(); continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); region = country.G07_RegionObjects[0]; Assert.AreEqual(1, region.G09_CityObjects.Count); city = region.G09_CityObjects[0]; Assert.AreEqual(CityName + " Edited", city.City_Name); Assert.AreEqual(CityName + " Child" + " Edited", city.G11_City_SingleObject.City_Child_Name); Assert.AreEqual(CityName + " ReChild" + " Edited", city.G11_City_ASingleObject.City_Child_Name); } #endregion #region CityRoad [TestMethod] public void Test_21_Add_CityRoad_To_Delete() { var continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); var subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); var country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); var region = country.G07_RegionObjects[0]; Assert.AreEqual(1, region.G09_CityObjects.Count); var city = region.G09_CityObjects[0]; Assert.AreEqual(0, city.G11_CityRoadObjects.Count); var cityRoad = city.G11_CityRoadObjects.AddNew(); cityRoad.CityRoad_Name = CityRoadName; continent = continent.Save(); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); region = country.G07_RegionObjects[0]; Assert.AreEqual(1, region.G09_CityObjects.Count); city = region.G09_CityObjects[0]; Assert.AreEqual(1, city.G11_CityRoadObjects.Count); cityRoad = city.G11_CityRoadObjects[0]; Assert.AreEqual(82, cityRoad.CityRoad_ID); continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); region = country.G07_RegionObjects[0]; Assert.AreEqual(1, region.G09_CityObjects.Count); city = region.G09_CityObjects[0]; Assert.AreEqual(1, city.G11_CityRoadObjects.Count); cityRoad = city.G11_CityRoadObjects[0]; Assert.AreEqual(CityRoadName, cityRoad.CityRoad_Name); } [TestMethod] public void Test_22_Delete_CityRoad() { var continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); var subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); var country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); var region = country.G07_RegionObjects[0]; Assert.AreEqual(1, region.G09_CityObjects.Count); var city = region.G09_CityObjects[0]; Assert.AreEqual(1, city.G11_CityRoadObjects.Count); var cityRoad = city.G11_CityRoadObjects[0]; Assert.AreEqual(82, cityRoad.CityRoad_ID); city.G11_CityRoadObjects.Remove(82); continent = continent.Save(); cityRoad.CityRoad_Name = "Deleted"; try { continent = continent.Save(); Assert.Fail(cityRoad.CityRoad_Name + " wasn't deleted."); } catch (Csla.DataPortalException ex) { //Assert.Fail(ex.GetBaseException().Message); } continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); region = country.G07_RegionObjects[0]; Assert.AreEqual(1, region.G09_CityObjects.Count); city = region.G09_CityObjects[0]; Assert.AreEqual(0, city.G11_CityRoadObjects.Count); } [TestMethod] public void Test_23_Add_CityRoad() { var continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); var subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); var country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); var region = country.G07_RegionObjects[0]; Assert.AreEqual(1, region.G09_CityObjects.Count); var city = region.G09_CityObjects[0]; Assert.AreEqual(0, city.G11_CityRoadObjects.Count); var cityRoad = city.G11_CityRoadObjects.AddNew(); cityRoad.CityRoad_Name = CityRoadName; continent = continent.Save(); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); region = country.G07_RegionObjects[0]; Assert.AreEqual(1, region.G09_CityObjects.Count); city = region.G09_CityObjects[0]; Assert.AreEqual(1, city.G11_CityRoadObjects.Count); cityRoad = city.G11_CityRoadObjects[0]; Assert.AreEqual(83, cityRoad.CityRoad_ID); continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); region = country.G07_RegionObjects[0]; Assert.AreEqual(1, region.G09_CityObjects.Count); city = region.G09_CityObjects[0]; Assert.AreEqual(1, city.G11_CityRoadObjects.Count); cityRoad = city.G11_CityRoadObjects[0]; Assert.AreEqual(CityRoadName, cityRoad.CityRoad_Name); } [TestMethod] public void Test_24_Edit_CityRoad() { var continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); var subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); var country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); var region = country.G07_RegionObjects[0]; Assert.AreEqual(1, region.G09_CityObjects.Count); var city = region.G09_CityObjects[0]; Assert.AreEqual(1, city.G11_CityRoadObjects.Count); var cityRoad = city.G11_CityRoadObjects[0]; cityRoad.CityRoad_Name += " Edited"; continent = continent.Save(); continent = G02_Continent.GetG02_Continent(5); Assert.AreEqual(1, continent.G03_SubContinentObjects.Count); subContinent = continent.G03_SubContinentObjects[0]; Assert.AreEqual(1, subContinent.G05_CountryObjects.Count); country = subContinent.G05_CountryObjects[0]; Assert.AreEqual(1, country.G07_RegionObjects.Count); region = country.G07_RegionObjects[0]; Assert.AreEqual(1, region.G09_CityObjects.Count); city = region.G09_CityObjects[0]; Assert.AreEqual(1, city.G11_CityRoadObjects.Count); cityRoad = city.G11_CityRoadObjects[0]; Assert.AreEqual(CityRoadName + " Edited", cityRoad.CityRoad_Name); } #endregion // ReSharper restore InconsistentNaming } }
21,144
https://github.com/RickyC0626-archive/cisc3130-data-structures/blob/master/examples/Sorting/Sorting.java
Github Open Source
Open Source
MIT
2,021
cisc3130-data-structures
RickyC0626-archive
Java
Code
117
306
public class Sorting { public static void main(String[] args) { // Selection sort int arr[] = {3, 4, 6, 8, 2, 1}; int n = arr.length; for(int k = 0; k < n; k++) { int minidx = k; for(int i = k + 1; i < n; i++) { if(arr[i] < arr[minidx]) minidx = i; } if(minidx != k) { int temp = arr[minidx]; arr[minidx] = arr[k]; arr[k] = temp; } } //Insertion sort for(int k = 1; k < n; k++) { int i = k; while(i > 0 && arr[i] > arr[i - 1]) { int temp = arr[i]; arr[i] = arr[i - 1]; arr[i - 1] = temp; i--; } } } }
20,162
https://github.com/arenadata/adcm/blob/master/web/src/app/adwp/lib/list/hover.directive.ts
Github Open Source
Open Source
Apache-2.0
2,023
adcm
arenadata
TypeScript
Code
46
186
import { Directive, ElementRef, HostListener } from '@angular/core'; @Directive({ selector: '[adwpHover]', }) export class HoverDirective { constructor(private el: ElementRef) {} @HostListener('mouseenter') onmouseenter(): void { this.el.nativeElement.style.backgroundColor = 'rgba(255, 255, 255, 0.12)'; this.el.nativeElement.style.cursor = 'pointer'; } @HostListener('mouseleave') onmouseleave(): void { this.el.nativeElement.style.backgroundColor = 'transparent'; this.el.nativeElement.style.cursor = 'defautl'; } }
50,643
https://github.com/zags4life/read_only_collections/blob/master/__init__.py
Github Open Source
Open Source
Apache-2.0
null
read_only_collections
zags4life
Python
Code
10
28
# __init__.py from .readonlydict import ReadOnlyDict from .readonlylist import ReadOnlyList
36,613
https://github.com/soraismus/purescript-capstone/blob/master/src/Data/Argonaut/Decode/Record/Tolerant/Cross/DecodeJson.purs
Github Open Source
Open Source
MIT
null
purescript-capstone
soraismus
PureScript
Code
167
459
module Data.Argonaut.Decode.Record.Tolerant.Cross.Utils ( decodeJsonWith ) where import Prelude (class Bind, bind, ($)) import Data.Argonaut.Core (Json) import Data.Argonaut.Decode.Record.Tolerant.GDecodeJson ( class GDecodeJson , gDecodeJson ) import Data.Argonaut.Decode.Record.Cross.Class ( class DecodeJsonWith , decodeJsonWith ) as D import Data.Argonaut.Decode.Record.Utils (reportJson) import Data.Status (class Status, report) import Foreign.Object (Object) import Record.Builder (Builder, build) import Type.Data.RowList (RLProxy(RLProxy)) -- Argonaut dependency import Type.Row (class RowToList, Nil) decodeJsonWith :: forall f l0 l2 r0 r2 r3 . Bind f => D.DecodeJsonWith Builder f Record l0 r0 l2 r2 r3 (Record r2) => GDecodeJson Builder f Record Nil () l2 r2 => RowToList r0 l0 => RowToList r2 l2 => Status f => Record r0 -> Json -> f (Record r3) decodeJsonWith decoderRecord = reportJson go where go :: Object Json -> f (Record r3) go object = do addFields2 <- gDecodeJson (RLProxy :: RLProxy Nil) (RLProxy :: RLProxy l2) object let record2 = build addFields2 {} addFields0 <- D.decodeJsonWith (RLProxy :: RLProxy l0) (RLProxy :: RLProxy l2) decoderRecord object record2 report $ build addFields0 record2
48,129
https://github.com/w0wka91/react-atomicus/blob/master/src/index.tsx
Github Open Source
Open Source
MIT
2,020
react-atomicus
w0wka91
TSX
Code
143
381
import { Breadcrumb } from './components/breadcrumb/Breadcrumb' import { Button } from './components/button/Button' import { Card } from './components/card/Card' import { Checkbox } from './components/checkbox/Checkbox' import { Input } from './components/input/Input' import { Modal } from './components/modal/Modal' import { Radio } from './components/radio/Radio' import { Icon } from './components/icon/Icon' import { Calendar } from './components/calendar/Calendar' import { Datepicker } from './components/datepicker/Datepicker' import { Normalize } from './components/normalize/Normalize' import { Select } from './components/select/Select' import { Dropdown } from './components/dropdown/Dropdown' import { Toggle } from './components/toggle/Toggle' import { colors } from './utils/colors' import { shadows } from './utils/shadows' import { sizes } from './utils/sizes' import { fontSizes } from './utils/fontSizes' import { borders } from './utils/borders' import * as animations from './utils/animations' export { Button, Breadcrumb, Card, Checkbox, Icon, Input, Modal, Radio, Calendar, Normalize, Select, Dropdown, Datepicker, Toggle, colors, shadows, sizes, fontSizes, borders, animations, }
27,428
https://github.com/jiyulongxu/playwell/blob/master/playwell-activity/src/main/java/playwell/route/migration/DefaultMigrationOutputTask.java
Github Open Source
Open Source
Apache-2.0
2,022
playwell
jiyulongxu
Java
Code
382
1,540
package playwell.route.migration; import com.google.common.util.concurrent.ThreadFactoryBuilder; import java.util.Collection; import java.util.HashSet; import java.util.Optional; import java.util.Set; import java.util.concurrent.Executor; import java.util.concurrent.Executors; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import playwell.activity.thread.ActivityThread; import playwell.activity.thread.ActivityThreadPool; import playwell.activity.thread.message.MigrateActivityThreadMessage; import playwell.integration.ActivityRunnerIntegrationPlan; import playwell.integration.IntegrationPlanFactory; import playwell.message.bus.MessageBus; import playwell.message.bus.MessageBusManager; import playwell.message.bus.MessageBusNotAvailableException; import playwell.route.SlotsManager; import playwell.util.VariableHolder; /** * DefaultMigrationOutputTask */ public class DefaultMigrationOutputTask implements MigrationOutputTask { private static final Logger logger = LogManager.getLogger(DefaultMigrationOutputTask.class); private final Executor threadPool = Executors.newSingleThreadExecutor( new ThreadFactoryBuilder().setDaemon(true).build()); private final MigrationPlanDataAccess migrationPlanDataAccess; private final MigrationProgressDataAccess migrationProgressDataAccess; // 任务停止标记 private volatile boolean stopMark = false; // 是否已经真正停止 private volatile boolean stopped = true; // 迁移是否正在进行 private volatile boolean running = false; public DefaultMigrationOutputTask(String dataSource) { this.migrationPlanDataAccess = new MigrationPlanDataAccess(dataSource); this.migrationProgressDataAccess = new MigrationProgressDataAccess(dataSource); } @Override public Optional<MigrationProgress> getMigrationProgress(String serviceName) { return this.migrationProgressDataAccess.getProgressByOutputServiceName(serviceName); } // 启动迁移任务线程: @Override public void startOutputTask(MigrationProgress migrationProgress) { if (running) { return; } this.running = true; this.stopMark = false; this.stopped = false; changeService(migrationProgress.getSlots(), migrationProgress.getInputNode()); threadPool.execute(() -> { try { doOutput(migrationProgress); } catch (Exception e) { logger.error(e.getMessage(), e); } finally { this.running = false; } }); } // 执行slots输出 // S2. 遍历所有的ActivityThread记录 // S3. 筛选出符合条件的记录 // S4. 通过MessageBus转发给相关的输入节点 // S5. 当所有的数据遍历完毕之后,向输入端输出一个EOF消息,并修改output_finished为true private void doOutput(MigrationProgress progress) { logger.info("Migration output task start, the progress: " + progress); final Optional<MigrationPlan> migrationPlanOptional = migrationPlanDataAccess.get(); if (!migrationPlanOptional.isPresent()) { logger.error("Could not found migration plan!"); return; } final MigrationPlan migrationPlan = migrationPlanOptional.get(); final ActivityRunnerIntegrationPlan integrationPlan = IntegrationPlanFactory.currentPlan(); final ActivityThreadPool activityThreadPool = integrationPlan.getActivityThreadPool(); final SlotsManager slotsManager = integrationPlan.getSlotsManager(); final MessageBusManager messageBusManager = integrationPlan.getMessageBusManager(); final MessageBus migrationMessageBus = messageBusManager.newMessageBus( migrationPlan.getMessageBus(), migrationPlan.getOutputMessageBusConfig()); migrationMessageBus.open(); final Set<Integer> targetSlots = new HashSet<>(progress.getSlots()); try { VariableHolder<Integer> counter = new VariableHolder<>(0); activityThreadPool.scanAll(scanContext -> { if (stopMark) { scanContext.stop(); return; } final ActivityThread activityThread = scanContext.getCurrentActivityThread(); final int slot = slotsManager.getSlotByKey(activityThread.getDomainId()); // 属于要迁移的slot if (targetSlots.contains(slot)) { try { migrationMessageBus.write(new MigrateActivityThreadMessage( progress.getOutputNode(), progress.getInputNode(), activityThread )); counter.setVar(counter.getVar() + 1); } catch (MessageBusNotAvailableException e) { logger.error("The migration message bus is not available", e); throw new RuntimeException(e); } } }); // EOF migrationMessageBus.write(new MigrateOutputFinishedMessage( progress.getOutputNode(), progress.getInputNode() )); // 修改output_finished migrationProgressDataAccess.updateOutputFinished(progress.getOutputNode()); logger.info(String.format("Migration output finished, progress: %s, num: %d", progress, counter.getVar())); } catch (Exception e) { logger.error("Migration output task error!", e); } finally { migrationMessageBus.close(); this.stopped = true; } } @Override public void stop() { this.stopMark = true; } @Override public boolean isStopped() { return this.stopped; } private void changeService(Collection<Integer> slots, String inputService) { ActivityRunnerIntegrationPlan integrationPlan = IntegrationPlanFactory.currentPlan(); SlotsManager slotsManager = integrationPlan.getSlotsManager(); slotsManager.modifyService(slots, inputService); } }
1,646
https://github.com/seeliang/react-enzyme/blob/master/gulp-tasks/webpack.js
Github Open Source
Open Source
MIT
2,018
react-enzyme
seeliang
JavaScript
Code
24
105
const gulp = require('gulp'), webpack = require('webpack-stream'), paths = require('../task-sets/paths.js'); module.exports = () => { return gulp.src(paths.src + 'js/app.js') .pipe(webpack(require('../webpack.config.js'))) .pipe(gulp.dest(paths.dist + 'js/')); };
9,311
https://github.com/BillKalin/Algorithm/blob/master/src/com/billkalin/leetcode/LeetCode75.java
Github Open Source
Open Source
Apache-2.0
null
Algorithm
BillKalin
Java
Code
243
652
package com.billkalin.leetcode; public class LeetCode75 { //方法1:排序,最快排序时间复杂度也为O(nlongn) //方法2:分别统计0,1,2的个数,然后在改写数组元素 public void sortColors(int[] nums) { if (nums == null || nums.length <= 1) return; int num0 = 0, num1 = 0, num2 = 0; for (int num : nums) { if (num == 0) num0++; if (num == 1) num1++; if (num == 2) num2++; } for (int i = 0; i < num0; i++) nums[i] = 0; for (int i = 0; i < num1; i++) nums[num0 + i] = 1; for (int i = 0; i < num2; i++) nums[num0 + num1 + i] = 2; } //方法3,双指针,分别指向0,2的位移 public void sortColors2(int[] nums) { if (nums == null || nums.length <= 1) return; int n = nums.length; int num0 = 0, num2 = n - 1; for (int i = 0; i <= num2; i++) { if (nums[i] == 0) { swap(nums, i, num0++); } else if (nums[i] == 2) { swap(nums, i--, num2--); } } } //方法4: public void sortColors3(int[] nums) { if (nums == null || nums.length <= 1) return; int n = nums.length; int num0 = 0, num2 = n - 1; for (int i = 0; i <= num2; i++) { while (nums[i] == 2 && i < num2) { swap(nums, i, num2--); } while (nums[i] == 0 && i > num0) { swap(nums, i, num0++); } } } private void swap(int[] nums, int i, int j) { int temp = nums[i]; nums[i] = nums[j]; nums[j] = temp; } }
33,640
https://github.com/fallfromgrace/More.Net/blob/master/More.Net/Units/Dynamic/Unit.cs
Github Open Source
Open Source
MIT
null
More.Net
fallfromgrace
C#
Code
361
1,015
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace More.Net.Units.Experimental { /// <summary> /// Encapsulates base functionality for a unit of measure. /// </summary> public class Unit { /// <summary> /// Gets the conversion factor from this unit to the base unit. /// </summary> public Double ConversionFactor { get { return conversionFactor; } } /// <summary> /// /// </summary> public Exponent Exponent { get { return exponent; } } /// <summary> /// /// </summary> /// <param name="conversionFactor"></param> /// <param name="exponent"></param> public Unit(Double conversionFactor, Exponent exponent) { this.conversionFactor = conversionFactor; this.exponent = exponent; } /// <summary> /// /// </summary> /// <param name="key"></param> /// <param name="unit"></param> /// <param name="power"></param> /// <returns></returns> public static Unit Pow(String key, Unit unit, Int32 power) { return new KeyUnit( key, unit.conversionFactor.Pow(power), unit.exponent.Pow(power)); } /// <summary> /// /// </summary> /// <param name="key"></param> /// <param name="left"></param> /// <param name="right"></param> /// <returns></returns> public static Unit Mul(String key, Unit left, Unit right) { return new KeyUnit( key, left.conversionFactor * right.conversionFactor, left.exponent * right.exponent); } public static Unit Mul(Unit left, Unit right) { return new AggregateUnit( left, right); } private readonly Double conversionFactor; private readonly Exponent exponent; } /// <summary> /// Represents a unit of measure whose String representation is tied to a resource key. /// </summary> internal class KeyUnit : Unit { /// <summary> /// /// </summary> /// <param name="key"></param> /// <param name="conversionFactor"></param> /// <param name="exponent"></param> public KeyUnit(String key, Double conversionFactor, Exponent exponent) : base(conversionFactor, exponent) { this.key = key; } /// <summary> /// /// </summary> /// <returns></returns> public override String ToString() { return key; } private readonly String key; } /// <summary> /// Represents a unit of measure whose String representation is controlled by it's child units. /// </summary> internal class AggregateUnit : Unit { /// <summary> /// /// </summary> /// <param name="units"></param> public AggregateUnit(params Unit[] units) : base(GetConversionFactor(units), GetExponent(units)) { this.units = units; } private static Double GetConversionFactor(params Unit[] units) { return units .Skip(1) .Aggregate( units.First().ConversionFactor, (total, next) => total * next.ConversionFactor); } private static Exponent GetExponent(params Unit[] units) { return units .Skip(1) .Aggregate( units.First().Exponent, (total, next) => total * next.Exponent); } public override String ToString() { //units.GroupBy(unit => unit.) return base.ToString(); } private Unit[] units; } }
33,183
https://github.com/sandirr/MyClass/blob/master/models/absent.js
Github Open Source
Open Source
Beerware
null
MyClass
sandirr
JavaScript
Code
85
264
const db_con = require('../configs/mysql') module.exports = { absent: (data) => { return new Promise((resolve, reject) => { db_con.query(`INSERT INTO absent_recap SET ?`, data, (error, result) => { if (error) reject(new Error(error)) resolve(result) }) }) }, absent_recap: (class_id) => { return new Promise((resolve, reject) => { db_con.query(`select class_schedule.class_name as class, user.name, absent_recap.attend FROM class_schedule LEFT JOIN absent_recap ON class_schedule.id = absent_recap.class_id LEFT JOIN user ON absent_recap.user_id = user.id WHERE absent_recap.class_id = ${class_id} `, (error, result) => { if (error) reject(new Error(error)) resolve(result) }) }) } }
22,533
https://github.com/ruesin/redis-utils/blob/master/src/Redis.php
Github Open Source
Open Source
Apache-2.0
null
redis-utils
ruesin
PHP
Code
348
1,083
<?php namespace Ruesin\Utils; /** * Class Redis * @see \Predis\Client */ class Redis { /** * All Configs * * @var array */ private static $configs = []; /** * All instance * @var array */ private static $instances = null; /** * Connection name * @var null */ private $name = null; /** * @var \Predis\Client */ private $connection = null; /** * Connection config * @var array */ private $config = []; private function __construct($name, $config) { $this->name = $name; $this->config = $config ?: self::getConfig($this->name); $this->connection = $this->connect($this->config); } private function __clone() { } /** * @param $name * @param array $config * @return Redis | \Predis\Client */ public static function getInstance($name, $config = []) { if (!isset(self::$instances[$name]) || !self::$instances[$name]) { self::$instances[$name] = self::createInstance($name, $config); } return self::$instances[$name]; } /** * @param $name * @param array $config * @return Redis | \Predis\Client */ public static function createInstance($name, $config = []) { return new self($name, $config); } private function connect($config) { $parameters = [ 'host' => $config['host'], 'port' => isset($config['port']) && $config['port'] ? $config['port'] : 6379, ]; $options = []; if (isset($config['options'])) { $options = $config['options']; } if (isset($config['prefix'])) { $options['prefix'] = $config['prefix']; } if (isset($config['database'])) { $options['parameters']['database'] = $config['database']; } if (isset($config['password']) && $config['password']) { $options['parameters']['password'] = $config['password']; } return new \Predis\Client($parameters, $options); } /** * @param string $name * @param array $config * @param bool $rewrite */ public static function setConfig($name, array $config, $rewrite = true) { if (array_key_exists($name, self::$configs) && $rewrite !== true) return; self::$configs[$name] = $config; } /** * @param $name * @return array */ public static function getConfig($name) { return array_key_exists($name, self::$configs) ? self::$configs[$name] : []; } /** * @param $name */ public static function delConfig($name) { self::$configs[$name] = null; unset(self::$configs[$name]); } public static function clear() { foreach (self::$instances as $name => $instance) { self::close($name); } } public static function close($name) { if (!isset(self::$instances[$name])) return true; self::$instances[$name]->disconnect(); self::$instances[$name] = null; unset(self::$instances[$name]); return true; } public function __call($name, $arguments) { if (empty($this->connection) || !$this->connection instanceof \Predis\ClientInterface) { return false; } /*if (!method_exists($this->connection, $name)) { return false; }*/ return call_user_func_array([$this->connection, $name], $arguments); } }
28,648
https://github.com/danielbarros24/KiCAD-Libraries/blob/master/SW-Wurth-Electronics.pretty/CP_ELEC_8.3x8.3x11.7mm_SMD.kicad_mod
Github Open Source
Open Source
MIT
2,020
KiCAD-Libraries
danielbarros24
KiCad Layout
Code
260
909
(module CP_ELEC_8.3x8.3x11.7mm_SMD (layer F.Cu) (tedit 5CCF374B) (descr "SMD Aluminum Electrolytic Polymer Capacitor 8.3x8.3x11.7mm") (tags "SMD Aluminum Electrolytic Polymer Capacitor 8.3x8.3x11.7mm") (attr smd) (fp_text reference REF** (at 0 -5.05) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value CP_ELEC_8.3x8.3x11.7mm_SMD (at 0 5.75) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text user + (at -6.65 0) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -2.3 -4.15) (end 4.15 -4.15) (layer F.SilkS) (width 0.12)) (fp_line (start 4.15 -4.15) (end 4.15 4.15) (layer F.SilkS) (width 0.12)) (fp_line (start 4.15 4.15) (end -2.3 4.15) (layer F.SilkS) (width 0.12)) (fp_line (start -4.15 2.3) (end -4.15 -2.3) (layer F.SilkS) (width 0.12)) (fp_line (start -4.15 -2.3) (end -2.3 -4.15) (layer F.SilkS) (width 0.12)) (fp_line (start -2.3 4.15) (end -4.15 2.3) (layer F.SilkS) (width 0.12)) (fp_circle (center 0 0) (end 4 0) (layer F.Fab) (width 0.12)) (fp_line (start -2.35 -4.3) (end 4.3 -4.3) (layer F.CrtYd) (width 0.05)) (fp_line (start 4.3 -4.3) (end 4.3 4.3) (layer F.CrtYd) (width 0.05)) (fp_line (start 4.3 4.3) (end -2.35 4.3) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.35 4.3) (end -4.3 2.35) (layer F.CrtYd) (width 0.05)) (fp_line (start -4.3 2.35) (end -4.3 -2.35) (layer F.CrtYd) (width 0.05)) (fp_line (start -4.3 -2.35) (end -2.35 -4.3) (layer F.CrtYd) (width 0.05)) (pad 1 smd rect (at -3.5 0) (size 4.2 1.9) (layers F.Cu F.Paste F.Mask)) (pad 2 smd rect (at 3.5 0) (size 4.2 1.9) (layers F.Cu F.Paste F.Mask)) (model ${KISWGITHUB}/SW-Wurth-Electronics.3dshapes/8x11_7x3_1.stp (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 90)) ) )
24,292
https://github.com/deaspo/SuperElastix/blob/master/CMakeLists.txt
Github Open Source
Open Source
LicenseRef-scancode-unknown-license-reference, LicenseRef-scancode-warranty-disclaimer, Apache-2.0
2,018
SuperElastix
deaspo
CMake
Code
922
3,173
#========================================================================= # # Copyright Leiden University Medical Center, Erasmus University Medical # Center and contributors # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0.txt # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # #========================================================================= cmake_minimum_required( VERSION 3.5.1 ) # --------------------------------------------------------------------- project( SuperElastix ) set( SUPERELASTIX_MAJOR_VERSION 1) set( SUPERELASTIX_MINOR_VERSION 0) set( SUPERELASTIX_PATCH_VERSION 0) set( SUPERELASTIX_VERSION ${SUPERELASTIX_MAJOR_VERSION}.${SUPERELASTIX_MINOR_VERSION}.${SUPERELASTIX_PATCH_VERSION}) # Place executables in the bin directory set( CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin" ) # Place shared libraries in the lib directory set( CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib" ) # Place static libraries in the lib directory set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib" ) # Include SuperElastix CMake scripts list( APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMake" ) # ----------------------------------------------------------------- # Compilation settings enable_language( CXX ) set( CMAKE_CXX_STANDARD 14 ) set( CMAKE_CXX_STANDARD_REQUIRED on ) mark_as_advanced( SUPERELASTIX_BUILD_SHARED_LIBS ) option( SUPERELASTIX_BUILD_SHARED_LIBS "Build SuperElastix with shared libraries." OFF ) set( BUILD_SHARED_LIBS ${SUPERELASTIX_BUILD_SHARED_LIBS} ) # GCC if( ${CMAKE_CXX_COMPILER_ID} STREQUAL GNU ) add_definitions( -DVCL_CAN_STATIC_CONST_INIT_FLOAT=0 -DVCL_CAN_STATIC_CONST_INIT_INT=0 ) endif() # MSVC if( ${CMAKE_CXX_COMPILER_ID} STREQUAL MSVC ) string( LENGTH "${CMAKE_CURRENT_SOURCE_DIR}" n ) if( n GREATER 50 ) message( FATAL_ERROR "Source code directory path length is too long for MSVC (${n} > 50)." "Please move the source code directory to a directory with a shorter path." ) endif() string( LENGTH "${CMAKE_CURRENT_BINARY_DIR}" n ) if( n GREATER 50 ) message( FATAL_ERROR "Build directory path length is too long for MSVC (${n} > 50)." "Please move the build directory to a directory with a shorter path." ) endif() # Explicitly add INCREMENTAL linking option to command lines. # http://www.cmake.org/pipermail/cmake/2010-February/035174.html # set( MSVC_INCREMENTAL_DEFAULT ON ) endif() if( WIN32 ) # If building on Windows: The target machine should be Windows 7 or higher. # Note that the Windows version should match with BOOST_USE_WINAPI_VERSION. add_definitions(-D_WIN32_WINNT=0x0601) endif() # --------------------------------------------------------------------- # Use SuperBuild. # The SuperBuild is typically used to build dependencies. Should # you wish to build them yourself (e.g. if you need a specific # version of ITK), set USE_SUPERBUILD to OFF _and_ USE_SYSTEM_ITK to ON, # USE_SYSTEM_BOOST to ON, USE_SYSTEM_GTEST to ON or USE_SYSTEM_ELASTIX # to ON. The find_package() command will then load your system libraries # instead. option( USE_SUPERBUILD "Use dependencies built by SuperBuild." ON ) mark_as_advanced( USE_SUPERBUILD ) if( USE_SUPERBUILD ) find_package( SuperElastixSuperBuild REQUIRED ) include( ${SUPERELASTIXSUPERBUILD_USE_FILE} ) endif() # --------------------------------------------------------------------- # ITK find_package( ITK REQUIRED ) include( ${ITK_USE_FILE} ) # --------------------------------------------------------------------- # Boost Library set( Boost_USE_STATIC_LIBS ON ) # only find static libs set( Boost_USE_MULTITHREADED ON ) set( Boost_USE_STATIC_RUNTIME OFF ) find_package( Boost 1.65.0 EXACT COMPONENTS program_options filesystem system regex REQUIRED QUIET ) # graph ? include_directories( ${Boost_INCLUDE_DIRS} ) # --------------------------------------------------------------------- # SuperElastix configuration option( BUILD_APPLICATIONS "Build applications." ON ) mark_as_advanced( BUILD_SHARED_LIBS ) option( BUILD_SHARED_LIBS "Build shared libraries." OFF ) # --------------------------------------------------------------------- # SuperElastix Build # Initialize the build system and build the core. These calls are mandatory. # Do not change and do not call anywhere else. message( STATUS "Enabling modules ..." ) include( selxModules ) _selxmodules_initialize() enable_modules() message( STATUS "Enabling modules ... Done" ) include( ${ModuleFilter_SOURCE_DIR}/CompiledLibraryComponents.cmake ) mark_as_advanced( COMPILED_LIBRARY_CONFIG_DIR ) set( COMPILED_LIBRARY_CONFIG_DIR ${PROJECT_BINARY_DIR} CACHE PATH "Path where a custom selxCompiledLibraryComponents.h can be found. Defaults to automatic generated file in ${PROJECT_BINARY_DIR}") include_directories(${COMPILED_LIBRARY_CONFIG_DIR}) list( APPEND SUPERELASTIX_INCLUDE_DIRS ${COMPILED_LIBRARY_CONFIG_DIR} ) option( BUILD_UNIT_TESTS "Also build tests that take a long time to run." ON ) # Build applications if( ${BUILD_APPLICATIONS} ) message( STATUS "Enabling applications ..." ) include( selxApplications ) _selxapplications_initialize() enable_applications( SUPERELASTIX_APPLICATIONS ) message( STATUS "Enabling applications ... Done" ) endif() # TODO: Functionality to disable default modules/applications # --------------------------------------------------------------------- # Testing set( SUPERELASTIX_INPUT_DATA_DIR ${PROJECT_BINARY_DIR}/Testing/Data/Input ) set( SUPERELASTIX_OUTPUT_DATA_DIR ${PROJECT_BINARY_DIR}/Testing/Data/Output ) set( SUPERELASTIX_BASELINE_DATA_DIR ${PROJECT_BINARY_DIR}/Testing/Data/Baseline ) set( SUPERELASTIX_CONFIGURATION_DATA_DIR ${PROJECT_SOURCE_DIR}/Testing/Data/Configuration ) if( NOT EXISTS ${SUPERELASTIX_OUTPUT_DATA_DIR} ) file( MAKE_DIRECTORY ${SUPERELASTIX_OUTPUT_DATA_DIR} ) endif() if( NOT EXISTS ${SUPERELASTIX_OUTPUT_DATA_DIR} ) message( FATAL_ERROR "Could not create directory for output data. Make sure CMake has write permissions." ) endif() include( CTest ) option( BUILD_TESTING "Build SuperElastix unit tests." ON ) if( ${BUILD_TESTING} ) mark_as_advanced( BUILD_UNIT_TESTS ) option( BUILD_UNIT_TESTS "Also build tests that take a long time to run." ON ) mark_as_advanced( BUILD_LONG_UNIT_TESTS ) option( BUILD_LONG_UNIT_TESTS "Also build tests that take a long time to run." OFF ) mark_as_advanced( BUILD_INTEGRATION_TESTS ) option( BUILD_INTEGRATION_TESTS "Build integration tests for applications." OFF ) add_subdirectory( Testing ) endif() # --------------------------------------------------------------------- # Documentation option( BUILD_DOXYGEN "Build Doxygen documentation." OFF ) mark_as_advanced( BUILD_DOXYGEN ) option( BUILD_READTHEDOCS "Build readthedocs.org documentation." OFF ) mark_as_advanced( BUILD_READTHEDOCS ) # --------------------------------------------------------------------- # Installation set( CMAKE_INSTALL_DIR "" ) if( WIN32 AND NOT CYGWIN ) set( CMAKE_INSTALL_DIR CMake ) else() set( CMAKE_INSTALL_DIR lib/CMake/SuperElastix ) endif() # Register the build-tree with a global CMake-registry export( PACKAGE SuperElastix ) # Create the SuperElastix.cmake files # ... for the build tree set( SUPERELASTIX_INSTALL_INCLUDE_DIRS ${SUPERELASTIX_INCLUDE_DIRS} ) set( SUPERELASTIX_INSTALL_LIBRARY_DIRS ${SUPERELASTIX_LIBRARY_DIRS} ) set( SUPERELASTIX_INSTALL_LIBRARIES ${SUPERELASTIX_LIBRARIES} ) set( SUPERELASTIX_INSTALL_USE_FILE "${PROJECT_BINARY_DIR}/UseSuperElastix.cmake" ) set( SUPERELASTIX_TARGETS_FILE "${CMAKE_BINARY_DIR}/SuperElastixTargets.cmake" ) configure_file( SuperElastixConfig.cmake.in "${PROJECT_BINARY_DIR}/SuperElastixConfig.cmake" @ONLY) configure_file( SuperElastixConfigVersion.cmake.in "${PROJECT_BINARY_DIR}/SuperElastixConfigVersion.cmake" @ONLY) configure_file( UseSuperElastix.cmake.in "${SUPERELASTIX_INSTALL_USE_FILE}" @ONLY ) # ... for the install tree set( SUPERELASTIX_INSTALL_INCLUDE_DIRS include ) set( SUPERELASTIX_INSTALL_LIBRARY_DIRS lib ) set( SUPERELASTIX_INSTALL_LIBRARIES ModuleFilter ModuleBlueprints ModuleLogger ) set( SUPERELASTIX_INSTALL_USE_FILE ${CMAKE_INSTALL_DIR}/UseSuperElastix.cmake ) configure_file( SuperElastixConfig.cmake.in install/SuperElastixConfig.cmake @ONLY) configure_file( SuperElastixConfigVersion.cmake.in install/SuperElastixConfigVersion.cmake @ONLY) configure_file( UseSuperElastix.cmake.in install/UseSuperElastix.cmake @ONLY ) configure_file(CMake/CTestCustom.cmake.in CTestCustom.cmake @ONLY) install( FILES ${PROJECT_BINARY_DIR}/install/SuperElastixConfig.cmake ${PROJECT_BINARY_DIR}/install/SuperElastixConfigVersion.cmake ${PROJECT_BINARY_DIR}/install/UseSuperElastix.cmake DESTINATION ${CMAKE_INSTALL_DIR} ) install( FILES Modules/Filter/include/selxSuperElastixFilter.h Modules/Filter/include/selxSuperElastixFilterCustomComponents.h Modules/Filter/include/itkUniquePointerDataObjectDecorator.h Modules/Filter/include/itkUniquePointerDataObjectDecorator.hxx Modules/Blueprints/include/Blueprint.h Modules/Logger/include/Logger.h Modules/FileIO/include/selxAnyFileReader.h Modules/FileIO/include/selxAnyFileWriter.h DESTINATION include ) install( TARGETS ModuleFilter ModuleBlueprints ModuleLogger ModuleCore DESTINATION lib )
43,162
https://github.com/fhoefling/useful_stuff/blob/master/plotting/defaults.py
Github Open Source
Open Source
BSD-2-Clause
null
useful_stuff
fhoefling
Python
Code
126
652
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright © 2020 Felix Höfling # def set_plot_defaults(): """ set matplotlib defaults """ from pylab import rc, cycler from palette import LondonUnderground_Colours # all possible keys are shown with matplotlib.rcParams.keys() rc('font', **{'family' : 'sans-serif', 'sans-serif' : ['lmss'], 'size' : 10}) rc('text', usetex=True) rc('text.latex', preamble=( r'\usepackage{textcomp}', r'\usepackage{amsmath}', r'\usepackage[T1]{fontenc}', r'\usepackage{times}', # r'\usepackage[scaled]{helvet} \renewcommand{\familydefault}{\sfdefault}', r'\usepackage{lmodern} \renewcommand{\familydefault}{\sfdefault}', # r'\usepackage[lite,eucal,subscriptcorrection,slantedGreek,zswash]{mtpro2}', # r'\usepackage[mtphrb,mtpcal,subscriptcorrection,slantedGreek,zswash]{mtpro2}', # r'\usepackage{txfonts}', # alternative if MathTimePro II fonts are not installed # r'\usepackage{lmodern}', # another alternative font family )) rc('legend', frameon=False, numpoints=1, fontsize='small', labelspacing=0.2, handlelength=1, handletextpad=0.5, borderaxespad=0.5) rc('figure', figsize=(3.4, 2.4)) # gnuplot standard is (5, 3.5) rc('axes', linewidth=.7, prop_cycle=cycler(color=LondonUnderground_Colours.color_cycle)) rc('axes.formatter', use_mathtext=False) rc('lines', linewidth=1, markersize=3, markeredgewidth=0) rc('xtick', direction='in', top=True) rc('ytick', direction='in', right=True) rc('savefig', bbox='tight', pad_inches=0.05, dpi=600, transparent=False) # http://www.scipy.org/Cookbook/Matplotlib/UsingTex rc('ps', usedistiller='xpdf')
39,520
https://github.com/yminsky/learn-ocaml-workshop/blob/master/02-exercises/23-mutable_records/problem.ml
Github Open Source
Open Source
Apache-2.0
2,018
learn-ocaml-workshop
yminsky
OCaml
Code
387
724
open! Base (* Sometimes rather than redefining the record you would like to have a field or a set of fields that you can modify on the fly. In OCaml if you want to have a field in a record that can be update in place you must use some additional syntax. The mutable keyword makes the field modifiable. Then you can use <- to set the record value to a new value. *) type color = | Red | Yellow | Green (* You'll get an error about Unbound value compare_color. This is because we used the [compare] ppx for [stoplight] below, which has a [color] as one of its fields, but we didn't have [compare] on [color]. Fix it by adding this: [@@deriving compare] *) type stoplight = { location : string (* stoplights don't usually move *) ; mutable color : color (* but they often change color *) } [@@deriving compare] (* On creation mutable fields are defined just like normal fields *) let an_example : stoplight = { location = "The corner of Vesey Street and the West Side highway" ; color = Red } (* Now rather than using a functional update we can use a mutable update. This doesn't return a new stoplight, it modifies the input stoplight. *) let set_color stoplight color = stoplight.color <- color (* Since we know that stoplights always go from Green to Yellow, Yellow to Red, and Red to Green, we can just write a function to advance the color of the light without taking an input color. *) let advance_color stoplight = failwith "For you to implement" module For_testing = struct let test_ex_red : stoplight = { location = "" ; color = Red } let test_ex_red' : stoplight = { test_ex_red with color = Green } let test_ex_yellow : stoplight = { location = "" ; color = Yellow } let test_ex_yellow' : stoplight = { test_ex_red with color = Red } let test_ex_green : stoplight = { location = "" ; color = Green } let test_ex_green' : stoplight = { test_ex_red with color = Yellow } let%test "Testing advance_color..." = (advance_color test_ex_green); [%compare.equal: stoplight] test_ex_green' test_ex_green ;; let%test "Testing advance_color..." = (advance_color test_ex_yellow); [%compare.equal: stoplight] test_ex_yellow' test_ex_yellow' ;; let%test "Testing advance_color..." = (advance_color test_ex_red); [%compare.equal: stoplight] test_ex_red' test_ex_red ;; end
37,650
https://github.com/guogang81/threejsLearn/blob/master/src/pages/mixin/utils.js
Github Open Source
Open Source
MIT
2,020
threejsLearn
guogang81
JavaScript
Code
415
1,344
import * as THREE from 'three' // import TrackballControls from 'three-trackballcontrols-es6' import OrbitControls from 'threejs-orbit-controls' const TrackballControls = require('three-trackballcontrols') export function trackballControls(camera, rendererDom) { var trackballControls = new TrackballControls(camera, rendererDom) trackballControls.rotateSpeed = 1.0 trackballControls.zoomSpeed = 1.2 trackballControls.panSpeed = 0.8 trackballControls.noZoom = false trackballControls.noPan = false trackballControls.staticMoving = true trackballControls.dynamicDampingFactor = 0.3 trackballControls.keys = [65, 83, 68] return trackballControls } export function orbitControls(camera, rendererDom) { // 占位 // 用户交互插件 鼠标左键按住旋转,右键按住平移,滚轮缩放 // 新建一个轨道控制器 // 如果初始化时不传入第二个参数,orbitControl默认监听的是document,自然地整个文档范围内的所有相关事件都会被监听。 // 相应的,解决方法自然是把场景所在的canvas作为第二个参数传进来 const orbitControls = new OrbitControls(camera, rendererDom) // this.mouseControls.addEventListener('change', this.updateControls) // Set to false to disable this control // 鼠标控制是否可用 orbitControls.enabled = true // "target" sets the location of focus, where the object orbits around // 聚焦坐标 orbitControls.target = new THREE.Vector3() // 控制焦点 // How far you can dolly in and out ( PerspectiveCamera only ) // 最大最小相机移动距离(景深相机) orbitControls.minDistance = 10 orbitControls.maxDistance = 100 // How far you can orbit vertically, upper and lower limits. // Range is 0 to Math.PI radians. // 最大仰视角和俯视角 orbitControls.minPolarAngle = 0.01 * Math.PI // radians orbitControls.maxPolarAngle = 0.49 * Math.PI // radians // How far you can orbit horizontally, upper and lower limits. // If set, must be a sub-interval of the interval [ - Math.PI, Math.PI ]. // 水平方向视角限制 orbitControls.minAzimuthAngle = -1.95 * Math.PI // -Infinity // radians orbitControls.maxAzimuthAngle = 1.95 * Math.PI // Infinity // radians // Set to true to enable damping (inertia) // If damping is enabled, you must call controls.update() in your animation loop // 惯性滑动,滑动大小默认0.25 // 使动画循环使用时阻尼或自转 意思是否有惯性 orbitControls.enableDamping = true // 动态阻尼系数 就是鼠标拖拽旋转灵敏度 orbitControls.dampingFactor = 0.25 // This option actually enables dollying in and out; left as "zoom" for backwards compatibility. // Set to false to disable zooming // 滚轮是否可控制zoom,zoom速度默认1 orbitControls.enableZoom = true orbitControls.zoomSpeed = 1.0 // Set to false to disable rotating // 是否可旋转,旋转速度 orbitControls.enableRotate = true orbitControls.rotateSpeed = 1.0 // Set to false to disable panning // 是否可平移,默认移动速度为7px orbitControls.enablePan = true orbitControls.keyPanSpeed = 0.2 // pixels moved per arrow key push // Set to true to automatically rotate around the target // If auto-rotate is enabled, you must call controls.update() in your animation loop // 是否自动旋转,自动旋转速度。默认每秒30圈 orbitControls.autoRotate = false orbitControls.autoRotateSpeed = 3.0 // 30 seconds per round when fps is 60 // Set to false to disable use of the keys // 是否能使用键盘 orbitControls.enableKeys = true // The four arrow keys // 默认键盘控制上下左右的键 orbitControls.keys = { LEFT: 37, UP: 38, RIGHT: 39, BOTTOM: 40 } // Mouse buttons // 鼠标点击按钮 // orbitControls.mouseButtons = { ORBIT: THREE.MOUSE.LEFT, ZOOM: THREE.MOUSE.MIDDLE, PAN: THREE.MOUSE.RIGHT } // this.setCameraControls() return orbitControls }
29,203
https://github.com/WickrInc/wickrio-bot-web/blob/master/src/components/message/send.js
Github Open Source
Open Source
Apache-2.0
null
wickrio-bot-web
WickrInc
JavaScript
Code
928
3,543
import React, { useEffect, useContext } from "react" import InputLabel from "@material-ui/core/InputLabel" import MenuItem from "@material-ui/core/MenuItem" import FormHelperText from "@material-ui/core/FormHelperText" import FormControl from "@material-ui/core/FormControl" import Select from "@material-ui/core/Select" import { Link } from "gatsby" import { MessageContext } from "../context" // import Attach from "../images/attach" import { FontAwesomeIcon } from "@fortawesome/react-fontawesome" import { faPaperclip, faMicrophone, faMapMarkerAlt, faTimes, } from "@fortawesome/free-solid-svg-icons" import { Button, makeStyles, TextField, FormControlLabel, Checkbox, } from "@material-ui/core" import Chip from "@material-ui/core/Chip" import Tooltip from "@material-ui/core/Tooltip" import CheckBoxOutlineBlankIcon from "@material-ui/icons/CheckBoxOutlineBlank" import CheckBoxIcon from "@material-ui/icons/CheckBox" let repeatlist = [ { value: 2, name: "2 times", }, ] let freqlist = [ { value: 1500, name: "every 15 seconds", }, ] // add ALL GROUPS / WHOLE NETWORK // be able to see uplaoded file preview const SendMessage = () => { const { user, token, sendAuthentication, attachment, getSecGroups, setSelectedSecGroup, secGroups, setFreq, sendBroadcast, message, setMessage, setAcknowledge, acknowledge, enableRepeat, setRepeatNumber, selectedSecGroup, repeat, setAttachment, } = useContext(MessageContext) // run immediately & everytime state changes useEffect(() => { // sendAuthentication() // console.log({ user: user }) getSecGroups() }, []) const buildFileSelector = () => { const fileSelector = document.createElement("input") fileSelector.setAttribute("type", "file") fileSelector.setAttribute("id", "file") fileSelector.setAttribute("name", "attachment") fileSelector.addEventListener("change", event => { setAttachment(fileSelector.files[0]) }) fileSelector.click() } const useStyles = makeStyles(() => ({ text: { "& .MuiOutlinedInput-root": { height: "100%", fontSize: "14px", "& fieldset": { // borderColor: '#f39200', }, "&:hover fieldset": { // borderColor: '#f39200', }, "&.Mui-focused fieldset": { borderColor: "#f39200", }, }, }, select: { "&.MuiOutlinedInput-root": { height: "48px", fontSize: "14px", "&.Mui-focused": { borderColor: "#f39200", }, "&.Mui-focused fieldset": { borderColor: "#f39200", }, }, }, color: { backgroundColor: "#f39200", color: "#ffffff", fontFamily: "Open Sans", fontSize: "14px", fontWeight: 600, lineHeight: 1.14, padding: "10px 23px", letterSpacing: "1.28px", "&:hover": { opacity: 0.7, backgroundColor: "#f39200", }, "&:active": { opacity: 0.7, backgroundColor: "#f39200", }, }, labels: { padding: "4px 20px", fontFamily: "Open Sans", fontSize: "14px", fontWeight: 600, lineHeight: 1.14, letterSpacing: "1.28px", textAlign: "right", minWidth: "120px", /* margin-right: 24px; */ color: "rgba(0, 0, 0, 0.87)", }, inputs: { borderRadius: "4px", border: "solid 1px var(--bg-light)", backgroundColor: "var(--light)", }, icon: { "&:hover": { color: "var(--secondary)", }, }, chip: { bottom: "8px", position: "absolute", left: "10px", }, })) // const ColorButton = withStyles(() => ({ // root: { // // color: theme.palette.getContrastText(purple[500]), // backgroundColor: '#f39200' // // '&:hover': { // // backgroundColor: purple[700], // // }, // }, // }))(Button); // console.log({ selectedSecGroup, opposite: !selectedSecGroup, message: !message.trim() }) // console.log((!message.trim() || !selectedSecGroup) ? // true : // false) const classes = useStyles() return ( <form className={`grid border`} style={{ padding: "20px 16px", // minWidth: '375px' // minWidth: '350px'' }} > {/* <div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', marginBottom: '14px' }}> */} <h3 className="title">New Broadcast Message</h3> <Button // type="button" disabled={!message.trim() || !selectedSecGroup ? true : false} onClick={() => sendBroadcast()} className={`${classes.color} sentButton`} // className={message ? "sendButton" : 'disabledSendButton'} variant="contained" // color="primary" > Send </Button> {/* </div> */} <div style={{ display: "flex", alignItems: "center", // marginBottom: '12px', flexWrap: "wrap", gridColumn: "1/3", }} > <InputLabel className={classes.labels} id="secgroup-label"> Send To </InputLabel> <FormControl variant="outlined" style={ { // width: '100%' } } > <Select labelId="secgroup-label" name="secgroup" id="secgroup" disabled={!secGroups.received} value={selectedSecGroup ? selectedSecGroup : `default`} // onChange={handleChange} // defaultValue="default" onChange={e => { setSelectedSecGroup(e.target.value) }} // label="secgroup" style={{ fontFamily: "Open Sans", fontSize: "14px", textIndent: "6px", }} className={`${classes.select} minWidth`} > <MenuItem value="default" disabled> {secGroups.received ? "Select Security Groups" : "Getting Security Groups"} </MenuItem> <MenuItem value="NETWORK">Whole network</MenuItem> {secGroups.received && secGroups.data.map((secgroup, idx) => { return ( <MenuItem value={secgroup.id} key={idx}> {secgroup.name} </MenuItem> ) })} </Select> </FormControl> </div> <div style={{ display: "flex", position: "relative", alignItems: "center", flexWrap: "wrap", gridColumn: "1/3", }} > <label className="labels" htmlFor="text" style={{ padding: "4px 20px", }} > Message </label> <div style={{ fontFamily: "Open Sans", flex: 1, position: "relative", // padding: '16px 14px' }} className="minWidth" > <TextField id="text" name="text" // labelId="text" // label="Message" multiline rows={7} value={message} variant="outlined" placeholder="Add a message" // className={classes.inputs} onChange={e => { setMessage(e.target.value) }} className={`${classes.text} minWidth`} style={{ flex: 1, fontSize: "14px", fontFamily: "Open Sans", // height: '160px' // padding: '16px 14px' }} /> {attachment && ( <Chip // icon={<FaceIcon /> style={{ borderRadius: "2px", }} label={attachment.name} // onClick={handleClick} className={classes.chip} onDelete={() => { setAttachment(null) }} /> )} <div style={{ display: "flex", position: "absolute", right: "10px", bottom: "5px", }} > {/* <Tooltip title="Add a voice memo" aria-label="add voice" style={{ margin: '0 16px' }}> <span> <FontAwesomeIcon size="1x" icon={faMicrophone} style={{ cursor: 'pointer' }} className={classes.icon} /> </span> </Tooltip> */} <Tooltip title="Add a file" aria-label="add file"> <span> <FontAwesomeIcon size="1x" icon={faPaperclip} onClick={ () => buildFileSelector() // setAttachment() } style={{ cursor: "pointer", }} className={classes.icon} /> </span> </Tooltip> </div> </div> </div> <div className="checkboxes" style={{ gridColumn: "1/3", }} > <div> <Checkbox checked={acknowledge} onChange={e => { setAcknowledge(!acknowledge) }} className={classes.checkboxes} size="small" name="acknowledge" id="acknowledge" color="primary" style={{ // padding: '0 8px', height: 14, width: 14, }} /> <label className="smlabels" htmlFor="acknowledge"> Ask for acknowledgement{" "} </label> </div> <div> {/* <Checkbox disabled checked={repeat} onChange={e => { enableRepeat(!repeat) }} className={classes.checkboxes} size="small" color="primary" name="repear" id="repear" /> <label className="smlabels" htmlFor="repear">Repeat</label> */} </div> </div> {/* <div style={{ display: 'grid', alignItems: 'center', gridTemplateColumns: 'repeat(auto-fit, minmax(300px, 1fr))', gridGap: '20px' }}> <div style={{ display: 'flex', alignItems: 'center', flexWrap: 'wrap' }}> <label className="labels" style={{ // flex: '.2', }} htmlFor="numrepeat">Repeat</label> <select className="border" disabled style={{ flex: '1', textIndent: '6px', fontSize: '14px', fontFamily: 'Open Sans' }} defaultValue="default" onChange={e => setRepeatNumber(e.target.value)} type="dropdown" id="numrepeat" name="numrepeat"> <option value="default" disabled>How many times</option> {repeatlist?.map((repeatnum, idx) => { return ( <option value={repeatnum.value} key={idx}>{repeatnum.name}</option> ) })} </select> </div> <div style={{ display: 'flex', alignItems: 'center', flexWrap: 'wrap' }}> <label className="labels" style={{ }} htmlFor="frequency">Frequency</label> <select className="border" disabled style={{ flex: 1, textIndent: '6px', fontSize: '14px', fontFamily: 'Open Sans', }} defaultValue="default" onChange={e => setFreq(e.target.value)} type="dropdown" id="frequency" name="frequency"> <option value="default" disabled>How often</option> {freqlist?.map((frequency, idx) => { return ( <option value={frequency.value} key={idx}>{frequency.name}</option> ) })} </select> </div> </div> */} </form> ) } export default SendMessage
9,186
https://github.com/danieledangeli/meytip/blob/master/src/Meytip/UserBundle/Entity/User.php
Github Open Source
Open Source
BSD-3-Clause, MIT
2,013
meytip
danieledangeli
PHP
Code
153
544
<?php namespace Meytip\UserBundle\Entity; use Doctrine\Common\Collections\ArrayCollection; use FOS\UserBundle\Model\User as BaseUser; use Meytip\TournamentBundle\Model\BaseTournament; use Doctrine\ORM\Mapping as ORM; /** * Meytip Base User * @ORM\Entity * @ORM\Table(name="meytipuser") */ class User extends BaseUser { public function __construct() { $this->stats = new ArrayCollection(); $this->tournaments = new ArrayCollection(); } /** * @param int $id */ public function setId($id) { $this->id = $id; } /** * @return int */ public function getId() { return $this->id; } /** * @param mixed $stats */ public function setStats($stats) { $this->stats = $stats; } /** * @return mixed */ public function getStats() { return $this->stats; } /** * @param mixed $tournaments */ public function setTournaments($tournaments) { $this->tournaments = $tournaments; } /** * @return mixed */ public function getTournaments() { return $this->tournaments; } /** * @var integer $id * * @ORM\Column(name="id", type="integer", nullable=false) * @ORM\Id * @ORM\GeneratedValue(strategy="IDENTITY") */ protected $id; /** * @ORM\OneToMany(targetEntity="Meytip\StatsBundle\Entity\Statistic", mappedBy="user") */ protected $stats; /** * @ORM\OneToMany(targetEntity="Meytip\TournamentBundle\Entity\TournamentUser", mappedBy="user") */ protected $tournaments; }
8,914
https://github.com/CefasRepRes/ices_vms_logbook_datacall/blob/master/eflalo/metiers/psql_2nd_metiers_voyage_taxa.sql
Github Open Source
Open Source
Unlicense
2,020
ices_vms_logbook_datacall
CefasRepRes
SQL
Code
5,537
18,906
------- 2nd script to create metiers within SQL database -------- /* This script creates and update the table voyage_target_taxa that identify the TARGETED ASSAMBLAGE by fishing TRIP */ --- Dependencies : -- TABLE: eflalo_metiers.voyage_taxa_stats -- Contain the trip id, dcf gear code , division and the target assemblage taxa to be filled; drop table if exists eflalo_metiers.voyage_target_taxa ; create table eflalo_metiers.voyage_target_taxa as select distinct ft_ref, dcf_gearcode ,le_div ,null as target_taxa from eflalo_metiers.voyage_taxa_stats; ---- UPDATE: Update target assemblage taxa as NA for gears Not set and Misc . -- Roi update: I have included the RG and SV gear codes in the list of MISCELANEA , since these dont appears in dcf_codes metadata table. update eflalo_metiers.voyage_target_taxa a set target_taxa = 'NA' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ( 'NOG', 'OTH', 'MISC', 'HF', 'NK') --or le_gear IN ( 'RG', 'SV' ) )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- STATS of ASSIGNED TARGET ASSEMBLAGE TAXAS: select DISTINCT target_taxa, round( count(*) over(PARTITION BY target_taxa) / count(*) over( )::numeric , 2) prop from eflalo_metiers.voyage_target_taxa ; -------------------------------------------------- --- DREDGES --- Permitted: MOL --- Conditions: 1.- Trips using ( 'DRB', 'HMD') gears -------------------------------------------------- update eflalo_metiers.voyage_target_taxa a set target_taxa = 'MOL' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ( 'DRB', 'HMD') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- STATS of ASSIGNED TARGET ASSEMBLAGE TAXAS: select DISTINCT target_taxa, round( count(*) over(PARTITION BY target_taxa) / count(*) over( )::numeric , 2) prop from eflalo_metiers.voyage_target_taxa ; --------------------------------------------------------- --- LINES AND SEINES --- Permitted: DWS and DEF --- Conditions: 1.- Trips using ('LLS','GTR','SSC','SDN','SPR') = 'DEF' --- 2.- Trips using 'LLS' = 'DWS' when the TOTAL CATCH WEIGHT of 'DWS' > TOTAL CATCH WEIGHT of 'DEF' --------------------------------------------------------- -- Condition 1 update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DEF' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('LLS','GTR','SSC','SDN','SPR') ) b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; -- Condition 2 update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DWS' ---- Creates two subsets with the taxa categories to compare their weights from ( select a.ft_Ref , a.dcf_gearcode, a.le_div, lekg_sum_dws,lekg_sum_def from ( select distinct ft_Ref, dcf_gearcode,le_div, lekg_sum lekg_sum_dws from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('LLS') and taxa = 'DWS' )a left join ( select distinct ft_Ref, dcf_gearcode,le_div, lekg_sum lekg_sum_def from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('LLS') and taxa = 'DEF' ) b on a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div -- condition to apply to targeted assemblage where lekg_sum_dws > lekg_sum_def ) b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- STATS of ASSIGNED TARGET ASSEMBLAGE TAXAS: select DISTINCT target_taxa, round( count(*) over(PARTITION BY target_taxa) / count(*) over( )::numeric , 2) prop from eflalo_metiers.voyage_target_taxa ; --------------------------------------------------------- --- HAND AND POLE LINES --- Permitted: DWS and DEF --- Conditions: 1.- Trips using ('LHP') = 'FIF' --- 2.- Trips using 'LHP' = 'CEP' when the MAX VALUE IS 'CEP' --------------------------------------------------------- -- Condition 1: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'FIF' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('LHP') ) b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; -- Condition 2: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'CEP' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('LHP') and maxval = 'CEP' )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- STATS of ASSIGNED TARGET ASSEMBLAGE TAXAS: select DISTINCT target_taxa, round( count(*) over(PARTITION BY target_taxa) / count(*) over( )::numeric , 2) prop from eflalo_metiers.voyage_target_taxa ; --------------------------------------------------------- --- TROLLING --- Permitted: LTL --- Conditions: 1.- Trips using ('LTL') = 'LPF' -------------------------------------------------------- -- Condition 1: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'LPF' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('LTL') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- STATS of ASSIGNED TARGET ASSEMBLAGE TAXAS: select DISTINCT target_taxa, round( count(*) over(PARTITION BY target_taxa) / count(*) over( )::numeric , 2) prop from eflalo_metiers.voyage_target_taxa ; --------------------------------------------------------- --- BEACH AN BOAT SEINES --- Permitted: FIF --- Conditions: 1.- Trips using ('SB') = 'LPF' -------------------------------------------------------- -- select count(*), maxwgt from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('SB') group by maxwgt; -- select count(*), maxval from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('SB') group by maxval; update eflalo_metiers.voyage_target_taxa a set target_taxa = 'FIF' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('SB') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- STATS of ASSIGNED TARGET ASSEMBLAGE TAXAS: select DISTINCT target_taxa, round( count(*) over(PARTITION BY target_taxa) / count(*) over( )::numeric , 2) prop from eflalo_metiers.voyage_target_taxa ; --------------------------------------------------------- --- FYKE NETS --- Permitted: DEF --- Conditions: 1.- Trips using ('FYK') = 'DEF' -------------------------------------------------------- -- select count(*), maxwgt from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('FYK') group by maxwgt; -- select count(*), maxval from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('FYK') group by maxval; update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DEF' from ( select distinct ft_Ref, dcf_gearcode,le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('FYK') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- STATS of ASSIGNED TARGET ASSEMBLAGE TAXAS: select DISTINCT target_taxa, round( count(*) over(PARTITION BY target_taxa) / count(*) over( )::numeric , 2) prop from eflalo_metiers.voyage_target_taxa ; --------------------------------------------------------- --- DRIFT NETS --- Permitted: SPF and DEF --- Conditions: 1.- Trips using ('GND') = 'SPF' --- 2.- Trips using ('GND') = 'DEF' when the TOTAL CATCH WEIGHT of 'DEF' > TOTAL CATCH WEIGHT of 'SPF' -------------------------------------------------------- -- select count(*), maxwgt from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('GND') group by maxwgt order by count; -- select count(*), maxval from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('GND') group by maxval order by count; --- Condition 1: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'SPF' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('GND') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 2: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DEF' ---- Creates two subsets with the taxa categories to compare their weights from ( select a.ft_Ref, a.dcf_gearcode, a.le_div,lekg_sum_def,lekg_sum_spf from ( select distinct ft_Ref, dcf_gearcode,le_div, lekg_sum lekg_sum_def from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('GND') AND taxa = 'DEF' )a left join ( select distinct ft_Ref, dcf_gearcode,le_div, lekg_sum lekg_sum_spf from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('GND') AND taxa = 'SPF' )b on a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div -- condition to apply to targeted assemblage where lekg_sum_def > lekg_sum_spf ) b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- STATS of ASSIGNED TARGET ASSEMBLAGE TAXAS: select DISTINCT target_taxa, round( count(*) over(PARTITION BY target_taxa) / count(*) over( )::numeric , 2) prop from eflalo_metiers.voyage_target_taxa ; --------------------------------------------------------- --- DRIFT LONG LINERS --- Permitted: LPF ,SPF, DWS and DEF --- Conditions: 1.- Trips using ('LLD') = 'DEF' --- 2.- Trips using ('LLD') = 'LPF' when the TOTAL CATCH WEIGHT of 'LPF' > TOTAL CATCH WEIGHT of 'DEF' --- 3.- Trips using ('LLD') = 'SPF' when the TOTAL CATCH WEIGHT of 'SPF' > HALF of TOTAL CATCH WEIGHT of 'DEF' --- 4.- Trips using ('LLD') = 'DWS' when the TOTAL CATCH WEIGHT of 'DWS' > HALF of TOTAL CATCH WEIGHT of 'DEF' -------------------------------------------------------- -- select count(*), maxwgt from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('LLD') group by maxwgt order by count; -- select count(*), maxval from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('LLD') group by maxval order by count; --- Condition 1: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DEF' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('LLD') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 2: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'LPF' ---- Creates two subsets with the taxa categories to compare their weights from ( select a.ft_Ref , a.dcf_gearcode,a.le_div, lekg_sum_def,lekg_sum_lpf from ( select distinct ft_Ref, dcf_gearcode,le_div, lekg_sum lekg_sum_lpf from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('LLD') and taxa = 'LPF' )a left join ( select distinct ft_Ref, dcf_gearcode,le_div, lekg_sum lekg_sum_def from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('LLD') and taxa = 'DEF' )b on a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div -- condition to apply to targeted assemblage where lekg_sum_lpf > lekg_sum_def ) b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 3: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'SPF' ---- Creates two subsets with the taxa categories to compare their weights from ( select a.ft_Ref , a.dcf_gearcode , a.le_div, lekg_sum_def,lekg_sum_spf from ( select distinct ft_Ref, dcf_gearcode,le_div, lekg_sum lekg_sum_spf from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('LLD') and taxa = 'SPF' )a left join ( select distinct ft_Ref, dcf_gearcode,le_div,lekg_sum*0.5 lekg_sum_def from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('LLD') and taxa = 'DEF' )b on a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div -- condition to apply to targeted assemblage where lekg_sum_spf > lekg_sum_def ) b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 4: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DWS' ---- Creates two subsets with the taxa categories to compare their weights from ( select a.ft_Ref , a.dcf_gearcode , a.le_div, lekg_sum_def,lekg_sum_dws from ( select distinct ft_Ref, dcf_gearcode,le_div, lekg_sum lekg_sum_dws from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('LLD') and taxa = 'DWS' )a left join ( select distinct ft_Ref, dcf_gearcode,le_div,lekg_sum*0.5 lekg_sum_def from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('LLD') and taxa = 'DEF' )b on a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div -- condition to apply to targeted assemblage where lekg_sum_dws > lekg_sum_def ) b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- STATS of ASSIGNED TARGET ASSEMBLAGE TAXAS: select DISTINCT target_taxa, round( count(*) over(PARTITION BY target_taxa) / count(*) over( )::numeric , 2) prop from eflalo_metiers.voyage_target_taxa ; --------------------------------------------------------- --- MID WATER OTTERS --- Permitted: SPF and DEF (It has additional UK metier by species) --- Conditions: 1.- Trips using ('OTM') = 'SPF' --- 2.- Trips using ('OTM') = 'DEF' when the TOTAL CATCH WEIGHT of 'DEF' > HALF of TOTAL CATCH WEIGHT -------------------------------------------------------- -- select count(*), maxwgt from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTM') group by maxwgt order by count; -- select count(*), maxval from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTM') group by maxval order by count; --- Condition 1: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'SPF' from ( select distinct ft_Ref, dcf_gearcode , le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTM') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 2: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DEF' ---- Creates two subsets with the taxa categories to compare their weights from ( select a.ft_Ref , a.dcf_gearcode , a.le_div, lekg_sum_def,halftotwgt from ( select distinct ft_Ref, dcf_gearcode,le_div, lekg_sum lekg_sum_def from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTM') and taxa = 'DEF' )a left join ( select distinct ft_Ref, dcf_gearcode,le_div, halftotwgt halftotwgt from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTM') )b on a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div -- condition to apply to targeted assemblage where lekg_sum_def > halftotwgt ) b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- STATS of ASSIGNED TARGET ASSEMBLAGE TAXAS: select DISTINCT target_taxa, round( count(*) over(PARTITION BY target_taxa) / count(*) over( )::numeric , 2) prop from eflalo_metiers.voyage_target_taxa ; --------------------------------------------------------- --- MID WATER PAIR and PURSE SEINE --- Permitted: SPF and LPF --- Conditions: 1.- Trips using ('PRM', 'PS') = 'SPF' --- 2.- Trips using ('PRM', 'PS') = 'LPF' when the TOTAL CATCH WEIGHT of 'LPF' > TOTAL CATCH WEIGHT of 'SPF' -------------------------------------------------------- -- select count(*), maxwgt from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('PTM','PS') group by maxwgt order by count; -- select count(*), maxval from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('PTM', 'PS') group by maxval order by count; -- Condition 1: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'SPF' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('PTM', 'PS') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; -- Condition 2: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'LPF' ---- Creates two subsets with the taxa categories to compare their weights from ( select a.ft_Ref , a.dcf_gearcode ,a.le_div, lekg_sum_lpf,lekg_sum_spf from ( select distinct ft_Ref, dcf_gearcode,le_div, lekg_sum lekg_sum_lpf from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('PTM', 'PS') and taxa = 'LPF' )a left join ( select distinct ft_Ref, dcf_gearcode,le_div, lekg_sum lekg_sum_spf from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('PTM', 'PS') AND taxa = 'SPF' )b on a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div -- condition to apply to targeted assemblage where lekg_sum_lpf > lekg_sum_spf ) b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- STATS of ASSIGNED TARGET ASSEMBLAGE TAXAS: select DISTINCT target_taxa, round( count(*) over(PARTITION BY target_taxa) / count(*) over( )::numeric , 2) prop from eflalo_metiers.voyage_target_taxa ; --------------------------------------------------------- --- POTS and TRAPS --- Permitted: CRU, MOL and FIF --- Conditions: 1.- Trips using ('FPO') = 'FIF' --- 2.- Trips using ('FPO') = 'CRU' when the MAXIMUM CATCH VALUE IN ('CRU','CRUDWS') --- 3.- Trips using ('FPO') = 'MOL' when the MAXIMUM CATCH VALUE IN ('MOL') --- 4.- Trips using ('FPO') = 'MOL' when the TOTAL CATCH VALUE of ('CRU,'MOL') >= HALF of TOTAL CATCH VALUE --- and TOTAL CATCH VALUE of ('MOL') >= TOTAL CATCH VALUE of ('CRU') --- 5.- Trips using ('FPO') = 'CRU' when the TOTAL CATCH VALUE of ('CRU,'MOL') >= HALF of TOTAL CATCH VALUE --- and TOTAL CATCH VALUE of ('MOL') < TOTAL CATCH VALUE of ('CRU') -------------------------------------------------------- --select count(*), maxwgt from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('FPO') group by maxwgt order by count; --select count(*), maxval from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('FPO') group by maxval order by count; -- Condition 1: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'FIF' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('FPO') ) b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; -- Condition 2: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'CRU' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('FPO') and maxval IN ('CRU','CRUDWS') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; -- Condition 3: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'MOL' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('FPO') and maxval IN ('MOL') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; -- Condition 4: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'MOL' ---- Creates two subsets with the taxa categories to compare their weights from ( select a.ft_Ref , a.dcf_gearcode, a.le_div, leeuro_sum_mol_cru,halftotval , leeuro_sum_mol, leeuro_sum_cru from ( select distinct ft_Ref, dcf_gearcode, le_div,sum(leeuro_sum) leeuro_sum_mol_cru from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('FPO') AND taxa IN ('MOL' , 'CRU' ) group by ft_Ref, dcf_gearcode, le_div )a left join ( select distinct ft_Ref, dcf_gearcode, le_div,halftotval from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('FPO') )b on a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div left join ( select distinct ft_Ref, dcf_gearcode, le_div,leeuro_sum leeuro_sum_mol from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('FPO') and taxa = 'MOL' ) c on b.ft_ref = c.ft_ref and b.dcf_gearcode = c.dcf_gearcode left join ( select distinct ft_Ref, dcf_gearcode, le_div,leeuro_sum leeuro_sum_cru from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('FPO') AND taxa = 'CRU' ) d on c.ft_ref = d.ft_ref and c.dcf_gearcode = d.dcf_gearcode -- condition to apply to targeted assemblage where leeuro_sum_mol_cru >= halftotval AND leeuro_sum_mol >= leeuro_sum_cru ) b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; -- Condition 5: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'CRU' ---- Creates two subsets with the taxa categories to compare their weights from ( select a.ft_Ref , a.dcf_gearcode , a.le_div, leeuro_sum_mol_cru,halftotval , leeuro_sum_mol, leeuro_sum_cru from ( select distinct ft_Ref, dcf_gearcode, le_div,sum(leeuro_sum) leeuro_sum_mol_cru from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('FPO') AND taxa IN ('MOL' , 'CRU' ) group by ft_Ref, dcf_gearcode, le_div )a left join ( select distinct ft_Ref, dcf_gearcode, le_div,halftotval from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('FPO') )b on a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div left join ( select distinct ft_Ref, dcf_gearcode, le_div,leeuro_sum leeuro_sum_mol from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('FPO') AND taxa = 'MOL' ) c on b.ft_ref = c.ft_ref and b.dcf_gearcode = c.dcf_gearcode left join ( select distinct ft_Ref, dcf_gearcode, le_div,leeuro_sum leeuro_sum_cru from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('FPO') AND taxa = 'CRU' ) d on c.ft_ref = d.ft_ref and c.dcf_gearcode = d.dcf_gearcode -- condition to apply to targeted assemblage where leeuro_sum_mol_cru >= halftotval and leeuro_sum_mol < leeuro_sum_cru ) b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- STATS of ASSIGNED TARGET ASSEMBLAGE TAXAS: select DISTINCT target_taxa, round( count(*) over(PARTITION BY target_taxa) / count(*) over( )::numeric , 2) prop from eflalo_metiers.voyage_target_taxa ; --------------------------------------------------------- --- BOTTOM PAIR TRAWLERS --- Permitted: DEF, CRU and SPF --- Conditions: 1.- Trips using ('PTB') = 'CRU' --- 2.- Trips using ('PTB') = 'DEF' when the MAXIMUM CATCH WEIGHT IN ('DEF') --- 3.- Trips using ('PTB') = 'SPF' when the MAXIMUM CATCH WEIGHT IN ('SPF') --- 4.- Trips using ('PTB') = 'DEF' when the MAXIMUM CATCH VALUE IN ('DEF') -------------------------------------------------------- -- select count(*), maxwgt from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('PTB') group by maxwgt order by count; -- select count(*), maxval from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('PTB') group by maxval order by count; --- Condition 1: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'CRU' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('PTB') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 2: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DEF' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('PTB') AND maxwgt IN ('DEF') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 3: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'SPF' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('PTB') AND maxwgt IN ('SPF') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 4: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DEF' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('PTB') AND maxval IN ('DEF') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- STATS of ASSIGNED TARGET ASSEMBLAGE TAXAS: select DISTINCT target_taxa, round( count(*) over(PARTITION BY target_taxa) / count(*) over( )::numeric , 2) prop from eflalo_metiers.voyage_target_taxa ; -------------------------------------------------------------------------------------------------------------------------------------------- --- BSET GILL NETS --- Permitted: DEF, CRU, DWS and SPF --- Conditions: 1.- Trips using ('GNS') = 'CRU' --- 2.- Trips using ('GNS') = 'DEF' when the MAXIMUM CATCH WEIGHT IN ('DEF') --- 3.- Trips using ('GNS') = 'SPF' when the MAXIMUM CATCH WEIGHT IN ('SPF') --- 4.- Trips using ('GNS') = 'DWS' when the MAXIMUM CATCH WEIGHT IN ('DWS') --- 5.- Trips using ('GNS') = 'DWS' when the MAXIMUM CATCH WEIGHT IN ('DWS') > HALF of MAXIMUM CATCH WEIGHT IN ('DEF') --- and trip using GNS already defined as DEF in Condition 1 --- 6.- Trips using ('GNS') = 'DWS' when the MAXIMUM CATCH VALUE IN ('DWS') > HALF of MAXIMUM CATCH VALUE IN ('DEF') --- and trip using GNS already defined as DEF in Condition 1 --- 7.- Trips using ('GNS') = 'DWS' when the MAXIMUM CATCH VALUE IN ('DWS') > HALF of MAXIMUM CATCH VALUE IN ('CRU') --- and trip using GNS already defined as DEF in Condition 1) --- 8.- Trips using ('GNS') = 'DWS' when the MAXIMUM CATCH WEIGHT IN ('DWS') > HALF of MAXIMUM CATCH VALUE IN ('SPF', 'LPF') --- and trip using GNS already defined as DEF in Condition 1) -------------------------------------------------------------------------------------------------------------------------------------------- -- select count(*), maxwgt from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('GNS') group by maxwgt order by count; -- select count(*), maxval from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('GNS') group by maxval order by count; --- Condition 1: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'CRU' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('GNS') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 2: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DEF' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('GNS') AND maxwgt IN ('DEF') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 3: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'SPF' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('GNS') AND maxwgt IN ('SPF') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 4: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DWS' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('GNS') AND maxwgt IN ('DWS') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 5: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DWS' ---- Creates two subsets with the taxa categories to compare their weights from ( select a.ft_Ref , b.dcf_gearcode, a.le_div, lekg_sum_def,lekg_sum_dws from ( select distinct ft_Ref, dcf_gearcode, le_div,lekg_sum lekg_sum_dws from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('GNS') and taxa = 'DWS' )a left join ( select distinct ft_Ref, dcf_gearcode, le_div,lekg_sum lekg_sum_def from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('GNS') and taxa = 'DEF' )b on a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div -- condition to apply to targeted assemblage where lekg_sum_dws > lekg_sum_def*0.5 and a.ft_ref IN ( select ft_ref from eflalo_metiers.voyage_target_taxa where target_taxa = 'DEF' ) ) b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 6: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DWS' ---- Creates two subsets with the taxa categories to compare their weights from ( select a.ft_Ref , a.dcf_gearcode , a.le_div, leeuro_sum_def,leeuro_sum_dws from ( select distinct ft_Ref, dcf_gearcode, le_div,leeuro_sum leeuro_sum_dws from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('GNS') and taxa = 'DWS' )a left join ( select distinct ft_Ref, dcf_gearcode, le_div,leeuro_sum leeuro_sum_def from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('GNS') and taxa = 'DEF' )b on a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div -- condition to apply to targeted assemblage where leeuro_sum_dws > leeuro_sum_def*0.5 AND a.ft_ref IN ( select ft_ref from eflalo_metiers.voyage_target_taxa where target_taxa = 'DEF' ) ) b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 7: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DWS' ---- Creates two subsets with the taxa categories to compare their weights from ( select a.ft_Ref , a.dcf_gearcode ,a.le_div, leeuro_sum_cru,leeuro_sum_dws from ( select distinct ft_Ref, dcf_gearcode, le_div,leeuro_sum leeuro_sum_dws from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('GNS') and taxa = 'DWS' )a left join ( select distinct ft_Ref, dcf_gearcode, le_div,leeuro_sum leeuro_sum_cru from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('GNS') and taxa = 'CRU' )b on a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div -- condition to apply to targeted assemblage where leeuro_sum_dws > leeuro_sum_cru*0.5 and a.ft_ref IN ( select ft_ref from eflalo_metiers.voyage_target_taxa where target_taxa = 'CRU' ) ) b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 8: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DWS' ---- Creates two subsets with the taxa categories to compare their weights from ( select a.ft_Ref , a.dcf_gearcode ,a.le_div, lekg_sum_dws,lekg_sum_spf_lpf from ( select distinct ft_Ref, dcf_gearcode, le_div,lekg_sum lekg_sum_dws from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('GNS') and taxa = 'DWS' )a left join ( select distinct ft_Ref, dcf_gearcode, le_div,sum(lekg_sum) lekg_sum_spf_lpf from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('GNS') and taxa IN ('SPF', 'LPF') group by ft_Ref, dcf_gearcode, le_div )b on a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div -- condition to apply to targeted assemblage where lekg_sum_dws > lekg_sum_spf_lpf*0.5 AND a.ft_ref IN ( select ft_ref from eflalo_metiers.voyage_target_taxa where target_taxa = 'SPF' ) ) b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- STATS of ASSIGNED TARGET ASSEMBLAGE TAXAS: select DISTINCT target_taxa, round( count(*) over(PARTITION BY target_taxa) / count(*) over( )::numeric , 2) prop from eflalo_metiers.voyage_target_taxa ; --------------------------------------------------------- --- BEAM TRAWLERS --- Permitted: DEF and CRU --- Conditions: - Trips using ('TBB' ) = 'DEF' --- - Trips using ('TBB' ) = 'CRU' when the MAXIMUM CATCH VALUE of ('CRU', 'CRUDW') -------------------------------------------------------- -- select count(*), maxwgt from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('TBB') group by maxwgt order by count; -- select count(*), maxval from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('TBB') group by maxval order by count; -- Condition 1: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DEF' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('TBB') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; -- Condition 2: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'CRU' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('TBB') AND maxval IN ('CRU', 'CRUDW') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- STATS of ASSIGNED TARGET ASSEMBLAGE TAXAS: select DISTINCT target_taxa, round( count(*) over(PARTITION BY target_taxa) / count(*) over( )::numeric , 2) prop from eflalo_metiers.voyage_target_taxa ; -------------------------------------------------------------------------------------------------------------------------------------------- --- BOTTOM OTTER and MULTI RIG OTTER TRAWLS --- Permitted: CRU, MOL --- Conditions: 1.- Trips using ('OTB', 'OTT') = 'CRU' when the MAXIMUM CATCH VALUE IN ('CRU', 'CRUDW') --- 2.- Trips using ('OTB', 'OTT') = 'MOL' when the MAXIMUM CATCH VALUE IN ('MOL', 'CEP') --- 3.- Trips using ('OTB', 'OTT') = 'DEF' when the MAXIMUM CATCH WEIGHT IN ('DEF') --- 4.- Trips using ('OTB', 'OTT') = 'SPF' when the MAXIMUM CATCH WEIGHT IN ('SPF','LPF') --- 5.- Trips using ('OTB', 'OTT') = 'DEF' when the MAXIMUM CATCH VALUE IN ('DEF') --- 6.- Trips using ('OTB', 'OTT') = 'SPF' when the MAXIMUM CATCH VALUE IN ('SPF','LPF') --- 7.- Trips using ('OTB', 'OTT') = 'DWS' when the TOTAL CATCH WEIGHT IN ('DWS') > HALF of TOTAL CATCH WEIGHT IN ('DEF') --- and trip using ('OTB', 'OTT') already defined as DEF in Condition 3 and 5 --- 8.- Trips using ('OTB', 'OTT') = 'DWS' when the TOTAL CATCH VALUE IN ('DWS') > HALF of TOTAL CATCH VALUE IN ('DEF') --- and trip using ('OTB', 'OTT') already defined as DEF in Condition 3 and 5 --- 9.- Trips using ('OTB', 'OTT') = 'DWS' when the TOTAL CATCH VALUE IN ('DWS') > HALF of TOTAL CATCH VALUE IN ('CRU') --- and trip using ('OTB', 'OTT') already defined as CRU in Condition 1 --- 10.- Trips using ('OTB', 'OTT') = 'DWS' when the TOTAL CATCH WEIGHT IN ('DWS') > HALF of TOTAL CATCH WEIGHT IN ('SPF','LPF') --- and trip using ('OTB', 'OTT') already defined as SPF in Condition 4 and 6 --- 11.- Trips using ('OTB', 'OTT') = 'SPF' when the MAXIMUM CATCH WEIGHT IN ('SPF','LPF') --- and trip using ('OTB', 'OTT') and not defined target taxa (NULL) -------------------------------------------------------------------------------------------------------------------------------------------- -- select count(*), maxwgt from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTB', 'OTT') group by maxwgt order by count; -- select count(*), maxval from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTB', 'OTT') group by maxval order by count; --- Condition 1: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'CRU' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTB', 'OTT') AND maxval IN ('CRU', 'CRUDW') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 2: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'MOL' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTB', 'OTT') AND maxval IN ('MOL', 'CEP') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 2: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DWS' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTB', 'OTT') AND maxwgt IN ('DWS') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 3: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DEF' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTB', 'OTT') AND maxwgt IN ('DEF') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 4: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'SPF' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTB', 'OTT') AND maxwgt IN ('SPF','LPF') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 5: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DEF' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTB', 'OTT') AND maxval IN ('DEF') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 6: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'SPF' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTB', 'OTT') AND maxval IN ('SPF') )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 7: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DWS' ---- Creates two subsets with the taxa categories to compare their weights from ( select a.ft_Ref , a.dcf_gearcode, a.le_div, lekg_sum_dws,lekg_sum_def from ( select distinct ft_Ref, dcf_gearcode, le_div,lekg_sum lekg_sum_dws from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTB', 'OTT') AND taxa = 'DWS' )a left join ( select distinct ft_Ref, dcf_gearcode, le_div, lekg_sum lekg_sum_def from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTB', 'OTT') AND taxa IN ('DEF') )b using (ft_ref) -- condition to apply to targeted assemblage where lekg_sum_dws > lekg_sum_def*0.5 AND a.ft_ref IN ( select ft_ref from eflalo_metiers.voyage_target_taxa where target_taxa = 'DEF' ) ) b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 8: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DWS' ---- Creates two subsets with the taxa categories to compare their weights from ( select a.ft_Ref , b.dcf_gearcode ,a.le_div, leeuro_sum_dws,leeuro_sum_def from ( select distinct ft_Ref, dcf_gearcode, le_div,leeuro_sum leeuro_sum_dws from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTB', 'OTT') AND taxa = 'DWS' )a left join ( select distinct ft_Ref, dcf_gearcode, le_div, leeuro_sum leeuro_sum_def from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTB', 'OTT') AND taxa IN ('DEF') )b on a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div -- condition to apply to targeted assemblage where leeuro_sum_dws > leeuro_sum_def*0.5 AND a.ft_ref IN ( select ft_ref from eflalo_metiers.voyage_target_taxa where target_taxa = 'DEF' ) ) b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 9: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DWS' ---- Creates two subsets with the taxa categories to compare their weights from ( select a.ft_Ref , b.dcf_gearcode,a.le_div, leeuro_sum_dws,leeuro_sum_cru from ( select distinct ft_Ref, dcf_gearcode, le_div,leeuro_sum leeuro_sum_dws from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTB', 'OTT') AND taxa = 'DWS' )a left join ( select distinct ft_Ref, dcf_gearcode, le_div, leeuro_sum leeuro_sum_cru from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTB', 'OTT') AND taxa IN ('CRU') )b on a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div -- condition to apply to targeted assemblage where leeuro_sum_dws > leeuro_sum_cru*0.5 AND a.ft_ref IN ( select ft_ref from eflalo_metiers.voyage_target_taxa where target_taxa = 'CRU' ) ) b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 10: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'DWS' ---- Creates two subsets with the taxa categories to compare their weights from ( select a.ft_Ref ,a.dcf_gearcode, a.le_div, lekg_sum_dws,lekg_sum_spf_lpf from ( select distinct ft_Ref, dcf_gearcode, le_div,lekg_sum lekg_sum_dws from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTB', 'OTT') AND taxa = 'DWS' )a left join ( select distinct ft_Ref, dcf_gearcode, le_div, sum(lekg_sum) lekg_sum_spf_lpf from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTB', 'OTT') AND taxa IN ('SPF','LPF') group by ft_Ref, dcf_gearcode, le_div )b on a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div -- condition to apply to targeted assemblage where lekg_sum_dws > lekg_sum_spf_lpf*0.5 AND a.ft_ref IN ( select ft_ref from eflalo_metiers.voyage_target_taxa where target_taxa = 'SPF' ) ) b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- Condition 11: update eflalo_metiers.voyage_target_taxa a set target_taxa = 'SPF' from ( select distinct ft_Ref, dcf_gearcode, le_div from eflalo_metiers.voyage_taxa_stats where dcf_gearcode IN ('OTB', 'OTT') AND maxval IN ('SPF','LPF') AND ft_ref IN ( select ft_ref from eflalo_metiers.voyage_target_taxa where target_taxa IS NULL ) )b where a.ft_ref = b.ft_ref and a.dcf_gearcode = b.dcf_gearcode and a.le_div = b.le_div; --- STATS of ASSIGNED TARGET ASSEMBLAGE TAXAS: select DISTINCT target_taxa, round( count(*) over(PARTITION BY target_taxa) / count(*) over( )::numeric , 2) prop from eflalo_metiers.voyage_target_taxa ; ------------------------------------------------ ----- ANALYSE WHAT HAS NOT A METIER ASSIGNED --- ------------------------------------------------ with a as ( select DISTINCT ft_ref from eflalo_metiers.voyage_target_taxa where target_taxa IS NULL) select count(*) n_rows , dcf_gearcode, taxa from (select * , count(*) over( ) total from eflalo_metiers.voyage_taxa_stats where ft_ref in ( select * from a ) ) b group by dcf_gearcode, taxa order by dcf_gearcode, n_rows DESC, taxa select DISTINCT * from eflalo_metiers.voyage_taxa_stats where dcf_gearcode in ('OTB') and ft_Ref in ( select DISTINCT ft_Ref from eflalo_metiers.voyage_target_taxa where target_taxa IS NULL ) order by ft_Ref ----- ANALYSE WHAT HAS A METIER ASSIGNED with a as ( select DISTINCT ft_ref from eflalo_metiers.voyage_target_taxa where target_taxa IS NOT NULL) select count(*) n_rows , dcf_gearcode, taxa from (select * , count(*) over( ) total from eflalo_metiers.voyage_taxa_stats where ft_ref in ( select * from a ) ) b group by dcf_gearcode, taxa order by dcf_gearcode, n_rows DESC, taxa ----- ANALYSE ALL GEARS select count(*) n_rows , dcf_gearcode, taxa from (select * , count(*) over( ) total from eflalo_metiers.voyage_taxa_stats ) b group by dcf_gearcode, taxa order by dcf_gearcode, n_rows DESC, taxa select a.*, b."DCFcode" from eflalo_metiers.voyage_taxa_stats a left join fish_metadata.ifishgeartab b on a.dcf_gearcode = b."DCFcode" alter table eflalo_metiers.voyage_taxa_stats add column dcf_gearcode varchar ( 15 ) ; update eflalo_metiers.voyage_taxa_stats set dcf_gearcode = "DCFcode" from fish_metadata.ifishgeartab b where le_gear = b."iFishCode" --- Gears in EFLALO not in METIERS gear metadata table select distinct "LE_GEAR" from eflalo.eflalo_2018 EXCEPT select DISTINCT "iFishCode" from fish_metadata.ifishgeartab -- "SV" "RG" with a as ( select DISTINCT "FT_REF" ,"LE_MET" from eflalo_metiers.voyage_taxa_stats ) , aa as ( select * , row_number() over ( partition by "FT_REF") rnum from a ), b as ( select * from aa where rnum > 1) select * from aa where "FT_REF" in ( select DISTINCT "FT_REF" from b) order by "FT_REF" ,"LE_MET", rnum
42,261
https://github.com/ThePrimeagen/nvim-treesitter/blob/master/autoload/health/nvim_treesitter.vim
Github Open Source
Open Source
Apache-2.0
2,021
nvim-treesitter
ThePrimeagen
Vim Script
Code
6
35
function! health#nvim_treesitter#check() lua require 'nvim-treesitter.health'.checkhealth() endfunction
10,293
https://github.com/nonameengineer/todo-app/blob/master/angular/src/app/ui/more-menu/more-menu.module.ts
Github Open Source
Open Source
Apache-2.0
null
todo-app
nonameengineer
TypeScript
Code
33
87
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { MoreMenuComponent } from './more-menu.component'; @NgModule({ declarations: [MoreMenuComponent], imports: [ CommonModule ], exports: [MoreMenuComponent] }) export class MoreMenuModule { }
42,133
https://github.com/azmy60/minimal-ci4-ecommerce/blob/master/app/Views/admin/add_product.html.twig
Github Open Source
Open Source
MIT
null
minimal-ci4-ecommerce
azmy60
Twig
Code
589
2,205
{% extends "wrappers/base.html.twig" %} {% block head %} <script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"></script> {% endblock head %} {% block title %}Tambah produk - {{ store.name }}{% endblock title %} {% block body %} {% include "dest/symbol/iconset.svg" %} <header class="flex items-center py-4 space-x-12 px-7"> <a href="{{ route_to('admin/products') }}"> <svg class="fill-current w-11 h-11"> <use xlink:href="#ph_caret-left"> </svg> </a> <h1 class="block text-3xl font-bold">Tambah produk</h1> </header> <main class="w-full mt-8"> <form class="pb-16 mx-auto space-y-24 w-min" action="{{ route_to('admin/add-product') }}" method="post" enctype="multipart/form-data"> {{ csrf_field() }} <section> {% import "components/components.html.twig" as components %} {{ _self.input_row({ label: 'Foto', helper: 'Format foto .jpg .jpeg .png dengan ukuran minimal 1000 x 1000px dan maksimal 2MB.<br><br> Pilih foto atau tarik dan letakkan di kotak hingga 10 foto. Geser foto sesuai urutan yang diinginkan.', name: 'photos', input_area: '<upload-zone></upload-zone>', }) }} </section> <section class="space-y-10"> {{ _self.input_row({ label: 'Judul', helper: 'Cantumkan maks. 80 karakter.', for: 'title', input_area: components.input({ name: 'title', type: 'text', size: 'lg', error: session('errors.title'), class: 'w-full' }), }) }} {{ _self.input_row({ label: 'Deskripsi', helper: 'Cantumkan maks. 4000 karakter.', for: 'desc', input_area: components.input({ name: 'desc', type: 'textarea', size: 'lg', rows: 6, error: session('errors.desc'), class: 'w-full' }), }) }} {{ _self.input_row({ label: 'Kategori (opsional)', helper: 'Produkmu bisa dikategorikan agar memudahkan calon pembeli. Pelajari tips mengkategorikan produk.', for: 'cat_id', input_area: block('add_categories_input'), }) }} </section> {# <section> {{ _self.input_row({ label: 'Varian (opsional)', helper: 'Kamu bisa menambah varian produk seperti warna, ukuran dan rasa.', for: 'variant', input_area: ' <button disabled class="btn btn-base btn-outlined-emerald"> <svg><use xlink:href="#ph_plus-bold"></svg> <span>Tambah varian</span> </button> ', }) }} </section> #} <section class="space-y-10"> {{ _self.input_row({ label: 'Stok', for: 'stock', input_area: components.switch({ name: 'stock', checkedValue: 1, uncheckedValue: 0, checked: true, activeText: 'Ada', inactiveText: 'Habis', }), }) }} {{ _self.input_row({ label: 'Harga', helper: 'Cantumkan harga asli produkmu', for: 'price', input_area: block('input_price'), }) }} {# {{ _self.input_row({ label: 'Diskon (opsional)', helper: 'Kamu bisa mencantum harga setelah diskon dari harga asli.', for: 'discount', input_area:' <button disabled class="btn btn-base btn-outlined-emerald"> <svg><use xlink:href="#ph_plus-bold"></svg> <span>Beri diskon</span> </button> ', }) }} #} </section> <section class="flex justify-end space-x-3"> <a href="{{ route_to('admin/products') }}"> <button type="button" class="btn btn-base btn-outlined-black">Batalkan</button> </a> <button type="submit" class="btn btn-base btn-emerald">Simpan</button> </section> </form> </main> <script src="{{ base_url('/js/addProductHelper.js') }}"></script> {% endblock body %} {# input_row options: - label - helper - for - input_area - class #} {% macro input_row(options) %} <div class="{{ options.class }} flex gap-20"> <div class="space-y-1 w-72"> <label for="{{ options.for }}" class="text-xl font-semibold">{{ options.label }}</label> <p class="text-base">{{ options.helper|raw }}</p> </div> <div class="w-[37rem]">{{ options.input_area|raw }}</div> </div> {% endmacro %} {% block input_price %} <input name="price" type="hidden"> <input-container class="w-full input-lg input-default"> <span>Rp</span> <input x-data @input="priceMask($event)" type="text"> </input-container> <script> function priceMask(e) { const x = e.target.value.replace(/\D/g, '') const rem = x.length % 3 const x2 = x.substring(rem).match(/(\d{3})/g) let formated = '' if(rem > 0) formated = x.substring(0, rem) if(x2) formated += (rem > 0 ? '.' : '') + x2.join('.') e.target.value = formated console.log(x) document.querySelector('[name="price"]').value = x } </script> {% endblock input_price %} {% block add_categories_input %} <script> const catJson = JSON.parse('{{ categories|json_encode()|raw }}') </script> <div x-data="helper.addCatData(catJson)" class="relative"> <input name="cats" type="hidden" :value="JSON.stringify(selectedCats)"> <input x-ref="input" @focus="show = true" x-model="inputVal" @input="searchCat(inputVal)" @keydown.enter.prevent @clearinput.window="$el.value = ''" placeholder="Ketik kategori disini" class="w-full input input-lg input-default"> <div class="flex gap-2 mt-4"> <template x-for="cat in selectedCats"> <span class="chip chip-sm"> <span class="lozenge lozenge-sm lozenge-success" x-show="cat.id < 0">Baru</span> <span x-text="cat.name"></span> <svg @click="removeCat(cat)"><use xlink:href="#ph_x"></svg> </span> </template> </div> <ul x-cloak x-show="show" @click="show = false" @click.outside="show = $event.target === $refs.input" :style="{ top: `calc(${$refs.input.clientHeight}px + 1rem)` }" class="absolute left-0 w-full top-full dropdown-menu dropdown-menu-lg"> <template x-for="cat in cats"> <li x-text="cat.name" @click="addCat(cat); $dispatch('clearinput')"></li> </template> <template x-if="cats.length === 0 && inputVal.trim()"> <li x-text="'Tambah kategori ' + inputVal" @click="addCat({id: newIdCounter(), name: inputVal }); inputVal = ''; "></li> </template> </ul> </div> {% endblock add_categories_input %}
31,233
https://github.com/sourav-majumder/qtlab/blob/master/scripts/test.py
Github Open Source
Open Source
MIT
null
qtlab
sourav-majumder
Python
Code
94
610
import sys import qt from constants import * center = 5*GHz span = 8*GHz num_points = 2001 znb = qt.instruments.create('ZNB20', 'RhodeSchwartz_ZNB20', address='TCPIP0::192.168.1.3::INSTR') znb.reset() znb.set_center_frequency(center) znb.set_span(span) znb.set_numpoints(num_points) filename='Soumya' data=qt.Data(name=filename) data.add_coordinate('Index') data.add_coordinate('Frequency', units='Hz') data.add_value('S21 real') data.add_value('S21 imag') data.add_value('S21 abs') data.add_value('S21 phase') bla= np.linspace(0,2000,num_points) freq_array= np.linspace(center-span/2,center+span/2,num_points) znb.rf_on() i=0 while i<10: znb.send_trigger(wait=True) database=znb.get_data("S21") data.add_data_point(bla, freq_array, np.real(database), np.imag(database),np.absolute(database), np.angle(database)) i+=1 def generate_meta_file(): metafile = open('%s.meta.txt' % data.get_filepath()[:-4], 'w') metafile.write('#inner loop\n%s\n%s\n%s\n%s\n'% (num_points,center-span/2,center+span/2, 'Frequency(Hz)')) metafile.write('#outer loop\n%s\n%s\n%s\n%s\n'% (10, 1, 10, 'Power(dBm)')) metafile.write('#outermost loop (unused)\n1\n0\n1\nNothing\n') metafile.write('#for each of the values\n') values = data.get_values() i=0 while i<len(values): metafile.write('%d\n%s\n'% (i+3, values[i]['name'])) i+=1 metafile.close() generate_meta_file() data.close_file()
11,261
https://github.com/KirkBushman/ARAW/blob/master/lib/src/main/java/com/kirkbushman/araw/fetcher/Fetcher.kt
Github Open Source
Open Source
MIT
2,022
ARAW
KirkBushman
Kotlin
Code
444
1,005
package com.kirkbushman.araw.fetcher import androidx.annotation.IntRange import androidx.annotation.WorkerThread /** * The base class for fetching pages of items * in a listing return. * * @param limit the number of items to return per page. * The default is 25, and you can change this to a number from 0 to 100. */ abstract class Fetcher<T>( @IntRange(from = MIN_LIMIT, to = MAX_LIMIT) private var limit: Long = DEFAULT_LIMIT ) { companion object { const val DEFAULT_LIMIT = 25L const val MIN_LIMIT = 1L const val MAX_LIMIT = 100L } private var currentPage: Int = -1 private var itemsCount: Int = 0 private var nextToken: String? = null private var previousToken: String? = null @WorkerThread abstract fun onFetching( previousToken: String?, nextToken: String?, setTokens: (previous: String?, next: String?) -> Unit ): List<T>? /** * Fetch the next page of content. * @return a list of T items. */ @WorkerThread fun fetchNext(): List<T>? { val pagedData = onFetching( previousToken = null, nextToken = nextToken, setTokens = { previous, next -> previousToken = previous nextToken = next } ) currentPage = if (currentPage == -1) { 1 } else { currentPage + 1 } itemsCount = limit.toInt() * currentPage return pagedData } /** * Fetch the previous page of content. * @return a list of T items. */ @WorkerThread fun fetchPrevious(): List<T>? { if (!hasStarted() || !hasPrevious()) { return null } val pagedData = onFetching( previousToken = previousToken, nextToken = null, setTokens = { previous, next -> previousToken = previous nextToken = next } ) currentPage = when { currentPage < 1 -> -1 else -> currentPage - 1 } itemsCount = limit.toInt() * currentPage return pagedData } fun hasStarted(): Boolean { return currentPage > 0 } fun hasNext(): Boolean { return nextToken != null } fun hasPrevious(): Boolean { return previousToken != null } fun getPreviousToken(): String? { return previousToken } fun getNextToken(): String? { return nextToken } /** * Returns the number-of-items-per-page. * Is a number from 1 to 100. */ @IntRange(from = MIN_LIMIT, to = MAX_LIMIT) fun getLimit(): Long { return limit } /** * Change the number of items per page, * this will reset the fetcher. */ fun setLimit(@IntRange(from = MIN_LIMIT, to = MAX_LIMIT) newLimit: Long) { limit = newLimit reset() } /** * Returns the current page number. */ fun getPageNum(): Int { return currentPage } /** * Returns the number of items fetched till now. * Equal to number-per-page by the number-of-pages. */ fun getCount(): Int { return itemsCount } /** * Reset the settings and start * back from the first page of content. */ fun reset() { currentPage = -1 itemsCount = 0 nextToken = null previousToken = null } }
50,123
https://github.com/bogutskii/alphabet_for_kids/blob/master/src/Alphabet.js
Github Open Source
Open Source
MIT
2,021
alphabet_for_kids
bogutskii
JavaScript
Code
164
626
import React, {useState} from "react"; import "./alphabet-style.css"; import "bootstrap/dist/css/bootstrap.min.css"; import UpperLineAlph from "./Comonents/upperLineAlph" //import Stats from "./Comonents/test/test"; import Word from "./Comonents/word"; import {connect} from "react-redux"; const Alphabet = (props) => { const {letters, current, effects, previousLetter, nextLetter} = props let randomColor = `#${Math.floor(Math.random() * 16777215).toString(16)}`; let nextEffect = effects[Math.floor(Math.random() * effects.length)] const checkKey = (e) => { console.log(e, e.keyCode) if (e.keyCode === '37') { previousLetter(-1) } else if (e.keyCode === '39') { nextLetter(1) } } return ( <div onKeyDown={(e)=>checkKey(e)} > <UpperLineAlph/> <div className="wrap"> <a className="wrap-child-active-25" onClick={() => previousLetter(-1)}> &#8826; </a> <div style={{color: randomColor}} className={`wrap-child-active-50 ${nextEffect}`} > {letters[current].letter} <Word/> </div> <a className="wrap-child-active-25" onClick={() => nextLetter(1)}> &#8827; </a> </div> <h4>{props.current + 1} / 26 </h4> </div> ); }; const mapStateToProps = (state) => ({ letters: state.letters, current: state.current.currentIndex, effects: state.effects.classNames }) const mapDispatchToProps = (dispatch) => ({ previousLetter: (value) => dispatch({ type: 'PREVIOUS_LETTER', payload: { value: value } }), nextLetter: (value) => dispatch({ type: 'NEXT_LETTER', payload: { value: value } }), }) export default connect(mapStateToProps, mapDispatchToProps)(Alphabet);
4,055
https://github.com/Rexsunon/Tutemy/blob/master/app/src/main/java/com/atornel/tutemy/Model/PostModel/Item.java
Github Open Source
Open Source
OLDAP-2.6, OLDAP-2.5, OLDAP-2.3, OLDAP-2.8
2,021
Tutemy
Rexsunon
Java
Code
612
1,752
package com.atornel.tutemy.Model.PostModel; import java.util.List; public class Item { public int id; public String date; public String date_gmt; public Guid guid; public String modified; public String modified_gmt; public String slug; public String status; public String type; public String link; public Title title; public Content content; public Excerpt excerpt; public int author; public int featured_media; public String comment_status; public String ping_status; public boolean sticky; public String template; public String format; public List<Object> meta; public List<Integer> categories; public List<Integer> tags; public List<Integer> yst_prominent_words; public Links _links; public Item(int id, String date, String date_gmt, Guid guid, String modified, String modified_gmt, String slug, String status, String type, String link, Title title, Content content, Excerpt excerpt, int author, int featured_media, String comment_status, String ping_status, boolean sticky, String template, String format, List<Object> meta, List<Integer> categories, List<Integer> tags, List<Integer> yst_prominent_words, Links _links) { this.id = id; this.date = date; this.date_gmt = date_gmt; this.guid = guid; this.modified = modified; this.modified_gmt = modified_gmt; this.slug = slug; this.status = status; this.type = type; this.link = link; this.title = title; this.content = content; this.excerpt = excerpt; this.author = author; this.featured_media = featured_media; this.comment_status = comment_status; this.ping_status = ping_status; this.sticky = sticky; this.template = template; this.format = format; this.meta = meta; this.categories = categories; this.tags = tags; this.yst_prominent_words = yst_prominent_words; this._links = _links; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getDate() { return date; } public void setDate(String date) { this.date = date; } public String getDate_gmt() { return date_gmt; } public void setDate_gmt(String date_gmt) { this.date_gmt = date_gmt; } public Guid getGuid() { return guid; } public void setGuid(Guid guid) { this.guid = guid; } public String getModified() { return modified; } public void setModified(String modified) { this.modified = modified; } public String getModified_gmt() { return modified_gmt; } public void setModified_gmt(String modified_gmt) { this.modified_gmt = modified_gmt; } public String getSlug() { return slug; } public void setSlug(String slug) { this.slug = slug; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getLink() { return link; } public void setLink(String link) { this.link = link; } public Title getTitle() { return title; } public void setTitle(Title title) { this.title = title; } public Content getContent() { return content; } public void setContent(Content content) { this.content = content; } public Excerpt getExcerpt() { return excerpt; } public void setExcerpt(Excerpt excerpt) { this.excerpt = excerpt; } public int getAuthor() { return author; } public void setAuthor(int author) { this.author = author; } public int getFeatured_media() { return featured_media; } public void setFeatured_media(int featured_media) { this.featured_media = featured_media; } public String getComment_status() { return comment_status; } public void setComment_status(String comment_status) { this.comment_status = comment_status; } public String getPing_status() { return ping_status; } public void setPing_status(String ping_status) { this.ping_status = ping_status; } public boolean isSticky() { return sticky; } public void setSticky(boolean sticky) { this.sticky = sticky; } public String getTemplate() { return template; } public void setTemplate(String template) { this.template = template; } public String getFormat() { return format; } public void setFormat(String format) { this.format = format; } public List<Object> getMeta() { return meta; } public void setMeta(List<Object> meta) { this.meta = meta; } public List<Integer> getCategories() { return categories; } public void setCategories(List<Integer> categories) { this.categories = categories; } public List<Integer> getTags() { return tags; } public void setTags(List<Integer> tags) { this.tags = tags; } public List<Integer> getYst_prominent_words() { return yst_prominent_words; } public void setYst_prominent_words(List<Integer> yst_prominent_words) { this.yst_prominent_words = yst_prominent_words; } public Links get_links() { return _links; } public void set_links(Links _links) { this._links = _links; } }
3,218
https://github.com/KeimaShikai/online_currency_analyzer/blob/master/oca.py
Github Open Source
Open Source
Unlicense
2,019
online_currency_analyzer
KeimaShikai
Python
Code
730
2,618
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # autor: KeimaShikai # version: 0.3 from requests import get from re import findall from time import strftime from functools import wraps '''Online currency analyzer (Онлайн анализатор валют) This code is a script, the main task of which is to download certain pages of fixed sites, and then parse data related to the rate of given currencies in various banks of Russian cities. Additionally, banks with the cheapest purchase and the most expensive sale of currency are determined. The parsed data can be saved to a file for subsequent manual analysis. Данный код является скриптом, основная задача которого заключается в том, чтобы выгружать определенные страницы фиксированных сайтов, а затем разбирать данные, связанные с курсом заданных валют в различных банках ряда городов России. Дополнительно определяются банки с самой дешевой закупкой и с самой дорогой продажей валюты. Разобранные данные можно сохранить в файл для их последующего ручного анализа. ''' URL_BASE = 'https://mainfin.ru/currency/' REGULAR = r'>([а-яА-Я ]*)<\/a><\/td><td class="[\w\s-]*"><span id="[\w_-]*" '\ 'class="[\w_-]*" data-curse-val="([\d.]*)" data-iname="[\w\s-]*" '\ 'data-curse-multi="[\d]+">[\d.]*<\/span><\/td><td class="[\w\s-]*'\ '"><span id="[\w_-]*" class="[\w_-]*" data-curse-val="([\d.]*)" data' currency_values = { 'Доллар' : 'usd', 'Евро' : 'eur', 'Фунт' : 'gbp', 'Тенге' : 'kzt', 'Юань' : 'cny', 'Франк' : 'chf', 'Йена' : 'jpy' } city_values = { 'Москва' : 'moskva', 'Санкт-Петербург' : 'sankt-peterburg', 'Екатеринбург' : 'ekaterinburg', 'Kазань' : 'kazan', 'Нижний Новгород' : 'nizhniy-novgorod', 'Новосибирск' : 'novosibirsk', 'Омск' : 'omsk', 'Самара' : 'samara', 'Челябинск' : 'chelyabinsk', 'Ростов-на-Дону' : 'rostov-na-donu', 'Уфа' : 'ufa', 'Красноярск' : 'krasnoyarsk', 'Пермь' : 'perm', 'Воронеж' : 'voronezh', 'Волгоград' : 'volgograd', 'Краснодар' : 'krasnodar', 'Саратов' : 'saratov', 'Тюмень' : 'tumen', 'Тольятти' : 'tolyatti', 'Ижевск' : 'izhevsk', 'Барнаул' : 'barnaul', 'Иркутск' : 'irkutsk', 'Ульяновск' : 'ulyanovsk', 'Хабаровск' : 'habarovsk', 'Ярославль' : 'yaroslavl', 'Владивосток' : 'vladivostok', 'Махачкала' : 'mahachkala', 'Томск' : 'tomsk', 'Оренбург' : 'orenburg', 'Кемерово' : 'kemerovo', 'Новокузнецк' : 'novokuzneck' } def dividers(func): @wraps(func) def wrapper(*args): print('\n|{:*^60}|\n'.format("")) func(*args) print('\n|{:*^60}|\n'.format("")) return wrapper def get_column_from_complex_list(passed_list, column_index): return [row[column_index] for row in passed_list] def main(): """Literally the main cycle of a script""" print('Варианты выбора:\n' '1: Стандартный поиск (Доллар, Томск)\n' '2: Настраиваемый поиск (выбор валюты и города)\n' '3: Вывод подсказки\n' '0: Выход из программы') while True: switch = input('Введите номер действия: ') if switch == "1": process_data() quit() elif switch == "2": filtered_search() quit() elif switch == "3": show_help_info() elif switch == "0": print('На подскоке!') quit() else: print('Неверный ввод!') @dividers def show_help_info(): """Help info handler""" print('Онлайн анализатор валют', 'Данная софтина предоставляет возможность за несколько секунд\n' 'получить информации о курсе определенной валюты в различныйх\n' 'банках через вашу консоль. Быстро и удобно.\n' 'Дополнительно выводится информация о выгодных покупке\n' 'и продаже валюты с соответствующими банками для выбраного\n' 'города.', 'Имеются возможности:\n' ' - вывода информации в консоль;\n' ' - и записи в файл.', sep='\n\n') print('\nВ качестве валют Вы можете выбрать следующие варианты:') print(', '.join(currency_values)) print('\nВ качестве городов Вы можете выбрать следующие варианты:') city_list = list(city_values) for i in range(0, len(city_list), 3): print(', '.join(city_list[i:i + 3])) print('\nP.S.: Не во всех городах принимают все валюты!') @dividers def filtered_search(): """Search filter settings function""" currency = input('Пожалуйста, введите наименование валюты: ') if currency not in currency_values: print('Вы ввели неверное название валюты!\n' 'Список доступных валют можно просмотреть в выводе подсказки.') quit() city = input('И введите название города: ') if city not in city_values: print('Вы ввели неверное название города!\n' 'Список доступных городов можно просмотреть в выводе подсказки.') quit() process_data(currency, city) @dividers def process_data(currency="Доллар", city="Томск"): """The function that parses and outputs data""" content = get(URL_BASE + currency_values.get(currency) + '/' + city_values.get(city)).content.decode('utf-8') data = findall(REGULAR, content) if not data: print('Ничего не найдено! Вероятно, в этом городе нет банков,\n' 'работающих с выбранной Вами валютой. :-( ') else: print('Сводка на данный момент времени:\n') result = [] for each in data: result.append(f'{each[0]}:\n') result.append(f'покупка: {each[1]} руб, продажа: {each[2]} руб\n\n') # look for min purchase price and its bank min_bank = '' buy = get_column_from_complex_list(data, 1) min_buy = min(buy) for each in data: if each[1] == min_buy: min_bank = each[0] break # look for max sell price and its bank max_bank = '' sell = get_column_from_complex_list(data, 2) max_sell = max(sell) for each in data: if each[2] == max_sell: max_bank = each[0] break result.append('Итог:\n') result.append(f'Самая дешевая покупка: {min_buy} руб в {min_bank}\n') result.append(f'Самая дорогая продажа: {max_sell} руб в {max_bank}\n') result_str = ''.join(result) print(result_str) # writing into the file block if (input('\nВведите "1" для записи в файл: ') == '1'): file_name = currency + '_' + city + strftime('_%d_%b_%H:%M.log') with open(file_name, 'w') as f: f.write(result_str) print('\nУспешно сохранено в файл: ' + file_name) if __name__ == '__main__': main()
29,369
https://github.com/xinnicai/vueproject/blob/master/src/views/manager/userManage.vue
Github Open Source
Open Source
MIT
null
vueproject
xinnicai
Vue
Code
793
4,416
<!--用户管理==用户列表--> <style lang="less"> .userManage{ background-color: #fff; border-radius: 4px; border: none!important; padding:20px; } </style> <template> <div class="userManage"> <div style="margin-bottom: 15px;"> <h2 class="tableTitle" style="display: inline-block;">{{tableName}}</h2> <span class="nameSpan">{{introduction}}</span> </div> <Row> <Button type="primary" icon="ios-plus-empty" @click="toAddUser" class="btnopsition">{{createbtnname}}</Button> <div style="float: right;margin-bottom: 12px;"> <Input v-model="condition" placeholder="请输入关键字搜索..." icon="ios-search" style="width: 260px" @on-enter="searchUser" @on-click="searchUser"></Input> </div> </Row> <div> <Table :columns="userTable" :data="userData"></Table> </div> <div style="margin-top:10px;text-align:right;"> <Page :total="total" :current="1" @on-page-size-change="changePageSize" :page-size="pageSize" @on-change="changePage" :page-size-opts="[10,20,50,100]" placement="top" show-total show-sizer ref="pages"></Page> </div> <Modal v-model="delModal" width="360"> <p slot="header" style="color:#f60;text-align:center"> <Icon type="information-circled"></Icon> <span>删除确认</span> </p> <div style="text-align:center"> <p>确定要删除用户-{{delText}}?</p> </div> <div slot="footer"> <Button type="error" size="large" long @click="delUser">确认删除</Button> </div> </Modal> <Modal v-model="resetModal" width="360"> <p slot="header"> <span>重置密码</span> </p> <div style="text-align:center"> <p>确定要将用户{{delText}}的密码重置为 Sddcos.123?</p> </div> <div slot="footer"> <Button type="default" @click="resetModal=false">取消</Button> <Button type="primary" @click="resetPassword">确认</Button> </div> </Modal> <Modal v-model="lockModal" width="360"> <p slot="header"> <span>锁定用户</span> </p> <div style="text-align:center"> <p>确定要锁定用户-{{delText}}?</p> </div> <div slot="footer"> <Button type="default" @click="lockModal=false">取消</Button> <Button type="primary" @click="lockUser">确认</Button> </div> </Modal> <Modal v-model="unlockModal" width="360"> <p slot="header"> <span>解锁用户</span> </p> <div style="text-align:center"> <p>确定要解锁用户-{{delText}}?</p> </div> <div slot="footer"> <Button type="default" @click="unlockModal=false">取消</Button> <Button type="primary" @click="unlockUser">确认</Button> </div> </Modal> </div> </template> <script> import Cookies from 'js-cookie'; import axios from 'axios'; export default { name:'userManage', data () { return { loading: true, tableName:'用户管理', introduction:'可以新增用户、给用户分配资源、赋权、重置密码、以及锁定用户与激活用户等管理', createbtnname:'新增用户', delModal:false, //删除弹框 resetModal:false, //重置密码弹框 lockModal:false, //锁定用户弹框 unlockModal:false, //解锁用户弹框 delText:'', delId:'', btnBoolean:true, condition:"", pageIndex:1, pageSize:10, total:0, paging:true, userData:[], userTable: [ { title: '用户名', key: 'username' }, { title: '姓名', key: 'name', }, { title: '角色', key: 'role_name', }, { title: '说明', key: 'explain', }, { title: '用户类型', key: 'user_type', }, { title: '手机号码', key: 'mobile_phone', }, { title: '状态', key: 'status', width: 100, render:(h,params) => { if(params.row.status=='0'){ return h('span', { style: { display:'inline-block', padding:'5px', backgroundColor:'#19be6b', borderRadius:'5px', color:"#fff" } }, '启用') }else if(params.row.status=='1'){ return h('span', { style: { display:'inline-block', padding:'5px', backgroundColor:'#ed3f14', borderRadius:'5px', color:"#fff" } }, '停用') }else{ return h('span', { style: { display:'inline-block', padding:'5px', backgroundColor:'#ff9900', borderRadius:'5px', color:"#fff" } }, '待审批') } } }, { title: '操作', key: 'id', width: 300, render: (h, params) => { if(params.row.username=='admin'){ return h('Icon', { props: { type: 'ios-close-outline' }, style:{ fontSize:'18px' } }); }else{ if(params.row.status=='0'){ return h('div', [ h('Button',{ //锁定 props:{ type:'ghost', size:'small', icon:'android-unlock' }, style:{ marginRight:'5px' }, on:{ click:()=>{ this.lockModal=true; this.delText = params.row.username; this.delId = params.row.id; } } },'锁定'), h('Button',{ //重置密码 props:{ type:'ghost', size:'small', icon:'ios-keypad' }, style:{ marginRight:'5px' }, on:{ click:()=>{ this.resetModal=true; this.delText = params.row.username; this.delId = params.row.id; } } },'重置密码'), h('Button', { //编辑 props: { type: 'ghost', size: 'small', icon: 'edit' }, style: { marginRight: '5px' }, on: { click: () => { this.editUser(params.row.id); } } }, '编辑'), h('Button',{ //删除 props:{ type:'default', size:'small', icon:'trash-a' }, on:{ click: ()=>{ this.delModal=true; this.delText = params.row.username; this.delId = params.row.id; } } },'删除') ]); }else{ return h('div', [ h('Button',{ //解锁 props:{ type:'ghost', size:'small', icon:'android-lock' }, style:{ marginRight:'5px' }, on:{ click:()=>{ this.unlockModal=true; this.delText = params.row.username; this.delId = params.row.id; } } },'解锁'), h('Button',{ //重置密码 props:{ type:'ghost', size:'small', icon:'ios-keypad' }, style:{ marginRight:'5px' }, on:{ click:()=>{ this.resetModal=true; this.delText = params.row.username; this.delId = params.row.id; } } },'重置密码'), h('Button', { //编辑 props: { type: 'ghost', size: 'small', icon: 'edit' }, style: { marginRight: '5px' }, on: { click: () => { this.editUser(params.row.id); } } }, '编辑'), h('Button',{ //删除 props:{ type:'default', size:'small', icon:'trash-a' }, on:{ click: ()=>{ this.delModal=true; this.delText = params.row.username; this.delId = params.row.id; } } }, '删除') ]); } } } } ] } }, mounted (){ //初始化 this.getUserList(1); }, methods:{ toAddUser(){ //新增用户 this.$router.push('addUser'); }, editUser(id){ //编辑用户 this.$router.push({path:'editUser',query:{userId:id}}); }, lockUser(){ //处理锁定用户 this.dealLock('lock',this.delId); }, unlockUser(){ //解锁用户 this.dealLock('unlock',this.delId); }, searchUser(){ this.getUserList(1); this.$refs['pages'].currentPage = 1; }, getUserList(page){ //获取用户列表 this.pageIndex = page ||1; axios({ method:'GET', timeout: 5000, url:this._URL_INTERFACE+'platform/users?page='+page+'&pageSize='+this.pageSize+'&condition='+this.condition, headers: {"token": Cookies.get('token')}, emulateJSON: true }).then((res)=> { // 处理成功的结果 this.userData=res.data.data; this.total=res.data.total; },(res)=> { // 处理失败的结果 if(res.response.status==401){ this.$Notice.warning({ title: "提示!", desc: '登录超时,请重新登录!' }); this.toLogin(); }else{ this.$Notice.error({ title: "获取用户列表失败!", desc: res.response.data.msg }); } } ); }, changePage (page) { // 这里直接更改了模拟的数据,真实使用场景应该从服务端获取数据 this.getUserList(page); }, changePageSize(pagesize){ this.pageSize=pagesize; this.getUserList(1); }, resetPassword(){ //重置密码 axios({ method:'PUT', url:this._URL_INTERFACE+'platform/users', data:JSON.stringify({ "type":"reset_password", "id":this.delId, "password":"Sddcos.123"}), headers: {"token": Cookies.get('token')}, emulateJSON: true }).then((res)=> { // 处理成功的结果 this.$Notice.success({ title: "重置密码", desc: '重置密码成功!' }); this.resetModal = false; },(res)=> { // 处理失败的结果 if(res.response.status==401){ this.$Notice.warning({ title: "提示!", desc: '登录超时,请重新登录!' }); this.toLogin(); }else{ this.$Notice.error({ title: "重置密码失败!", desc: res.response.data.msg }); this.resetModal = false; } } ); }, delUser(){ //删除用户 axios({ method:'DELETE', url:this._URL_INTERFACE+'platform/users', data:JSON.stringify({ "id":this.delId}), headers: {"token": Cookies.get('token')}, emulateJSON: true }).then((res)=> { // 处理成功的结果 // this.$Message.success('删除成功!'); this.getUserList(this.pageIndex); this.$Notice.success({ name:'deluser_success', title: "删除用户", desc: '用户删除成功!' }); this.delModal=false; },(res)=> { // 处理失败的结果 if(res.response.status==401){ this.$Notice.warning({ title: "提示!", desc: '登录超时,请重新登录!' }); this.toLogin(); }else{ this.$Notice.error({ name:'deluser_error', title: "删除用户", desc: res.response.data.msg }); this.delModal=false; } } ); }, dealLock(type,id){ //处理锁定用户 axios({ method:'PUT', url:this._URL_INTERFACE+'platform/users', data:JSON.stringify({ "type":type, "id":id}), headers: {"token": Cookies.get('token')}, emulateJSON: true }).then((res)=> { // 处理成功的结果 this.getUserList(this.pageIndex); if(type=='lock'){ this.$Notice.success({ title: "锁定用户", desc: '锁定用户成功!' }); this.lockModal=false; }else{ this.$Notice.success({ title: "解锁用户", desc: '解锁用户成功!' }); this.unlockModal=false; } },(res)=> { // 处理失败的结果 if(res.response.status==401){ this.$Notice.warning({ title: "提示!", desc: '登录超时,请重新登录!' }); this.toLogin(); }else{ if(type=='lock'){ this.$Notice.error({ title: "锁定用户失败!", desc: res.response.data.msg }); this.lockModal=false; }else{ this.$Notice.error({ title: "解锁用户失败!", desc: res.response.data.msg }); this.unlockModal=false; } } } ); } }, watch: { '$route'(to, from) { if (to.name === 'userManage' && this.$route.query.addNew==true) { this.searchUser(); } } } } </script>
14,558
https://github.com/4964rollapatriots/ftc_app/blob/master/TeamCode/src/main/java/org/firstinspires/ftc/teamcode/SeasonCode/RoverRuckus/OpModes/Autonomous/ParkDoubleCrater.java
Github Open Source
Open Source
BSD-3-Clause
2,019
ftc_app
4964rollapatriots
Java
Code
1,744
7,663
// This autonomous is intended for an initial setup where the robot is hanging from the lander facing the crater // The robot will detach and lower itself and then locate the position of the block using the phone // The robot will knock the block off and then drive to our teammate's side, where it will knock their block off also // The robot will then deposit our team marker and park in the crater in was initially facing package org.firstinspires.ftc.teamcode.SeasonCode.RoverRuckus.OpModes.Autonomous; import com.qualcomm.robotcore.eventloop.opmode.Autonomous; import com.qualcomm.robotcore.eventloop.opmode.LinearOpMode; import com.qualcomm.robotcore.hardware.DcMotor; import org.firstinspires.ftc.robotcontroller.internal.Core.Utility.CustomTensorFlow; import org.firstinspires.ftc.robotcore.external.navigation.DistanceUnit; import org.firstinspires.ftc.robotcore.external.tfod.Recognition; import org.firstinspires.ftc.teamcode.Components.PulleyTilt.PulleyTilt; import org.firstinspires.ftc.teamcode.SeasonCode.RoverRuckus.Base; @Autonomous(name = "Park Double Crater") // the name of the class is misleading, refer to the Autonomous name //this is the main double crater auto public class ParkDoubleCrater extends LinearOpMode { private Base _base = new Base(); //private UtilGoldDetector eye; private CustomTensorFlow detector; private boolean runUsingTensorFlow = true; // if not, then running with open cv is assumed private blockState _block; private final static double FAR_PARTICLE_ANGLE = 31; private final static double MIDDLE_ANGLE = 10; private final static double SECOND_BLOCK_ABORT_ANGLE = 315; private final static double MARKER_ANGLE = 184; private final static double TURN_INCREMENT = 5; private final static double TURN_SPEED = 0.33; private final static double BLOCK_TURN_SPEED = 0.55; private final static double DRIVING_SPEED = 0.63; private final static double DRIVING_SPEED_CRATER = .95; private final static double DRIVING_SPEED_BLOCK = .53; public double FINAL_CONFIDENCE = 0; public double silverConfidence = 0; // these are the only final values that are used multiple times private double block_distance = 26; private final static double SECOND_BLOCK_DISTANCE = 23.0; private static final String LABEL_GOLD_MINERAL = "Gold Mineral"; private static final String LABEL_SILVER_MINERAL = "Silver Mineral"; private static final double ACCEPTABLE_CONFIDENCE = 0.45; //Hold state of where gold block is sitting private enum blockState { LEFT, MIDDLE, RIGHT, UNCERTAIN } @Override public void runOpMode() { _base.init(hardwareMap, this); _base.outTelemetry.write("Initializing - DO NOT START UNTIL NEXT MESSAGE"); _base.outTelemetry.update(); _block = blockState.UNCERTAIN; detector = new CustomTensorFlow(hardwareMap); runUsingTensorFlow = true; //eye = new UtilGoldDetector(hardwareMap); //This calibration is done before landing because the landing could "bump" the robot and change our angle _base.outTelemetry.write("All Systems Go"); _base.outTelemetry.update(); while (! opModeIsActive()){ telemetry.addData("Waiting to start", "no crashing"); telemetry.update(); } //Gets the robot onto the field from the hanger _base.latchSystem.lowerRobot(3250); _base.drivetrain.driveTo.goTo(0.25,0.1); _base.drivetrain.driveTo.runSequentially(); _base.imu.calibrateTo(0); _base.latchSystem.extendHook(0); _base.latchSystem.openHook(1300); telemetry.addData("communicate with rev hub", "so doesn't disconnect"); _base.latchSystem.openHook(1000); //makes sure the landing did not get our robot off course by turning to the angle that we initialized our gyroscope to // _base.drivetrain.turnTo.goTo(1,.20); // _base.drivetrain.turnTo.blockRunSequentially(3, 2.5); //drives forward to avoid hitting the lander while turning _base.drivetrain.driveTo.goTo(4,DRIVING_SPEED/2); _base.drivetrain.driveTo.runSequentially(); // _base.drivetrain.turnTo.goTo(1, .35); // _base.drivetrain.turnTo.runSequentially(); detector.activate(); _base.drivetrain.driveTo.goTo(3,DRIVING_SPEED/2); _base.drivetrain.driveTo.runSequentially(); this.sleep(800); if(_block == blockState.UNCERTAIN) { if (relativelyAligned()) { _block = blockState.MIDDLE; telemetry.addData("FIRST MIDDLE CHECK FOUND", ""); telemetry.update(); } // pans across the particles until it either sees the block or reaches 348 degrees // 348 degrees should be past the far right particle } // method that sends information about our angles and powers //sendTelemetry(); //turns to the far right in preparation for panning across the particles from right to left if(_block == blockState.UNCERTAIN) { //to use one run of aligned to make sure stuff works _base.drivetrain.turnTo.goTo(330,BLOCK_TURN_SPEED-.2); _base.drivetrain.turnTo.blockRunSequentially(3,5); this.sleep(400); if (aligned()) { _block = blockState.RIGHT; telemetry.addData("FOUND IN RIGHT", ""); telemetry.update(); } // pans across the particles until it either sees the block or reaches 348 degrees // 348 degrees should be past the far right particle } if (_block == blockState.UNCERTAIN){ for (double i = 334; i < 337; i += TURN_INCREMENT - 1){ telemetry.addData("Searching for right block!" , ""); telemetry.update(); _base.drivetrain.turnTo.goTo(i,BLOCK_TURN_SPEED-.2); _base.drivetrain.turnTo.blockRunSequentially(); if (aligned()){ _block = blockState.RIGHT; break; } } } // if it is not in the middle, the robot turns until it sees the left block or reaches 18 degrees // if(_block == blockState.UNCERTAIN) { // _base.drivetrain.turnTo.goTo(2, BLOCK_TURN_SPEED - .2); // _base.drivetrain.turnTo.blockRunSequentially(); // // this.sleep(1000); // if (aligned()) { // _block = blockState.MIDDLE; // telemetry.addData("FOUND IN MIDDLE", ""); // telemetry.update(); // } // } //if the block is still not found, the block is on the left // the robot turns until it reaches 17 degrees and then pans until it sees the block if(_block == blockState.UNCERTAIN) { _base.drivetrain.turnTo.goTo( 37, TURN_SPEED+.17); _base.drivetrain.turnTo.blockRunSequentially(2,5); _block = blockState.LEFT; } //this turns a small amount to account for the offset of our phone on the left side of our robot //sendTelemetry(); telemetry.addData("block state is", _block); telemetry.addData("Silver Confidence = ", silverConfidence); telemetry.addData("Gold Confidence = ", FINAL_CONFIDENCE); telemetry.update(); //drive forward to knock the block off and then go back the same distance // this works because at this point the robot is facing the block if (_block == blockState.MIDDLE){ block_distance -= 4; _base.drivetrain.turnTo.goTo(3, TURN_SPEED-.05); _base.drivetrain.turnTo.runSequentially(2,5); } else if(_block == blockState.RIGHT) { //block_distance -= 1.0; } else { //block_distance -= 1; } _base.drivetrain.driveTo.goTo(block_distance - 1,DRIVING_SPEED_BLOCK); _base.drivetrain.driveTo.runSequentially(); if(_block == blockState.RIGHT) { _base.drivetrain.driveTo.goTo(-(block_distance),DRIVING_SPEED_BLOCK); _base.drivetrain.driveTo.runSequentially(); } else if(_block == blockState.MIDDLE) { _base.drivetrain.driveTo.goTo(-(block_distance-1), DRIVING_SPEED_BLOCK); _base.drivetrain.driveTo.runSequentially(); } else { _base.drivetrain.driveTo.goTo(-10, DRIVING_SPEED_BLOCK); _base.drivetrain.driveTo.runSequentially(); } // the robot is at a common spot, but a different angle based on where the block was // since the turnTo class uses a gyroscope, turning to 60 gives a common angle also if(_block == blockState.LEFT) { _base.drivetrain.turnTo.goTo(76, TURN_SPEED); _base.drivetrain.turnTo.runSequentially(2,2); } else if(_block == blockState.RIGHT) { _base.drivetrain.turnTo.goTo(68.5, 0.4); _base.drivetrain.turnTo.runSequentially(2,5); } else { _base.drivetrain.turnTo.goTo(65, TURN_SPEED-0.1); _base.drivetrain.turnTo.runSequentially(2,5); } // drives between the lander and the far left particle so the path is clear to our teammate's side if (_block == blockState.RIGHT){ _base.drivetrain.driveTo.goTo(40, DRIVING_SPEED); _base.drivetrain.driveTo.runStopIfDist(17, 3); _base.drivetrain.turnTo.goTo(137, TURN_SPEED); _base.drivetrain.turnTo.runSequentially(); _base.drivetrain.driveTo.goTo(36, DRIVING_SPEED); _base.drivetrain.driveTo.runSequentially(); _base.drivetrain.turnTo.goTo(110, TURN_SPEED+.12); _base.drivetrain.turnTo.runSequentially(2.5); _base.drivetrain.driveTo.goTo(2, DRIVING_SPEED); _base.drivetrain.driveTo.runSequentially(2); deliver(); _base.drivetrain.turnTo.goTo(325, TURN_SPEED+.17); _base.drivetrain.turnTo.runSequentially(5); _base.collector.powerExtension(-1); _base.drivetrain.driveTo.goTo(30,1); _base.drivetrain.driveTo.runSequentially(); _base.collector.powerExtension(0); } else if (_block== blockState.MIDDLE){ _base.drivetrain.driveTo.goTo(60, DRIVING_SPEED); _base.drivetrain.driveTo.runStopIfTouch(8); //turn to drive in between particle on teammate's side and wall _base.drivetrain.turnTo.goTo(127, TURN_SPEED); _base.drivetrain.turnTo.runSequentially(2); //drives between the particle on teammate's side and wall _base.drivetrain.driveTo.goTo(11, DRIVING_SPEED ); _base.drivetrain.driveTo.runSequentially(10); // turns in preparation for moving towards the deposit zone _base.drivetrain.turnTo.goTo(134, TURN_SPEED); _base.drivetrain.turnTo.runSequentially(2); _base.tiltChannel.pulleys.setMode(DcMotor.RunMode.RUN_TO_POSITION); _base.tiltChannel.pulleys.setTargetPosition(PulleyTilt.CRATER_TILT_TEAM_MARKER_ENC); _base.tiltChannel.pulleys.setPower(1); //drives to the deposit zone _base.drivetrain.driveTo.goTo(45, DRIVING_SPEED); _base.drivetrain.driveTo.runStopIfDist(7); _base.collector.powerExtension(-1); try{ Thread.sleep(400);} catch(Exception ex){ex.printStackTrace();} deliver(); _base.drivetrain.turnTo.goTo(143, TURN_SPEED ); _base.drivetrain.turnTo.arcSequentially(3, 2.5); _base.drivetrain.turnTo.goTo(144, TURN_SPEED); _base.drivetrain.turnTo.runSequentially(2,1); _base.drivetrain.driveTo.goTo(18, 0.5); _base.drivetrain.driveTo.runSequentially(); _base.drivetrain.turnTo.goTo(264, BLOCK_TURN_SPEED-.05); _base.drivetrain.turnTo.runSequentially(2,4); //knock block off _base.drivetrain.driveTo.goTo(27, DRIVING_SPEED); _base.drivetrain.driveTo.runSequentially(); //back up into the depot _base.drivetrain.driveTo.goTo(-30, DRIVING_SPEED); _base.drivetrain.driveTo.runSequentially(); _base.drivetrain.turnTo.goTo(360 -42, TURN_SPEED+.17); _base.drivetrain.turnTo.runSequentially(); _base.collector.powerExtension(-1); _base.drivetrain.driveTo.goTo(32, DRIVING_SPEED+.17); _base.drivetrain.driveTo.runSequentially(); _base.drivetrain.turnTo.goTo(360-42, TURN_SPEED); _base.drivetrain.turnTo.runSequentially(); _base.drivetrain.driveTo.goTo(38, 1); _base.drivetrain.driveTo.runSequentially(); } else{ //Block State: left _base.drivetrain.driveTo.goTo(29, DRIVING_SPEED); _base.drivetrain.driveTo.runStopIfTouch(4); //turn to drive in between particle on teammate's side and wall _base.drivetrain.turnTo.goTo(126.5, TURN_SPEED+.17); _base.drivetrain.turnTo.runSequentially(2.5); //drives between the particle on teammate's side and wall _base.drivetrain.driveTo.goTo(11, DRIVING_SPEED ); _base.drivetrain.driveTo.runSequentially(3); // turns in preparation for moving towards the deposit zone _base.drivetrain.turnTo.goTo(134, TURN_SPEED+.17); _base.drivetrain.turnTo.runSequentially(1.7); //drives to the deposit zone _base.drivetrain.driveTo.goTo(45, DRIVING_SPEED); _base.drivetrain.driveTo.runStopIfDist(7); leftOnlyDeliver(); _base.drivetrain.turnTo.goTo(143, TURN_SPEED ); _base.drivetrain.turnTo.arcSequentially(3, 2.5); _base.drivetrain.turnTo.goTo(144, TURN_SPEED); _base.drivetrain.turnTo.runSequentially(2,1); _base.drivetrain.driveTo.goTo(8.5, 0.5); _base.drivetrain.driveTo.runSequentially(); _base.drivetrain.turnTo.goTo(220, BLOCK_TURN_SPEED); _base.drivetrain.turnTo.runSequentially(3,3); _base.collector.powerExtension(-1); _base.drivetrain.driveTo.goTo(65, 1); _base.drivetrain.driveTo.runSequentially(); _base.collector.powerExtension(0); } _base.drivetrain.stop(); detector.deactivate(); while(opModeIsActive()) { _base.collector.powerExtension(0); } } private void sendTelemetry(){ telemetry.addData("Angle Z: ", _base.imu.zAngle()); telemetry.addData("Angle X: ", _base.imu.xAngle()); telemetry.addData("Angle Y: ", _base.imu.yAngle()); telemetry.addData("SPEED: ", _base.drivetrain.frontLeft().getPower()); telemetry.update(); } private void deliver(){ _base.collector.powerExtension(-1); try{ Thread.sleep(1000);} catch(Exception ex){ex.printStackTrace();} _base.tiltChannel.craterLowestTiltDownByEnc(3000); this.sleep(300); _base.collector.runCollector(-.90); // gives time for the marker to slide off try{ Thread.sleep(500);} catch(Exception ex){ex.printStackTrace();} _base.collector.powerExtension(1); _base.tiltChannel.AUTOTiltToZero(3500); // try{ // Thread.sleep(800);} // catch(Exception ex){ex.printStackTrace();} _base.collector.powerExtension(0); _base.collector.stop(); } private void leftOnlyDeliver(){ _base.collector.powerExtension(-1); try{ Thread.sleep(1000);} catch(Exception ex){ex.printStackTrace();} _base.tiltChannel.lowestTiltDownByEnc(3000); this.sleep(300); _base.collector.runCollector(-.90); // gives time for the marker to slide off try{ Thread.sleep(500);} catch(Exception ex){ex.printStackTrace();} _base.collector.powerExtension(1); _base.tiltChannel.AUTOTiltToZero(3500); // try{ // Thread.sleep(800);} // catch(Exception ex){ex.printStackTrace();} _base.collector.powerExtension(0); _base.collector.stop(); } private void testDeliver(){ _base.collector.powerExtension(-1); try{ Thread.sleep(200);} catch(Exception ex){ex.printStackTrace();} _base.tiltChannel.lowestTiltDownByEnc(3000); _base.collector.runCollector(-.40); // gives time for the marker to slide off try{ Thread.sleep(750);} catch(Exception ex){ex.printStackTrace();} _base.collector.powerExtension(0); _base.collector.runCollector(-.25); _base.tiltChannel.AUTOTiltToZero(3500); //_base.collector.powerExtension(-.65); // try{ // Thread.sleep(800);} // catch(Exception ex){ex.printStackTrace();} _base.collector.powerExtension(0); _base.collector.stop(); } private void turnToAlign(){ if(_block == blockState.LEFT) { _base.drivetrain.turnTo.goTo(_base.imu.zAngle() + 18, TURN_SPEED); _base.drivetrain.turnTo.blockRunSequentially(); telemetry.addData("Tur to Align LEFT,", ""); telemetry.update(); } else if (_block == blockState.RIGHT) { _base.drivetrain.turnTo.goTo(_base.imu.zAngle() + 2, TURN_SPEED); _base.drivetrain.turnTo.blockRunSequentially(); telemetry.addData("Tur to Align RIGHT,", ""); telemetry.update(); } else { _base.drivetrain.turnTo.goTo(_base.imu.zAngle() + 12, TURN_SPEED); _base.drivetrain.turnTo.blockRunSequentially(); telemetry.addData("Tur to Align MIDDLE,", ""); telemetry.update(); } } private void turnToAlign(double ANGLE_ADDITION){ _base.drivetrain.turnTo.goTo(_base.imu.zAngle() + ANGLE_ADDITION, TURN_SPEED); _base.drivetrain.turnTo.blockRunSequentially(); } private void driveAndExtend(double distance, double timeout){ double COUNTS_PER_INCH = 40.78651685 * .80; timeout *= 1000; if(_base.drivetrain.getEncoderMode() != DcMotor.RunMode.RUN_TO_POSITION) { _base.drivetrain.encoderToPos(); } _base.drivetrain.backLeft().setTargetPosition((int)(distance * COUNTS_PER_INCH) + _base.drivetrain.backLeft().getCurrentPosition()); _base.drivetrain.backRight().setTargetPosition((int)(distance * COUNTS_PER_INCH)+ _base.drivetrain.backRight().getCurrentPosition()); _base.drivetrain.frontLeft().setTargetPosition((int)(distance * COUNTS_PER_INCH) + _base.drivetrain.frontLeft().getCurrentPosition()); _base.drivetrain.frontRight().setTargetPosition((int)(distance * COUNTS_PER_INCH) + _base.drivetrain.frontRight().getCurrentPosition()); _base.drivetrain.setAllMotorPower(1); long startTime = System.currentTimeMillis(); while((_base.drivetrain.isBusy() && opModeIsActive() && System.currentTimeMillis() - startTime < timeout)) { _base.collector.powerExtension(-1); } _base.collector.powerExtension(0); _base.drivetrain.setAllMotorPower(0); } public boolean aligned(){ boolean aligned = false; double maxSilver = 0; double maxGold = 0; if (runUsingTensorFlow){ detector.refresh(); if(detector.recognitions == null) { aligned = false; } else{ for (int i = 0; i < detector.recognitions.size(); i ++){ Recognition rec = detector.recognitions.get(i); if (rec.getLabel().equals(LABEL_SILVER_MINERAL)){ telemetry.addData("Silver detecting with confidence ", rec.getConfidence()); silverConfidence = rec.getConfidence(); if(rec.getConfidence() > 0.85) { silverConfidence = rec.getConfidence(); return false; } break; } if (rec.getLabel().equals(LABEL_GOLD_MINERAL) && rec.getConfidence() > ACCEPTABLE_CONFIDENCE){ telemetry.addData("Gold detecting with confidence ", rec.getConfidence()); FINAL_CONFIDENCE = rec.getConfidence(); return true; } } } } else{ //aligned = eye.isAligned(); } telemetry.addData("END RESULT - ", aligned); telemetry.update(); sleep(500); return aligned; } public boolean relativelyAligned(){ if (runUsingTensorFlow){ double silverConfidence = 0; double goldConfidence = 0; detector.refresh(); if(detector.recognitions == null) { return false; } else{ for (int i = 0; i < detector.recognitions.size(); i ++){ Recognition rec = detector.recognitions.get(i); if (rec.getLabel().equals(LABEL_SILVER_MINERAL)){ telemetry.addData("Silver detecting with confidence ", rec.getConfidence()); telemetry.update(); if (rec.getConfidence() > silverConfidence){ silverConfidence = rec.getConfidence(); } } if (rec.getLabel().equals(LABEL_GOLD_MINERAL) && rec.getConfidence() > ACCEPTABLE_CONFIDENCE){ telemetry.addData("Gold detecting with confidence ", rec.getConfidence()); telemetry.update(); if (rec.getConfidence() > goldConfidence){ goldConfidence = rec.getConfidence(); } } } } if (goldConfidence > silverConfidence && goldConfidence > ACCEPTABLE_CONFIDENCE){ return true; } else{ return false; } } else{ return false; } } private boolean isAligned() { detector.refresh(); if (detector.recognitions == null || detector.recognitions.size() == 0) { return false; } else if (detector.recognitions.size() == 1 && detector.recognitions.get(0).getLabel() == LABEL_GOLD_MINERAL) { if (detector.recognitions.get(0).getConfidence() > 0.35) { return true; } else { return false; } } else { double minHeight; double maxHeight; double heightDifference = 90; maxHeight = detector.recognitions.get(0).getLeft(); minHeight = detector.recognitions.get(0).getLeft(); for (Recognition r : detector.recognitions) { if (r.getLeft() > maxHeight) { maxHeight = r.getLeft(); } if (r.getLeft() < minHeight) { minHeight = r.getLeft(); } } if ((maxHeight - minHeight) > heightDifference) { for (Recognition r : detector.recognitions) { if (r.getLeft() < (maxHeight - heightDifference)) { detector.recognitions.remove(r); } } } if (detector.recognitions.size() > 1) { double center = detector.recognitions.get(0).getImageHeight() / 2; double minOffset = 2000; for (Recognition r : detector.recognitions) { double offset = Math.abs((r.getTop() - r.getBottom()) - center); if (offset < minOffset) { minOffset = offset; } } for (Recognition r : detector.recognitions) { if (Math.abs((r.getTop() - r.getBottom()) - center) > minOffset) { detector.recognitions.remove(r); } } } } if (detector.recognitions.size() > 1){ return false; } else if (detector.recognitions.get(0).getLabel() == LABEL_GOLD_MINERAL && detector.recognitions.get(0).getConfidence() > 0.35) { return true; } else { return false; } } }
29,805
https://github.com/JosXa/GetAltsClient/blob/master/examples/quickstart.py
Github Open Source
Open Source
MIT
null
GetAltsClient
JosXa
Python
Code
28
79
""" This example script imports the getaltsclient package and prints out the version. """ import getaltsclient def main(): print( f"getaltsclient version: {getaltsclient.__version__}" ) if __name__ == "__main__": main()
13,042
https://github.com/GeoHealth/HAppi_backend/blob/master/db/migrate/20170414110520_add_columns_to_data_analysis_basis_analyses.rb
Github Open Source
Open Source
Apache-2.0
2,017
HAppi_backend
GeoHealth
Ruby
Code
16
70
class AddColumnsToDataAnalysisBasisAnalyses < ActiveRecord::Migration def change add_column :data_analysis_basis_analyses, :start_date, :timestamp add_column :data_analysis_basis_analyses, :end_date, :timestamp end end
17,867
https://github.com/DSCTIU/Flutter_hackathon/blob/master/lib/device.dart
Github Open Source
Open Source
Apache-2.0
2,018
Flutter_hackathon
DSCTIU
Dart
Code
487
1,799
import 'package:flutter/material.dart'; import 'package:flutter_app_hackathon/benifits.dart'; //ui import 'package:flutter_app_hackathon/drawback.dart'; //development and tools import 'package:flutter_app_hackathon/fluttermoredetails.dart'; // more details import 'package:flutter_app_hackathon/nextpage.dart'; // device sdk import 'package:flutter_app_hackathon/dartintro.dart'; import 'package:flutter_app_hackathon/using.dart'; import 'package:flutter_app_hackathon/developing.dart'; import 'package:flutter_app_hackathon/platform.dart'; class DeviceSDK extends StatelessWidget { @override Widget build(BuildContext context) { return new MaterialApp( debugShowCheckedModeBanner: false, theme: new ThemeData(primarySwatch: Colors.blue), home: new AndroidHome(), ); } } class AndroidHome extends StatefulWidget { @override _AndroidHomeState createState() => _AndroidHomeState(); } class _AndroidHomeState extends State<AndroidHome> { void dartentry() { setState(() { Navigator.of(context).push(new MaterialPageRoute( builder: (BuildContext context) => new DartIntro())); }); } void usingentry() { setState(() { Navigator.of(context).push(new MaterialPageRoute( builder: (BuildContext context) => new USEing())); }); } void develpoingentry() { setState(() { Navigator.of(context).push(new MaterialPageRoute( builder: (BuildContext context) => new Developing())); }); } void platformentry() { setState(() { Navigator.of(context).push(new MaterialPageRoute( builder: (BuildContext context) => new Platform())); }); } @override Widget build(BuildContext context) { return new Scaffold( appBar: new AppBar( title: new Text( "Use Device and SDK APIs", style: TextStyle(color: Colors.white), )), drawer: Drawer( child: ListView( children: <Widget>[ /* Widget 1 */ new UserAccountsDrawerHeader( accountName: new Text( "flutter", style: TextStyle(color: Colors.white, fontSize: 20.0), ), accountEmail: new Text( "flutter.io", style: TextStyle(color: Colors.white, fontSize: 20.0), ), currentAccountPicture: new CircleAvatar( child: new FlutterLogo( size: 50.0, ), ), otherAccountsPictures: <Widget>[ MaterialButton( onPressed: dartentry, child: new CircleAvatar( child: new Text( "D", style: new TextStyle(fontSize: 40.0), ), ), ), ], ), /* Widget 2 */ /* Widget 3 */ ListTile( title: Text( "Get Started" ), leading: Icon(Icons.chevron_right), onTap: () { Navigator.of(context).pop(); // Navigator.of(context).pushNamed("/a"); Navigator.of(context).push(new MaterialPageRoute( builder: (BuildContext context) => new NewPage())); }, ), /* Widget 4 */ ListTile( title: Text( "Build UIs" ), leading: Icon(Icons.chevron_right), onTap: () { Navigator.of(context).pop(); // Navigator.of(context).pushNamed("/a"); Navigator.of(context).push(new MaterialPageRoute( builder: (BuildContext context) => new Benifits())); }, ), ListTile( title: Text( "Use device and SDK APIs" ), leading: Icon(Icons.chevron_right), ), ListTile( title: Text( "Development and Tools" ), leading: Icon(Icons.chevron_right), onTap: () { Navigator.of(context).pop(); // Navigator.of(context).pushNamed("/a"); Navigator.of(context).push(new MaterialPageRoute( builder: (BuildContext context) => new Drawbacks())); }, ),ListTile( title: Text( "More Details" ), leading: Icon(Icons.chevron_right), onTap: () { Navigator.of(context).pop(); // Navigator.of(context).pushNamed("/a"); Navigator.of(context).push(new MaterialPageRoute( builder: (BuildContext context) => new Fluttermore())); }, ) ], ), ), body: Material( child: new ListView( children: <Widget>[ new Divider(), new MaterialButton( onPressed: usingentry, child: Row( children: <Widget>[ /* Widget 1 */ Container( child: new FlutterLogo(size: 100.0), height: 100.0, width: 100.0, ), /* Widget 2 */ Center( child: Text( "Using Packages", textAlign: TextAlign.center, style: TextStyle( fontSize: 20.0 ) ), ) ], ) ), new Divider(), new MaterialButton( onPressed: develpoingentry, child: Row( children: <Widget>[ /* Widget 1 */ Container( child: new FlutterLogo(size: 100.0), height: 100.0, width: 100.0, ), /* Widget 2 */ Center( child: Text( "Developing Packages", textAlign: TextAlign.center, style: TextStyle( fontSize: 20.0 ) ), ) ], ) ), new Divider(), new MaterialButton( onPressed: platformentry, child: Row( children: <Widget>[ /* Widget 1 */ Container( child: new FlutterLogo(size: 100.0), height: 100.0, width: 100.0, ), /* Widget 2 */ Center( child: Text( "Platform Specific Code", textAlign: TextAlign.center, style: TextStyle( fontSize: 20.0 ) ), ) ], ) ), ], ), ), ); } }
49,297
https://github.com/phenoscape/Phenex/blob/master/src/main/java/org/obo/annotation/view/PhenoteOntologyTreeEditorFactory.java
Github Open Source
Open Source
MIT
2,021
Phenex
phenoscape
Java
Code
54
150
package org.obo.annotation.view; import org.oboedit.gui.factory.TermPanelFactory; /** * This class is used only to provide a customized name for this OBO-Edit * component within Phenote. * @author Jim Balhoff */ public class PhenoteOntologyTreeEditorFactory extends TermPanelFactory { @Override public String getName() { return "Complete Ontology Tree View"; } @Override public org.bbop.framework.GUIComponentFactory.FactoryCategory getCategory() { return FactoryCategory.ONTOLOGY; } }
46,962
https://github.com/Gramgramgram/DivineDefense/blob/master/core/src/ua/gram/model/actor/GameActor.java
Github Open Source
Open Source
WTFPL
2,021
DivineDefense
Gramgramgram
Java
Code
188
684
package ua.gram.model.actor; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.g2d.Batch; import com.badlogic.gdx.scenes.scene2d.Actor; import ua.gram.DDGame; import ua.gram.controller.Counters; import ua.gram.controller.Flags; import ua.gram.controller.state.StateManager; import ua.gram.model.Animator; import ua.gram.model.PoolableAnimation; import ua.gram.model.Resetable; import ua.gram.model.prototype.GameActorPrototype; public abstract class GameActor<T1, T2, M extends StateManager> extends Actor implements Resetable { protected final Animator<T1, T2> animator; protected final float animationWidth; protected final float animationHeight; protected final Counters counters; protected final Flags flags; private float stateTime; public GameActor(GameActorPrototype prototype) { animationWidth = prototype.width; animationHeight = prototype.height; setSize(prototype.width, prototype.height); setName(prototype.name); animator = new Animator<T1, T2>(); counters = new Counters(); flags = new Flags(); } public abstract M getStateManager(); @Override public void draw(Batch batch, float parentAlpha) { super.draw(batch, parentAlpha); if ((!DDGame.PAUSE || !animator.hasCurrentFrame()) && animator.getAnimation() != null) { animator.setCurrentFrame(animator.getAnimation().getKeyFrame(stateTime, true)); stateTime += Gdx.graphics.getDeltaTime(); } if (animator.hasCurrentFrame()) batch.draw(animator.getCurrentFrame(), getX(), getY()); } @Override public void act(float delta) { super.act(delta); if (!DDGame.PAUSE) { setDebug(DDGame.DEBUG); } } @Override public String toString() { return getClass().getSimpleName() + "#" + this.hashCode(); } @Override public void resetObject() { stateTime = 0; animator.setCurrentFrame(null); } public Counters getCounters() { return counters; } public Animator<T1, T2> getAnimator() { return animator; } public PoolableAnimation getPoolableAnimation() { return animator.getPoolable(); } public Flags getFlags() { return flags; } }
16,651
https://github.com/vinod827/casbin-dynamodb-adapter/blob/master/src/adapter.ts
Github Open Source
Open Source
Apache-2.0
2,020
casbin-dynamodb-adapter
vinod827
TypeScript
Code
177
331
// Copyright 2018 The Casbin 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. import { Adapter, Helper, Model } from 'casbin'; import { CasbinRule } from './casbinRule'; import { Connection, ConnectionOptions, createConnection, getRepository, getConnection } from 'typeorm'; import { CasbinMongoRule } from './casbinMongoRule'; type GenericCasbinRule = CasbinRule | CasbinMongoRule; type CasbinRuleConstructor = new (...args: any[]) => GenericCasbinRule; /** * DynamoDBAdapter represents the Amazon DynamoDB adapter for policy storage. */ export default class DynamoDBAdapter implements Adapter { private option: ConnectionOptions; private typeorm: Connection; private constructor(option: ConnectionOptions) { this.option = option; } }
21,685
https://github.com/slashdotted/dropboxQt/blob/master/src/dropbox/team/TeamMembersAddJobStatus.cpp
Github Open Source
Open Source
MIT
2,020
dropboxQt
slashdotted
C++
Code
153
694
/********************************************************** DO NOT EDIT This file was generated from stone specification "team" Part of "Ardi - the organizer" project. osoft4ardi@gmail.com www.prokarpaty.net ***********************************************************/ #include "dropbox/team/TeamMembersAddJobStatus.h" namespace dropboxQt{ namespace team{ ///MembersAddJobStatus MembersAddJobStatus::operator QJsonObject()const{ QJsonObject js; this->toJson(js, ""); return js; } void MembersAddJobStatus::toJson(QJsonObject& js, QString name)const{ switch(m_tag){ case PollResultBase_IN_PROGRESS:{ if(!name.isEmpty()) js[name] = QString("in_progress"); }break; case MembersAddJobStatus_COMPLETE:{ if(!name.isEmpty()) js[name] = QString("complete"); js["complete"] = struct_list2jsonarray(m_complete); }break; case MembersAddJobStatus_FAILED:{ if(!name.isEmpty()) js[name] = QString("failed"); if(!m_failed.isEmpty()) js["failed"] = QString(m_failed); }break; }//switch } void MembersAddJobStatus::fromJson(const QJsonObject& js){ QString s = js[".tag"].toString(); if(s.compare("in_progress") == 0){ m_tag = PollResultBase_IN_PROGRESS; } if(s.compare("complete") == 0){ m_tag = MembersAddJobStatus_COMPLETE; jsonarray2struct_list(js["complete"].toArray(), m_complete); } else if(s.compare("failed") == 0){ m_tag = MembersAddJobStatus_FAILED; m_failed = js["failed"].toString(); } } QString MembersAddJobStatus::toString(bool multiline)const { QJsonObject js; toJson(js, "MembersAddJobStatus"); QJsonDocument doc(js); QString s(doc.toJson(multiline ? QJsonDocument::Indented : QJsonDocument::Compact)); return s; } std::unique_ptr<MembersAddJobStatus> MembersAddJobStatus::factory::create(const QByteArray& data) { QJsonDocument doc = QJsonDocument::fromJson(data); QJsonObject js = doc.object(); std::unique_ptr<MembersAddJobStatus> rv = std::unique_ptr<MembersAddJobStatus>(new MembersAddJobStatus); rv->fromJson(js); return rv; } }//team }//dropboxQt
30,340
https://github.com/minatani/OpenJSCAD.org/blob/master/packages/modeling/src/math/vec2/rotate.test.js
Github Open Source
Open Source
MIT
null
OpenJSCAD.org
minatani
JavaScript
Code
175
548
const test = require('ava') const { rotate, fromValues } = require('./index') const { compareVectors } = require('../../../test/helpers/index') test('vec2: rotate() called with two paramerters should return a vec2 with correct values', (t) => { const radians = 90 * Math.PI / 180 const obs1 = rotate(0, [0, 0]) t.true(compareVectors(obs1, [0, 0])) const obs2 = rotate(0, [1, 2]) t.true(compareVectors(obs2, [1, 2])) const obs3 = rotate(radians, [-1, -2]) t.true(compareVectors(obs3, [2, -1])) const obs4 = rotate(-radians, [-1, 2]) t.true(compareVectors(obs4, [2, 1])) }) test('vec2: rotate() called with three paramerters should update a vec2 with correct values', (t) => { const radians = 90 * Math.PI / 180 const obs1 = fromValues(0, 0) const ret1 = rotate(obs1, 0, [0, 0]) t.true(compareVectors(obs1, [0, 0])) t.true(compareVectors(ret1, [0, 0])) const obs2 = fromValues(0, 0) const ret2 = rotate(obs2, 0, [1, 2]) t.true(compareVectors(obs2, [1, 2])) t.true(compareVectors(ret2, [1, 2])) const obs3 = fromValues(0, 0) const ret3 = rotate(obs3, radians, [-1, -2]) t.true(compareVectors(obs3, [2, -1])) t.true(compareVectors(ret3, [2, -1])) const obs4 = fromValues(0, 0) const ret4 = rotate(obs4, -radians, [-1, 2]) t.true(compareVectors(obs4, [2, 1])) t.true(compareVectors(ret4, [2, 1])) })
2,528
https://github.com/Johnnbass/laravel7/blob/master/app/Http/Controllers/ContatoController.php
Github Open Source
Open Source
MIT
2,021
laravel7
Johnnbass
PHP
Code
231
712
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\SiteContato; use App\MotivoContato; class ContatoController extends Controller { public function contato(Request $request) { $motivo_contatos = MotivoContato::all(); // echo '<pre>'; // print_r($request->all()); // echo '</pre>'; // echo $request->input('nome'); // echo '<br>'; // echo $request->input('email'); // $contato = new SiteContato(); // $contato->nome = $request->input('nome'); // $contato->telefone = $request->input('telefone'); // $contato->email = $request->input('email'); // $contato->motivo_contato = $request->input('motivo_contato'); // $contato->mensagem = $request->input('mensagem'); // $contato->save(); // print_r($contato->getAttributes()); // $contato = new SiteContato(); // if (!empty($request->all())) { // $contato->create($request->all()); // declarar a variável protected $fillable na model com os campos a serem preenchidos // // $contato->fill($request->all()); // declarar a variável protected $fillable na model com os campos a serem preenchidos // // $contato->save(); // } return view('site.contato', ['titulo' => 'Contato', 'motivo_contatos' => $motivo_contatos]); } public function salvar(Request $request) { $rules = [ 'nome' => 'required|min:3|max:40|unique:site_contatos', 'telefone' => 'required', 'email' => 'email', 'motivo_contatos_id' => 'required', 'mensagem' => 'required|max:2000', ]; $feedback = [ 'nome.min' => 'O campo nome precisa ter no mínimo 3 caracteres', 'nome.max' => 'O campo nome deve ter no máximo 40 caracteres', 'nome.unique' => 'O nome informado já está em uso', 'email.email' => 'O e-mail informado não é um endereço de e-mail válido', 'mensagem.max' => 'A mensagem deve ter no máximo 2000 caracteres', 'required' => 'O campo :attribute deve ser preenchido' //validação genérica ]; // validar os dados do formulário recebidos no request $request->validate($rules, $feedback); SiteContato::create($request->all()); return redirect()->route('site.index'); } }
19,916
https://github.com/XuanchenLin/NanUI/blob/master/src/NetDimension.NanUI/Runtime/ApplicationConfigurationBuilder.cs
Github Open Source
Open Source
MIT
2,023
NanUI
XuanchenLin
C#
Code
144
483
namespace NetDimension.NanUI; public enum ExtensionExecutePosition { MainProcessInitilized, SubProcessInitialized, BrowserProcessInitialized, Terminated } public sealed partial class ApplicationConfigurationBuilder { internal class ConfigurationInitializationAction { public ConfigurationInitializationAction(ExtensionExecutePosition executePosition, Func<ApplicationConfigurationBuilder, Action<RuntimeContext, IDictionary<string, object>>> func) { ExecutePosition = executePosition; Function = func; } public ExtensionExecutePosition ExecutePosition { get; } public Func<ApplicationConfigurationBuilder, Action<RuntimeContext, IDictionary<string, object>>> Function { get; } } private readonly RuntimeBuilderContext _context; private Func<ApplicationContext, Formium> _useMainWindow; private Func<ApplicationContext> _useApplicationContext; internal readonly IDictionary<string, object> Properties = new Dictionary<string, object>(); public ChromiumEnvironment ChromiumEnvironment { get; } public ServiceContainer Container { get; } private readonly List<ConfigurationInitializationAction> _useExtensions = new(); internal ApplicationConfigurationBuilder(RuntimeBuilderContext runtimeBuilderContext) { _context = runtimeBuilderContext; ChromiumEnvironment = (ChromiumEnvironment)_context.Properties[typeof(ChromiumEnvironment)]; Container = (ServiceContainer)_context.Properties[typeof(ServiceContainer)]; } internal ApplicationConfiguration Build() { var config = new ApplicationConfiguration(); foreach (var useExtension in _useExtensions) { var result = useExtension.Function?.Invoke(this); if (result != null) { config.UseExtensions[(int)useExtension.ExecutePosition] += result; } } config.UseApplicationContext = _useApplicationContext; config.UseMainWindow = _useMainWindow; return config; } }
14,064
https://github.com/belzecue/DJV/blob/master/tests/djvSystemTest/FileIOTest.cpp
Github Open Source
Open Source
BSD-3-Clause
2,022
DJV
belzecue
C++
Code
646
2,882
// SPDX-License-Identifier: BSD-3-Clause // Copyright (c) 2004-2020 Darby Johnston // All rights reserved. #include <djvSystemTest/FileIOTest.h> #include <djvSystem/FileIO.h> #include <djvSystem/Path.h> #include <limits> #include <sstream> using namespace djv::Core; using namespace djv::System; namespace djv { namespace SystemTest { FileIOTest::FileIOTest( const File::Path& tempPath, const std::shared_ptr<Context>& context) : ITest( "djv::SystemTest::FileIOTest", File::Path(tempPath, "FileIOTest"), context), _fileName("file.txt"), _text("Hello"), _text2("world!") {} void FileIOTest::run() { _io(); _error(); _endian(); _temp(); } void FileIOTest::_io() { { auto io = File::IO::create(); DJV_ASSERT(!io->isOpen()); DJV_ASSERT(io->getFileName().empty()); DJV_ASSERT(0 == io->getSize()); DJV_ASSERT(0 == io->getPos()); DJV_ASSERT(io->isEOF()); const std::string fileName = File::Path(getTempPath(), _fileName).get(); io->open( fileName, File::Mode::Write); DJV_ASSERT(io->isOpen()); DJV_ASSERT(io->getFileName() == fileName); } { const int8_t i8 = std::numeric_limits<int8_t>::max(); const uint8_t u8 = std::numeric_limits<uint8_t>::max(); const int16_t i16 = std::numeric_limits<int16_t>::max(); const uint16_t u16 = std::numeric_limits<uint16_t>::max(); const int32_t i32 = std::numeric_limits<int32_t>::max(); const uint32_t u32 = std::numeric_limits<uint32_t>::max(); const float f = std::numeric_limits<float>::max(); const std::string fileName = File::Path(getTempPath(), _fileName).get(); auto io = File::IO::create(); io->open( fileName, File::Mode::Write); io->write8(i8); io->writeU8(u8); io->write16(i16); io->writeU16(u16); io->write32(i32); io->writeU32(u32); io->writeF32(f); io->open( fileName, File::Mode::Read); int8_t _i8 = 0; uint8_t _u8 = 0; int16_t _i16 = 0; uint16_t _u16 = 0; int32_t _i32 = 0; uint32_t _u32 = 0; float _f = 0.F; io->read8(&_i8); io->readU8(&_u8); io->read16(&_i16); io->readU16(&_u16); io->read32(&_i32); io->readU32(&_u32); io->readF32(&_f); DJV_ASSERT(i8 == _i8); DJV_ASSERT(u8 == _u8); DJV_ASSERT(i16 == _i16); DJV_ASSERT(u16 == _u16); DJV_ASSERT(i32 == _i32); DJV_ASSERT(u32 == _u32); DJV_ASSERT(f == _f); } { auto io = File::IO::create(); const std::string fileName = File::Path(getTempPath(), _fileName).get(); io->open( fileName, File::Mode::Write); io->write(_text + " "); io->open( fileName, File::Mode::Append); io->write(_text2); io->open( fileName, File::Mode::Read); std::string buf = File::readContents(io); _print(buf); DJV_ASSERT((_text + " " + _text2) == buf); io->setPos(0); DJV_ASSERT(0 == io->getPos()); } { const std::string fileName = File::Path(getTempPath(), _fileName).get(); File::writeLines( fileName, { "# This is a comment", _text + " " + _text2 }); auto io = File::IO::create(); io->open( fileName, File::Mode::ReadWrite); char buf[String::cStringLength]; File::readWord(io, buf); _print(buf); DJV_ASSERT(_text == buf); File::readWord(io, buf); _print(buf); DJV_ASSERT(_text2 == buf); } { const std::string fileName = File::Path(getTempPath(), _fileName).get(); auto io = File::IO::create(); io->open( fileName, File::Mode::Write); io->write(_text + "\n" + _text2); io->open( fileName, File::Mode::Read); char buf[String::cStringLength]; File::readLine(io, buf); _print(buf); DJV_ASSERT(_text == buf); File::readLine(io, buf); _print(buf); DJV_ASSERT(_text2 == buf); } { const std::string fileName = File::Path(getTempPath(), _fileName).get(); File::writeLines( fileName, { _text, "# This is a comment", _text2 }); const auto lines = File::readLines(fileName); for (const auto& i : lines) { _print(i); } DJV_ASSERT(_text == lines[0]); DJV_ASSERT(_text2 == lines[2]); } } void FileIOTest::_error() { try { auto io = File::IO::create(); io->open(std::string(), File::Mode::Read); DJV_ASSERT(false); } catch (const std::exception& e) { _print(e.what()); } try { auto io = File::IO::create(); io->open(std::string(), File::Mode::Write); DJV_ASSERT(false); } catch (const std::exception& e) { _print(e.what()); } try { auto io = File::IO::create(); io->open(std::string(), File::Mode::ReadWrite); DJV_ASSERT(false); } catch (const std::exception& e) { _print(e.what()); } try { auto io = File::IO::create(); io->open(std::string(), File::Mode::Append); DJV_ASSERT(false); } catch (const std::exception& e) { _print(e.what()); } try { const std::string fileName = File::Path(getTempPath(), _fileName).get(); auto io = File::IO::create(); io->open(fileName, File::Mode::Write); io->open(fileName, File::Mode::Read); uint8_t buf[16]; io->read(buf, 16, 1); DJV_ASSERT(false); } catch (const std::exception& e) { _print(e.what()); } try { const std::string fileName = File::Path(getTempPath(), _fileName).get(); auto io = File::IO::create(); io->open(fileName, File::Mode::Write); io->open(fileName, File::Mode::ReadWrite); uint8_t buf[16]; io->read(buf, 16, 1); DJV_ASSERT(false); } catch (const std::exception& e) { _print(e.what()); } try { auto io = File::IO::create(); uint8_t buf[16]; io->write(buf, 16, 1); DJV_ASSERT(false); } catch (const std::exception& e) { _print(e.what()); } } void FileIOTest::_endian() { uint32_t a = 0; uint32_t b = 0; uint8_t* aP = reinterpret_cast<uint8_t*>(&a); uint8_t* bP = reinterpret_cast<uint8_t*>(&b); aP[0] = bP[3] = 1; aP[1] = bP[2] = 2; aP[2] = bP[1] = 3; aP[3] = bP[0] = 4; auto io = File::IO::create(); DJV_ASSERT(!io->hasEndianConversion()); const std::string fileName = File::Path(getTempPath(), _fileName).get(); io->open( fileName, File::Mode::Write); io->writeU32(a); io->setEndianConversion(true); DJV_ASSERT(io->hasEndianConversion()); io->writeU32(a); io->open( fileName, File::Mode::Read); io->setEndianConversion(false); uint32_t _a = 0; uint32_t _b = 0; io->readU32(&_a); DJV_ASSERT(a == _a); io->setEndianConversion(true); io->readU32(&_b); DJV_ASSERT(a == _b); io->open( fileName, File::Mode::ReadWrite); io->setEndianConversion(false); _a = 0; _b = 0; io->readU32(&_a); DJV_ASSERT(a == _a); io->setEndianConversion(true); io->readU32(&_b); DJV_ASSERT(a == _b); } void FileIOTest::_temp() { auto io = File::IO::create(); io->openTemp(); for (auto i : _text) { io->writeU8(i); } } } // namespace SystemTest } // namespace djv
28,283
https://github.com/amanjaiswalofficial/infinity-reads-frontend/blob/master/src/containers/DeleteBlog/deleteBlog.js
Github Open Source
Open Source
MIT
null
infinity-reads-frontend
amanjaiswalofficial
JavaScript
Code
209
656
// Library imports import React, {useState, useEffect, useContext} from 'react' import { useMutation } from '@apollo/client'; // Custom imports import MessageDialog from 'components/MessageDialog/messageDialog' import {DELETE_BLOG} from 'utils/queries' import { REFRESH_STATE } from 'utils/constants' import {AppContext} from "context/appContext" import MutationDialog from 'components/MutationDialog/mutationDialog' const DeleteBlog = ({data, active, handleClose}) => { const [messageVisible, setMessageVisible] = useState(false) const [mutationVisible, setMutationVisible] = useState(false) const [state ,dispatch] = useContext(AppContext); const [deleteBlog, { loading: deleteLoading, error: deleteError, data: deleteData}] = useMutation(DELETE_BLOG) // when active is true, display messageDialog for choice useEffect(() => { if(active){ setMessageVisible(true) } }, [active]) // run GraphQL mutation const callDeleteBlog = () => { setMessageVisible(false) // Call GraphQL mutation with required variable deleteBlog({variables: {id: data.id}}).catch(err => console.log(err)) setMutationVisible(true) } const handleMessageClose = () => { setMessageVisible(false) handleClose() } const handleMutationClose = (code) => { // if the delete operation was successful, // to show new content if(code === 200){ dispatch({ type: REFRESH_STATE, payload: { reload: true } }) } setMutationVisible(false) handleClose() } // return dialogBox containing MutationDialog and MessageDialog // based on visibility return ( <div> { deleteLoading || deleteError || deleteData ? <MutationDialog action={"deleteBlog"} visibleState={mutationVisible} data={deleteData} loading={deleteLoading} error={deleteError} handleClose={handleMutationClose} /> : null } <MessageDialog message={`Delete this blog with id: ${data.id}?`} visibleState={messageVisible} handlePrimary={callDeleteBlog} handleSecondary={handleMessageClose} /> </div> ) } export default DeleteBlog
35,337
https://github.com/vsawchuk/CPDBv2_frontend/blob/master/src/js/components/common/carousel/arrow.sass
Github Open Source
Open Source
Apache-2.0
2,021
CPDBv2_frontend
vsawchuk
Sass
Code
52
204
@import 'variables' $arrow-width: 40px \:local(.arrow) width: $arrow-width background-image: url('/img/disclosure-indicator.svg') transform: none left: auto right: auto height: 100% position: absolute top: 0 margin-top: 0 border: 0 outline: 0 z-index: 10 background-color: rgba(255, 255, 255, 0.9) background-repeat: no-repeat background-position: center background-size: 15px 24px &:hover background-image: url('/img/disclosure-indicator-blue.svg') &.left transform: scaleX(-1) left: 0 &.right right: 0
20,559
https://github.com/SoupeDog/Xavier-Project/blob/master/util/util-define/src/main/java/org/xavier/common/util/enums/EncryptedAim.java
Github Open Source
Open Source
Apache-2.0
2,018
Xavier-Project
SoupeDog
Java
Code
91
291
package org.xavier.common.util.enums; import javax.crypto.Cipher; /** * 描述信息:<br/> * 编码目标 * * @author Xavier * @version 1.0 * @date 2018.04.10 * @since Jdk 1.8 */ public enum EncryptedAim { /** * 加密过程 */ ENCODE(Cipher.ENCRYPT_MODE, "加密过程"), /** * 解密过程 */ DECODE(Cipher.DECRYPT_MODE, "解密过程"); private Integer value; private String description; EncryptedAim(Integer value, String description) { this.value = value; this.description = description; } public Integer getValue() { return value; } public void setValue(Integer value) { this.value = value; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } }
22,584
https://github.com/GotWoods/Fluent-Build/blob/master/src/FluentBuild/MessageLoggers/IMessageLogger.cs
Github Open Source
Open Source
Apache-2.0
2,020
Fluent-Build
GotWoods
C#
Code
78
243
using System; namespace FluentBuild.MessageLoggers { public interface IMessageLogger { void WriteHeader(string header); void WriteDebugMessage(string message); void Write(string type, string message, params string[] items); void WriteError(string type, string message); void WriteWarning(string type, string message); IDisposable ShowDebugMessages { get; } ITestSuiteMessageLogger WriteTestSuiteStarted(string name); VerbosityLevel Verbosity { get; set; } } public interface ITestSuiteMessageLogger { ITestSuiteMessageLogger WriteTestSuiteStared(string name); void WriteTestSuiteFinished(); ITestLogger WriteTestStarted(string testName); } public interface ITestLogger { void WriteTestPassed(TimeSpan duration); void WriteTestIgnored(string message); void WriteTestFailed(string message, string details); } }
39,031
https://github.com/baoduy/sm-react-service-fabric/blob/master/Web/EndpointProtocols.cs
Github Open Source
Open Source
MIT
2,019
sm-react-service-fabric
baoduy
C#
Code
23
57
using System; namespace Web { [Flags] public enum EndpointProtocols { Http = 0, Https = 1, Both = Http | Https } }
3,534
https://github.com/alosoft/bank_app/blob/master/bank_app.py
Github Open Source
Open Source
Apache-2.0
null
bank_app
alosoft
Python
Code
369
1,080
"""Bank App""" from bank_class import Account from exception import num_there, numb_warning, alpha_warning from read_write import read_file, save_file print('#' * 42) print('# Hello and Welcome to ALONSO RURAL BANK #') print('#' * 42) loop = True while loop: while True: ask_question = str(input('Please would you like to open an Account with Us? [yes / no]')) if num_there(ask_question): numb_warning() else: break if ('y'.lower() in ask_question) or ('e'.lower() in ask_question) or ('s'.lower() in ask_question): print('Hello again, My name is Auto-bot and I\'ll be ' 'guiding you through your Account creation ' '\nFirst I need some few details about you') while True: full_name = str(input('Please enter your name in full:')) if num_there(full_name): numb_warning() else: break while True: initial_balance = str(input('Please would you like to make an ' 'initial deposit? [yes/no]')) if num_there(initial_balance): numb_warning() else: break if initial_balance == 'yes': while True: try: amount = int(input('How much will you like to deposit: ')) new_account = Account(full_name, amount) print('-' * 19) print('Account Information') print('-' * 19) print(new_account) print('-' * 19) break except ValueError as error: alpha_warning() else: new_account = Account(full_name) print('-' * 19) print('Account Information') print('-' * 19) print(new_account) print('-' * 19) print('Your Account has been Created!!!') else: print('\n') print('#' * 32) print('Thank You for Your Co-operation \nExiting.....') print('#' * 32) print('\n\n') print('$' * 26) print("$ Bank Accounts Database $") print('$' * 26, f'\n') try: save_file(str(new_account)) except NameError: pass # print('Could not save Account Information') read_file() break print('\n\n') bool_action = True while bool_action: while True: action = str( input('Please input \'d\' to Deposit, \'w\' to withdraw, \'i\' to ' 'print your Account Info, ' '\'p\' to print your Account Statement or \'e\' to exit')) if num_there(action): print('Input should be alphabets') else: break if action == 'd'.lower(): print('\n') print('-' * 19) while True: try: d_amount = int(input('How much will you like to deposit: ')) print(new_account.deposit(d_amount)) print('-' * 19) print('\n') except ValueError: alpha_warning() else: break elif action == 'w'.lower(): print('\n') print('-' * 19) while True: try: w_amount = int(input('How much will you like to withdraw: ')) print(new_account.withdraw(w_amount)) print('-' * 19) print('\n') except ValueError: alpha_warning() else: break elif action == 'i'.lower(): print('\n') print('-' * 19) print(new_account) print('-' * 19) print('\n') elif action == 'p'.lower(): print('\n') print('-' * 19) new_account.print_records(new_account.history()) print('-' * 19) print('\n') elif action == 'e'.lower(): break
28,629
https://github.com/JanoCodes/Registry/blob/master/db/migrate/20180123165604_rename_domain_transfers_transfer_from_id_to_old_registrar_id.rb
Github Open Source
Open Source
X11
null
Registry
JanoCodes
Ruby
Code
12
57
class RenameDomainTransfersTransferFromIdToOldRegistrarId < ActiveRecord::Migration def change rename_column :domain_transfers, :transfer_from_id, :old_registrar_id end end
47,659
https://github.com/sameeranihathe/bccare_web/blob/master/backend/models/PublicChatMsgTbl.php
Github Open Source
Open Source
BSD-3-Clause
null
bccare_web
sameeranihathe
PHP
Code
171
622
<?php namespace backend\models; use Yii; /** * This is the model class for table "public_chat_msg_tbl". * * @property integer $pub_ch_msg_id * @property integer $pub_ch_id * @property string $pub_ch_msg * @property integer $pub_ch_msg_user_id * @property string $pub_ch_msg_date_time * @property string $pub_ch_msg_active_sta * * @property PublicChatTbl $pubCh */ class PublicChatMsgTbl extends \yii\db\ActiveRecord { /** * @inheritdoc */ public static function tableName() { return 'public_chat_msg_tbl'; } /** * @inheritdoc */ public function rules() { return [ [['pub_ch_id', 'pri_ch_msg', 'pri_ch_user_id', 'pub_ch_msg_date_time', 'pub_ch_msg_active_sta'], 'required'], [['pub_ch_id', 'pri_ch_user_id'], 'integer'], [['pri_ch_msg'], 'string'], [['pub_ch_msg_date_time'], 'safe'], [['pub_ch_msg_active_sta'], 'string', 'max' => 1], [['pub_ch_id'], 'exist', 'skipOnError' => true, 'targetClass' => PublicChatTbl::className(), 'targetAttribute' => ['pub_ch_id' => 'pub_ch_id']], ]; } /** * @inheritdoc */ public function attributeLabels() { return [ 'pub_ch_msg_id' => 'Pub Ch Msg ID', 'pub_ch_id' => 'Pub Ch ID', 'pri_ch_msg' => 'Pub Ch Msg', 'pri_ch_user_id' => 'Pub Ch Msg User ID', 'pub_ch_msg_date_time' => 'Pub Ch Msg Date Time', 'pub_ch_msg_active_sta' => 'Pub Ch Msg Active Sta', ]; } /** * @return \yii\db\ActiveQuery */ public function getPubCh() { return $this->hasOne(PublicChatTbl::className(), ['pub_ch_id' => 'pub_ch_id']); } }
37,199
https://github.com/Aury88/osmeditor4android/blob/master/src/main/java/de/blau/android/dialogs/ElementInfo.java
Github Open Source
Open Source
LicenseRef-scancode-unknown-license-reference, Apache-2.0
2,018
osmeditor4android
Aury88
Java
Code
763
3,016
package de.blau.android.dialogs; import java.io.UnsupportedEncodingException; import java.net.MalformedURLException; import java.net.URI; import java.net.URISyntaxException; import java.net.URL; import java.net.URLEncoder; import java.text.SimpleDateFormat; import java.util.List; import java.util.Locale; import org.acra.ACRA; import android.os.Bundle; import android.support.v4.app.DialogFragment; import android.support.v4.app.Fragment; import android.support.v4.app.FragmentActivity; import android.support.v4.app.FragmentManager; import android.support.v4.app.FragmentTransaction; import android.text.Html; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ScrollView; import android.widget.TableLayout; import de.blau.android.App; import de.blau.android.R; import de.blau.android.contract.Urls; import de.blau.android.osm.Node; import de.blau.android.osm.OsmElement; import de.blau.android.osm.OsmParser; import de.blau.android.osm.Relation; import de.blau.android.osm.RelationMember; import de.blau.android.osm.Tags; import de.blau.android.osm.Way; import de.blau.android.prefs.Preferences; import de.blau.android.validation.Validator; /** * Very simple dialog fragment to display some info on an OSM element * * @author simon * */ public class ElementInfo extends DialogFragment { private static final String ELEMENT = "element"; private static final String DEBUG_TAG = ElementInfo.class.getName(); private static final String TAG = "fragment_element_info"; static public void showDialog(FragmentActivity activity, OsmElement e) { dismissDialog(activity); try { FragmentManager fm = activity.getSupportFragmentManager(); ElementInfo elementInfoFragment = newInstance(e); elementInfoFragment.show(fm, TAG); } catch (IllegalStateException isex) { Log.e(DEBUG_TAG, "showDialog", isex); } } private static void dismissDialog(FragmentActivity activity) { try { FragmentManager fm = activity.getSupportFragmentManager(); FragmentTransaction ft = fm.beginTransaction(); Fragment fragment = fm.findFragmentByTag(TAG); if (fragment != null) { ft.remove(fragment); } ft.commit(); } catch (IllegalStateException isex) { Log.e(DEBUG_TAG, "showDialog", isex); } } /** */ private static ElementInfo newInstance(OsmElement e) { ElementInfo f = new ElementInfo(); Bundle args = new Bundle(); args.putSerializable(ELEMENT, e); f.setArguments(args); f.setShowsDialog(true); return f; } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Preferences prefs = new Preferences(getActivity()); if (prefs.lightThemeEnabled()) { setStyle(DialogFragment.STYLE_NORMAL, R.style.Theme_DialogLight); } else { setStyle(DialogFragment.STYLE_NORMAL, R.style.Theme_DialogDark); } } @SuppressWarnings("deprecation") @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { FragmentActivity activity = getActivity(); ScrollView sv = (ScrollView) inflater.inflate(R.layout.element_info_view, container, false); TableLayout tl = (TableLayout) sv.findViewById(R.id.element_info_vertical_layout); OsmElement e = (OsmElement) getArguments().getSerializable(ELEMENT); TableLayout.LayoutParams tp = new TableLayout.LayoutParams(TableLayout.LayoutParams.FILL_PARENT, TableLayout.LayoutParams.WRAP_CONTENT); tp.setMargins(10, 2, 10, 2); if (e != null) { // tl.setShrinkAllColumns(true); tl.setColumnShrinkable(1, true); tl.addView(TableLayoutUtils.createRow(activity, R.string.type, e.getName(), tp)); tl.addView(TableLayoutUtils.createRow(activity, R.string.id, "#" + e.getOsmId(), tp)); tl.addView(TableLayoutUtils.createRow(activity, R.string.version, Long.toString(e.getOsmVersion()), tp)); long timestamp = e.getTimestamp(); if (timestamp > 0) { tl.addView(TableLayoutUtils.createRow(activity, R.string.last_edited, new SimpleDateFormat(OsmParser.TIMESTAMP_FORMAT).format(timestamp * 1000L), tp)); } if (e.getName().equals(Node.NAME)) { tl.addView(TableLayoutUtils.createRow(activity, R.string.location_lon_label, String.format(Locale.US, "%.7f", ((Node) e).getLon() / 1E7d) + "°", tp)); tl.addView(TableLayoutUtils.createRow(activity, R.string.location_lat_label, String.format(Locale.US, "%.7f", ((Node) e).getLat() / 1E7d) + "°", tp)); } else if (e.getName().equals(Way.NAME)) { tl.addView(TableLayoutUtils.divider(activity)); boolean isClosed = ((Way) e).isClosed(); tl.addView(TableLayoutUtils.createRow(activity, R.string.length_m, String.format(Locale.US, "%.2f", ((Way) e).length()), tp)); tl.addView(TableLayoutUtils.createRow(activity, R.string.nodes, Integer.toString(((Way) e).nodeCount() + (isClosed ? -1 : 0)), tp)); tl.addView(TableLayoutUtils.createRow(activity, R.string.closed, getString(isClosed ? R.string.yes : R.string.no), tp)); // Make this expandable before enabling // for (Node n:((Way)e).getNodes()) { // tl.addView(createRow("", n.getDescription(),tp)); // } } else if (e.getName().equals(Relation.NAME)) { tl.addView(TableLayoutUtils.divider(activity)); List<RelationMember> members = ((Relation) e).getMembers(); tl.addView(TableLayoutUtils.createRow(activity, R.string.members, Integer.toString(members != null ? members.size() : 0), tp)); if (members != null) { int notDownloaded = 0; for (RelationMember rm : members) { if (rm.getElement() == null) { notDownloaded++; } } if (notDownloaded > 0) { tl.addView(TableLayoutUtils.createRow(activity, R.string.not_downloaded, Integer.toString(notDownloaded), tp)); } } } Validator validator = App.getDefaultValidator(getActivity()); if (e.hasProblem(getActivity(), validator) != Validator.OK) { tl.addView(TableLayoutUtils.divider(activity)); boolean first = true; for (String problem : validator.describeProblem(getActivity(), e)) { String header = ""; if (first) { header = getString(R.string.problem); first = false; } tl.addView(TableLayoutUtils.createRow(activity, header, problem, tp)); } } if (e.getTags() != null && e.getTags().size() > 0) { tl.addView(TableLayoutUtils.divider(activity)); tl.addView(TableLayoutUtils.createRow(activity, R.string.menu_tags, null, tp)); for (String k : e.getTags().keySet()) { String value = e.getTags().get(k); // special handling for some stuff if (k.equals(Tags.KEY_WIKIPEDIA)) { Log.d(DEBUG_TAG, Urls.WIKIPEDIA + encodeHttpPath(value)); tl.addView(TableLayoutUtils.createRow(activity, k, Html.fromHtml("<a href=\"" + Urls.WIKIPEDIA + encodeHttpPath(value) + "\">" + value + "</a>"), tp)); } else if (k.equals(Tags.KEY_WIKIDATA)) { tl.addView(TableLayoutUtils.createRow(activity, k, Html.fromHtml("<a href=\"" + Urls.WIKIDATA + encodeHttpPath(value) + "\">" + value + "</a>"), tp)); } else if (Tags.isWebsiteKey(k)) { try { URL url = new URL(value); URI uri = new URI(url.getProtocol(), url.getUserInfo(), url.getHost(), url.getPort(), url.getPath(), url.getQuery(), url.getRef()); tl.addView(TableLayoutUtils.createRow(activity, k, Html.fromHtml("<a href=\"" + uri.toURL() + "\">" + value + "</a>"), tp)); } catch (MalformedURLException e1) { Log.d(DEBUG_TAG, "Value " + value + " caused " + e); tl.addView(TableLayoutUtils.createRow(activity, k, value, tp)); } catch (URISyntaxException e1) { Log.d(DEBUG_TAG, "Value " + value + " caused " + e); tl.addView(TableLayoutUtils.createRow(activity, k, value, tp)); } } else { tl.addView(TableLayoutUtils.createRow(activity, k, value, tp)); } } } if (e.getParentRelations() != null && !e.getParentRelations().isEmpty()) { tl.addView(TableLayoutUtils.divider(activity)); tl.addView(TableLayoutUtils.createRow(activity, R.string.relation_membership, null, tp)); for (Relation r : e.getParentRelations()) { RelationMember rm = r.getMember(e); if (rm != null) { String role = rm.getRole(); tl.addView(TableLayoutUtils.createRow(activity, role.equals("") ? getString(R.string.empty_role) : role, r.getDescription(), tp)); } else { // inconsistent state String message = "inconsistent state: " + e.getDescription() + " is not a member of " + r; Log.d(DEBUG_TAG, message); ACRA.getErrorReporter().putCustomData("CAUSE", message); ACRA.getErrorReporter().putCustomData("STATUS", "NOCRASH"); ACRA.getErrorReporter().handleException(null); } } } } getDialog().setTitle(R.string.element_information); return sv; } private String encodeHttpPath(String path) { try { return URLEncoder.encode(path, "UTF-8"); } catch (UnsupportedEncodingException e) { Log.d(DEBUG_TAG, "Path " + path + " caused " + e); return ""; } } }
22,455
https://github.com/nobusue/syndesis/blob/master/doc/connecting/topics/connecting_to_gmail.adoc
Github Open Source
Open Source
Apache-2.0
null
syndesis
nobusue
AsciiDoc
Code
165
353
[id='connecting-to-gmail'] = Connecting to Gmail :context: gmail To trigger an integration when a particular Gmail account receives an email, add a Gmail connection to an integration as its start connection. In an integration, to send an email from a particular Gmail account, add a Gmail connection as the integration's finish connection, or as a middle connection. The general steps for connecting to Gmail in an integration are: . Register {prodname} as a client application that can access the Gmail API. . Create a Gmail connection. When you do this you choose the Gmail account that the connection is authorized to access. . If your integration sends an email from a Gmail account, decide how to populate an email to send. . Add a Gmail connection to an integration. . For a Gmail connection that sends an email, optionally map integration data to the email fields. Information and instructions are in the following topics: * <<register-with-gmail>> * <<create-gmail-connection>> * <<alternatives-for-populating-email-to-send>> * <<add-gmail-connection>> include::register_with_gmail.adoc[leveloffset=+1] include::create_gmail_connection.adoc[leveloffset=+1] include::alternatives_for_populating_email_to_send.adoc[leveloffset=+1] include::add_gmail_connection.adoc[leveloffset=+1]
50,240
https://github.com/ralfkundel/amf/blob/master/util/path.go
Github Open Source
Open Source
Apache-2.0
2,020
amf
ralfkundel
Go
Code
24
157
//+build !debug package util import ( "free5gc/lib/path_util" ) var AmfLogPath = path_util.Gofree5gcPath("free5gc/amfsslkey.log") var AmfPemPath = path_util.Gofree5gcPath("free5gc/support/TLS/amf.pem") var AmfKeyPath = path_util.Gofree5gcPath("free5gc/support/TLS/amf.key") var DefaultAmfConfigPath = path_util.Gofree5gcPath("free5gc/config/amfcfg.conf")
39,097
https://github.com/briangu/chapel/blob/master/third-party/gasnet/gasnet-src/other/amudp/amudp_cdefs.c
Github Open Source
Open Source
ECL-2.0, Apache-2.0
2,022
chapel
briangu
C
Code
218
633
/* $Source: bitbucket.org:berkeleylab/gasnet.git/other/amudp/amudp_cdefs.c $ * Description: AMUDP definitions that must be compiled in C mode * Copyright 2005, Dan Bonachea <bonachea@cs.berkeley.edu> */ #include <stddef.h> #include <amudp.h> #include <socket.h> #if AMUDP_DEBUG /* use the gasnet debug malloc functions if a debug libgasnet is linked * these *must* be tentative definitions for this linker trick to work, * and C++ annoying provides apparently no way to express that */ void *(*gasnett_debug_malloc_fn)(size_t sz, const char *curloc); void *(*gasnett_debug_calloc_fn)(size_t N, size_t S, const char *curloc); void (*gasnett_debug_free_fn)(void *ptr, const char *curloc); #endif #if SOCK_USE_C_BYPASS /* system calls which differ in signature across OS's in ways that C++ cannot deal with */ extern int SOCK_getsockopt(int s, int level, int optname, void *optval, GETSOCKOPT_LENGTH_T *optlen) { return getsockopt(s, level, optname, optval, (void *)optlen); } extern int SOCK_getsockname(int s, struct sockaddr *name, GETSOCKNAME_LENGTH_T *namelen) { return getsockname(s, name, (void *)namelen); } extern int SOCK_getpeername(int s, struct sockaddr *name, GETSOCKNAME_LENGTH_T *namelen) { return getpeername(s, name, (void *)namelen); } extern int SOCK_ioctlsocket(int d, int request, IOCTL_FIONREAD_ARG_T *val) { return ioctlsocket(d, request, (void *)val); } extern int SOCK_accept(SOCKET listener, struct sockaddr* calleraddr, LENGTH_PARAM *sz) { return accept(listener, calleraddr, (void *)sz); } extern int SOCK_recvfrom(SOCKET s, char * buf, int len, int flags, struct sockaddr *from, LENGTH_PARAM *sz) { return recvfrom(s, buf, len, flags, from, (void *)sz); } #endif
32,582
https://github.com/Rishika-14/rapido_flutter/blob/master/lib/src/persistance_other_implementations.dart
Github Open Source
Open Source
BSD-2-Clause
null
rapido_flutter
Rishika-14
Dart
Code
655
1,419
// // // /// Default Persistence Provider. Saves all Documents locally on the user's // /// device. The documents are saved in json format, and are saved in clear // /// text. Is suitable for a medium-sized DocumentList. // class LocalFilePersistence implements PersistenceProvider { // const LocalFilePersistence(); // // /// Persists the given Document in the devices default directory // /// as json, in clear text. Each Document is saved in a file named // /// by the Document's id. // @override // saveDocument(Document doc) async { // final file = await _localFile(doc["_id"]); // String mapString = json.encode(doc); // file.writeAsStringSync(mapString); // } // // /// Loads all Documents for the devices default directory // /// that match the DocumentList's documentType property. // @override // Future loadDocuments(DocumentList documentList, // {Function? onChangedListener}) async { // // final List<Document> _documents = []; // Directory appDir = await getApplicationDocumentsDirectory(); // // appDir // .listSync(recursive: true, followLinks: true) // .forEach((FileSystemEntity f) { // if (f.path.endsWith('.json')) { // Document? doc = _readDocumentFromFile( // f, documentList.documentType, documentList.notifyListeners); // if (doc != null) documentList.add(doc, saveOnAdd: false); // } // }); // } // // Document? _readDocumentFromFile( // FileSystemEntity f, String documentType, Function notifyListeners) { // Map? m = _loadMapFromFilePath(f); // if(m != null) { // Document loadedDoc = Document.fromMap(m); // if (loadedDoc["_docType"] == documentType) { // //TODO; check if this typecasting is ok // loadedDoc.addListener(notifyListeners as void Function()); // return loadedDoc; // } // } // return null; // } // // Map? _loadMapFromFilePath(FileSystemEntity f) { // String j = new File(f.path).readAsStringSync(); // if (j.length != 0) { // Map newData = json.decode(j); // newData.keys.forEach((dynamic key) { // if (key == "latlong" && newData[key] != null) { // // convert latlongs to the correct type // newData[key] = Map<String, double>.from(newData[key]); // } // }); // return newData; // } // return null; // } // // Future<File> _localFile(String id) async { // final path = await _localPath; // return File('$path/$id.json'); // } // // /// Delete's the given Document from the device's default // /// directory. // @override // Future deleteDocument(Document doc) async { // final file = await _localFile(doc.id); // file.delete(); // return null; // } // // Future<String> get _localPath async { // final directory = await getApplicationDocumentsDirectory(); // String path = directory.path; // return path; // } // } // // /// Saves all Documents locally on the user's device, using the device OS's // /// secretes store. Useful for tokens and passwords and other private data. // /// Supports smaller DocumentLists. // class SecretsPercistence implements PersistenceProvider { // final storage = new FlutterSecureStorage(); // // /// Deletes the given Document from the device's secrets store. // @override // Future deleteDocument(Document doc) async { // await storage.delete(key: doc.id); // } // // /// Loads all of the documents from the device's secrets store that // /// match the DocumentLists's documentType property. // @override // Future loadDocuments(DocumentList documentList, // {Function onChangedListener}) async { // Map<String, String> docMaps = await storage.readAll(); // // I'm following the rule of 3 here (for now), duplicating this code // // It does seem like handling turning strings of json into // // documents should be done in one place // docMaps.forEach((String key, String value) { // if (value.length != 0) { // Map newData = json.decode(value); // if (newData["_docType"] == documentList.documentType) { // newData.keys.forEach((dynamic key) { // if (key == "latlong" && newData[key] != null) { // // convert latlongs to the correct type // newData[key] = Map<String, double>.from(newData[key]); // } // }); // // Document loadedDoc = Document.fromMap(newData); // loadedDoc.addListener(documentList.notifyListeners); // documentList.add(loadedDoc, saveOnAdd: false); // } // } // }); // } // // /// Persists the given Document in the device's secret store // /// as json. The key for each entry in the secret store is the // /// Document's id property. // @override // saveDocument(Document doc) { // String mapString = json.encode(doc); // storage.write(key: doc.id, value: mapString); // } // }
26,333
https://github.com/webimpress/http-middleware-compatibility/blob/master/test/MiddlewareInterfaceTest.php
Github Open Source
Open Source
BSD-2-Clause
2,017
http-middleware-compatibility
webimpress
PHP
Code
65
442
<?php namespace WebimpressTest\HttpMiddlewareCompatibility; use PHPUnit\Framework\TestCase; use Webimpress\HttpMiddlewareCompatibility\MiddlewareInterface; class MiddlewareInterfaceTest extends TestCase { public function testMiddlewareInterfaceIsDefined() { self::assertTrue(interface_exists(MiddlewareInterface::class)); } public function testMiddlewareInterfaceIsAliasToBaseLibrary() { // 0.3.0 if (interface_exists(\Interop\Http\Middleware\ServerMiddlewareInterface::class)) { self::assertTrue(is_a(MiddlewareInterface::class, \Interop\Http\Middleware\ServerMiddlewareInterface::class, true)); self::assertTrue(is_a(\Interop\Http\Middleware\ServerMiddlewareInterface::class, MiddlewareInterface::class, true)); return; } // 0.4.1 if (interface_exists(\Interop\Http\ServerMiddleware\MiddlewareInterface::class)) { self::assertTrue(is_a(MiddlewareInterface::class, \Interop\Http\ServerMiddleware\MiddlewareInterface::class, true)); self::assertTrue(is_a(\Interop\Http\ServerMiddleware\MiddlewareInterface::class, MiddlewareInterface::class, true)); return; } // 0.5.0 if (interface_exists(\Interop\Http\Server\MiddlewareInterface::class)) { self::assertTrue(is_a(MiddlewareInterface::class, \Interop\Http\Server\MiddlewareInterface::class, true)); self::assertTrue(is_a(\Interop\Http\Server\MiddlewareInterface::class, MiddlewareInterface::class, true)); return; } self::fail('Unsupported version'); } }
30,403
https://github.com/cptechinc/provalley-dplus/blob/master/site/templates/twig/items/itm/warehouse/notes/notes.twig
Github Open Source
Open Source
MIT
null
provalley-dplus
cptechinc
Twig
Code
21
85
{# var Description / Instance of ------------------------------------------------- item WarehouseInventory qnotes module QnotesItemWhseOrder #} {% include 'items/itm/warehouse/notes/order/list.twig' %} {% include 'items/itm/warehouse/notes/order/modal.twig' %}
50,560
https://github.com/evolaric/image-processing-api/blob/master/src/tests/indexSpec.ts
Github Open Source
Open Source
MIT
null
image-processing-api
evolaric
TypeScript
Code
133
396
import supertest from 'supertest'; import app from '../index'; const request = supertest(app); describe('Endpoint responses', (): void => { it('redirects / to /api', () => { request.get('/').expect(302); }); it('returns 200 on /api', (): void => { request.get('/api').expect(200); }); it('returns 404 on an invalid endpoint', (): void => { request.get('/api/image').expect(404); }); it('gets the raw image if passed just a file name', (): void => { request.get('/api/image?name=pattern0002.png').expect(200); }); it('returns 404 if dimension parameter cannot eval to number', async (): Promise<void> => { await request.get('/api/image?name=pattern0002.png&height=eeee').expect(404); }); it('returns 404 if dimension parameter is not a positive integer', async (): Promise<void> => { await request.get('/api/image?name=pattern0003.png&width=-444').expect(404); }); it('gets a scaled image when passed one dimension', async (): Promise<void> => { await request.get('/api/image?name=pattern0002.png&height=200').expect(200); }); it('gets a resized image when passed two dimensions', async (): Promise<void> => { await request.get('/api/image?name=pattern0003.png&height=200&width=200').expect(200); }); });
43,326
https://github.com/RemiFusade2/RubberTheGame/blob/master/Rubber Game/Assets/Scripts/AttendezPlayersScript.cs
Github Open Source
Open Source
MIT
null
RubberTheGame
RemiFusade2
C#
Code
46
133
using UnityEngine; using System.Collections; public class AttendezPlayersScript : MonoBehaviour { public PlayersSoundEngineScript playersSoundEngine; // Use this for initialization void Start () { } // Update is called once per frame void Update () { } void OnTriggerEnter(Collider col) { if (col.tag.Equals("Player")) { playersSoundEngine.PlayAttendez(); } } }
19,106
https://github.com/eordano/explorer/blob/master/debugger/devtool/comms/LineChart.tsx
Github Open Source
Open Source
Apache-2.0
2,020
explorer
eordano
TypeScript
Code
272
853
import Chart from 'chart.js' import React, { useEffect, useLayoutEffect, useMemo, useState } from 'react' import { deepEqual } from '../../../jslibs/deepEqual/index' /** * Get a `2d` canvas out of an element, extracted by its id. */ function getContextFromCanvas(windowContext: Window, id: string = 'canvas') { const document = windowContext.document if (!document) { return } const canvas = windowContext.document.getElementById(id) as HTMLCanvasElement if (canvas) { return canvas.getContext('2d') } } /** * Creates a chart using hard-coded data (see `initialConfig` in `//devtool/comms/chart.tsx`) */ export function LineChart(props: { values: number[]; windowContext: Window; id: string }) { const [context, setContext] = useState(null as CanvasRenderingContext2D | null) useEffect(() => { if (!context) { const tryContext = getContextFromCanvas(props.windowContext, props.id || 'canvas') if (tryContext) { setContext(tryContext) } } }) const [myLine, setMyLine] = useState(null as Chart | null) const lineData = useMemo(() => buildConfigFromNumberArray(props.values), [props.values]) useEffect(() => { if (context && !myLine) { setMyLine(new Chart(context, lineData)) } }, [context, myLine, setMyLine]) const [config, setConfig] = useState(lineData) useLayoutEffect(() => { if (myLine && !deepEqual(lineData, config)) { myLine.data = lineData.data setConfig(lineData) myLine.update() } }, [config, myLine, props.values]) return <span></span> } function buildConfigFromNumberArray(array: number[]) { return { type: 'line', data: { labels: array.map((_, index) => index), datasets: [ { fill: false, lineTension: 0, backgroundColor: 'rgba(75,192,192,0.4)', borderColor: 'rgba(75,192,192,1)', borderCapStyle: 'butt' as any, borderDash: [], borderDashOffset: 0.0, borderJoinStyle: 'miter' as any, pointBorderColor: 'rgba(75,192,192,1)', pointBackgroundColor: '#fff', pointBorderWidth: 1, pointHoverRadius: 5, animation: { duration: 0, }, pointHoverBackgroundColor: 'rgba(75,192,192,1)', pointHoverBorderColor: 'rgba(220,220,220,1)', pointHoverBorderWidth: 2, pointRadius: 1, pointHitRadius: 10, data: array, }, ], animation: { duration: 0, }, options: { animation: { duration: 0 } } }, animation: { duration: 0, }, options: { animation: { duration: 0 } } } }
11,538
https://github.com/Barteks2x/WoG-Android-Mod-Manager/blob/master/Core/src/main/java/com/github/barteks2x/wogmodmanager/ProgressData.java
Github Open Source
Open Source
Zlib, 0BSD
2,018
WoG-Android-Mod-Manager
Barteks2x
Java
Code
28
74
package com.github.barteks2x.wogmodmanager; public class ProgressData { public final String name; public final double progress; public ProgressData(String name, double val) { this.name = name; this.progress = val; } }
13,563
https://github.com/ArkEcosystem/desktop-wallet/blob/master/src/app/components/Amount/AmountCrypto.tsx
Github Open Source
Open Source
MIT
2,023
desktop-wallet
ArkEcosystem
TSX
Code
80
246
import React from "react"; import { AmountProperties } from "./Amount.contracts"; import { formatCrypto, formatWithSign } from "./Amount.helpers"; const AmountCrypto: React.FC<AmountProperties> = ({ className, isNegative = false, locale, showSign, showTicker = true, ticker, value, }: AmountProperties) => { const amount = formatCrypto({ locale, ticker, value }); let formattedAmount = amount; if (!showTicker) { formattedAmount = formattedAmount.split(" ").slice(0, -1).join(" "); } if (showSign) { formattedAmount = formatWithSign(formattedAmount, isNegative); } return ( <span data-testid="AmountCrypto" className={className}> {formattedAmount} </span> ); }; export { AmountCrypto };
19,172
https://github.com/210503-Reston-NET/Fanner-Alex-P0/blob/master/DogStore/DSBL/IOrderBL.cs
Github Open Source
Open Source
MIT
null
Fanner-Alex-P0
210503-Reston-NET
C#
Code
28
89
using DSModels; using System.Collections.Generic; namespace DSBL { public interface IOrderBL { DogOrder AddOrder(DogOrder dogOrder); List<DogOrder> FindUserOrders(long phoneNumber, int option); List<DogOrder> FindStoreOrders(string address, string location, int option); } }
33,258
https://github.com/milen92sl/ASP.NET.Core-Project-Car-Renting-System2/blob/master/CarRentingSystem2/Views/Cars/Mine.cshtml
Github Open Source
Open Source
MIT
2,021
ASP.NET.Core-Project-Car-Renting-System2
milen92sl
C#
Code
27
92
@model IEnumerable<CarServiceModel> @{ ViewBag.Title = "All Cars"; ViewBag.AllowCarEdit = true; } @if (!Model.Any()) { <h1 class="text-center">You do not have any cars yet.</h1> } <partial name="_CarsPartial" model="@Model" />
16,708
https://github.com/amarinab/java_sdk/blob/master/riskified-sdk/src/main/java/com/riskified/notifications/AuthError.java
Github Open Source
Open Source
Apache-2.0
2,021
java_sdk
amarinab
Java
Code
26
69
package com.riskified.notifications; public class AuthError extends Exception { public AuthError(String AuthError, String calcAuth) { super(String.format("Auth Error, got hash: %s , expected: %s", AuthError, calcAuth)); } }
25,114
https://github.com/sake/bouncycastle-java/blob/master/jdk1.0/org/bouncycastle/crypto/test/RC6Test.java
Github Open Source
Open Source
MIT
2,013
bouncycastle-java
sake
Java
Code
124
672
package org.bouncycastle.crypto.test; import org.bouncycastle.crypto.engines.RC6Engine; import org.bouncycastle.crypto.params.KeyParameter; import org.bouncycastle.util.encoders.Hex; import org.bouncycastle.util.test.Test; import org.bouncycastle.util.test.TestResult; /** * RC6 Test - test vectors from AES Submitted RSA Reference implementation. * ftp://ftp.funet.fi/pub/crypt/cryptography/symmetric/aes/rc6-unix-refc.tar */ public class RC6Test extends CipherTest { static Test[] tests = { new BlockCipherVectorTest(0, new RC6Engine(), new KeyParameter( Hex.decode("00000000000000000000000000000000")), "80000000000000000000000000000000", "f71f65e7b80c0c6966fee607984b5cdf"), new BlockCipherVectorTest(1, new RC6Engine(), new KeyParameter( Hex.decode("000000000000000000000000000000008000000000000000")), "00000000000000000000000000000000", "dd04c176440bbc6686c90aee775bd368"), new BlockCipherVectorTest(2, new RC6Engine(), new KeyParameter( Hex.decode("000000000000000000000000000000000000001000000000")), "00000000000000000000000000000000", "937fe02d20fcb72f0f57201012b88ba4"), new BlockCipherVectorTest(3, new RC6Engine(), new KeyParameter( Hex.decode("00000001000000000000000000000000")), "00000000000000000000000000000000", "8a380594d7396453771a1dfbe2914c8e"), new BlockCipherVectorTest(4, new RC6Engine(), new KeyParameter( Hex.decode("1000000000000000000000000000000000000000000000000000000000000000")), "00000000000000000000000000000000", "11395d4bfe4c8258979ee2bf2d24dff4"), new BlockCipherVectorTest(5, new RC6Engine(), new KeyParameter( Hex.decode("0000000000000000000000000000000000080000000000000000000000000000")), "00000000000000000000000000000000", "3d6f7e99f6512553bb983e8f75672b97") }; RC6Test() { super(tests); } public String getName() { return "RC6"; } public static void main( String[] args) { RC6Test test = new RC6Test(); TestResult result = test.perform(); System.out.println(result); } }
26,291
https://github.com/good-ghost/PackageBuilder/blob/master/PackageBuilder/BuildProcess.Designer.vb
Github Open Source
Open Source
MIT
null
PackageBuilder
good-ghost
Visual Basic
Code
335
1,358
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _ Partial Class BuildProcess Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. <System.Diagnostics.DebuggerNonUserCode()> _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then components.Dispose() End If Finally MyBase.Dispose(disposing) End Try End Sub 'Required by the Windows Form Designer Private components As System.ComponentModel.IContainer 'NOTE: The following procedure is required by the Windows Form Designer 'It can be modified using the Windows Form Designer. 'Do not modify it using the code editor. <System.Diagnostics.DebuggerStepThrough()> _ Private Sub InitializeComponent() Me.bgw = New System.ComponentModel.BackgroundWorker() Me.progressBar = New System.Windows.Forms.ProgressBar() Me.lblMessage = New System.Windows.Forms.Label() Me.btnExit = New System.Windows.Forms.Button() Me.textBox = New System.Windows.Forms.TextBox() Me.SuspendLayout() ' 'bgw ' ' 'progressBar ' Me.progressBar.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.progressBar.Location = New System.Drawing.Point(14, 14) Me.progressBar.Name = "progressBar" Me.progressBar.Size = New System.Drawing.Size(881, 27) Me.progressBar.TabIndex = 0 ' 'lblMessage ' Me.lblMessage.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.lblMessage.Font = New System.Drawing.Font("Segoe UI", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.lblMessage.Location = New System.Drawing.Point(14, 48) Me.lblMessage.Name = "lblMessage" Me.lblMessage.Size = New System.Drawing.Size(881, 27) Me.lblMessage.TabIndex = 1 Me.lblMessage.Text = "process message" ' 'btnExit ' Me.btnExit.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _ Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.btnExit.Enabled = False Me.btnExit.Location = New System.Drawing.Point(417, 409) Me.btnExit.Name = "btnExit" Me.btnExit.Size = New System.Drawing.Size(75, 23) Me.btnExit.TabIndex = 2 Me.btnExit.Text = "Exit" Me.btnExit.UseVisualStyleBackColor = True ' 'textBox ' Me.textBox.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ Or System.Windows.Forms.AnchorStyles.Left) _ Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.textBox.Font = New System.Drawing.Font("Consolas", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.textBox.Location = New System.Drawing.Point(14, 78) Me.textBox.MaxLength = 10485760 Me.textBox.Multiline = True Me.textBox.Name = "textBox" Me.textBox.ReadOnly = True Me.textBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical Me.textBox.Size = New System.Drawing.Size(881, 325) Me.textBox.TabIndex = 3 ' 'BuildProcess ' Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 15.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(909, 444) Me.Controls.Add(Me.textBox) Me.Controls.Add(Me.btnExit) Me.Controls.Add(Me.lblMessage) Me.Controls.Add(Me.progressBar) Me.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Name = "BuildProcess" Me.Text = "BuildProcess" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents bgw As System.ComponentModel.BackgroundWorker Friend WithEvents progressBar As ProgressBar Friend WithEvents lblMessage As Label Friend WithEvents btnExit As Button Friend WithEvents textBox As TextBox End Class
42,162