hexsha
stringlengths 40
40
| size
int64 5
1.05M
| ext
stringclasses 98
values | lang
stringclasses 21
values | max_stars_repo_path
stringlengths 3
945
| max_stars_repo_name
stringlengths 4
118
| max_stars_repo_head_hexsha
stringlengths 40
78
| max_stars_repo_licenses
sequencelengths 1
10
| max_stars_count
int64 1
368k
⌀ | max_stars_repo_stars_event_min_datetime
stringlengths 24
24
⌀ | max_stars_repo_stars_event_max_datetime
stringlengths 24
24
⌀ | max_issues_repo_path
stringlengths 3
945
| max_issues_repo_name
stringlengths 4
118
| max_issues_repo_head_hexsha
stringlengths 40
78
| max_issues_repo_licenses
sequencelengths 1
10
| max_issues_count
int64 1
134k
⌀ | max_issues_repo_issues_event_min_datetime
stringlengths 24
24
⌀ | max_issues_repo_issues_event_max_datetime
stringlengths 24
24
⌀ | max_forks_repo_path
stringlengths 3
945
| max_forks_repo_name
stringlengths 4
135
| max_forks_repo_head_hexsha
stringlengths 40
78
| max_forks_repo_licenses
sequencelengths 1
10
| max_forks_count
int64 1
105k
⌀ | max_forks_repo_forks_event_min_datetime
stringlengths 24
24
⌀ | max_forks_repo_forks_event_max_datetime
stringlengths 24
24
⌀ | content
stringlengths 5
1.05M
| avg_line_length
float64 1
1.03M
| max_line_length
int64 2
1.03M
| alphanum_fraction
float64 0
1
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
daa0844e5aed430b4a6c90f11a1c5ab16b16c7b7 | 1,086 | php | PHP | src/query/QueryEmpty.php | buizcore/BuizCore | 9e56f7b7f9a7045d530b2a343d1876c0524b089f | [
"BSD-3-Clause"
] | null | null | null | src/query/QueryEmpty.php | buizcore/BuizCore | 9e56f7b7f9a7045d530b2a343d1876c0524b089f | [
"BSD-3-Clause"
] | null | null | null | src/query/QueryEmpty.php | buizcore/BuizCore | 9e56f7b7f9a7045d530b2a343d1876c0524b089f | [
"BSD-3-Clause"
] | null | null | null | <?php
/*******************************************************************************
*
* @author : Dominik Bonsch <[email protected]>
* @date :
* @copyright : BuizCore GmbH <[email protected]>
* @project : BuizCore the business core
* @projectUrl : http://buizcore.net
*
* @licence : BSD License see: LICENCE/BSD Licence.txt
*
* @version: @package_version@ Revision: @package_revision@
*
* Changes:
*
*******************************************************************************/
/**
* Eine leere Queryklasse
* Kann als Fallback im Fehlerfall verwendet werden
*
* @package net.buiz
* @author Dominik Bonsch <[email protected]>
* @copyright Buiz Developer Network <[email protected]>
*/
class QueryEmpty extends LibSqlQuery
{
/*////////////////////////////////////////////////////////////////////////////*/
// Attributes
/*////////////////////////////////////////////////////////////////////////////*/
/**
* @var array
*/
protected $result = [];
/**
* @var int
*/
protected $sourceSize = 0;
}//end class QueryEmpty
| 24.681818 | 80 | 0.459484 |
32333e9f6bb62d150f5325de4201003418dbe86a | 10,699 | dart | Dart | lib/src/constant/unit/acceleration_unit_details.dart | joojaesook/unit_converter | 89d127c8fd16dd57eed70e9290011ba4cdded468 | [
"BSD-3-Clause"
] | null | null | null | lib/src/constant/unit/acceleration_unit_details.dart | joojaesook/unit_converter | 89d127c8fd16dd57eed70e9290011ba4cdded468 | [
"BSD-3-Clause"
] | null | null | null | lib/src/constant/unit/acceleration_unit_details.dart | joojaesook/unit_converter | 89d127c8fd16dd57eed70e9290011ba4cdded468 | [
"BSD-3-Clause"
] | 1 | 2019-12-14T08:12:43.000Z | 2019-12-14T08:12:43.000Z | import 'dart:math' show pow;
import '../../enum/acceleration_unit.dart';
import '../../enum/converter.dart';
import '../../enum/length_unit.dart';
import '../../enum/symbol_part.dart';
import '../../enum/time_unit.dart';
import '../../misc/global.dart';
import '../others/misc.dart';
final _hourToSecond = conversionFactor(Converter.time, TimeUnit.hour);
final _minuteToSecond = conversionFactor(Converter.time, TimeUnit.minute);
final _footToMetre = conversionFactor(Converter.length, LengthUnit.foot);
final _inchToMetre = conversionFactor(Converter.length, LengthUnit.inch);
final _mileToMetre = conversionFactor(Converter.length, LengthUnit.mile);
final _yardToMetre = conversionFactor(Converter.length, LengthUnit.yard);
/// __gal variations
final _galVariations = createUnitVariation(
AccelerationUnit.values,
'${variationUnitNameSeperator}gal',
.01,
decimalPrefixes,
namePostfix: 'gal',
symbolPostfix: createSymbol(
const [
SymbolPart.gal,
],
),
);
/// __metre per hour per second variations
final _metrePerHourPerSecondVariations = createUnitVariation(
AccelerationUnit.values,
'${variationUnitNameSeperator}metrePerHourPerSecond',
1 / _hourToSecond,
decimalPrefixes,
namePostfix: 'metre per hour per second',
symbolPostfix: createSymbol(
const [
SymbolPart.metre,
SymbolPart.forwardSlash,
SymbolPart.lH,
SymbolPart.forwardSlash,
SymbolPart.second,
],
),
addAmericanName: true,
americanNamePostfix: 'meter per hour per second',
);
/// __metre per hour squared variations
final _metrePerHourSquaredVariations = createUnitVariation(
AccelerationUnit.values,
'${variationUnitNameSeperator}metrePerHourSquared',
1 / pow(_hourToSecond, 2),
decimalPrefixes,
namePostfix: 'metre per hour squared',
symbolPostfix: createSymbol(
const [
SymbolPart.metre,
SymbolPart.forwardSlash,
SymbolPart.lH,
SymbolPart.superscriptTwo,
],
),
addAmericanName: true,
americanNamePostfix: 'meter per hour squared',
);
/// __metre per minute per second variations
final _metrePerMinutePerSecondVariations = createUnitVariation(
AccelerationUnit.values,
'${variationUnitNameSeperator}metrePerMinutePerSecond',
1 / _minuteToSecond,
decimalPrefixes,
namePostfix: 'metre per minute per second',
symbolPostfix: createSymbol(
const [
SymbolPart.metre,
SymbolPart.forwardSlash,
SymbolPart.minute,
SymbolPart.forwardSlash,
SymbolPart.second,
],
),
addAmericanName: true,
americanNamePostfix: 'meter per minute per second',
);
/// __metre per minute squared variations
final _metrePerMinuteSquaredVariations = createUnitVariation(
AccelerationUnit.values,
'${variationUnitNameSeperator}metrePerMinuteSquared',
1 / pow(_minuteToSecond, 2),
decimalPrefixes,
namePostfix: 'metre per minute squared',
symbolPostfix: createSymbol(
const [
SymbolPart.metre,
SymbolPart.forwardSlash,
SymbolPart.minute,
SymbolPart.superscriptTwo,
],
),
addAmericanName: true,
americanNamePostfix: 'meter per minute squared',
);
/// __metre per second squared variations
final _metrePerSecondSquaredVariations = createUnitVariation(
AccelerationUnit.values,
'${variationUnitNameSeperator}metrePerSecondSquared',
1,
decimalPrefixes,
namePostfix: 'metre per second squared',
symbolPostfix: createSymbol(
const [
SymbolPart.metre,
SymbolPart.forwardSlash,
SymbolPart.second,
SymbolPart.superscriptTwo,
],
),
addAmericanName: true,
americanNamePostfix: 'meter per second squared',
);
/// other units
final _otherUnits = {
// foot
createUnit(
'foot per hour per second',
createSymbol(
const [
SymbolPart.foot,
SymbolPart.forwardSlash,
SymbolPart.lH,
SymbolPart.forwardSlash,
SymbolPart.second,
],
),
AccelerationUnit.footPerHourPerSecond,
conversionFactor: _footToMetre / _hourToSecond,
),
createUnit(
'foot per hour squared',
createSymbol(
const [
SymbolPart.foot,
SymbolPart.forwardSlash,
SymbolPart.lH,
SymbolPart.superscriptTwo,
],
),
AccelerationUnit.footPerHourSquared,
conversionFactor: _footToMetre / pow(_hourToSecond, 2),
),
createUnit(
'foot per minute per second',
createSymbol(
const [
SymbolPart.foot,
SymbolPart.forwardSlash,
SymbolPart.minute,
SymbolPart.forwardSlash,
SymbolPart.second,
],
),
AccelerationUnit.footPerMinutePerSecond,
conversionFactor: _footToMetre / _minuteToSecond,
),
createUnit(
'foot per minute squared',
createSymbol(
const [
SymbolPart.foot,
SymbolPart.forwardSlash,
SymbolPart.minute,
SymbolPart.superscriptTwo,
],
),
AccelerationUnit.footPerMinuteSquared,
conversionFactor: _footToMetre / pow(_minuteToSecond, 2),
),
createUnit(
'foot per second squared',
createSymbol(
const [
SymbolPart.foot,
SymbolPart.forwardSlash,
SymbolPart.second,
SymbolPart.superscriptTwo,
],
),
AccelerationUnit.footPerSecondSquared,
conversionFactor: _footToMetre,
),
// inch
createUnit(
'inch per hour per second',
createSymbol(
const [
SymbolPart.inch,
SymbolPart.forwardSlash,
SymbolPart.lH,
SymbolPart.forwardSlash,
SymbolPart.second,
],
),
AccelerationUnit.inchPerHourPerSecond,
conversionFactor: _inchToMetre / _hourToSecond,
),
createUnit(
'inch per hour squared',
createSymbol(
const [
SymbolPart.inch,
SymbolPart.forwardSlash,
SymbolPart.lH,
SymbolPart.superscriptTwo,
],
),
AccelerationUnit.inchPerHourSquared,
conversionFactor: _inchToMetre / pow(_hourToSecond, 2),
),
createUnit(
'inch per minute per second',
createSymbol(
const [
SymbolPart.inch,
SymbolPart.forwardSlash,
SymbolPart.minute,
SymbolPart.forwardSlash,
SymbolPart.second,
],
),
AccelerationUnit.inchPerMinutePerSecond,
conversionFactor: _inchToMetre / _minuteToSecond,
),
createUnit(
'inch per minute squared',
createSymbol(
const [
SymbolPart.inch,
SymbolPart.forwardSlash,
SymbolPart.minute,
SymbolPart.superscriptTwo,
],
),
AccelerationUnit.inchPerMinuteSquared,
conversionFactor: _inchToMetre / pow(_minuteToSecond, 2),
),
createUnit(
'inch per second squared',
createSymbol(
const [
SymbolPart.inch,
SymbolPart.forwardSlash,
SymbolPart.second,
SymbolPart.superscriptTwo,
],
),
AccelerationUnit.inchPerSecondSquared,
conversionFactor: _inchToMetre,
),
// mile
createUnit(
'mile per hour per second',
createSymbol(
const [
SymbolPart.mile,
SymbolPart.forwardSlash,
SymbolPart.lH,
SymbolPart.forwardSlash,
SymbolPart.second,
],
),
AccelerationUnit.milePerHourPerSecond,
conversionFactor: _mileToMetre / _hourToSecond,
),
createUnit(
'mile per hour squared',
createSymbol(
const [
SymbolPart.mile,
SymbolPart.forwardSlash,
SymbolPart.lH,
SymbolPart.superscriptTwo,
],
),
AccelerationUnit.milePerHourSquared,
conversionFactor: _mileToMetre / pow(_hourToSecond, 2),
),
createUnit(
'mile per minute per second',
createSymbol(
const [
SymbolPart.mile,
SymbolPart.forwardSlash,
SymbolPart.minute,
SymbolPart.forwardSlash,
SymbolPart.second,
],
),
AccelerationUnit.milePerMinutePerSecond,
conversionFactor: _mileToMetre / _minuteToSecond,
),
createUnit(
'mile per minute squared',
createSymbol(
const [
SymbolPart.mile,
SymbolPart.forwardSlash,
SymbolPart.minute,
SymbolPart.superscriptTwo,
],
),
AccelerationUnit.milePerMinuteSquared,
conversionFactor: _mileToMetre / pow(_minuteToSecond, 2),
),
createUnit(
'mile per second squared',
createSymbol(
const [
SymbolPart.mile,
SymbolPart.forwardSlash,
SymbolPart.second,
SymbolPart.superscriptTwo,
],
),
AccelerationUnit.milePerSecondSquared,
conversionFactor: _mileToMetre,
),
// yard
createUnit(
'yard per hour per second',
createSymbol(
const [
SymbolPart.yard,
SymbolPart.forwardSlash,
SymbolPart.lH,
SymbolPart.forwardSlash,
SymbolPart.second,
],
),
AccelerationUnit.yardPerHourPerSecond,
conversionFactor: _yardToMetre / _hourToSecond,
),
createUnit(
'yard per hour squared',
createSymbol(
const [
SymbolPart.yard,
SymbolPart.forwardSlash,
SymbolPart.lH,
SymbolPart.superscriptTwo,
],
),
AccelerationUnit.yardPerHourSquared,
conversionFactor: _yardToMetre / pow(_hourToSecond, 2),
),
createUnit(
'yard per minute per second',
createSymbol(
const [
SymbolPart.yard,
SymbolPart.forwardSlash,
SymbolPart.minute,
SymbolPart.forwardSlash,
SymbolPart.second,
],
),
AccelerationUnit.yardPerMinutePerSecond,
conversionFactor: _yardToMetre / _minuteToSecond,
),
createUnit(
'yard per minute squared',
createSymbol(
const [
SymbolPart.yard,
SymbolPart.forwardSlash,
SymbolPart.minute,
SymbolPart.superscriptTwo,
],
),
AccelerationUnit.yardPerMinuteSquared,
conversionFactor: _yardToMetre / pow(_minuteToSecond, 2),
),
createUnit(
'yard per second squared',
createSymbol(
const [
SymbolPart.yard,
SymbolPart.forwardSlash,
SymbolPart.second,
SymbolPart.superscriptTwo,
],
),
AccelerationUnit.yardPerSecondSquared,
conversionFactor: _yardToMetre,
),
// others
createUnit(
'standard gravity',
createSymbol(
const [
SymbolPart.gravity,
SymbolPart.subscriptZero,
],
),
AccelerationUnit.standardGravity,
conversionFactor: 9.80665,
),
};
/// Acceleration unit details
final accelerationUnitDetails = {
..._galVariations,
..._metrePerHourPerSecondVariations,
..._metrePerHourSquaredVariations,
..._metrePerMinutePerSecondVariations,
..._metrePerMinuteSquaredVariations,
..._metrePerSecondSquaredVariations,
..._otherUnits,
};
| 24.823666 | 74 | 0.670623 |
dde9bd8f5c5b189b33f3aa42e10252d221e62def | 1,194 | java | Java | modules/chiron/fixture/src/main/java/com/otcdlink/chiron/fixture/BlockingMonolist.java | OTCdLink/Chiron | 310d61577e98e54fa05309b260b089f1b87ed229 | [
"Apache-2.0"
] | null | null | null | modules/chiron/fixture/src/main/java/com/otcdlink/chiron/fixture/BlockingMonolist.java | OTCdLink/Chiron | 310d61577e98e54fa05309b260b089f1b87ed229 | [
"Apache-2.0"
] | null | null | null | modules/chiron/fixture/src/main/java/com/otcdlink/chiron/fixture/BlockingMonolist.java | OTCdLink/Chiron | 310d61577e98e54fa05309b260b089f1b87ed229 | [
"Apache-2.0"
] | null | null | null | package com.otcdlink.chiron.fixture;
import static com.google.common.base.Preconditions.checkState;
/**
* A {@code List} which contains at most one element.
* This is useful for capturing arguments with JMockit. Using {@link #getOrWait()} we can wait
* for the effective call of the method, and got passed argument at once.
*
* @see Monolist
*/
public final class BlockingMonolist< ELEMENT > extends AbstractCaptor< ELEMENT > {
private ELEMENT element = null ;
@Override
public boolean add( final ELEMENT element ) {
lock.lock() ;
try {
checkState( this.element == null, "Already contains {" + this.element + "}" ) ;
this.element = toMagicNull( element ) ;
condition.signalAll() ;
} finally {
lock.unlock() ;
}
return true ;
}
public ELEMENT getOrWait() throws InterruptedException {
lock.lock() ;
try {
while( element == null ) {
condition.await() ;
}
return fromMagicNull( element ) ;
} finally {
lock.unlock() ;
}
}
@Override
public ELEMENT get( int index ) {
throw throwException() ;
}
@Override
public boolean isEmpty() {
return element == null ;
}
}
| 23.411765 | 94 | 0.636516 |
b27533bf4815dfd99830c1f88f3e5af8716bd81e | 3,264 | py | Python | facebook_business/adobjects/instagraminsightsresult.py | MyrikLD/facebook-python-business-sdk | a53c8ba0e8f7d0b41b385c60089f6ba00fa5c814 | [
"CNRI-Python"
] | 576 | 2018-05-01T19:09:32.000Z | 2022-03-31T11:45:11.000Z | facebook_business/adobjects/instagraminsightsresult.py | MyrikLD/facebook-python-business-sdk | a53c8ba0e8f7d0b41b385c60089f6ba00fa5c814 | [
"CNRI-Python"
] | 217 | 2018-05-03T07:31:59.000Z | 2022-03-29T14:19:52.000Z | facebook_business/adobjects/instagraminsightsresult.py | MyrikLD/facebook-python-business-sdk | a53c8ba0e8f7d0b41b385c60089f6ba00fa5c814 | [
"CNRI-Python"
] | 323 | 2018-05-01T20:32:26.000Z | 2022-03-29T07:05:12.000Z | # Copyright 2014 Facebook, Inc.
# You are hereby granted a non-exclusive, worldwide, royalty-free license to
# use, copy, modify, and distribute this software in source code or binary
# form for use in connection with the web services and APIs provided by
# Facebook.
# As with any software that integrates with the Facebook platform, your use
# of this software is subject to the Facebook Developer Principles and
# Policies [http://developers.facebook.com/policy/]. This copyright notice
# shall be included in all copies or substantial portions of the software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
from facebook_business.adobjects.abstractobject import AbstractObject
from facebook_business.adobjects.abstractcrudobject import AbstractCrudObject
from facebook_business.adobjects.objectparser import ObjectParser
from facebook_business.api import FacebookRequest
from facebook_business.typechecker import TypeChecker
"""
This class is auto-generated.
For any issues or feature requests related to this class, please let us know on
github and we'll fix in our codegen framework. We'll not be able to accept
pull request for this class.
"""
class InstagramInsightsResult(
AbstractCrudObject,
):
def __init__(self, fbid=None, parent_id=None, api=None):
self._isInstagramInsightsResult = True
super(InstagramInsightsResult, self).__init__(fbid, parent_id, api)
class Field(AbstractObject.Field):
description = 'description'
id = 'id'
name = 'name'
period = 'period'
title = 'title'
values = 'values'
class Metric:
carousel_album_engagement = 'carousel_album_engagement'
carousel_album_impressions = 'carousel_album_impressions'
carousel_album_reach = 'carousel_album_reach'
carousel_album_saved = 'carousel_album_saved'
carousel_album_video_views = 'carousel_album_video_views'
engagement = 'engagement'
exits = 'exits'
impressions = 'impressions'
reach = 'reach'
replies = 'replies'
saved = 'saved'
taps_back = 'taps_back'
taps_forward = 'taps_forward'
video_views = 'video_views'
class Period:
day = 'day'
days_28 = 'days_28'
lifetime = 'lifetime'
month = 'month'
week = 'week'
_field_types = {
'description': 'string',
'id': 'string',
'name': 'string',
'period': 'string',
'title': 'string',
'values': 'list<InstagramInsightsValue>',
}
@classmethod
def _get_field_enum_info(cls):
field_enum_info = {}
field_enum_info['Metric'] = InstagramInsightsResult.Metric.__dict__.values()
field_enum_info['Period'] = InstagramInsightsResult.Period.__dict__.values()
return field_enum_info
| 36.266667 | 84 | 0.709252 |
a9ff89c5a14934da7dea47c11bff89a3217b37b3 | 553 | php | PHP | wp-app/wp-content/plugins/acf-theme-code-pro/pro/render/icon-picker.php | davidsautoapp/davidsautoservicewp | 4519ba08725691c3eb1092239dace159bccaa9ee | [
"MIT"
] | null | null | null | wp-app/wp-content/plugins/acf-theme-code-pro/pro/render/icon-picker.php | davidsautoapp/davidsautoservicewp | 4519ba08725691c3eb1092239dace159bccaa9ee | [
"MIT"
] | null | null | null | wp-app/wp-content/plugins/acf-theme-code-pro/pro/render/icon-picker.php | davidsautoapp/davidsautoservicewp | 4519ba08725691c3eb1092239dace159bccaa9ee | [
"MIT"
] | null | null | null | <?php
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) exit;
// ACF Icon Selector Field - https://github.com/houke/acf-icon-picker/
echo $this->indent . htmlspecialchars("<?php if ( " . $this->get_field_method . "( '" . $this->name ."'". $this->location . " ) ) { ?>\n");
echo $this->indent . htmlspecialchars(" <img src=\"<?php echo get_stylesheet_directory_uri(); ?>/assets/img/acf/<?php " . $this->the_field_method . "( '" . $this->name ."'". $this->location . " ); ?>.svg\" />\n");
echo $this->indent . htmlspecialchars("<?php } ?>\n");
| 61.444444 | 213 | 0.609403 |
540ab10d0456bdde2b447ff13ab162e60645be9b | 566 | swift | Swift | samples/getting-started/DemoApp/AppDelegate.swift | chenyunguiMilook/UIKit-cross-platform | 0e44ce485bf0e85fc161e1427970760dc2ff951e | [
"Apache-2.0",
"MIT"
] | 498 | 2018-07-19T14:14:29.000Z | 2022-03-25T04:23:57.000Z | samples/getting-started/DemoApp/AppDelegate.swift | chenyunguiMilook/UIKit-cross-platform | 0e44ce485bf0e85fc161e1427970760dc2ff951e | [
"Apache-2.0",
"MIT"
] | 88 | 2018-07-19T17:04:45.000Z | 2022-03-18T16:09:01.000Z | samples/getting-started/DemoApp/AppDelegate.swift | chenyunguiMilook/UIKit-cross-platform | 0e44ce485bf0e85fc161e1427970760dc2ff951e | [
"Apache-2.0",
"MIT"
] | 38 | 2018-07-21T07:04:36.000Z | 2022-03-30T06:35:16.000Z | //
// AppDelegate.swift
// DemoApp
//
// Created by Michael Knoch on 16.07.18.
// Copyright © 2018 flowkey. All rights reserved.
//
import UIKit
final class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions:
[UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
window = UIWindow()
window?.rootViewController = ViewController()
window?.makeKeyAndVisible()
return true
}
}
| 19.517241 | 61 | 0.659011 |
25e0fd5230b5518276c683ddcdf5c6207498dfb4 | 5,666 | cs | C# | Source/EntityFramework.Extended/Audit/AuditLog.cs | StasPerekrestov/EntityFramework.Extended | ef14ba4d16d851018cbf9333cb49add6442cd43e | [
"BSD-3-Clause"
] | 336 | 2017-06-20T15:00:14.000Z | 2022-03-31T09:55:13.000Z | Source/EntityFramework.Extended/Audit/AuditLog.cs | StasPerekrestov/EntityFramework.Extended | ef14ba4d16d851018cbf9333cb49add6442cd43e | [
"BSD-3-Clause"
] | 26 | 2017-06-19T15:30:15.000Z | 2020-10-19T03:18:50.000Z | Source/EntityFramework.Extended/Audit/AuditLog.cs | StasPerekrestov/EntityFramework.Extended | ef14ba4d16d851018cbf9333cb49add6442cd43e | [
"BSD-3-Clause"
] | 96 | 2017-07-11T02:05:28.000Z | 2022-03-31T02:37:11.000Z | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Xml;
using System.Xml.Serialization;
using EntityFramework.Reflection;
namespace EntityFramework.Audit
{
/// <summary>
/// A class representing a log of the changes.
/// </summary>
[XmlRoot(Namespace = AuditNamespace, ElementName = "audit")]
[DataContract(Name = "audit", Namespace = AuditNamespace)]
public class AuditLog
{
/// <summary>
/// The schema namespace for the audit log.
/// </summary>
public const string AuditNamespace = "http://schemas.tempuri.org/ef/audit/2.0";
private static readonly Lazy<XmlSerializer> _serializer;
static AuditLog()
{
_serializer = new Lazy<XmlSerializer>(() =>
new XmlSerializer(typeof(AuditLog), AuditNamespace));
}
/// <summary>
/// Initializes a new instance of the <see cref="AuditLog"/> class.
/// </summary>
public AuditLog()
{
Entities = new List<AuditEntity>();
}
/// <summary>
/// Gets or sets the user name that made the changes.
/// </summary>
/// <value>The user name that made the changes.</value>
[XmlElement("username")]
[DataMember(Name = "username", Order = 0)]
public string Username { get; set; }
/// <summary>
/// Gets or sets the date when the changes were made.
/// </summary>
/// <value>The date when the changes were made.</value>
[XmlElement("date")]
[DataMember(Name = "date", Order = 1)]
public DateTime Date { get; set; }
/// <summary>
/// Gets the list entities that have changes.
/// </summary>
/// <value>The list entities that have changes.</value>
[XmlArray("entities")]
[XmlArrayItem("entity")]
[DataMember(Name = "entities", Order = 2)]
public List<AuditEntity> Entities { get; set; }
/// <summary>
/// Refresh key and property values. Call after Save to capture database updated keys and values.
/// </summary>
public AuditLog Refresh()
{
// update current values because the entites can change after submit
foreach (var auditEntity in Entities)
{
// don't need to update deletes
if (auditEntity.Action == AuditAction.Deleted)
continue;
// if current is stored, it will be updated on submit
object current = auditEntity.Current;
if (current == null)
continue;
// update the key value
foreach (var key in auditEntity.Keys)
key.Value = LateBinder.GetProperty(current, key.Name);
// update the property current values
foreach (var property in auditEntity.Properties.Where(p => !p.IsRelationship))
property.Current = LateBinder.GetProperty(current, property.Name);
}
return this;
}
/// <summary>
/// Returns an XML string of the <see cref="AuditLog"/>.
/// </summary>
/// <returns>An XML string of the <see cref="AuditLog"/>.</returns>
public string ToXml()
{
var settings = new XmlWriterSettings { Indent = true, OmitXmlDeclaration = true };
var builder = new StringBuilder();
using (var writer = XmlWriter.Create(builder, settings))
{
ToXml(writer);
}
return builder.ToString();
}
/// <summary>
/// Saves the <see cref="AuditLog"/> to the specified <see cref="XmlWriter"/>.
/// </summary>
/// <param name="writer">The writer to save <see cref="AuditLog"/> to.</param>
public void ToXml(XmlWriter writer)
{
_serializer.Value.Serialize(writer, this);
writer.Flush();
}
/// <summary>
/// Returns an <see cref="AuditLog"/> object created from an XML string.
/// </summary>
/// <param name="auditLog">
/// An XML string
/// </param>
/// <returns>
/// An <see cref="AuditLog"/> object created from an XML string.
/// </returns>
public static AuditLog FromXml(string auditLog)
{
if (string.IsNullOrEmpty(auditLog))
return new AuditLog();
try
{
using (var reader = new StringReader(auditLog))
using (var xr = XmlReader.Create(reader))
{
return FromXml(xr);
}
}
catch
{
return new AuditLog();
}
}
/// <summary>
/// Returns an <see cref="AuditLog"/> object created from an XML string.
/// </summary>
/// <param name="reader">The <see cref="XmlReader"/> to create the <see cref="AuditLog"/> from.</param>
/// <returns>
/// An <see cref="AuditLog"/> object created from an <see cref="XmlReader"/>.
/// </returns>
public static AuditLog FromXml(XmlReader reader)
{
if (reader == null)
return new AuditLog();
try
{
return _serializer.Value.Deserialize(reader) as AuditLog;
}
catch
{
return new AuditLog();
}
}
}
} | 32.94186 | 111 | 0.529474 |
796387c0c403ecbc6b4e599f99c8ed0c5dfed088 | 1,497 | php | PHP | app/Http/Controllers/Api/TicketController.php | Bahrom554/Ticket | fc626f758871c7738db957ad2644207720e4bcb3 | [
"MIT"
] | null | null | null | app/Http/Controllers/Api/TicketController.php | Bahrom554/Ticket | fc626f758871c7738db957ad2644207720e4bcb3 | [
"MIT"
] | null | null | null | app/Http/Controllers/Api/TicketController.php | Bahrom554/Ticket | fc626f758871c7738db957ad2644207720e4bcb3 | [
"MIT"
] | null | null | null | <?php
namespace App\Http\Controllers\Api;
use App\Order;
use App\Region;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use App\Ticket;
class TicketController extends Controller
{
public function allregion()
{
$regions=Region::all();
return response()->json(['regions'=>$regions])->setStatusCode(200);
}
public function allticket()
{
$tickets = Ticket::where('status', 1)->orderBy('created_at', 'DESC')->get();
return response()->json(['orders' => $tickets])->setStatusCode(200);
}
public function Order(Request $request)
{
$this->validate($request,[
'ticket_id'=>['required'],
'name'=>['required','string'],
'phone'=>['required']
]);
$ticket=Ticket::findOrFail($request->ticket_id);
$order=new Order;
$order->ticket_id=$ticket->id;
$order->name=$request->name;
$order->phone=$request->phone;
$order->status='active';
$order->save();
return response()->json(['message'=>'Order is successfully taken'])->setStatusCode(201);
}
public function ticket(Request $request){
$this->validate($request,[
'date'=>'required',
'from_id'=>'required',
'to_id'=>'required'
]);
$ticket=Ticket::where('date',$request->date)->where('from_id',$request->from_id)->where('to_id',$request->to_id)->get();
return response()->json($ticket);
}
}
| 28.245283 | 128 | 0.583166 |
24af5f02641b2e767ae83480dd08508e419f6769 | 6,780 | php | PHP | resources/views/registers/show.blade.php | Lateefat99/registration | 0dd4862735e9032b2caa755ba4a8f66e32e81170 | [
"MIT"
] | 1 | 2021-05-04T16:02:25.000Z | 2021-05-04T16:02:25.000Z | resources/views/registers/show.blade.php | Lateefat99/registration | 0dd4862735e9032b2caa755ba4a8f66e32e81170 | [
"MIT"
] | null | null | null | resources/views/registers/show.blade.php | Lateefat99/registration | 0dd4862735e9032b2caa755ba4a8f66e32e81170 | [
"MIT"
] | null | null | null | <x-app-layout>
<x-slot name="header">
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
{{ __('Student Information') }}
</h2>
</x-slot>
<div>
<div class="max-w-7xl mx-auto py-10 sm:px-6 lg:px-8">
<div class="mt-5 md:mt-0 md:col-span-2">
<div class="hidden sm:block" aria-hidden="true">
<div class="py-5">
<div class="border-t border-gray-200"></div>
</div>
</div>
<div class="mt-10 sm:mt-0">
<div class="md:grid md:grid-cols-3 md:gap-6">
<div class="md:col-span-1">
<div class="px-4 sm:px-0">
<h3 class="text-lg font-medium leading-6 text-gray-900"><strong><u>Student Information:</u></strong></h3>
<div>
<img class="h-50 w-50 rounded-full" src="{{'/studentsPictures' . $student->filename}}">
</div>
<table class="border-separate border border-green-800 ...">
@if(isset($student))
<tr>
<td></td>
</tr>
<tr>
<th class="border border-green-600 ...">Name:</th>
<td class="border border-green-600 ...">{{strtoupper($student->name)}}</td>
</tr>
<tr>
<th>Gender:</th>
<td>{{strtoupper($student->gender)}}</td>
</tr>
<tr>
<th>Student Program(s):</th>
@foreach($student->programs as $program)
<td>{{strtoupper($program->name)}}</td>
@endforeach
</tr>
<tr>
<th>Class:</th>
<td>{{strtoupper($student->admitted_class)}}</td>
</tr>
<tr>
<th>Phone Number:</th>
<td>{{strtoupper($student->phone)}}</td>
</tr>
<tr>
<th>Date of Birth:</th>
<td>{{strtoupper($student->d_o_b)}}</td>
</tr>
<tr>
<th>Address:</th>
<td>{{strtoupper($student->address)}}</td>
</tr>
<tr>
<th>Gender:</th>
<td>{{strtoupper($student->gender)}}</td>
</tr>
<tr>
<th>Nationality:</th>
<td>{{strtoupper($student->nationality)}}</td>
</tr>
<tr>
<th>Email:</th>
<td>{{$student->email}}</td>
</tr>
<tr>
<th>State of Origin:</th>
<td>{{strtoupper($student->state_of_origin)}}</td>
</tr>
<tr>
<th>Class:</th>
<td>{{strtoupper($student->health_status)}}</td>
</tr>
<tr>
<th>Blood Group:</th>
<td>{{strtoupper($student->blood_group)}}</td>
</tr>
<tr>
<th>Guardian Name:</th>
<td>{{strtoupper($student->guardian_name)}}</td>
</tr>
<tr>
<th>Guardian Phone:</th>
<td>{{strtoupper($student->guardian_phone)}}</td>
</tr>
<tr>
<th>Genotype:</th>
<td>{{strtoupper($student->genotype)}}</td>
</tr>
<tr>
<th>Allergy:</th>
<td>{{strtoupper($student->allergy)}}</td>
</tr>
<tr>
<th>Card Number:</th>
<td>{{strtoupper($student->card_number)}}</td>
</tr>
<tr>
<th>Registration Number:</th>
<td>{{strtoupper($student->reg_number)}}</td>
</tr>
<tr>
<th>Registration Date:</th>
<td>{{strtoupper($student->reg_date)}}</td>
</tr>
@endif
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</x-app-layout>
| 46.122449 | 137 | 0.237168 |
e042dd1dfe0ab7becd28024a5423608f7f6d1b46 | 1,663 | h | C | Terrain/chunk.h | marcgpuig/FrozenEngine | 0abb8a15bc68efff8865f06523bc1d7b6f255175 | [
"MIT"
] | 2 | 2021-02-05T17:26:26.000Z | 2022-02-16T06:18:04.000Z | Terrain/chunk.h | marcgpuig/FrozenEngine | 0abb8a15bc68efff8865f06523bc1d7b6f255175 | [
"MIT"
] | null | null | null | Terrain/chunk.h | marcgpuig/FrozenEngine | 0abb8a15bc68efff8865f06523bc1d7b6f255175 | [
"MIT"
] | null | null | null | /**********************************************************************
** chunk.h
** Hi ha arrays amb +2 al tamany, aixo es perque es necesiten els
** vertex contigus dels chunks adjacents per calcular les normals
** dels vertex dels laterals
**********************************************************************/
#pragma once
#ifndef CHUNK_H
#define CHUNK_H
// GLM Mathematics
#include "global.h"
#include "worldMap.h"
#include "Sprite.h"
#include <string.h>
#include <list>
#define CHUNK_RESOLUTION 64 // faces in chunk
//#define CHUNK_SIDE_POINTS 65 // vertex per edge in chunk (CHUNK_RESOLUTION+1)
#define POINTS_IN_RECT 6 // one square has 6 points (in 2 triangles)
const GLint CHUNK_SIDE_POINTS = CHUNK_RESOLUTION + 1; // vertex per edge in chunk
class worldMap; //forward declaration
class chunk
{
private:
//glm::mat4 modelMatrix;
worldMap *parentMap;
uint32_t id;
uint8_t worldPosX, worldPosY;
uint32_t worldStartPosX, worldStartPosY;
GLfloat distanceBtwPoints;
GLfloat *chunkVertexBuffer;
GLuint VAO, VBO;
GLfloat heightMap[CHUNK_SIDE_POINTS+2][CHUNK_SIDE_POINTS+2];
std::list<Sprite> sprites;
public:
chunk(int x, int y, worldMap *map);
chunk();
~chunk();
void generate();
void load(std::string);
void genHeigts();
void addSprites();
void genVBO();
void render();
void render_sprites();
GLfloat getVertexHeight(uint8_t x, uint8_t y);
glm::vec3 getAdjvertex(int i, int j, GLfloat heightPlane[CHUNK_SIDE_POINTS + 2][CHUNK_SIDE_POINTS + 2][3]); // +2 to generate normals of vertex in adjacent chunks
glm::vec3 gouraud(int i, int j, GLfloat heightPlane[CHUNK_SIDE_POINTS + 2][CHUNK_SIDE_POINTS + 2][3]);
};
#endif | 26.396825 | 163 | 0.677691 |
b94d5d9fbdb87c6e03e57c436cfac32cc8bf14d3 | 188 | ps1 | PowerShell | Generate.ps1 | saigiridhar21/stachschema-sdks | 8da7f84307eed2e7fd49658b72a258a2a7f485b1 | [
"Apache-2.0"
] | null | null | null | Generate.ps1 | saigiridhar21/stachschema-sdks | 8da7f84307eed2e7fd49658b72a258a2a7f485b1 | [
"Apache-2.0"
] | 6 | 2020-12-14T14:08:49.000Z | 2022-01-07T09:47:06.000Z | Generate.ps1 | saigiridhar21/stachschema-sdks | 8da7f84307eed2e7fd49658b72a258a2a7f485b1 | [
"Apache-2.0"
] | 6 | 2021-01-05T15:16:33.000Z | 2021-03-19T13:33:33.000Z | git clone --depth 1 https://github.com/factset/stachschema.git schema
$env:SCHEMA="$(pwd)/schema/proto"
docker-compose -f docker-compose.generate.yml up --remove-orphans
rm /s /q schema | 26.857143 | 69 | 0.75 |
e0011628329d9ba699aba8f8ea6709e79c72b56c | 13,279 | c | C | programs/Xserver/randr/rroutput.c | sourcecode-reloaded/Xming | b9f2e99d00f9445a29803d622d24b5314ee35991 | [
"X11",
"MIT"
] | 4 | 2020-08-21T04:21:14.000Z | 2022-01-15T11:26:11.000Z | programs/Xserver/randr/rroutput.c | sourcecode-reloaded/Xming | b9f2e99d00f9445a29803d622d24b5314ee35991 | [
"X11",
"MIT"
] | 1 | 2020-02-23T19:22:52.000Z | 2020-02-23T19:22:52.000Z | programs/Xserver/randr/rroutput.c | talregev/Xming | e7a997e3c6441c572df6953468fd8e88ca9e07e7 | [
"X11",
"MIT"
] | 3 | 2020-12-18T06:33:36.000Z | 2022-02-22T16:25:50.000Z | /*
* Copyright © 2006 Keith Packard
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that copyright
* notice and this permission notice appear in supporting documentation, and
* that the name of the copyright holders not be used in advertising or
* publicity pertaining to distribution of the software without specific,
* written prior permission. The copyright holders make no representations
* about the suitability of this software for any purpose. It is provided "as
* is" without express or implied warranty.
*
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
* EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THIS SOFTWARE.
*/
#include "randrstr.h"
RESTYPE RROutputType;
/*
* Notify the output of some change
*/
void
RROutputChanged (RROutputPtr output, Bool configChanged)
{
ScreenPtr pScreen = output->pScreen;
output->changed = TRUE;
if (pScreen)
{
rrScrPriv (pScreen);
pScrPriv->changed = TRUE;
if (configChanged)
pScrPriv->configChanged = TRUE;
}
}
/*
* Create an output
*/
RROutputPtr
RROutputCreate (ScreenPtr pScreen,
const char *name,
int nameLength,
void *devPrivate)
{
RROutputPtr output;
RROutputPtr *outputs;
rrScrPrivPtr pScrPriv;
if (!RRInit())
return NULL;
pScrPriv = rrGetScrPriv(pScreen);
if (pScrPriv->numOutputs)
outputs = xrealloc (pScrPriv->outputs,
(pScrPriv->numOutputs + 1) * sizeof (RROutputPtr));
else
outputs = xalloc (sizeof (RROutputPtr));
if (!outputs)
return FALSE;
pScrPriv->outputs = outputs;
output = xalloc (sizeof (RROutputRec) + nameLength + 1);
if (!output)
return NULL;
output->id = FakeClientID (0);
output->pScreen = pScreen;
output->name = (char *) (output + 1);
output->nameLength = nameLength;
memcpy (output->name, name, nameLength);
output->name[nameLength] = '\0';
output->connection = RR_UnknownConnection;
output->subpixelOrder = SubPixelUnknown;
output->mmWidth = 0;
output->mmHeight = 0;
output->crtc = NULL;
output->numCrtcs = 0;
output->crtcs = NULL;
output->numClones = 0;
output->clones = NULL;
output->numModes = 0;
output->numPreferred = 0;
output->modes = NULL;
output->numUserModes = 0;
output->userModes = NULL;
output->properties = NULL;
output->changed = FALSE;
output->devPrivate = devPrivate;
if (!AddResource (output->id, RROutputType, (pointer) output))
return NULL;
pScrPriv->outputs[pScrPriv->numOutputs++] = output;
return output;
}
/*
* Notify extension that output parameters have been changed
*/
Bool
RROutputSetClones (RROutputPtr output,
RROutputPtr *clones,
int numClones)
{
RROutputPtr *newClones;
int i;
if (numClones == output->numClones)
{
for (i = 0; i < numClones; i++)
if (output->clones[i] != clones[i])
break;
if (i == numClones)
return TRUE;
}
if (numClones)
{
newClones = xalloc (numClones * sizeof (RROutputPtr));
if (!newClones)
return FALSE;
}
else
newClones = NULL;
if (output->clones)
xfree (output->clones);
memcpy (newClones, clones, numClones * sizeof (RROutputPtr));
output->clones = newClones;
output->numClones = numClones;
RROutputChanged (output, TRUE);
return TRUE;
}
Bool
RROutputSetModes (RROutputPtr output,
RRModePtr *modes,
int numModes,
int numPreferred)
{
RRModePtr *newModes;
int i;
if (numModes == output->numModes && numPreferred == output->numPreferred)
{
for (i = 0; i < numModes; i++)
if (output->modes[i] != modes[i])
break;
if (i == numModes)
{
for (i = 0; i < numModes; i++)
RRModeDestroy (modes[i]);
return TRUE;
}
}
if (numModes)
{
newModes = xalloc (numModes * sizeof (RRModePtr));
if (!newModes)
return FALSE;
}
else
newModes = NULL;
if (output->modes)
{
for (i = 0; i < output->numModes; i++)
RRModeDestroy (output->modes[i]);
xfree (output->modes);
}
memcpy (newModes, modes, numModes * sizeof (RRModePtr));
output->modes = newModes;
output->numModes = numModes;
output->numPreferred = numPreferred;
RROutputChanged (output, TRUE);
return TRUE;
}
int
RROutputAddUserMode (RROutputPtr output,
RRModePtr mode)
{
int m;
ScreenPtr pScreen = output->pScreen;
rrScrPriv(pScreen);
RRModePtr *newModes;
/* Check to see if this mode is already listed for this output */
for (m = 0; m < output->numModes + output->numUserModes; m++)
{
RRModePtr e = (m < output->numModes ?
output->modes[m] :
output->userModes[m - output->numModes]);
if (mode == e)
return Success;
}
/* Check with the DDX to see if this mode is OK */
if (pScrPriv->rrOutputValidateMode)
if (!pScrPriv->rrOutputValidateMode (pScreen, output, mode))
return BadMatch;
if (output->userModes)
newModes = xrealloc (output->userModes,
(output->numUserModes + 1) * sizeof (RRModePtr));
else
newModes = xalloc (sizeof (RRModePtr));
if (!newModes)
return BadAlloc;
output->userModes = newModes;
output->userModes[output->numUserModes++] = mode;
++mode->refcnt;
RROutputChanged (output, TRUE);
RRTellChanged (pScreen);
return Success;
}
int
RROutputDeleteUserMode (RROutputPtr output,
RRModePtr mode)
{
int m;
/* Find this mode in the user mode list */
for (m = 0; m < output->numUserModes; m++)
{
RRModePtr e = output->userModes[m];
if (mode == e)
break;
}
/* Not there, access error */
if (m == output->numUserModes)
return BadAccess;
/* make sure the mode isn't active for this output */
if (output->crtc && output->crtc->mode == mode)
return BadMatch;
memmove (output->userModes + m, output->userModes + m + 1,
(output->numUserModes - m - 1) * sizeof (RRModePtr));
RRModeDestroy (mode);
return Success;
}
Bool
RROutputSetCrtcs (RROutputPtr output,
RRCrtcPtr *crtcs,
int numCrtcs)
{
RRCrtcPtr *newCrtcs;
int i;
if (numCrtcs == output->numCrtcs)
{
for (i = 0; i < numCrtcs; i++)
if (output->crtcs[i] != crtcs[i])
break;
if (i == numCrtcs)
return TRUE;
}
if (numCrtcs)
{
newCrtcs = xalloc (numCrtcs * sizeof (RRCrtcPtr));
if (!newCrtcs)
return FALSE;
}
else
newCrtcs = NULL;
if (output->crtcs)
xfree (output->crtcs);
memcpy (newCrtcs, crtcs, numCrtcs * sizeof (RRCrtcPtr));
output->crtcs = newCrtcs;
output->numCrtcs = numCrtcs;
RROutputChanged (output, TRUE);
return TRUE;
}
void
RROutputSetCrtc (RROutputPtr output, RRCrtcPtr crtc)
{
if (output->crtc == crtc)
return;
output->crtc = crtc;
RROutputChanged (output, FALSE);
}
Bool
RROutputSetConnection (RROutputPtr output,
CARD8 connection)
{
if (output->connection == connection)
return TRUE;
output->connection = connection;
RROutputChanged (output, TRUE);
return TRUE;
}
Bool
RROutputSetSubpixelOrder (RROutputPtr output,
int subpixelOrder)
{
if (output->subpixelOrder == subpixelOrder)
return TRUE;
output->subpixelOrder = subpixelOrder;
RROutputChanged (output, FALSE);
return TRUE;
}
Bool
RROutputSetPhysicalSize (RROutputPtr output,
int mmWidth,
int mmHeight)
{
if (output->mmWidth == mmWidth && output->mmHeight == mmHeight)
return TRUE;
output->mmWidth = mmWidth;
output->mmHeight = mmHeight;
RROutputChanged (output, FALSE);
return TRUE;
}
void
RRDeliverOutputEvent(ClientPtr client, WindowPtr pWin, RROutputPtr output)
{
ScreenPtr pScreen = pWin->drawable.pScreen;
rrScrPriv (pScreen);
xRROutputChangeNotifyEvent oe;
RRCrtcPtr crtc = output->crtc;
RRModePtr mode = crtc ? crtc->mode : 0;
oe.type = RRNotify + RREventBase;
oe.subCode = RRNotify_OutputChange;
oe.sequenceNumber = client->sequence;
oe.timestamp = pScrPriv->lastSetTime.milliseconds;
oe.configTimestamp = pScrPriv->lastConfigTime.milliseconds;
oe.window = pWin->drawable.id;
oe.output = output->id;
if (crtc)
{
oe.crtc = crtc->id;
oe.mode = mode ? mode->mode.id : None;
oe.rotation = crtc->rotation;
}
else
{
oe.crtc = None;
oe.mode = None;
oe.rotation = RR_Rotate_0;
}
oe.connection = output->connection;
oe.subpixelOrder = output->subpixelOrder;
WriteEventsToClient (client, 1, (xEvent *) &oe);
}
/*
* Destroy a Output at shutdown
*/
void
RROutputDestroy (RROutputPtr output)
{
FreeResource (output->id, 0);
}
static int
RROutputDestroyResource (pointer value, XID pid)
{
RROutputPtr output = (RROutputPtr) value;
ScreenPtr pScreen = output->pScreen;
int m;
if (pScreen)
{
rrScrPriv(pScreen);
int i;
for (i = 0; i < pScrPriv->numOutputs; i++)
{
if (pScrPriv->outputs[i] == output)
{
memmove (pScrPriv->outputs + i, pScrPriv->outputs + i + 1,
(pScrPriv->numOutputs - (i + 1)) * sizeof (RROutputPtr));
--pScrPriv->numOutputs;
break;
}
}
}
if (output->modes)
{
for (m = 0; m < output->numModes; m++)
RRModeDestroy (output->modes[m]);
xfree (output->modes);
}
for (m = 0; m < output->numUserModes; m++)
RRModeDestroy (output->userModes[m]);
if (output->userModes)
xfree (output->userModes);
if (output->crtcs)
xfree (output->crtcs);
if (output->clones)
xfree (output->clones);
RRDeleteAllOutputProperties (output);
xfree (output);
return 1;
}
/*
* Initialize output type
*/
Bool
RROutputInit (void)
{
RROutputType = CreateNewResourceType (RROutputDestroyResource);
if (!RROutputType)
return FALSE;
#ifdef XResExtension
RegisterResourceName (RROutputType, "OUTPUT");
#endif
return TRUE;
}
#define OutputInfoExtra (SIZEOF(xRRGetOutputInfoReply) - 32)
int
ProcRRGetOutputInfo (ClientPtr client)
{
REQUEST(xRRGetOutputInfoReq);
xRRGetOutputInfoReply rep;
RROutputPtr output;
CARD8 *extra;
unsigned long extraLen;
ScreenPtr pScreen;
rrScrPrivPtr pScrPriv;
RRCrtc *crtcs;
RRMode *modes;
RROutput *clones;
char *name;
int i, n;
REQUEST_SIZE_MATCH(xRRGetOutputInfoReq);
output = LookupOutput(client, stuff->output, DixReadAccess);
if (!output)
{
client->errorValue = stuff->output;
return RRErrorBase + BadRROutput;
}
pScreen = output->pScreen;
pScrPriv = rrGetScrPriv(pScreen);
rep.type = X_Reply;
rep.sequenceNumber = client->sequence;
rep.length = OutputInfoExtra >> 2;
rep.timestamp = pScrPriv->lastSetTime.milliseconds;
rep.crtc = output->crtc ? output->crtc->id : None;
rep.mmWidth = output->mmWidth;
rep.mmHeight = output->mmHeight;
rep.connection = output->connection;
rep.subpixelOrder = output->subpixelOrder;
rep.nCrtcs = output->numCrtcs;
rep.nModes = output->numModes + output->numUserModes;
rep.nPreferred = output->numPreferred;
rep.nClones = output->numClones;
rep.nameLength = output->nameLength;
extraLen = ((output->numCrtcs +
output->numModes + output->numUserModes +
output->numClones +
((rep.nameLength + 3) >> 2)) << 2);
if (extraLen)
{
rep.length += extraLen >> 2;
extra = xalloc (extraLen);
if (!extra)
return BadAlloc;
}
else
extra = NULL;
crtcs = (RRCrtc *) extra;
modes = (RRMode *) (crtcs + output->numCrtcs);
clones = (RROutput *) (modes + output->numModes + output->numUserModes);
name = (char *) (clones + output->numClones);
for (i = 0; i < output->numCrtcs; i++)
{
crtcs[i] = output->crtcs[i]->id;
if (client->swapped)
swapl (&crtcs[i], n);
}
for (i = 0; i < output->numModes + output->numUserModes; i++)
{
if (i < output->numModes)
modes[i] = output->modes[i]->mode.id;
else
modes[i] = output->userModes[i - output->numModes]->mode.id;
if (client->swapped)
swapl (&modes[i], n);
}
for (i = 0; i < output->numClones; i++)
{
clones[i] = output->clones[i]->id;
if (client->swapped)
swapl (&clones[i], n);
}
memcpy (name, output->name, output->nameLength);
if (client->swapped) {
swaps(&rep.sequenceNumber, n);
swapl(&rep.length, n);
swapl(&rep.timestamp, n);
swapl(&rep.crtc, n);
swapl(&rep.mmWidth, n);
swapl(&rep.mmHeight, n);
swaps(&rep.nCrtcs, n);
swaps(&rep.nModes, n);
swaps(&rep.nClones, n);
swaps(&rep.nameLength, n);
}
WriteToClient(client, sizeof(xRRGetOutputInfoReply), (char *)&rep);
if (extraLen)
{
WriteToClient (client, extraLen, (char *) extra);
xfree (extra);
}
return client->noClientException;
}
| 24.409926 | 79 | 0.646359 |
8c1265f8b71b2b90fa62bbbb04ec2695627eb005 | 1,076 | cs | C# | src/Stump.DofusProtocol/Messages/Messages/Game/Context/Fight/GameFightTurnResumeMessage.cs | Daymortel/Stump | 52ef6d4d565467f117fbd92b2827041d97044180 | [
"Apache-2.0"
] | 2 | 2021-11-03T04:33:50.000Z | 2022-01-01T00:08:37.000Z | src/Stump.DofusProtocol/Messages/Messages/Game/Context/Fight/GameFightTurnResumeMessage.cs | Daymortel/Stump | 52ef6d4d565467f117fbd92b2827041d97044180 | [
"Apache-2.0"
] | 1 | 2021-09-11T21:18:14.000Z | 2021-09-11T21:18:14.000Z | src/Stump.DofusProtocol/Messages/Messages/Game/Context/Fight/GameFightTurnResumeMessage.cs | Daymortel/Stump | 52ef6d4d565467f117fbd92b2827041d97044180 | [
"Apache-2.0"
] | 2 | 2021-09-11T08:42:53.000Z | 2021-12-23T00:30:48.000Z | namespace Stump.DofusProtocol.Messages
{
using System;
using System.Linq;
using System.Text;
using Stump.DofusProtocol.Types;
using Stump.Core.IO;
[Serializable]
public class GameFightTurnResumeMessage : GameFightTurnStartMessage
{
public new const uint Id = 6307;
public override uint MessageId
{
get { return Id; }
}
public uint RemainingTime { get; set; }
public GameFightTurnResumeMessage(double objectId, uint waitTime, uint remainingTime)
{
this.ObjectId = objectId;
this.WaitTime = waitTime;
this.RemainingTime = remainingTime;
}
public GameFightTurnResumeMessage() { }
public override void Serialize(IDataWriter writer)
{
base.Serialize(writer);
writer.WriteVarUInt(RemainingTime);
}
public override void Deserialize(IDataReader reader)
{
base.Deserialize(reader);
RemainingTime = reader.ReadVarUInt();
}
}
}
| 25.619048 | 93 | 0.606877 |
2a6bb1e6927262ba291c37cbdd6b925527a663d8 | 108 | sql | SQL | fdb-sql-layer-core/src/test/resources/com/foundationdb/sql/optimizer/rule/aggregate/subquery-2.sql | geophile/sql-layer | 0eab8b596b729081b9265631230a6703b854a4ec | [
"MIT"
] | null | null | null | fdb-sql-layer-core/src/test/resources/com/foundationdb/sql/optimizer/rule/aggregate/subquery-2.sql | geophile/sql-layer | 0eab8b596b729081b9265631230a6703b854a4ec | [
"MIT"
] | null | null | null | fdb-sql-layer-core/src/test/resources/com/foundationdb/sql/optimizer/rule/aggregate/subquery-2.sql | geophile/sql-layer | 0eab8b596b729081b9265631230a6703b854a4ec | [
"MIT"
] | null | null | null | SELECT (SELECT name FROM customers WHERE customers.cid = orders.cid), COUNT(*)
FROM orders
GROUP BY cid
| 27 | 78 | 0.740741 |
4e4988965a5dc92b0eacc883d342b79f2dc76a59 | 3,389 | ps1 | PowerShell | RocketCyberAPI/Resources/Office.ps1 | Celerium/RocketCyber-PowerShellWrapper | 97664acb9c40cba55863131155310245573bb7f0 | [
"MIT"
] | 1 | 2022-03-22T02:01:33.000Z | 2022-03-22T02:01:33.000Z | RocketCyberAPI/Resources/Office.ps1 | Celerium/RocketCyber-PowerShellWrapper | 97664acb9c40cba55863131155310245573bb7f0 | [
"MIT"
] | null | null | null | RocketCyberAPI/Resources/Office.ps1 | Celerium/RocketCyber-PowerShellWrapper | 97664acb9c40cba55863131155310245573bb7f0 | [
"MIT"
] | null | null | null | function Get-RocketCyberOffice {
<#
.SYNOPSIS
Gets Office365 integration information for a given ID from the RocketCyber API.
.DESCRIPTION
The Get-RocketCyberOffice cmdlet gets Office365 integration information for a given ID from the RocketCyber API.
.PARAMETER id
Data will be retrieved from this account id.
.EXAMPLE
Example Response Body:
{
"secureScoreProgress": {
"startDate": "2021-01-23T00:00:00.000Z",
"endDate": "2021-01-25T00:00:00.000Z",
"totalDays": 3,
"minScore": 30,
"maxScore": 50,
"averageScore": 40,
"data": [
{
"detectionDate": "2021-01-23T00:00:00.000Z",
"secureScorePercentage": 54.03
}
]
},
"monitoredAccounts": {
"total": 3,
"data": [
{
"id": "[email protected]",
"mfaStatus": "unknown",
"licenses": [
"CTA"
]
}
]
},
"secureScoreToDo": {
"total": 3,
"data": [
{
"maxScore": 50,
"control": "AdminMFAV2",
"description": "Requiring multi-factor authentication (MFA) for all ....etc"
"remediation": "Set up Azure Multi-Factor Authentication policies to ....etc"
}
]
}
}
.EXAMPLE
Get-RocketCyberOffice -id 12345
Office365 integration data will be retrieved from account id 12345.
.EXAMPLE
12345 | Get-RocketCyberOffice
Office365 integration data will be retrieved from account id 12345.
.NOTES
N\A
.LINK
https://github.com/Celerium/RocketCyber-PowerShellWrapper
https://api-doc.rocketcyber.com/
#>
[CmdletBinding(DefaultParameterSetName = 'index')]
Param (
[Parameter(Mandatory = $true , ValueFromPipeline = $true, ParameterSetName = 'index')]
[ValidateRange(1, [int]::MaxValue)]
[Int64]$id
)
$resource_uri = "/$id/office"
$body = @{}
try {
if ($null -eq $RocketCyber_API_Key) {
throw "The RocketCyber API access token is not set. Run Add-RocketCyberAPIKey to set the API access token."
}
$Api_Key = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($RocketCyber_API_Key)
$Bearer_Token = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($Api_Key)
$RocketCyber_Headers.Add('Authorization', "Bearer $Bearer_Token")
$rest_output = Invoke-RestMethod -method 'GET' -uri ( $RocketCyber_Base_URI + $resource_uri ) -headers $RocketCyber_Headers `
-body $body -ErrorAction Stop -ErrorVariable web_error
} catch {
Write-Error $_
} finally {
[void] ($RocketCyber_Headers.Remove('Authorization'))
if ($Api_Key) {
[System.Runtime.InteropServices.Marshal]::ZeroFreeBSTR($Api_Key)
}
}
$data = @{}
$data = $rest_output
return $data
}
| 31.091743 | 133 | 0.514901 |
a146f18acea90f67952936faa6d5814427776544 | 229 | ts | TypeScript | src/set/union/union.ts | zefiros-software/axioms | c797b76a1b7210843759b3b665ff23dc7f59d55b | [
"MIT"
] | null | null | null | src/set/union/union.ts | zefiros-software/axioms | c797b76a1b7210843759b3b665ff23dc7f59d55b | [
"MIT"
] | 32 | 2021-11-28T15:17:54.000Z | 2022-03-28T01:44:37.000Z | src/set/union/union.ts | zefiros-software/axioms | c797b76a1b7210843759b3b665ff23dc7f59d55b | [
"MIT"
] | null | null | null | import type { Traversable } from '../../type/traversable'
export function union<T>(xs: Traversable<T>, ys: Traversable<T>): Set<T> {
const sxs = new Set(xs)
const sys = new Set(ys)
return new Set([...sxs, ...sys])
}
| 28.625 | 74 | 0.620087 |
8c8521a4a5d2e722c855409bb16a1a3518cf4fbf | 3,146 | dart | Dart | lib/screens/welcome.dart | ghostdev7/booksi-app | a15474574fe458960b4046dd0aca75ec64cc0249 | [
"MIT"
] | null | null | null | lib/screens/welcome.dart | ghostdev7/booksi-app | a15474574fe458960b4046dd0aca75ec64cc0249 | [
"MIT"
] | null | null | null | lib/screens/welcome.dart | ghostdev7/booksi-app | a15474574fe458960b4046dd0aca75ec64cc0249 | [
"MIT"
] | null | null | null | import 'package:booksi/screens/home.dart';
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
class Welcome extends StatelessWidget {
Welcome({Key key, this.title}) : super(key: key);
final String title;
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(
width: double.infinity,
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage("assets/images/bg.jpg"), fit: BoxFit.cover)),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Container(
padding: EdgeInsets.symmetric(horizontal: 40, vertical: 10),
decoration: BoxDecoration(
color: Colors.blue,
borderRadius: BorderRadius.circular(40),
boxShadow: [
BoxShadow(
offset: Offset(0, 15),
blurRadius: 30,
color: Color(0xFF666666).withOpacity(.4))
]),
child: RichText(
text: TextSpan(
style: TextStyle(
fontSize: 32,
letterSpacing: 2
),
children: [
TextSpan(
text: "book",
style: TextStyle(color: Colors.white)
),
TextSpan(
text: "si",
style: TextStyle(fontWeight: FontWeight.bold, color: Colors.white))
]),
),
),
SizedBox(
width: MediaQuery.of(context).size.width * .4,
child: RoundedButton(
text: "start",
onPress: () {
Navigator.push(context, MaterialPageRoute(
builder: (context) {
return Home();
},
));
},
))
],
),
),
);
}
}
class RoundedButton extends StatelessWidget {
final String text;
final Function onPress;
final double fontSize;
const RoundedButton({
Key key,
this.text,
this.onPress,
this.fontSize = 16,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return GestureDetector(
onTap: onPress,
child: Container(
alignment: Alignment.center,
margin: EdgeInsets.symmetric(vertical: 12),
padding: EdgeInsets.symmetric(vertical: 10, horizontal: 36),
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(30),
boxShadow: [
BoxShadow(
offset: Offset(0, 15),
blurRadius: 30,
color: Color(0xFF666666).withOpacity(.4))
]),
child: Text(text,
style: TextStyle(fontWeight: FontWeight.bold, fontSize: fontSize)),
),
);
}
}
| 30.543689 | 93 | 0.4822 |
e2992c394330d2b226aa0b4dd7a226029f5f3f01 | 890 | py | Python | script/skin/color_preview.py | UnnamedOrange/Vivado-Term-Project | ab847a24c7f910445e93d7c6112fe2c1f9fa7334 | [
"MIT"
] | 1 | 2021-07-14T02:39:52.000Z | 2021-07-14T02:39:52.000Z | script/skin/color_preview.py | UnnamedOrange/Vivado-Term-Project | ab847a24c7f910445e93d7c6112fe2c1f9fa7334 | [
"MIT"
] | null | null | null | script/skin/color_preview.py | UnnamedOrange/Vivado-Term-Project | ab847a24c7f910445e93d7c6112fe2c1f9fa7334 | [
"MIT"
] | null | null | null | # Copyright (c) UnnamedOrange and Jack-Lyu. Licensed under the MIT License.
# See the LICENSE file in the repository root for full license text.
import numpy as np
from PIL import Image
if __name__ == '__main__':
width = 10
image = np.zeros((256 * width, 16 * width, 3), dtype=np.uint8)
i, j = 0, 0
for b in range(16):
for g in range(16):
for r in range(16):
image[i * width: (i + 1) * width, j *
width: (j + 1) * width, 0] = r << 4
image[i * width: (i + 1) * width, j *
width: (j + 1) * width, 1] = g << 4
image[i * width: (i + 1) * width, j *
width: (j + 1) * width, 2] = b << 4
j += 1
if j >= 16:
j = 0
i += 1
Image.fromarray(image).save('color_preview.png')
| 35.6 | 75 | 0.45618 |
ae7264eca601d177502a5eb65f67b83ea9355e49 | 3,975 | cs | C# | InClass/3DMath/Assets/Scenes/CamreaLook.cs | Lea-0821/CodeLab1 | 5f98eee731e88dce21406a2d0afd90c9ac517581 | [
"Unlicense"
] | null | null | null | InClass/3DMath/Assets/Scenes/CamreaLook.cs | Lea-0821/CodeLab1 | 5f98eee731e88dce21406a2d0afd90c9ac517581 | [
"Unlicense"
] | null | null | null | InClass/3DMath/Assets/Scenes/CamreaLook.cs | Lea-0821/CodeLab1 | 5f98eee731e88dce21406a2d0afd90c9ac517581 | [
"Unlicense"
] | null | null | null | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class CamreaLook : MonoBehaviour
{
public float sphereRadius = 0.1f;
// The offset of grabed object
[SerializeField]private float zOffset =3f;
[SerializeField] private float xOffset = 0f;
[SerializeField] private float yOffset = 0f;
GameObject heldObj;
Vector3 objOriginalPos;
//Roate camera
public float rotateSpeed = 5f;
//Camera Rotate
public float mouseSense = 0.5f;
public float clampAngle = 80f;
float rotationX;
float rotationY;
// Start is called before the first frame update
void Start()
{
Vector3 startRot = transform.localRotation.eulerAngles;
rotationX = startRot.x;
rotationY = startRot.y;
}
// Update is called once per frame
void Update()
{
Vector3 eyePosition = transform.position;
Vector3 mousePos = Input.mousePosition;
// The mouse move on the nearClip interface
//We want the mouse's z direction toward the nearClipPlan
//Set the mouse z position, or its defalut value is 0
mousePos.z = Camera.main.nearClipPlane;
//get the mouse world position
Vector3 mouseWorldPos = Camera.main.ScreenToWorldPoint(mousePos);
Vector3 dir = mouseWorldPos - eyePosition;
//trun the vector length to 1, get the direction
dir.Normalize();
RaycastHit hitter = new RaycastHit();
Debug.DrawLine(eyePosition, dir*20f, Color.red);
//out means return a value
//SphereCast will chech the area with certain radius
if (Physics.SphereCast(eyePosition,sphereRadius,dir, out hitter))
{
//Debug.Log("hit something!");
//Debug.Log(hitter.collider.gameObject.name);
//if I held some obj
if(heldObj != null)
{
//if the ray hit the holded obj
if(heldObj.name == hitter.collider.gameObject.name)
{
Debug.Log("cursor on held object");
float xRotate = Input.GetAxis("Mouse X") * rotateSpeed;
float yRotate = Input.GetAxis("Mouse Y") * rotateSpeed;
heldObj.transform.Rotate(Vector3.down, xRotate);
heldObj.transform.Rotate(Vector3.right, yRotate);
}
}
if(Input.GetMouseButton(0) && hitter.collider.gameObject.tag == "Pickable" && heldObj == null)
{
Debug.Log("can pick");
PickUpObject(hitter.collider.gameObject);
}
}
if(Input.GetMouseButton(1) &&heldObj != null)
{
//Debug.Log("drop");
DropObject();
}
MoveCamera();
}
void PickUpObject(GameObject obj)
{
heldObj = obj;
objOriginalPos = obj.transform.position;
Debug.Log(objOriginalPos);
//for rotate the object when it was chosen
obj.transform.SetParent(gameObject.transform);
Vector3 newPos = new Vector3(transform.position.x+xOffset, transform.position.y+yOffset, transform.position.z+zOffset);
obj.transform.position = newPos;
}
void DropObject()
{
heldObj.transform.SetParent(null);
heldObj.transform.position = objOriginalPos;
objOriginalPos = Vector3.zero;
heldObj = null;
}
void MoveCamera()
{
float mouseX = Input.GetAxis("Mouse X");
float mouseY = Input.GetAxis("Mouse Y");
//why add Time.deltaTime?
//make the movement smooth
rotationX += mouseY * mouseSense * Time.deltaTime;
rotationY += mouseX * mouseSense * Time.deltaTime;
rotationX = Mathf.Clamp(rotationX,-clampAngle,clampAngle);
Quaternion newRotation = Quaternion.Euler(rotationX, rotationY,0.0f);
transform.rotation = newRotation;
}
}
| 30.113636 | 127 | 0.603774 |
e943e1789cd3265cd67261eb239671a0b40b866d | 726 | swift | Swift | DYZB/DYZB/Classes/Home/Model/DYCycleItem.swift | Resoulte/DYZB | e7e8c1e5df1f8bef39f2d30611137f5feca9056b | [
"MIT"
] | 1 | 2016-10-24T05:23:18.000Z | 2016-10-24T05:23:18.000Z | DYZB/DYZB/Classes/Home/Model/DYCycleItem.swift | Resoulte/DYZB | e7e8c1e5df1f8bef39f2d30611137f5feca9056b | [
"MIT"
] | null | null | null | DYZB/DYZB/Classes/Home/Model/DYCycleItem.swift | Resoulte/DYZB | e7e8c1e5df1f8bef39f2d30611137f5feca9056b | [
"MIT"
] | null | null | null | //
// DYCycleItem.swift
// DYZB
//
// Created by ma c on 16/10/30.
// Copyright © 2016年 shifei. All rights reserved.
//
import UIKit
class DYCycleItem: NSObject {
/// 标题
var title = ""
/// 展示的图片地址
var pic_url = ""
/// 主播信息对应的字典
var room : [String : Any]? {
didSet {
guard let room = room else {
return
}
anchor = DYAnchorItem(dict: room)
}
}
/// 主播信息对应的模型
var anchor : DYAnchorItem?
// MARK: - 自定义构造函数
init(dict: [String : Any]) {
super.init()
setValuesForKeys(dict)
}
override func setValue(_ value: Any?, forUndefinedKey key: String) {
}
}
| 17.707317 | 72 | 0.498623 |
46bb4ab6a81f86804bb7f29608c3356a8eab36ff | 4,534 | py | Python | dAAMs/utils.py | yuxiang-zhou/DenseDeformableModel | 0239d32f7694894c1dc564d4fd7131d0b7862ebc | [
"MIT"
] | null | null | null | dAAMs/utils.py | yuxiang-zhou/DenseDeformableModel | 0239d32f7694894c1dc564d4fd7131d0b7862ebc | [
"MIT"
] | null | null | null | dAAMs/utils.py | yuxiang-zhou/DenseDeformableModel | 0239d32f7694894c1dc564d4fd7131d0b7862ebc | [
"MIT"
] | null | null | null | import os
import glob
import numpy as np
import cv2
import menpo.io as mio
from menpo.image import Image, BooleanImage
from menpo.shape import TriMesh, PointCloud
from .lineerror import interpolate
from skimage import filters
# IO
def import_image(img_path):
img = cv2.imread(str(img_path))
original_image = Image.init_from_channels_at_back(img[:,:,-1::-1])
try:
original_image_lms = mio.import_landmark_file('{}/{}.ljson'.format(img_path.parent, img_path.stem)).lms.points.astype(np.float32)
original_image.landmarks['LJSON'] = PointCloud(original_image_lms)
except:
pass
return original_image
# binary based shape descriptor ----------------------------
def sample_points(target, range_x, range_y, edge=None, x=0, y=0):
ret_img = Image.init_blank((range_x, range_y))
if edge is None:
for pts in target:
ret_img.pixels[0, pts[0]-y, pts[1]-x] = 1
else:
for eg in edge:
for pts in interpolate(target[eg], 0.1):
try:
ret_img.pixels[0, int(pts[0]-y), int(pts[1]-x)] = 1
except:
print('Index out of Bound')
print(pts)
return ret_img
def binary_shape(pc, xr, yr, groups=None):
return sample_points(pc.points, xr, yr, groups)
def distance_transform_shape(pc, xr, yr, groups=None):
rsi = binary_shape(pc, xr, yr, groups)
ret = distance_transform_edt(rsi.rolled_channels().squeeze())
return Image.init_from_rolled_channels(ret.T)
def shape_context_shape(pc, xr, yr, groups=None, sampls=None, r_inner=0.125, r_outer=2, nbins_r=5, nbins_theta=12):
nbins = nbins_r*nbins_theta
def get_angle(p1,p2):
"""Return angle in radians"""
return math.atan2((p2[1] - p1[1]),(p2[0] - p1[0]))
def compute_one(pt, points, mean_dist):
distances = np.array([euclidean(pt,p) for p in points])
r_array_n = distances / mean_dist
r_bin_edges = np.logspace(np.log10(r_inner), np.log10(r_outer), nbins_r)
r_array_q = np.zeros(len(points))
for m in xrange(nbins_r):
r_array_q += (r_array_n < r_bin_edges[m])
fz = r_array_q > 0
def _get_angles(self, x):
result = zeros((len(x), len(x)))
for i in xrange(len(x)):
for j in xrange(len(x)):
result[i,j] = get_angle(x[i],x[j])
return result
theta_array = np.array([get_angle(pt,p)for p in points])
# 2Pi shifted
theta_array_2 = theta_array + 2*math.pi * (theta_array < 0)
theta_array_q = 1 + np.floor(theta_array_2 /(2 * math.pi / nbins_theta))
sn = np.zeros((nbins_r, nbins_theta))
for j in xrange(len(points)):
if (fz[j]):
sn[r_array_q[j] - 1, theta_array_q[j] - 1] += 1
return sn.reshape(nbins)
rsi = binary_shape(pc, xr, yr, groups)
pixels = rsi.pixels.squeeze()
pts = np.argwhere(pixels > 0)
if sampls:
pts = pts[np.random.randint(0,pts.shape[0],sampls)]
mean_dist = dist([0,0],[xr,yr]) / 2
sc = np.zeros((xr,yr,nbins))
for x in xrange(xr):
for y in xrange (yr):
sc[x,y,:] = compute_one(np.array([x,y]), pts, mean_dist)
return Image.init_from_rolled_channels(sc)
# ----------------------------------------------------------
# SVS based Shape Descriptor -------------------------------
def multi_channel_svs(svs_pts, h,w, groups,c=3):
msvs = Image.init_blank((h,w), n_channels=len(groups))
for ch,g in enumerate(groups):
if len(g):
msvs.pixels[ch, ... ] = svs_shape(svs_pts, h,w, groups=[g],c=c).pixels[0]
msvs.pixels /= np.max(msvs.pixels)
return msvs
def svs_shape(pc, xr, yr, groups=None, c=1):
store_image = Image.init_blank((xr,yr))
ni = binary_shape(pc, xr, yr, groups)
store_image.pixels[0,:,:] = filters.gaussian(np.squeeze(ni.pixels), c)
return store_image
def hog_svs_shape(pc, xr, yr, groups=None):
store_image = hog(svs_shape(pc, xr, yr, groups))
return store_image
def sift_svs_shape(pc, xr, yr, groups=None):
store_image = dsift(svs_shape(pc, xr, yr, groups))
return store_image
def sample_gaussian_shape(pc, xr, yr, groups=None):
ni = Image.init_blank((xr, yr))
for pts in pc.points:
ni.pixels[0, pts[0], pts[1]] = 1
store_image = Image.init_blank(ni.shape)
store_image.pixels[0,:,:] = filters.gaussian(np.squeeze(ni.pixels), 4)
return store_image
| 30.635135 | 137 | 0.604764 |
c64fb860bb26e7fe999c0bb309c8f68a96570e9b | 738 | ps1 | PowerShell | Plugins/20 Cluster/38 Cluster Configuration Issues.ps1 | scotland81/vCheck-vSphere | e4340f1681547929d90517deb9062aaa38bf59e9 | [
"MIT"
] | 586 | 2015-01-01T07:58:11.000Z | 2022-03-29T12:53:42.000Z | Plugins/20 Cluster/38 Cluster Configuration Issues.ps1 | scotland81/vCheck-vSphere | e4340f1681547929d90517deb9062aaa38bf59e9 | [
"MIT"
] | 376 | 2015-01-01T12:31:32.000Z | 2022-03-23T17:45:50.000Z | Plugins/20 Cluster/38 Cluster Configuration Issues.ps1 | scotland81/vCheck-vSphere | e4340f1681547929d90517deb9062aaa38bf59e9 | [
"MIT"
] | 308 | 2015-01-01T12:21:53.000Z | 2022-03-03T09:20:39.000Z | $Title = "Cluster Configuration Issues"
$Header = "Cluster(s) Config Issue(s): [count]"
$Comments = "The following alarms have been registered against clusters in vCenter"
$Display = "Table"
$Author = "Alan Renouf"
$PluginVersion = 1.1
$PluginCategory = "vSphere"
# Start of Settings
# End of Settings
$clualarms = @()
foreach ($clusview in $clusviews) {
if ($clusview.ConfigIssue) {
$CluConfigIssues = $clusview.ConfigIssue
Foreach ($CluConfigIssue in $CluConfigIssues) {
$Details = "" | Select-Object Name, Message
$Details.name = $clusview.name
$Details.Message = $CluConfigIssue.FullFormattedMessage
$clualarms += $Details
}
}
}
$clualarms | Sort-Object name | 29.52 | 83 | 0.663957 |
147b9605430915f5321f94be269377c817476159 | 1,128 | ts | TypeScript | src/app/app.component.ts | takemurakimio/qualifyed-web | ccd52727a5f0c59f482eb0712ebad17299e72514 | [
"Apache-2.0"
] | 1 | 2021-10-05T10:04:01.000Z | 2021-10-05T10:04:01.000Z | src/app/app.component.ts | takemurakimio/qualifyed-web | ccd52727a5f0c59f482eb0712ebad17299e72514 | [
"Apache-2.0"
] | null | null | null | src/app/app.component.ts | takemurakimio/qualifyed-web | ccd52727a5f0c59f482eb0712ebad17299e72514 | [
"Apache-2.0"
] | null | null | null |
import { HttpClient,HttpHeaders} from '@angular/common/http';
import * as $ from 'jquery';
import * as myGlobals from './global';
import { Router } from '@angular/router';
import { UserService } from './user.service';
import { Component, Input, ElementRef, ViewChild } from '@angular/core';
import {COMMA, ENTER} from '@angular/cdk/keycodes';
import {MatChipsModule} from '@angular/material/chips';
import {MatChipInputEvent, MatCardModule,
MatCheckboxModule, MatInputModule,
MatRadioModule,
} from '@angular/material';
//import { Component, OnInit } from '@angular/core';
import { FormArray, FormGroup, FormControl, Validators, FormBuilder } from '@angular/forms';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
api=myGlobals.api_url;
userapi=myGlobals.userapi_url;
showMenu: boolean = false;
constructor(private http:HttpClient,private rt:Router,private user:UserService){
}
ngOnInit(){
}
openDropdown(){
this.showMenu = true
}
closeDropdown(){
this.showMenu = false
}
}
| 21.692308 | 92 | 0.70656 |
e715f1a82e3dfbd9c6c28256bad6559cf007ca05 | 1,390 | php | PHP | src/Armd/MkCommentBundle/Acl/AclCommentManager.php | damedia/culture.ru | bfccba9f70f17d5cf201d25ed2858081afbb4865 | [
"MIT"
] | 1 | 2015-03-20T16:11:37.000Z | 2015-03-20T16:11:37.000Z | src/Armd/MkCommentBundle/Acl/AclCommentManager.php | damedia/culture.ru | bfccba9f70f17d5cf201d25ed2858081afbb4865 | [
"MIT"
] | null | null | null | src/Armd/MkCommentBundle/Acl/AclCommentManager.php | damedia/culture.ru | bfccba9f70f17d5cf201d25ed2858081afbb4865 | [
"MIT"
] | null | null | null | <?php
namespace Armd\MkCommentBundle\Acl;
use Symfony\Component\Security\Core\Exception\AccessDeniedException;
use FOS\UserBundle\Model\UserInterface;
use FOS\CommentBundle\Acl\AclCommentManager as BaseManager;
class AclCommentManager extends BaseManager
{
/**
* {@inheritDoc}
*/
public function findCommentsByUser(UserInterface $user)
{
$comments = $this->realManager->findCommentsByUser($user);
foreach ($comments as $comment) {
if (!$this->commentAcl->canView($comment)) {
throw new AccessDeniedException();
}
}
return $comments;
}
/**
* {@inheritDoc}
*/
public function findNoticesForUser(UserInterface $user)
{
$notices = $this->realManager->findNoticesForUser($user);
foreach ($notices as $notice) {
if (!$this->commentAcl->canView($notice->getComment())) {
throw new AccessDeniedException();
}
}
return $notices;
}
/**
* {@inheritDoc}
*/
public function getThreadCrumbsByComment($comment)
{
return $this->realManager->getThreadCrumbsByComment($comment);
}
/**
* {@inheritDoc}
*/
public function deleteUserNotices(UserInterface $user)
{
return $this->realManager->deleteUserNotices($user);
}
}
| 23.166667 | 70 | 0.600719 |
266f9bc04bf6827d22bceec2fb2aa16f8b3a4154 | 964 | lua | Lua | utils/stack.lua | waldr/learning_to_add | d6238a8a7130e800407e7a64577e9f42efac87d4 | [
"Apache-2.0"
] | 480 | 2015-01-06T21:00:37.000Z | 2022-03-02T00:50:02.000Z | utils/stack.lua | waldr/learning_to_add | d6238a8a7130e800407e7a64577e9f42efac87d4 | [
"Apache-2.0"
] | 10 | 2015-05-09T10:07:08.000Z | 2018-12-02T15:16:24.000Z | utils/stack.lua | waldr/learning_to_add | d6238a8a7130e800407e7a64577e9f42efac87d4 | [
"Apache-2.0"
] | 145 | 2015-01-02T13:41:07.000Z | 2022-01-05T18:28:23.000Z | --[[
Copyright 2014 Google Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
]]--
local Stack = torch.class('Stack')
function Stack:__init()
self.stack = {}
end
function Stack:push(val)
self.stack[#self.stack + 1] = val
end
function Stack:pop()
local ret = self.stack[#self.stack]
self.stack[#self.stack] = nil
return ret
end
function Stack:is_empty()
return #self.stack == 0
end
function Stack:clean()
self.stack = {}
end
| 24.1 | 74 | 0.727178 |
249633434c303744fc8455cd440f665b536b5727 | 1,745 | kt | Kotlin | app/src/main/java/com/android/itrip/viewModels/HomeViewModel.kt | UTN-FRBA-Mobile/iTrip | eedae3ec26b590677c6495d894b24ab5c6439461 | [
"MIT"
] | 3 | 2019-10-15T23:09:09.000Z | 2019-12-08T14:56:21.000Z | app/src/main/java/com/android/itrip/viewModels/HomeViewModel.kt | UTN-FRBA-Mobile/iTrip | eedae3ec26b590677c6495d894b24ab5c6439461 | [
"MIT"
] | null | null | null | app/src/main/java/com/android/itrip/viewModels/HomeViewModel.kt | UTN-FRBA-Mobile/iTrip | eedae3ec26b590677c6495d894b24ab5c6439461 | [
"MIT"
] | 2 | 2019-10-17T23:05:25.000Z | 2019-12-08T14:57:03.000Z | package com.android.itrip.viewModels
import android.app.Application
import androidx.lifecycle.AndroidViewModel
import androidx.lifecycle.LiveData
import androidx.lifecycle.MutableLiveData
import com.android.itrip.dependencyInjection.ContextModule
import com.android.itrip.dependencyInjection.DaggerApiComponent
import com.android.itrip.models.Viaje
import com.android.itrip.services.TravelService
import com.android.itrip.util.ApiError
import javax.inject.Inject
class HomeViewModel(
application: Application,
successCallback: (List<Viaje>) -> Unit,
failureCallback: (ApiError) -> Unit
) :
AndroidViewModel(application) {
private var _viajes = MutableLiveData<List<Viaje>>()
@Inject
lateinit var travelService: TravelService
val viajes: LiveData<List<Viaje>>
get() = _viajes
init {
DaggerApiComponent.builder().contextModule(ContextModule(getApplication())).build()
.injectHomeViewModel(this)
getTravels(successCallback, failureCallback)
}
private fun getTravels(
successCallback: (List<Viaje>) -> Unit,
failureCallback: (ApiError) -> Unit
) {
travelService.getTravels({
_viajes.value = it
successCallback(it)
}, { failureCallback(it) })
}
fun deleteTravel(
travel: Viaje,
deleteTravelSuccess: () -> Unit,
deleteTravelFailure: (ApiError) -> Unit
) {
travelService.deleteTrip(travel, {
_viajes.value = _viajes.value?.filter { it != travel }
deleteTravelSuccess()
}, { error ->
deleteTravelFailure(error)
})
}
fun hasTravels(): Boolean {
return viajes.value?.isNotEmpty() ?: false
}
} | 29.576271 | 91 | 0.676218 |
d1879b56b246aa6cc00f355a26e3c78a900f0da7 | 371 | cshtml | C# | Krompaco.CloudAccelerator/Views/Proxy/Index.cshtml | krompaco/cloud-accelerator | 1dfa88a8bf4bd55ff4df33c5523806dd5113f49c | [
"MIT"
] | 8 | 2015-04-22T08:02:21.000Z | 2021-02-11T20:59:27.000Z | Krompaco.CloudAccelerator/Views/Proxy/Index.cshtml | krompaco/cloud-accelerator | 1dfa88a8bf4bd55ff4df33c5523806dd5113f49c | [
"MIT"
] | 2 | 2015-04-29T12:29:25.000Z | 2019-04-11T20:37:31.000Z | Krompaco.CloudAccelerator/Views/Proxy/Index.cshtml | krompaco/cloud-accelerator | 1dfa88a8bf4bd55ff4df33c5523806dd5113f49c | [
"MIT"
] | 2 | 2015-04-29T11:00:40.000Z | 2016-05-03T04:39:51.000Z | @{
ViewBag.Title = Request.Url.Host;
}
<h2>Examples</h2>
<ul>
<li><a href="/k.nu/gui/i/krompaco.png">/k.nu/gui/i/krompaco.png</a> - Fetched and outputted with no compression and far future expiry</li>
<li><a href="/k.nu/files/samples/cd-catalog.xml">/k.nu/files/samples/cd-catalog.xml</a> - Compresses if compression is supported by client and caches</li>
</ul>
| 33.727273 | 155 | 0.692722 |
a11692d90f1e248abccc219fb74d0863d046a86f | 510 | tsx | TypeScript | src/lib/open-page.tsx | fliegwerk/search-popup-component | a691e4eacb239045bebb40f5ac9db82618da67f9 | [
"MIT"
] | 2 | 2021-01-12T10:35:48.000Z | 2021-01-24T13:58:00.000Z | src/lib/open-page.tsx | fliegwerk/search-popup-component | a691e4eacb239045bebb40f5ac9db82618da67f9 | [
"MIT"
] | 185 | 2021-01-23T01:47:49.000Z | 2022-03-29T23:16:50.000Z | src/lib/open-page.tsx | fliegwerk/search-popup-component | a691e4eacb239045bebb40f5ac9db82618da67f9 | [
"MIT"
] | null | null | null | function notOnSamePage(pathname: string) {
return (
(window.location.pathname.endsWith('/')
? window.location.pathname
: window.location.pathname + '/') !==
(pathname.endsWith('/') ? pathname : pathname + '/')
);
}
export function openPage(pathname: string, hash: string) {
if (notOnSamePage(pathname)) {
window.location.assign(pathname + '#' + hash);
} else {
// INCOMPATIBLE WITH scroll-behavior: smooth on Chrome!
// tested with Chrome 87.0.4280.141
window.location.hash = hash;
}
}
| 26.842105 | 58 | 0.67451 |
3886e07630e3970bb681b42ddc5336768448cb2e | 4,943 | php | PHP | app/Http/Controllers/ServicoController.php | urnauzao/melhor-saude-webservice | e71f5dd44d1267093a41bbc856dc93004dccc7f6 | [
"MIT"
] | null | null | null | app/Http/Controllers/ServicoController.php | urnauzao/melhor-saude-webservice | e71f5dd44d1267093a41bbc856dc93004dccc7f6 | [
"MIT"
] | null | null | null | app/Http/Controllers/ServicoController.php | urnauzao/melhor-saude-webservice | e71f5dd44d1267093a41bbc856dc93004dccc7f6 | [
"MIT"
] | null | null | null | <?php
namespace App\Http\Controllers;
use App\Models\Clinica;
use App\Models\Servico;
use Illuminate\Http\Request;
class ServicoController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
return "Servico";
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
return response()->json(['modelo-servico' => new Servico()]);
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
try {
$object = $request->all();
if(empty($object['nome']))
return response()->json(['erro' => "nome Inválido"]);
$servico = Servico::where(['nome' => $object['nome']])->first();
if(!$servico){
$servico = new Servico;
$servico->nome = $object['nome'];
$servico->lista_clinicas = [];
$servico->url = $object['url'] ?? null;
$servico->save();
}
if(count($object['lista_clinicas'])){
$arrayClinicaIds = is_array($servico->lista_clinicas) ? $servico->lista_clinicas : json_encode($servico->lista_clinicas);
$clinicaDesconhecida = [];
foreach($object['lista_clinicas'] as $key => $clinicaId){
$id = null;
$id = intval($clinicaId);
$clinica = Clinica::find($id)->first();
if($clinica && !in_array($id, $arrayClinicaIds))
$arrayClinicaIds[] = $id;
else
$clinicaDesconhecida[] = $id;
}
$servico->lista_clinicas = $arrayClinicaIds;
$servico->url = $object['url'] ?? null;
$servico->save();
return response()->json(['servico' => $servico, 'clinicas ignoradas' => $clinicaDesconhecida]);
}
// $servico = Servico::all();
return response()->json(['servico' => $servico]);
} catch (\Throwable $th) {
return response()->json(['erro' => $th]);
}
}
/**
* Display the specified resource.
*
* @param \App\Models\Servico $servico
* @return \Illuminate\Http\Response
*/
public function show()
{
try {
$servicos = Servico::all();
$resultado = [];
foreach($servicos as $value){
$resultado[] = [
"id" => $value->id,
"nome" => $value->nome,
"total" => count($value->lista_clinicas),
"clinicas" => $value->lista_clinicas,
"url" => $value->url,
];
}
return response()->json(['servicos' => $resultado]);
} catch (\Throwable $th) {
return response()->json(['erro' => $th]);
}
}
/**
* Display the specified resource.
*
* @param \App\Models\Servico $servico
* @return \Illuminate\Http\Response
*/
public function showWithClinicas($id = null)
{
try {
$servicos = (isset($id)) ? Servico::where(['id' => $id])->get() : Servico::all();
$resultado = [];
foreach($servicos as $value){
$clinicas = [];
$clinicas = Clinica::whereIn('id', $value->lista_clinicas)->get();
$resultado[] = [
"nome" => $value->nome,
"total" => count($value->lista_clinicas),
"url" => $value->url,
"clinicas" => $clinicas
];
}
return response()->json(['servicos' => $resultado]);
} catch (\Throwable $th) {
return response()->json(['erro' => $th]);
}
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Models\Servico $servico
* @return \Illuminate\Http\Response
*/
public function edit(Servico $servico)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param \App\Models\Servico $servico
* @return \Illuminate\Http\Response
*/
public function update(Request $request, Servico $servico)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param \App\Models\Servico $servico
* @return \Illuminate\Http\Response
*/
public function destroy(Servico $servico)
{
//
}
}
| 29.248521 | 137 | 0.480477 |
14ca16934983c97c3321c42f266b41f3e2ebcfd4 | 1,786 | ts | TypeScript | clausewitz-eu4-ui/src/app/services/province.service.ts | primislas/oikoumene | 15130217b2e87bf183310f0c1d40e394029ee135 | [
"MIT"
] | 4 | 2018-10-06T04:40:45.000Z | 2022-01-03T13:34:59.000Z | clausewitz-eu4-ui/src/app/services/province.service.ts | primislas/oikoumene | 15130217b2e87bf183310f0c1d40e394029ee135 | [
"MIT"
] | 134 | 2018-01-29T08:33:17.000Z | 2022-03-02T04:00:32.000Z | clausewitz-eu4-ui/src/app/services/province.service.ts | primislas/oikoumene | 15130217b2e87bf183310f0c1d40e394029ee135 | [
"MIT"
] | 1 | 2021-11-25T17:55:37.000Z | 2021-11-25T17:55:37.000Z | import {Injectable} from '@angular/core';
import {HttpClient} from '@angular/common/http';
import {RestConstantsService} from './rest-constants.service';
import {Observable} from 'rxjs';
import {SearchResult} from '../model/search/search.result';
import {ProvinceListEntity} from '../model/province/province.list.entity';
import {SearchFilter} from '../model/search/filters/search.filter';
import {NgbModal} from '@ng-bootstrap/ng-bootstrap';
import {TextSearchFilter} from '../model/search/filters/text.search.filter';
@Injectable({
providedIn: 'root'
})
export class ProvinceService {
searchFilters: SearchFilter<any>[] = [
new TextSearchFilter('name', 'Name'),
new TextSearchFilter('owner', 'Owner'),
new TextSearchFilter('controller', 'Controller'),
new TextSearchFilter('core', 'Core'),
new TextSearchFilter('religion', 'Religion'),
new TextSearchFilter('religion_group', 'Religion Group'),
new TextSearchFilter('culture', 'Culture'),
new TextSearchFilter('culture_group', 'Culture Group'),
new TextSearchFilter('area', 'Area'),
new TextSearchFilter('region', 'Region'),
new TextSearchFilter('superregion', 'Super-region'),
new TextSearchFilter('continent', 'Continent'),
new TextSearchFilter('trade_good', 'Trade Good'),
new TextSearchFilter('trade_node', 'Trade Node'),
];
constructor(
private http: HttpClient,
private constants: RestConstantsService,
private modalService: NgbModal
) {
}
searchProvinces(filters: SearchFilter<any>[] = []): Observable<SearchResult<ProvinceListEntity>> {
const params = SearchFilter.toQueryParams(filters);
return this.http
.get<SearchResult<ProvinceListEntity>>(
`${this.constants.provinceSearchEndpoint}?${params}`
);
}
}
| 33.698113 | 100 | 0.711646 |
e713c93adc9a875cf71fe432f40b59b83946cc9a | 2,091 | php | PHP | resources/views/login.blade.php | Cloumus30/class-api | cfae38663e6e0b6cf796ec3d8057d32d28cf56f3 | [
"MIT"
] | null | null | null | resources/views/login.blade.php | Cloumus30/class-api | cfae38663e6e0b6cf796ec3d8057d32d28cf56f3 | [
"MIT"
] | null | null | null | resources/views/login.blade.php | Cloumus30/class-api | cfae38663e6e0b6cf796ec3d8057d32d28cf56f3 | [
"MIT"
] | null | null | null | @extends('layouts.main')
@section('head')
<link rel="stylesheet" href="{{url('style2.css')}}">
@endsection
@section('title')
Login Page
@endsection
@section('body')
<div class="container">
<div class="d-flex flex-column justify-content-center align-item-center" style="height:50em;">
<div class="justify-content-center align-self-center">
<div class="">
<div class="text-center">
<img src="{{url('img/github.png')}}" alt="Login" class="login-image text-center">
</div>
<h2 class="text-center my-4">Login</h2>
<form action="{{url('/login/'.$guard)}}" method="post">
@csrf
<div class="mb-2">
<label for="username" class="form-label">username</label>
<input type="text" class="form-control" id="username" name="username" aria-describedby="emailHelp">
</div>
<div class="mb-2">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" id="password" name="password">
</div>
<div class="mb-2">
<input type="checkbox" class="form-check-input" id="remember" name="remember">
<label for="remember" class="form-check-label">remember</label>
</div>
<div class="mb-2 d-grid gap-2">
<button type="submit" class="btn btn-success">Login</button>
<div class="form-text">don't have account? <a href="register.html">Register</a></div>
</div>
<div class="text-center mt-4">
<div class="form-text fs-7">
@cielhub 2021
</div>
</div>
</form>
</div>
</div>
</div>
@endsection
| 41 | 123 | 0.46198 |
a44aa3eda028285f14e1de6cb6291b638a415591 | 3,220 | php | PHP | application/models/M_room.php | kokowijanarko/asrama | cfe97e0caf11278f7beecfef19360010777306fa | [
"MIT",
"Unlicense"
] | null | null | null | application/models/M_room.php | kokowijanarko/asrama | cfe97e0caf11278f7beecfef19360010777306fa | [
"MIT",
"Unlicense"
] | null | null | null | application/models/M_room.php | kokowijanarko/asrama | cfe97e0caf11278f7beecfef19360010777306fa | [
"MIT",
"Unlicense"
] | null | null | null | <?php
if(!defined('BASEPATH')) exit('No direct script access allowed');
class M_room extends CI_Model
{
public function __construct()
{
parent::__construct();
$this->load->database();
$this->load->library('session');
}
function get(){
$query = $this->db->query("
SELECT
a.`room_id`,
a.`room_code`,
a.`room_building`,
IF(a.`room_building`=1, 'TB SATU', 'TB DUA') AS room_building_text,
IF(a.`room_availibility` = '0', 'Kosong', 'Dihuni') AS room_availibility_text,
a.`room_availibility`,
a.`room_desc`,
b.type_id,
b.type_name,
c.floor_id,
c.floor_name,
c.floor_price,
c.floor_price_int
FROM room a
LEFT JOIN room_type b ON b.type_id = a.`room_type_id`
LEFT JOIN room_floor c ON c.floor_id = a.`room_floor_id`
ORDER BY a.`room_code`
");
$result = $query->result();
return $result;
}
function getDetail($id){
$query = $this->db->query("
SELECT
a.`room_id`,
a.`room_code`,
a.`room_building`,
IF(a.`room_building`=1, 'TB SATU', 'TB DUA') AS room_building_text,
IF(a.`room_availibility` = '0', 'Kosong', 'Dihuni') AS room_availibility_text,
a.`room_availibility`,
a.`room_desc`,
b.type_id,
b.type_name,
c.floor_id,
c.floor_name,
c.floor_price,
c.floor_price_int
FROM room a
LEFT JOIN room_type b ON b.type_id = a.`room_type_id`
LEFT JOIN room_floor c ON c.floor_id = a.`room_floor_id`
WHERE
a.`room_id` = $id
");
$result = $query->row();
return $result;
}
public function insert($data){
$execute = $this->db->insert('room', $data);
return $execute;
}
public function update($id, $data){
$exec = $this->db->where('room_id', $id);
$exec = $this->db->update('room', $data);
return $exec;
}
public function remove($id){
$execute = $this->db->delete('room', array('id' => $id));
return $execute;
}
#############################################################
function getType(){
$query = $this->db->query("SELECT * FROM room_type");
$result = $query->result();
return $result;
}
function getFloor(){
$query = $this->db->query("SELECT * FROM room_floor");
$result = $query->result();
return $result;
}
function getLastCode($floor, $building){
$query = $this->db->query("
SELECT
a.`room_code`
FROM room a
LEFT JOIN room_type b ON b.type_id = a.`room_type`
LEFT JOIN room_floor c ON c.floor_id = a.`room_floor_id`
WHERE
a.`room_building` = $building
AND c.`floor_id` = $floor
ORDER BY a.`room_building` DESC
LIMIT 0,1
");
$result = $query->row();
return $result;
}
function getPhoto($id){
$query = $this->db->query("SELECT * FROM room_photo WHERE photo_room_id = $id");
$result = $query->result();
return $result;
}
public function insertPhoto($data){
$execute = $this->db->insert('room_photo', $data);
return $execute;
}
public function removePhoto($id){
$execute = $this->db->delete('room_photo', array('photo_room_id' => $id));
return $execute;
}
} | 23.333333 | 85 | 0.579814 |
572565c831c72a4f261856acf21404fb7abeecca | 37 | js | JavaScript | node_modules/dolober/src/js/dolober.js | Taiqo/lagrume-builder | 928b51152e6f9b95842a206de940463382fa13aa | [
"MIT"
] | null | null | null | node_modules/dolober/src/js/dolober.js | Taiqo/lagrume-builder | 928b51152e6f9b95842a206de940463382fa13aa | [
"MIT"
] | 7 | 2020-07-21T03:41:58.000Z | 2022-02-13T16:00:23.000Z | node_modules/dolober/src/js/dolober.js | Taiqo/lagrume-builder | 928b51152e6f9b95842a206de940463382fa13aa | [
"MIT"
] | null | null | null | // TODO: add all scripts in one file
| 18.5 | 36 | 0.702703 |
05d8dfd6c354978c05856be514a4809f0e264445 | 1,989 | py | Python | sdca4crf/parameters/sparse_weights.py | remilepriol/sdca4crf | 13e7fbd741f6f4530de1983ca10e1760aa702207 | [
"MIT"
] | 3 | 2018-06-25T23:16:18.000Z | 2020-11-11T00:45:49.000Z | sdca4crf/parameters/sparse_weights.py | remilepriol/sdca4crf | 13e7fbd741f6f4530de1983ca10e1760aa702207 | [
"MIT"
] | null | null | null | sdca4crf/parameters/sparse_weights.py | remilepriol/sdca4crf | 13e7fbd741f6f4530de1983ca10e1760aa702207 | [
"MIT"
] | null | null | null | import numpy as np
from sdca4crf.parameters.weights import WeightsWithoutEmission
class SparsePrimalDirection(WeightsWithoutEmission):
def __init__(self, sparse_emission=None, bias=None, transition=None,
nb_labels=0):
super().__init__(bias, transition, nb_labels)
self.sparse_emission = sparse_emission
def __mul__(self, scalar):
tmp = super().__mul__(scalar)
return SparsePrimalDirection(self.sparse_emission * scalar, tmp.bias, tmp.transition)
@classmethod
def from_marginals(cls, points_sequence, marginals):
if marginals.islog:
marginals = marginals.exp()
sparse_emission = SparseEmission.from_marginals(points_sequence, marginals)
tmp = super(SparsePrimalDirection, cls).from_marginals(points_sequence, marginals)
return cls(sparse_emission, tmp.bias, tmp.transition)
def squared_norm(self):
ans = super().squared_norm()
return ans + self.sparse_emission.squared_norm()
class SparseEmission:
def __init__(self, active_set, values):
self.active_set = active_set
self.values = values
@classmethod
def from_marginals(cls, points_sequence, marginals):
alphalen = marginals.nb_labels
active_set, inverse = np.unique(points_sequence, return_inverse=True)
centroid = np.zeros([active_set.shape[0], alphalen])
inverse = inverse.reshape(points_sequence.shape)
for inv, marg in zip(inverse, marginals.unary):
centroid[inv] += marg
# Finally remove the absent attributes
if active_set[0] == -1:
active_set = active_set[1:]
centroid = centroid[1:]
else:
pass
centroid = np.transpose(centroid)
return cls(active_set, centroid)
def __mul__(self, scalar):
return SparseEmission(self.active_set, scalar * self.values)
def squared_norm(self):
return np.sum(self.values ** 2)
| 32.080645 | 93 | 0.6727 |
5d5c8d61bbc841b1940469f71093a39bc9c1dfc1 | 3,994 | cc | C++ | tce/src/base/bem/DestinationField.cc | kanishkan/tce | 430e764b4d43f46bd1dc754aeb1d5632fc742110 | [
"MIT"
] | 74 | 2015-10-22T15:34:10.000Z | 2022-03-25T07:57:23.000Z | tce/src/base/bem/DestinationField.cc | kanishkan/tce | 430e764b4d43f46bd1dc754aeb1d5632fc742110 | [
"MIT"
] | 79 | 2015-11-19T09:23:08.000Z | 2022-01-12T14:15:16.000Z | tce/src/base/bem/DestinationField.cc | kanishkan/tce | 430e764b4d43f46bd1dc754aeb1d5632fc742110 | [
"MIT"
] | 38 | 2015-11-17T10:12:23.000Z | 2022-03-25T07:57:24.000Z | /*
Copyright (c) 2002-2009 Tampere University.
This file is part of TTA-Based Codesign Environment (TCE).
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*/
/**
* @file DestinationField.cc
*
* Implementation of DestinationField class.
*
* @author Lasse Laasonen 2005 (lasse.laasonen-no.spam-tut.fi)
* @note rating: red
*/
#include <string>
#include "DestinationField.hh"
#include "MoveSlot.hh"
#include "Application.hh"
#include "ObjectState.hh"
using std::string;
const std::string DestinationField::OSNAME_DESTINATION_FIELD = "dest_field";
/**
* The constructor.
*
* Registers the destination field to the given move slot automatically.
*
* @param socketIDPos Position of the socket ID within the destination field.
* @param parent The parent move slot.
* @exception ObjectAlreadyExists If the parent move slot already has a
* destination field.
* @exception IllegalParameters If the given socket ID position is not the same
* with other destination fields.
*/
DestinationField::DestinationField(
BinaryEncoding::Position socketIDPos, MoveSlot& parent)
: SlotField(socketIDPos, parent) {
BinaryEncoding* bem = parent.parent();
for (int i = 0; i < bem->moveSlotCount(); i++) {
MoveSlot& slot = bem->moveSlot(i);
if (slot.hasDestinationField() &&
slot.destinationField().componentIDPosition() != socketIDPos) {
const string procName = "SourceField::SourceField";
throw IllegalParameters(__FILE__, __LINE__, procName);
} else {
break;
}
}
setParent(NULL);
parent.setDestinationField(*this);
setParent(&parent);
}
/**
* The constructor.
*
* Loads the state of the object from the given ObjectState tree.
*
* @param state The ObjectState tree.
* @param parent The parent move slot.
* @exception ObjectStateLoadingException If an error occurs while loading the
* state.
* @exception ObjectAlreadyExists If the parent move slot already has a
* destination field.
*/
DestinationField::DestinationField(const ObjectState* state, MoveSlot& parent)
: SlotField(state, parent) {
if (state->name() != OSNAME_DESTINATION_FIELD) {
const string procName = "DestinationField::DestinationField";
throw ObjectStateLoadingException(__FILE__, __LINE__, procName);
}
setParent(NULL);
parent.setDestinationField(*this);
setParent(&parent);
}
/**
* The destructor.
*/
DestinationField::~DestinationField() {
MoveSlot* parent = this->parent();
assert(parent != NULL);
setParent(NULL);
parent->unsetDestinationField();
}
/**
* Saves the state of the object to an ObjectState tree.
*
* @return The newly created ObjectState tree.
*/
ObjectState*
DestinationField::saveState() const {
ObjectState* state = SlotField::saveState();
state->setName(OSNAME_DESTINATION_FIELD);
return state;
}
| 32.737705 | 79 | 0.705058 |
f432c9c683728cf5896104b2fce877fe40247b8a | 2,793 | cshtml | C# | src/Web/CookingHub.Web/Views/Shared/_FooterPartial.cshtml | dimitarpashov99/CookingHub | 03781d1cedafc60c380c877ddc647397ef8ea173 | [
"MIT"
] | 4 | 2020-12-20T15:41:22.000Z | 2022-03-23T04:25:22.000Z | src/Web/CookingHub.Web/Views/Shared/_FooterPartial.cshtml | IvanMihovpz/CookingHub | df50076757066695069914e18e421cdcd8815c8f | [
"MIT"
] | 16 | 2020-11-03T15:52:58.000Z | 2021-01-28T13:07:54.000Z | src/Web/CookingHub.Web/Views/Shared/_FooterPartial.cshtml | IvanMihovpz/CookingHub | df50076757066695069914e18e421cdcd8815c8f | [
"MIT"
] | 5 | 2020-10-21T16:49:00.000Z | 2021-01-25T13:55:37.000Z | @using CookingHub.Common
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6">
<h3>About Us</h3>
<p>Cooking Hub's goal is to solve all your desires for fresh food ideas.The website's catalog is full of community gathered recipes and articles for you to read. If you have any questions contact us or join our community.</p>
<ul class="list-inline f-social">
<li class="list-inline-item"><a href="#"><i class="fab fa-facebook-f" aria-hidden="true"></i></a></li>
<li class="list-inline-item"><a href="#"><i class="fab fa-twitter" aria-hidden="true"></i></a></li>
<li class="list-inline-item"><a href="#"><i class="fab fa-linkedin-in" aria-hidden="true"></i></a></li>
<li class="list-inline-item"><a href="#"><i class="fab fa-instagram" aria-hidden="true"></i></a></li>
</ul>
</div>
<div class="col-lg-6 col-md-6">
<h3>Subscribe</h3>
<h4 style="color:white;">If you would like to feel up to date with the most rated recipes up-to-date,feel free to subscribe.</h4>
<div class="sendgrid-subscription-widget widget-1707" data-emailerror="Please enter a valid email address" data-checkboxerror="Please tick the box to accept our conditions">
<form class="sg-widget" data-token="92708e8069ff04f83bd107b457e68776" onsubmit="return false;">
<div class="sg-response"></div>
<input class="sg_email" type="email" name="sg_email" placeholder="[email protected]" required="required">
<input type="submit" class="sg-submit-btn" id="widget-1707" value="Subscribe">
<div class="sg-consent-text">
<label>
<input type="checkbox" class="sg_consent_checkbox" name="sg_consent_checkbox"> I understand and consent to the following
</label>
<a id="privacy-footer" asp-area="" asp-controller="Home" asp-action="Privacy">Privacy Notice</a>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="copyright">
<div class="container">
<div class="row">
<div class="col-lg-12">
<p class="company-name">
All Rights Reserved. © @DateTime.Now.Year
<a asp-area="" asp-controller="Home" asp-action="Index">@GlobalConstants.SystemName</a> -
<a asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
</p>
</div>
</div>
</div>
</div>
<script type="text/javascript" defer src="//app.sgwidget.com/js/sg-widget-v2.js"></script> | 58.1875 | 237 | 0.562836 |
98dd3fd4dbd773e2b12d3be12b8b1d8063320f90 | 335 | kt | Kotlin | spring/webflux-kotlin/src/main/kotlin/de/welcz/hello/Application.kt | enolive/learning | 075b714bd7bea6de58a8da16cf142fc6c8535e11 | [
"MIT"
] | 8 | 2016-10-18T09:30:12.000Z | 2021-12-08T13:28:28.000Z | spring/webflux-kotlin/src/main/kotlin/de/welcz/hello/Application.kt | enolive/learning | 075b714bd7bea6de58a8da16cf142fc6c8535e11 | [
"MIT"
] | 29 | 2019-12-28T06:09:07.000Z | 2022-03-02T03:44:19.000Z | spring/webflux-kotlin/src/main/kotlin/de/welcz/hello/Application.kt | enolive/learning | 075b714bd7bea6de58a8da16cf142fc6c8535e11 | [
"MIT"
] | 4 | 2018-07-23T22:20:58.000Z | 2020-09-19T09:46:41.000Z | package de.welcz.hello
import org.springframework.boot.autoconfigure.SpringBootApplication
import org.springframework.boot.runApplication
@SpringBootApplication
open class Application
fun main(args: Array<String>) {
runApplication<Application>(*args)
val client = GreetingWebClient()
println(client.retrieveResult())
}
| 22.333333 | 67 | 0.8 |
5d802c3e90fa60aa4ed35c964b88a2074c7250a5 | 895 | hpp | C++ | addons/goko_BI/cfgFunctions.hpp | Nilia119/ballistic-impact | c9958190cef6cf6fea77e64e0d8319f59031e3ef | [
"MIT"
] | 3 | 2018-04-05T14:33:55.000Z | 2019-07-09T21:49:50.000Z | addons/goko_BI/cfgFunctions.hpp | Nilia119/ballistic-impact | c9958190cef6cf6fea77e64e0d8319f59031e3ef | [
"MIT"
] | null | null | null | addons/goko_BI/cfgFunctions.hpp | Nilia119/ballistic-impact | c9958190cef6cf6fea77e64e0d8319f59031e3ef | [
"MIT"
] | 3 | 2018-10-08T15:57:30.000Z | 2019-06-08T07:29:01.000Z | /*
function classes for add-on goko ballistic impact mod
Author: Gokmen
website: github.com/the0utsider
*/
class CfgFunctions
{
class goko
{
class ballisticImpact
{
class BallisticImpactMain
{
file = "goko_BI\functions\fn_gokoBI_main.sqf";
preInit = 1
};
class particlefxBlood
{
file = "goko_BI\functions\fn_particleEffectsBlood.sqf";
preInit = 1
};
class particlefxHeadgear
{
file = "goko_BI\functions\fn_particleEffectsHeadgear.sqf";
preInit = 1
};
class particlefxHMD
{
file = "goko_BI\functions\fn_particleEffectsHMD.sqf";
preInit = 1
};
class particlefxOther
{
file = "goko_BI\functions\fn_particleEffectsOther.sqf";
preInit = 1
};
class gokobi_optionalcba
{
file = "goko_BI\functions\gokobi_options.sqf";
preInit = 1
};
};
};
}; | 19.888889 | 63 | 0.631285 |
a45ea16664465549d37e21b2bf637c9e0221fd44 | 8,411 | php | PHP | resources/views/auth/passwords/reset.blade.php | KevinCeferino/intra | 6160f3f460fa7943445491a74ca8ef2111d4cb44 | [
"MIT"
] | null | null | null | resources/views/auth/passwords/reset.blade.php | KevinCeferino/intra | 6160f3f460fa7943445491a74ca8ef2111d4cb44 | [
"MIT"
] | 2 | 2021-05-12T23:27:24.000Z | 2021-05-12T23:28:11.000Z | resources/views/auth/passwords/reset.blade.php | KevinCeferino/intra | 6160f3f460fa7943445491a74ca8ef2111d4cb44 | [
"MIT"
] | null | null | null | <!DOCTYPE html>
<html>
<?php
$page = Illuminate\Support\Facades\DB::table('settings-page')->select('*')->first();
?>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Cambiar contraseña</title>
<!-- Favicon -->
<link rel="icon" href="{{ asset($page->logoisotipo) }}" type="image/png">
<!-- Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,600,700">
<!-- Icons -->
<link rel="stylesheet" href="{{ asset('plantilla/vendor/nucleo/css/nucleo.css') }}" type="text/css">
<link rel="stylesheet" href="{{ asset('plantilla/vendor/@fortawesome/fontawesome-free/css/all.min.css') }}"
type="text/css">
<!-- Argon CSS -->
<link rel="stylesheet" href="{{ asset('plantilla/css/argon.css?v=1.1.0') }}" type="text/css">
</head>
<body class="bg-default"
style="overflow-y: hidden; background: linear-gradient(87deg, #002a60 0%,rgb(31 34 37) 100%) !important;">
<!-- Navbar -->
<div id="particles-js"> </div>
<!-- Main content -->
<div class="main-content">
<!-- Header -->
<div class="header py-7 py-lg-8 pt-lg-9">
<div class="container">
<div class="header-body text-center mb-7">
<div class="row justify-content-center">
<div class="col-xl-5 col-lg-6 col-md-8 px-5" style="margin-top: -9%;">
<h1 class="text-white">Restablecer contraseña</h1>
</div>
</div>
</div>
</div>
</div>
<!-- Page content -->
<div class="container mt--8 pb-5">
<div class="row justify-content-center">
<div class="col-lg-5 col-md-7">
<div class="card bg-secondary border-0 mb-0" style="top: -147px;">
<div class="card-header bg-transparent pb-5"
style="padding-bottom: 1rem !important; margin-left: auto; margin-right:auto; ">
<img src="{{ asset($page->logologin) }}" style="height: 70px;">
</div>
<div class="card-body px-lg-5 py-lg-5">
@if (session('status'))
<div class="alert alert-success" role="alert">
{{ session('status') }}
</div>
@endif
@if (session('Pageedit'))
<div class="alert alert-warning" role="alert">
{{(session('Pageedit'))}}
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
@endif
<form method="POST" action="{{ route('password.update') }}">
@csrf
<input type="hidden" name="token" value="{{ $token }}">
<div class="form-group mb-3">
<label>Correo</label>
<div class="input-group input-group-merge input-group-alternative">
<div class="input-group-prepend">
<span class="input-group-text"><i class="ni ni-email-83"></i></span>
</div>
<input id="email" type="email"
class="form-control @error('email') is-invalid @enderror" name="email"
placeholder="[email protected]" value="{{ $email ?? old('email') }}"
required autocomplete="email" autofocus>
@error('email')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div><br>
<div class="form-group mb-3">
<label>Contraseña</label>
<div class="input-group input-group-merge input-group-alternative">
<div class="input-group-prepend">
<span class="input-group-text"><i class="ni ni-lock-circle-open"></i></span>
</div>
<input id="password" type="password" placeholder="Contraseña"
class="form-control @error('password') is-invalid @enderror"
name="password" required autocomplete="new-password">
@error('password')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div><br>
<div class="form-group mb-3">
<label>Confirmar contraseña</label>
<div class="input-group input-group-merge input-group-alternative">
<div class="input-group-prepend">
<span class="input-group-text"><i class="ni ni-lock-circle-open"></i></span>
</div>
<input id="password-confirm" type="password" class="form-control" placeholder="Confirmar contraseña"
name="password_confirmation" required autocomplete="new-password">
</div>
</div>
<div class="text-center" style="margin-right: 38%;">
<button type="submit" class="btn btn-primary my-4">Recuperar</button>
</div>
<div class="text-center" style="margin-top: -26%;margin-left: 40%;">
<a href="{{ url('/') }}" class="btn btn-danger mt-4">Cancelar</a>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="{{ asset('plantilla/vendor/jquery/dist/jquery.min.js') }}"></script>
<script src="{{ asset('plantilla/vendor/bootstrap/dist/js/bootstrap.bundle.min.js') }}"></script>
<script src="{{ asset('plantilla/vendor/js-cookie/js.cookie.js') }}"></script>
<script src="{{ asset('plantilla/vendor/jquery.scrollbar/jquery.scrollbar.min.js') }}"></script>
<script src="{{ asset('plantilla/vendor/jquery-scroll-lock/dist/jquery-scrollLock.min.js') }}"></script>
<!-- Argon JS -->
<script src="{{ asset('plantilla/js/argon.js?v=1.1.0') }}"></script>
<!-- Demo JS - remove this in your project -->
<script src="{{ asset('plantilla/js/demo.min.js') }}"></script>
<!-- Particles JS -->
<script src="{{ asset('plantilla/particles/particles.min.js') }}"></script>
<script src="{{ asset('plantilla/particles/app.js') }}"></script>
</body>
<style>
#particles-js {
height: 100vh;
width: 100%;
position: fixed;
z-index: -1;
}
</style>
</html>
| 56.073333 | 148 | 0.410653 |
2cb160031efbfbd4c732cd7067c12adbb78cef10 | 105 | py | Python | enthought/appscripting/lazy_namespace.py | enthought/etsproxy | 4aafd628611ebf7fe8311c9d1a0abcf7f7bb5347 | [
"BSD-3-Clause"
] | 3 | 2016-12-09T06:05:18.000Z | 2018-03-01T13:00:29.000Z | enthought/appscripting/lazy_namespace.py | enthought/etsproxy | 4aafd628611ebf7fe8311c9d1a0abcf7f7bb5347 | [
"BSD-3-Clause"
] | 1 | 2020-12-02T00:51:32.000Z | 2020-12-02T08:48:55.000Z | enthought/appscripting/lazy_namespace.py | enthought/etsproxy | 4aafd628611ebf7fe8311c9d1a0abcf7f7bb5347 | [
"BSD-3-Clause"
] | null | null | null | # proxy module
from __future__ import absolute_import
from apptools.appscripting.lazy_namespace import *
| 26.25 | 50 | 0.857143 |
2c35d8bee675fa1f9a42cd2585db579b4a98e190 | 133 | py | Python | moonleap/outputpath/resources.py | mnieber/gen | 65f8aa4fb671c4f90d5cbcb1a0e10290647a31d9 | [
"MIT"
] | null | null | null | moonleap/outputpath/resources.py | mnieber/gen | 65f8aa4fb671c4f90d5cbcb1a0e10290647a31d9 | [
"MIT"
] | null | null | null | moonleap/outputpath/resources.py | mnieber/gen | 65f8aa4fb671c4f90d5cbcb1a0e10290647a31d9 | [
"MIT"
] | null | null | null | from dataclasses import dataclass
from moonleap.resource import Resource
@dataclass
class OutputPath(Resource):
location: str
| 14.777778 | 38 | 0.804511 |
fd8385f8a4e74a93d73e7abc14be30e335d228c8 | 165,769 | css | CSS | build/public/css/main.css | petronbot/petragulicher.com | 6a9f3aff89c6efed0f8fb65247097626d5ea6d32 | [
"MIT"
] | null | null | null | build/public/css/main.css | petronbot/petragulicher.com | 6a9f3aff89c6efed0f8fb65247097626d5ea6d32 | [
"MIT"
] | null | null | null | build/public/css/main.css | petronbot/petragulicher.com | 6a9f3aff89c6efed0f8fb65247097626d5ea6d32 | [
"MIT"
] | null | null | null | @charset "UTF-8";
/**
* This file compiles down into the single css file used by the site. Here we just include compass and the
* HTML5Boilerplate css template. The rest of our css is included at the appropriate place
*/
/*! normalize.css v1.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
HTML5 display definitions
========================================================================== */
/**
* Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
display: block; }
/**
* Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
*/
audio,
canvas,
video {
display: inline-block;
*display: inline;
*zoom: 1; }
/**
* Prevent modern browsers from displaying `audio` without controls.
* Remove excess height in iOS 5 devices.
*/
audio:not([controls]) {
display: none;
height: 0; }
/**
* Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
* Known issue: no IE 6 support.
*/
[hidden] {
display: none; }
/* ==========================================================================
Base
========================================================================== */
/**
* 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
* `em` units.
* 2. Prevent iOS text size adjust after orientation change, without disabling
* user zoom.
*/
html {
font-size: 100%;
/* 1 */
-ms-text-size-adjust: 100%;
/* 2 */
-webkit-text-size-adjust: 100%;
/* 2 */ }
/**
* Address `font-family` inconsistency between `textarea` and other form
* elements.
*/
html,
button,
input,
select,
textarea {
font-family: sans-serif; }
/**
* Address margins handled incorrectly in IE 6/7.
*/
body {
margin: 0; }
/* ==========================================================================
Links
========================================================================== */
/**
* Address `outline` inconsistency between Chrome and other browsers.
*/
a:focus {
outline: thin dotted; }
/**
* Improve readability when focused and also mouse hovered in all browsers.
*/
a:active,
a:hover {
outline: 0; }
/* ==========================================================================
Typography
========================================================================== */
/**
* Address font sizes and margins set differently in IE 6/7.
* Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
* and Chrome.
*/
h1 {
font-size: 2em;
margin: 0.67em 0; }
h2 {
font-size: 1.5em;
margin: 0.83em 0; }
h3 {
font-size: 1.17em;
margin: 1em 0; }
h4 {
font-size: 1em;
margin: 1.33em 0; }
h5 {
font-size: 0.83em;
margin: 1.67em 0; }
h6 {
font-size: 0.67em;
margin: 2.33em 0; }
/**
* Address styling not present in IE 7/8/9, Safari 5, and Chrome.
*/
abbr[title] {
border-bottom: 1px dotted; }
/**
* Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
*/
b,
strong {
font-weight: bold; }
blockquote {
margin: 1em 40px; }
/**
* Address styling not present in Safari 5 and Chrome.
*/
dfn {
font-style: italic; }
/**
* Address differences between Firefox and other browsers.
* Known issue: no IE 6/7 normalization.
*/
hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0; }
/**
* Address styling not present in IE 6/7/8/9.
*/
mark {
background: #ff0;
color: #000; }
/**
* Address margins set differently in IE 6/7.
*/
p,
pre {
margin: 1em 0; }
/**
* Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
*/
code,
kbd,
pre,
samp {
font-family: monospace, serif;
_font-family: 'courier new', monospace;
font-size: 1em; }
/**
* Improve readability of pre-formatted text in all browsers.
*/
pre {
white-space: pre;
white-space: pre-wrap;
word-wrap: break-word; }
/**
* Address CSS quotes not supported in IE 6/7.
*/
q {
quotes: none; }
/**
* Address `quotes` property not supported in Safari 4.
*/
q:before,
q:after {
content: '';
content: none; }
/**
* Address inconsistent and variable font size in all browsers.
*/
small {
font-size: 80%; }
/**
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline; }
sup {
top: -0.5em; }
sub {
bottom: -0.25em; }
/* ==========================================================================
Lists
========================================================================== */
/**
* Address margins set differently in IE 6/7.
*/
dl,
menu,
ol,
ul {
margin: 1em 0; }
dd {
margin: 0 0 0 40px; }
/**
* Address paddings set differently in IE 6/7.
*/
menu,
ol,
ul {
padding: 0 0 0 40px; }
/**
* Correct list images handled incorrectly in IE 7.
*/
nav ul,
nav ol {
list-style: none;
list-style-image: none; }
/* ==========================================================================
Embedded content
========================================================================== */
/**
* 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
* 2. Improve image quality when scaled in IE 7.
*/
img {
border: 0;
/* 1 */
-ms-interpolation-mode: bicubic;
/* 2 */ }
/**
* Correct overflow displayed oddly in IE 9.
*/
svg:not(:root) {
overflow: hidden; }
/* ==========================================================================
Figures
========================================================================== */
/**
* Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
*/
figure {
margin: 0; }
/* ==========================================================================
Forms
========================================================================== */
/**
* Correct margin displayed oddly in IE 6/7.
*/
form {
margin: 0; }
/**
* Define consistent border, margin, and padding.
*/
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em; }
/**
* 1. Correct color not being inherited in IE 6/7/8/9.
* 2. Correct text not wrapping in Firefox 3.
* 3. Correct alignment displayed oddly in IE 6/7.
*/
legend {
border: 0;
/* 1 */
padding: 0;
white-space: normal;
/* 2 */
*margin-left: -7px;
/* 3 */ }
/**
* 1. Correct font size not being inherited in all browsers.
* 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
* and Chrome.
* 3. Improve appearance and consistency in all browsers.
*/
button,
input,
select,
textarea {
font-size: 100%;
/* 1 */
margin: 0;
/* 2 */
vertical-align: baseline;
/* 3 */
*vertical-align: middle;
/* 3 */ }
/**
* Address Firefox 3+ setting `line-height` on `input` using `!important` in
* the UA stylesheet.
*/
button,
input {
line-height: normal; }
/**
* Address inconsistent `text-transform` inheritance for `button` and `select`.
* All other form control elements do not inherit `text-transform` values.
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
* Correct `select` style inheritance in Firefox 4+ and Opera.
*/
button,
select {
text-transform: none; }
/**
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
* and `video` controls.
* 2. Correct inability to style clickable `input` types in iOS.
* 3. Improve usability and consistency of cursor style between image-type
* `input` and others.
* 4. Remove inner spacing in IE 7 without affecting normal text inputs.
* Known issue: inner spacing remains in IE 6.
*/
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
/* 2 */
cursor: pointer;
/* 3 */
*overflow: visible;
/* 4 */ }
/**
* Re-set default cursor for disabled elements.
*/
button[disabled],
html input[disabled] {
cursor: default; }
/**
* 1. Address box sizing set to content-box in IE 8/9.
* 2. Remove excess padding in IE 8/9.
* 3. Remove excess padding in IE 7.
* Known issue: excess padding remains in IE 6.
*/
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
/* 1 */
padding: 0;
/* 2 */
*height: 13px;
/* 3 */
*width: 13px;
/* 3 */ }
/**
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
* (include `-moz` to future-proof).
*/
input[type="search"] {
-webkit-appearance: textfield;
/* 1 */
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
/* 2 */
box-sizing: content-box; }
/**
* Remove inner padding and search cancel button in Safari 5 and Chrome
* on OS X.
*/
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none; }
/**
* Remove inner padding and border in Firefox 3+.
*/
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0; }
/**
* 1. Remove default vertical scrollbar in IE 6/7/8/9.
* 2. Improve readability and alignment in all browsers.
*/
textarea {
overflow: auto;
/* 1 */
vertical-align: top;
/* 2 */ }
/* ==========================================================================
Tables
========================================================================== */
/**
* Remove most spacing between table cells.
*/
table {
border-collapse: collapse;
border-spacing: 0; }
/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */
/*
* What follows is the result of much research on cross-browser styling.
* Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
* Kroc Camen, and the H5BP dev community and team.
*/
/* ==========================================================================
Base styles: opinionated defaults
========================================================================== */
html,
button,
input,
select,
textarea {
color: #222; }
html {
font-size: 1em;
line-height: 1.4; }
/*
* Remove text-shadow in selection highlight: h5bp.com/i
* These selection rule sets have to be separate.
* Customize the background color to match your design.
*/
::-moz-selection {
background: #b3d4fc;
text-shadow: none; }
::selection {
background: #b3d4fc;
text-shadow: none; }
/*
* A better looking default horizontal rule
*/
hr {
display: block;
height: 1px;
border: 0;
border-top: 1px solid #ccc;
margin: 1em 0;
padding: 0; }
/*
* Remove the gap between images, videos, audio and canvas and the bottom of
* their containers: h5bp.com/i/440
*/
audio,
canvas,
img,
video {
vertical-align: middle; }
/*
* Remove default fieldset styles.
*/
fieldset {
border: 0;
margin: 0;
padding: 0; }
/*
* Allow only vertical resizing of textareas.
*/
textarea {
resize: vertical; }
/* ==========================================================================
Browse Happy prompt
========================================================================== */
.browsehappy {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0; }
/* ==========================================================================
Author's custom styles
========================================================================== */
/* ==========================================================================
Helper classes
========================================================================== */
/*
* Image replacement
*/
.ir {
background-color: transparent;
border: 0;
overflow: hidden;
/* IE 6/7 fallback */
*text-indent: -9999px; }
.ir:before {
content: "";
display: block;
width: 0;
height: 150%; }
/*
* Hide from both screenreaders and browsers: h5bp.com/u
*/
.hidden {
display: none !important;
visibility: hidden; }
/*
* Hide only visually, but have it available for screenreaders: h5bp.com/v
*/
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px; }
/*
* Extends the .visuallyhidden class to allow the element to be focusable
* when navigated to via the keyboard: h5bp.com/p
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto; }
/*
* Hide visually and from screenreaders, but maintain layout
*/
.invisible {
visibility: hidden; }
/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
* `contenteditable` attribute is included anywhere else in the document.
* Otherwise it causes space to appear at the top and bottom of elements
* that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
* `:before` to contain the top-margins of child elements.
*/
.clearfix:before,
.clearfix:after {
content: " ";
/* 1 */
display: table;
/* 2 */ }
.clearfix:after {
clear: both; }
/*
* For IE 6/7 only
* Include this rule to trigger hasLayout and contain floats.
*/
.clearfix {
*zoom: 1; }
/* ==========================================================================
EXAMPLE Media Queries for Responsive Design.
These examples override the primary ('mobile first') styles.
Modify as content requires.
========================================================================== */
@media only screen and (min-width: 35em) {
/* Style adjustments for viewports that meet the condition */ }
@media print, (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
/* Style adjustments for high resolution devices */ }
/* ==========================================================================
Print styles.
Inlined to avoid required HTTP connection: h5bp.com/r
========================================================================== */
@media print {
* {
background: transparent !important;
color: #000 !important;
/* Black prints faster: h5bp.com/s */
box-shadow: none !important;
text-shadow: none !important; }
a,
a:visited {
text-decoration: underline; }
a[href]:after {
content: " (" attr(href) ")"; }
abbr[title]:after {
content: " (" attr(title) ")"; }
/*
* Don't show links for images, or javascript/internal links
*/
.ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after {
content: ""; }
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid; }
thead {
display: table-header-group;
/* h5bp.com/t */ }
tr,
img {
page-break-inside: avoid; }
img {
max-width: 100% !important; }
@page {
margin: 0.5cm; }
p,
h2,
h3 {
orphans: 3;
widows: 3; }
h2,
h3 {
page-break-after: avoid; }
/* print styles */ }
/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
border-radius: 5px;
border: 2px solid #000;
background: #4c4c4c;
color: #fff; }
/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
font-family: Arial, sans-serif;
font-size: 14px;
line-height: 16px;
padding: 8px 10px;
overflow: hidden; }
/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
/* border-color: ... !important; */ }
/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
cursor: help;
margin-left: 4px; }
/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
padding: 0;
font-size: 0;
line-height: 0;
position: absolute;
left: 0;
top: 0;
z-index: 9999999;
pointer-events: none;
width: auto;
overflow: visible; }
.tooltipster-base .tooltipster-content {
overflow: hidden; }
/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
display: block;
text-align: center;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1; }
.tooltipster-arrow span, .tooltipster-arrow-border {
display: block;
width: 0;
height: 0;
position: absolute; }
.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
border-left: 8px solid transparent !important;
border-right: 8px solid transparent !important;
border-top: 8px solid;
bottom: -7px; }
.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
border-left: 9px solid transparent !important;
border-right: 9px solid transparent !important;
border-top: 9px solid;
bottom: -7px; }
.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
border-left: 8px solid transparent !important;
border-right: 8px solid transparent !important;
border-bottom: 8px solid;
top: -7px; }
.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
border-left: 9px solid transparent !important;
border-right: 9px solid transparent !important;
border-bottom: 9px solid;
top: -7px; }
.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
left: 0;
right: 0;
margin: 0 auto; }
.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
left: 6px; }
.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
left: 5px; }
.tooltipster-arrow-top-right span, .tooltipster-arrow-bottom-right span {
right: 6px; }
.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
right: 5px; }
.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
border-top: 8px solid transparent !important;
border-bottom: 8px solid transparent !important;
border-left: 8px solid;
top: 50%;
margin-top: -7px;
right: -7px; }
.tooltipster-arrow-left .tooltipster-arrow-border {
border-top: 9px solid transparent !important;
border-bottom: 9px solid transparent !important;
border-left: 9px solid;
margin-top: -8px; }
.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
border-top: 8px solid transparent !important;
border-bottom: 8px solid transparent !important;
border-right: 8px solid;
top: 50%;
margin-top: -7px;
left: -7px; }
.tooltipster-arrow-right .tooltipster-arrow-border {
border-top: 9px solid transparent !important;
border-bottom: 9px solid transparent !important;
border-right: 9px solid;
margin-top: -8px; }
/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */
.tooltipster-fade {
opacity: 0;
-webkit-transition-property: opacity;
-moz-transition-property: opacity;
-o-transition-property: opacity;
-ms-transition-property: opacity;
transition-property: opacity; }
.tooltipster-fade-show {
opacity: 1; }
.tooltipster-grow {
-webkit-transform: scale(0, 0);
-moz-transform: scale(0, 0);
-o-transform: scale(0, 0);
-ms-transform: scale(0, 0);
transform: scale(0, 0);
-webkit-transition-property: -webkit-transform;
-moz-transition-property: -moz-transform;
-o-transition-property: -o-transform;
-ms-transition-property: -ms-transform;
transition-property: transform;
-webkit-backface-visibility: hidden; }
.tooltipster-grow-show {
-webkit-transform: scale(1, 1);
-moz-transform: scale(1, 1);
-o-transform: scale(1, 1);
-ms-transform: scale(1, 1);
transform: scale(1, 1);
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }
.tooltipster-swing {
opacity: 0;
-webkit-transform: rotateZ(4deg);
-moz-transform: rotateZ(4deg);
-o-transform: rotateZ(4deg);
-ms-transform: rotateZ(4deg);
transform: rotateZ(4deg);
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform;
-o-transition-property: -o-transform;
-ms-transition-property: -ms-transform;
transition-property: transform; }
.tooltipster-swing-show {
opacity: 1;
-webkit-transform: rotateZ(0deg);
-moz-transform: rotateZ(0deg);
-o-transform: rotateZ(0deg);
-ms-transform: rotateZ(0deg);
transform: rotateZ(0deg);
-webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
-webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
-moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
-ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
-o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4); }
.tooltipster-fall {
top: 0;
-webkit-transition-property: top;
-moz-transition-property: top;
-o-transition-property: top;
-ms-transition-property: top;
transition-property: top;
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }
.tooltipster-fall.tooltipster-dying {
-webkit-transition-property: all;
-moz-transition-property: all;
-o-transition-property: all;
-ms-transition-property: all;
transition-property: all;
top: 0px !important;
opacity: 0; }
.tooltipster-slide {
left: -40px;
-webkit-transition-property: left;
-moz-transition-property: left;
-o-transition-property: left;
-ms-transition-property: left;
transition-property: left;
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }
.tooltipster-slide.tooltipster-dying {
-webkit-transition-property: all;
-moz-transition-property: all;
-o-transition-property: all;
-ms-transition-property: all;
transition-property: all;
left: 0px !important;
opacity: 0; }
/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
opacity: 0.5;
-webkit-transform: scale(1.1, 1.1);
-moz-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1); }
.tooltipster-light {
border-radius: 5px;
border: 1px solid #cccccc;
background: #ededed;
color: #666666; }
.tooltipster-light .tooltipster-content {
font-family: Arial, sans-serif;
font-size: 14px;
line-height: 16px;
padding: 8px 10px; }
/*!
* Strip - A Less Intrusive Responsive Lightbox - v1.5.9
* (c) 2014-2015 Nick Stakenburg
*
* http://www.stripjs.com
*
* Licensing:
* - Commercial: http://www.stripjs.com/license
* - Non-commercial: http://creativecommons.org/licenses/by-nc-nd/3.0
*/
.strp-window {
position: fixed;
width: 0;
height: 100%;
overflow: hidden;
background: #292929; }
.strp-window.strp-vertical {
height: 0;
width: 100%; }
/* margin is added around the window to keep a visual reference
* to the underlying page at all times.
*/
.strp-window {
margin-left: 40px; }
.strp-window.strp-vertical {
margin-left: 0;
margin-bottom: 40px; }
/* fullscreen on smaller screens (iPhone 6+ and smaller)
* since min-width is used to make this work it won't show on IE8, but
* we're not expecting that browser to have a mobile sized screen anyway
*/
@media all and (max-width: 414px) and (orientation: portrait), all and (max-width: 736px) and (max-height: 414px) {
.strp-window.strp-horizontal {
min-width: 100%; } }
@media all and (max-height: 414px) and (orientation: landscape), all and (max-height: 736px) and (max-width: 414px) {
.strp-window.strp-vertical {
min-height: 100%; } }
/* z-index */
.strp-window,
.strp-spinner-move {
z-index: 99999; }
/* reset box-sizing */
.strp-window,
.strp-window [class^='strp-'],
.strp-spinner-move,
.strp-spinner-move [class^='strp-'] {
box-sizing: border-box; }
/* Chrome hack, this fixes a visual glitch when quickly toggling a video */
.strp-window {
transform: translateZ(0px); }
/* some properties on the window are used to toggle things
* like margin and the fullscreen mode,
* we reset those properties after measuring them
*/
.strp-measured {
margin: 0 !important;
min-width: 0 !important;
min-height: 0 !important; }
.strp-pages {
position: absolute;
width: 100%;
height: 100%;
overflow: hidden; }
/* sides */
.strp-side-right {
top: 0;
right: 0; }
.strp-side-right .strp-pages {
top: 0;
right: 0; }
.strp-side-right .strp-page {
top: 0;
right: 0; }
.strp-side-right .strp-close {
top: 0;
right: 0; }
.strp-side-left {
top: 0;
left: 0; }
.strp-side-left .strp-pages {
top: 0;
left: 0; }
.strp-side-left .strp-page {
top: 0;
left: 0; }
.strp-side-left .strp-close {
top: 0;
right: 0; }
.strp-side-top {
top: 0;
left: 0; }
.strp-side-top .strp-pages {
top: 0;
left: 0; }
.strp-side-top .strp-page {
top: 0;
left: 0; }
.strp-side-top .strp-close {
top: 0;
right: 0; }
.strp-side-bottom {
bottom: 0;
left: 0; }
.strp-side-bottom .strp-pages {
bottom: 0;
left: 0; }
.strp-side-bottom .strp-page {
bottom: 0;
left: 0; }
.strp-side-bottom .strp-close {
top: 0;
right: 0; }
.strp-page {
position: absolute;
width: 100%;
height: 100%; }
.strp-container {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: 0;
padding: 0;
text-align: center;
background: #292929;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none; }
/* youtube & vimeo use overlap:false, this adds padding
to make sure buttons don't overlap the content.
navbutton = 72 = 54 + (2 * 9 margin)
closebutton = 48
*/
.strp-no-overlap .strp-container {
padding: 48px 72px; }
.strp-no-overlap.strp-no-sides .strp-container {
padding: 48px 0; }
.strp-vertical .strp-no-overlap .strp-container {
padding: 0 72px; }
.strp-vertical .strp-no-overlap.strp-no-sides .strp-container {
padding: 0 48px; }
.strp-hovering-clickable .strp-container {
cursor: pointer; }
.strp-content-element {
position: absolute;
top: 50%;
left: 50%; }
.strp-content-element iframe {
float: left;
width: 100%;
height: 100%; }
.strp-container img {
display: inline-block;
vertical-align: middle; }
.strp-info {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
color: #efefef;
font-size: 13px;
line-height: 20px;
background: #000;
-webkit-text-size-adjust: none;
text-size-adjust: none; }
.strp-info-padder {
display: block;
overflow: hidden;
padding: 0 24px;
position: relative;
width: auto; }
.strp-caption {
width: auto;
display: inline;
white-space: wrap; }
.strp-position {
color: #b3b3b3;
float: right;
line-height: 21px;
opacity: 0.99;
position: relative;
text-align: right;
margin-left: 15px;
white-space: nowrap; }
/* links */
.strp-info a,
.strp-info a:hover {
color: #ccc;
border: 0;
background: none;
text-decoration: underline; }
.strp-info a:hover {
color: #eee; }
/* < > */
.strp-nav {
position: absolute;
top: 50%;
width: 54px;
height: 72px;
margin: 0 9px;
margin-top: -36px;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none; }
.strp-nav-previous {
left: 0; }
.strp-nav-next {
right: 0;
left: auto; }
.strp-nav-disabled {
cursor: default; }
.strp-nav-button {
float: left;
width: 100%;
height: 100%;
margin: 0;
padding: 0; }
.strp-nav-button-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #101010; }
.strp-nav-button-icon {
float: left;
position: relative;
height: 100%;
width: 100%;
zoom: 1;
background-position: 50% 50%;
background-repeat: no-repeat; }
/* X */
.strp-close {
position: absolute;
width: 48px;
height: 48px;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none; }
.strp-close-background,
.strp-close-icon {
position: absolute;
top: 12px;
left: 12px;
height: 26px;
width: 26px;
background-position: 50% 50%;
background-repeat: no-repeat; }
.strp-close-background {
filter: alpha(opacity=80);
opacity: .8;
background-color: #101010; }
.strp-close:hover .strp-close-background {
background-color: #161616; }
.strp-has-error .strp-container {
background-color: #ca3434; }
.strp-error {
position: absolute;
top: 50%;
left: 50%;
width: 240px;
height: 240px;
margin-left: -120px;
margin-top: -120px;
background-position: 50% 50%;
background-repeat: no-repeat;
background-image: url("../img/strip-skins/strip/error.svg?rev=4"); }
.strp-no-svg .strp-error {
background-image: url("../img/strip-skins/strip/error.png?rev=4"); }
/* Spinner - loading icon, wrapped by a div that moves it */
.strp-spinner-move {
position: fixed;
top: 0px;
right: 0px;
height: 48px;
width: 0;
/* ensure overflow during a jQuery animation */
overflow: visible !important; }
.strp-spinner-move.strp-vertical {
width: 48px;
height: 0; }
.strp-spinner {
width: 48px;
height: 48px;
float: left;
position: relative; }
/* different sides */
.strp-spinner-move.strp-side-top {
top: 0;
right: 0;
bottom: auto;
left: auto; }
.strp-spinner-move.strp-side-bottom {
top: auto;
right: 0;
bottom: 0;
left: auto; }
.strp-spinner-move.strp-side-right .strp-spinner {
margin-left: -48px; }
.strp-spinner-move.strp-side-left .strp-spinner {
margin-right: -48px;
float: right; }
.strp-spinner-move.strp-side-bottom .strp-spinner {
margin-top: -48px; }
.strp-spinner-move.strp-side-top .strp-spinner {
position: absolute;
bottom: 0;
right: 0;
margin-bottom: -48px; }
@-moz-keyframes strp-spinner-spin {
100% {
-moz-transform: rotate(360deg); } }
@-webkit-keyframes strp-spinner-spin {
100% {
-webkit-transform: rotate(360deg); } }
@keyframes strp-spinner-spin {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg); } }
.strp-spinner-rotate,
.strp-spinner-frame {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
.strp-spinner-line {
position: absolute;
left: 50%;
top: 15px;
width: 2px;
margin-left: -1px;
height: 3px;
border-radius: 1px;
z-index: 80;
/* amount of lines, removed later on */
color: inherit;
/* color of the dots, inherited from text on the page */ }
/*
* ===== Skin: strip =====
*/
/* < > */
.strp-window-skin-strip .strp-nav-button-background {
background-color: transparent; }
.strp-window-skin-strip .strp-nav-previous .strp-nav-button-icon {
background-image: url("../img/strip-skins/strip/previous.svg?rev=4"); }
.strp-window-skin-strip .strp-nav-next .strp-nav-button-icon {
background-image: url("../img/strip-skins/strip/next.svg?rev=4"); }
/* IE7-8/no-svg (using a faded png) */
.strp-window-skin-strip.strp-no-svg .strp-nav-previous .strp-nav-button-icon {
background-image: url("../img/strip-skins/strip/previous-faded.png?rev=4");
opacity: 1; }
.strp-window-skin-strip.strp-no-svg .strp-nav-next .strp-nav-button-icon {
background-image: url("../img/strip-skins/strip/next-faded.png?rev=4");
opacity: 1; }
.strp-window-skin-strip .strp-nav .strp-nav-button-icon {
opacity: .6; }
/* normal state */
.strp-window-skin-strip.strp-mobile-touch .strp-nav .strp-nav-button-icon {
opacity: 1; }
/* mobile-touch always has normal states at full opacity */
/* < > : hover */
.strp-window-skin-strip .strp-nav:hover .strp-nav-button-icon,
.strp-window-skin-strip .strp-nav-hover .strp-nav-button-icon {
opacity: 1; }
/* IE7-8/no-svg (unfaded png) */
.strp-window-skin-strip.strp-no-svg .strp-nav.strp-nav-previous:hover .strp-nav-button-icon,
.strp-window-skin-strip.strp-no-svg .strp-nav-hover.strp-nav-previous .strp-nav-button-icon {
background-image: url("../img/strip-skins/strip/previous.png?rev=4"); }
.strp-window-skin-strip.strp-no-svg .strp-nav.strp-nav-next:hover .strp-nav-button-icon,
.strp-window-skin-strip.strp-no-svg .strp-nav-hover.strp-nav-next .strp-nav-button-icon {
background-image: url("../img/strip-skins/strip/next.png?rev=4"); }
/* Reduce < > button size on narrow screens (iPhone 6 and smaller) */
@media all and (max-width: 375px) and (orientation: portrait), all and (max-height: 375px) and (max-width: 667px) {
.strp-window-skin-strip .strp-nav {
width: 48px;
height: 60px;
margin: 0 5px;
margin-top: -30px; }
/* < > */
.strp-window-skin-strip .strp-nav-previous .strp-nav-button-icon {
background-image: url("../img/strip-skins/strip/previous-small.svg?rev=4"); }
.strp-window-skin-strip .strp-nav-next .strp-nav-button-icon {
background-image: url("../img/strip-skins/strip/next-small.svg?rev=4"); }
/* IE7-8/no-svg (using a faded png) */
.strp-window-skin-strip.strp-no-svg .strp-nav-previous .strp-nav-button-icon {
background-image: url("../img/strip-skins/strip/previous-small-faded.png?rev=4"); }
.strp-window-skin-strip.strp-no-svg .strp-nav-next .strp-nav-button-icon {
background-image: url("../img/strip-skins/strip/next-small-faded.png?rev=4"); }
/* IE7-8/no-svg (unfaded png) */
.strp-window-skin-strip.strp-no-svg .strp-nav.strp-nav-previous:hover .strp-nav-button-icon,
.strp-window-skin-strip.strp-no-svg .strp-nav-hover.strp-nav-previous .strp-nav-button-icon {
background-image: url("../img/strip-skins/strip/previous-small.png?rev=4"); }
.strp-window-skin-strip.strp-no-svg .strp-nav.strp-nav-next:hover .strp-nav-button-icon,
.strp-window-skin-strip.strp-no-svg .strp-nav-hover.strp-nav-next .strp-nav-button-icon {
background-image: url("../img/strip-skins/strip/next-small.png?rev=4"); }
/* also reduce padding
navbutton = 58 = 48 + (2 * 5 margin)
closebutton = 48
*/
.strp-no-overlap .strp-container {
padding: 48px 58px; }
.strp-no-overlap.strp-no-sides .strp-container {
padding: 48px 0; }
.strp-vertical .strp-no-overlap .strp-container {
padding: 0 58px; }
.strp-vertical .strp-no-overlap.strp-no-sides .strp-container {
padding: 0 48px; } }
/* X */
.strp-window-skin-strip .strp-close .strp-close-icon {
background-image: url("../img/strip-skins/strip/close.svg?rev=4");
opacity: .8; }
.strp-window-skin-strip .strp-close:hover .strp-close-icon {
opacity: 1; }
/* IE7-8/no-svg */
.strp-window-skin-strip.strp-no-svg .strp-close .strp-close-icon {
background-image: url("../img/strip-skins/strip/close.png?rev=4");
opacity: 1; }
/* here's how to have content slide in with the window when opening and closing */
/*
.strp-window-skin-strip.strp-side-left.strp-opening .strp-page,
.strp-window-skin-strip.strp-side-left.strp-closing .strp-page { left: auto; right: 0; }
.strp-window-skin-strip.strp-side-right.strp-opening .strp-page,
.strp-window-skin-strip.strp-side-right.strp-closing .strp-page { left: 0; right: auto; }
.strp-window-skin-strip.strp-side-top.strp-opening .strp-page,
.strp-window-skin-strip.strp-side-top.strp-closing .strp-page { bottom: 0; top: auto; }
.strp-window-skin-strip.strp-side-bottom.strp-opening .strp-page,
.strp-window-skin-strip.strp-side-bottom.strp-closing .strp-page { bottom: auto; top: 0; }
*/
/* basic structure */
/* Media Queries */
/* font definitions and web fonts */
/*
* Symbolset
* www.symbolset.com
* Copyright © 2013 Oak Studios LLC
*
* Upload this file to your web server
* and place this within your <head> tags.
* <link href="webfonts/ss-social-regular.css" rel="stylesheet" />
*/
@font-face {
font-family: "SSSocialRegular";
src: url('data:application/font-woff;base64,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') format('woff'), url('data:font/truetype;base64,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ZWd1bGFyAABTAFMAIABTAG8AYwBpAGEAbAAgAGkAcwAgAGEAIAB0AHIAYQBkAGUAbQBhAHIAawAgAG8AZgAgAE8AYQBrACAAUwB0AHUAZABpAG8AcwAsACAATABMAEMAAFNTIFNvY2lhbCBpcyBhIHRyYWRlbWFyayBvZiBPYWsgU3R1ZGlvcywgTExDAABPAGEAawAgAFMAdAB1AGQAaQBvAHMALAAgAEwATABDAABPYWsgU3R1ZGlvcywgTExDAABzAHkAbQBiAG8AbABzAGUAdAAuAGMAbwBtAABzeW1ib2xzZXQuY29tAABzAHkAbQBiAG8AbABzAGUAdAAuAGMAbwBtAC8AbABpAGMAZQBuAHMAZQAAc3ltYm9sc2V0LmNvbS9saWNlbnNlAAAAAAACAAAAAAAA/0AAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAABAAIAAwAOABAAEwAYACQAJQAmACcAKAApACoAKwAsAC0ALgAvADAAMQAyADMANAA1ADYANwA4ADkAOgA7ADwAPQBEAEUARgBHAEgASQBKAEsATABNAE4ATwBQAFEAUgBTAFQAVQBWAFcAWABZAFoAWwBcAF0BAgEDAQQBBQEGAQcBCAEJAQoBCwEMAQ0BDgEPARABEQESARMBFAEVARYBFwEYARkBGgEbARwBHQEeAR8BIAEhASIBIwEkASUBJgEnASgBKQEqASsBLAEtAS4BLwEwATEA0gEyATMBNARtYWlsA3JzcwVzaGFyZQhmYWNlYm9vawd0d2l0dGVyCGxpbmtlZGluCmdvb2dsZXBsdXMJYXBwZG90bmV0BnplcnBseQZyZWRkaXQFc3RlYW0GdHVtYmxyCXdvcmRwcmVzcwdibG9nZ2VyCXBvc3Rlcm91cwVxdW9yYQd5b3V0dWJlBXZpbWVvCmxldHRlcmJveGQEdmluZQZmbGlja3IJaW5zdGFncmFtDWZpdmVodW5kcmVkcHgJcGludGVyZXN0BnN2cHBseQhyZWFkbWlsbAdkcm9wYm94CHBpbmJvYXJkCWRlbGljaW91cwhkcmliYmJsZQdiZWhhbmNlBmdpdGh1YgdvY3RvY2F0DXN0YWNrb3ZlcmZsb3cGcGF5cGFsC2tpY2tzdGFydGVyBGV0c3kKZm91cnNxdWFyZQR5ZWxwBXNreXBlBHJkaW8Hc3BvdGlmeQZsYXN0Zm0Kc291bmRjbG91ZAltaWNyb3NvZnQHd2luZG93cwdhbmRyb2lkCmJsYWNrYmVycnkEbGlrZQVwaG9uZQRsaW5rAAAAAAH//wACAAEAAAAOAAAAHgAAAAAAAgACAAMAOwABADwAbwACAAQAAAACAAAAAAABAAAACgAwAEwAAkRGTFQADmxhdG4AGgAEAAAAAP//AAEAAAAEAAAAAP//AAEAAQACbGlnYQAObGlnYQAWAAAAAgAAAAEAAAABAAAAAgAGAA4ABAAAAAEAEAAEAAAAARO2AAETaAArAFwAbAHIAloCdALuA0wFMgcABy4HZAhYCJ4IxAmSCbAKJgukDIAMtg0eDW4NkA4WDlQOYg6gDtAPnhBGEF4QehEEESgRPBGcEawR6BKMEvATDBM2E1YAAQAEAFIABQAGAAYAMQA5ABIAJgA+AFYAbgCCAJYAqgC6AMoA2gDqAPoBCgEaASgBNgFEAVAAQwALABcAFwADAAsAFgAbAAMAFQAMABsAQwALADEAMQADAAsAMAA1AAMAFQAmADUAQwALADEAMQADACUAMAA1AAMALwAmADUAQwAJABcAFwALABYAGwAVAAwAGwBDAAkAMQAxAAsAMAA1ABUAJgA1AEMACQAxADEAJQAwADUALwAmADUAbQAHABcAFwAZABYAHQAMAG0ABwAxADEAMwAwADcAJgBqAAcAFQALABkAFgAQAAsAagAHAC8AJQAzADAAKgAlAEMABwAXABcAAwAVAAwAGwBDAAcAMQAxAAMAFQAmADUAQwAHADEAMQADAC8AJgA1AEMABgAXABcAFQAMABsAQwAGADEAMQAVACYANQBDAAYAMQAxAC8AJgA1AGwABQAXABcAEwAMAGwABQAxADEALQAmAAcAEAAmADwAUgBiAHIAggBrAAoAEwAIAAoAEgAJAAwAGQAZACAAawAKAC0AIgAkACwACQAmADMAMwA6AGsACgAtACIAJAAsACMAJgAzADMAOgBaAAcADAAPAAgAFQAKAAwAWgAHACYAKQAiAC8AJAAmAEkABwATABYADgAOAAwAGQBJAAcALQAwACgAKAAmADMAAgAGABAAbgAEAAgAEwATAG4ABAAiAC0ALQAGAA4AIgA2AEgAWgBqAFgACQAMABMAEAAKABAAFgAcABoAWAAJACYALQAqACQAKgAwADYANABZAAgAGQAQAAkACQAJABMADABZAAgAMwAqACMAIwAjAC0AJgBWAAcAGQAWABcACQAWAB8AVgAHADMAMAAxACMAMAA5AAYADgAgADIAPgBKAFQAPAAIABUAHQAMABMAFgAXAAwAPAAIAC8ANwAmAC0AMAAxACYAPAAFABQACAAQABMAPAAFAC4AIgAqAC0AYAAEABsAGgAgAGAABAA1ADQAOgAQACIASgByAJoAvgDiAQIBIgFCAV4BegGQAaYBuAHKAdgAUgATABAAHQAMAAMADwAcABUACwAZAAwACwADABcAEAAfAAwAEwAaAFIAEwAqADcAJgADAA8ANgAvACUAMwAmACUAAwAXACoAOQAmAC0ANABSABMAKgA3ACYAAwApADYALwAlADMAJgAlAAMAMQAqADkAJgAtADQAUgARABAAHQAMAA8AHAAVAAsAGQAMAAsAFwAQAB8ADAATABoAUgARACoANwAmACkANgAvACUAMwAmACUAMQAqADkAJgAtADQAUgAPABAAHQAMAAMADwAcABUACwAZAAwACwADABcAHwBSAA8AKgA3ACYAAwAPADYALwAlADMAJgAlAAMAFwA5AFIADwAqADcAJgADACkANgAvACUAMwAmACUAAwAxADkAUgANABAAHQAMAA8AHAAVAAsAGQAMAAsAFwAfAFIADQAqADcAJgApADYALwAlADMAJgAlADEAOQBhAAoAFgAcABkAGgAYABwACAAZAAwAYQAKADAANgAzADQAMgA2ACIAMwAmAD8ACAAIAAoADAAJABYAFgASAD8ACAAiACQAJgAjADAAMAAsAFAABgATABAACgASABkAUAAGAC0AKgAkACwAMwATACgARgBkAIIAngC6ANYA7gEGAR4BNAFKAWABcgGEAZQBpAGyAcAAXAAOABAAGwAPABwACQADABYACgAbABYACgAIABsAXAAOACoANQAPADYAIwADABYAJAA1ADAAJAAiADUAXAAOACoANQApADYAIwADABYAJAA1ADAAJAAiADUAXAANABAAGwAPABwACQAWAAoAGwAWAAoACAAbAFwADQAqADUADwA2ACMAFgAkADUAMAAkACIANQBcAA0AKgA1ACkANgAjADAAJAA1ADAAJAAiADUAQgALABYAFgAOABMADAADABcAEwAcABoAQgALADAAMAAoAC0AJgADABcALQA2ADQAQgALADAAMAAoAC0AJgADADEALQA2ADQAQgAKABYAFgAOABMADAAXABMAHAAaAEIACgAwADAAKAAtACYAFwAtADYANABCAAoAMAAwACgALQAmADEALQA2ADQAQgAIABYAFgAOABMADAADAAQAQgAIADAAMAAoAC0AJgADAAQAQgAHABYAFgAOABMADAAEAEIABwAwADAAKAAtACYABABbAAYAKgA1AA8ANgAjAFsABgAqADUAKQA2ACMAWwAGABAAGwAPABwACQACAAYAGgBRAAkAFQAaABsACAAOABkACAAUAFEACQAvADQANQAiACgAMwAiAC4AAgAGAB4AXwALABAACgASABoAGwAIABkAGwAMABkAXwALACoAJAAsADQANQAiADMANQAmADMADgAeADQASgBcAG4AgACQAKAAsAC+AMwA1gDgAOoATgAKAAwAGwAbAAwAGQAJABYAHwALAE4ACgAmADUANQAmADMAIwAwADkAJQBBAAgAEAAVABIADAALABAAFQBBAAgAKgAvACwAJgAlABAALwBBAAgAKgAvACwAJgAlACoALwBmAAcAIgA0ADUAAwANAC4AZgAHAAgAGgAbAAMADQAUAGYABwAiADQANQADAA0AFABmAAYAIgA0ADUAJwAuAGYABgAIABoAGwANABQAbwAEABAAFQASAG8ABAAqAC8ALABtAAQAEAASAAwAbQAEACoALAAmAAQACgAeADIAPABoAAkAEAAKABkAFgAaABYADQAbAGgACQAqACQAMwAwADQAMAAnADUAPAAEAAgAEAATADwABAAiACoALQACAAYAFgBcAAcACgAbABYACgAIABsAXAAHACQANQAwACQAIgA1AAsAGAAsAEAAVABoAHoAjACaAKgAtgDCAFMACQAQABUAGwAMABkADAAaABsAUwAJACoALwA1ACYAMwAmADQANQBKAAkAFgAaABsADAAZABYAHAAaAEoACQAwADQANQAmADMAMAA2ADQAVwAIABAAFQAJABYACAAZAAsAVwAIACoALwAjADAAIgAzACUAXgAGAAgAIAAXAAgAEwBeAAYAIgA6ABcAIgAtAF4ABgAiADoAMQAiAC0AbgAFACkAMAAvACYAbgAFAA8AFgAVAAwAAgAGABIASwAFABwAFgAZAAgASwAFADYAMAAzACIACAASACQANgBEAFIAXABmAG4AVQAIAAwACAALABQAEAATABMAVQAIACYAIgAlAC4AKgAtAC0ARQAGAAwACwALABAAGwBFAAYAJgAlACUAKgA1AGQABAALABAAFgBkAAQAJQAqADAAPQADABoAGgA9AAMANAA0ABIAJgBEAGIAgACcALgAzgDkAPoBCgEaASgBNgFCAU4BWgFmAXIAXQAOABsACAAKABIAAwAWAB0ADAAZAA0AEwAWAB4AXQAOADUAIgAkACwAAwAWADcAJgAzACcALQAwADgAXQAOADUAIgAkACwAAwAwADcAJgAzACcALQAwADgAXQANABsACAAKABIAFgAdAAwAGQANABMAFgAeAF0ADQA1ACIAJAAsADAANwAmADMAJwAtADAAOABnAAoAMAA2AC8AJQAkAC0AMAA2ACUAZwAKABYAHAAVAAsACgATABYAHAALAGcACgAwADYALwAlAAoALQAwADYAJQBlAAcAMQAwADUAKgAnADoAZQAHABcAFgAbABAADQAgAFQABgAdABcAFwATACAAVAAGADcAMQAxAC0AOgBjAAUALAA6ADEAJgA+AAUAKQAiADMAJgA+AAUADwAIABkADABjAAUAEgAgABcADABGAAUAGwAMAAgAFABGAAUANQAmACIALgALABgALABAAFQAaAB8AI4AoACwAMAAzgBtAAkADwAcABQACQAaAAMAHAAXAG0ACQApADYALgAjADQAAwAcADEAbQAJACkANgAuACMANAADADYAMQBuAAkADAATAAwAFwAPABYAFQAMAG4ACQAmAC0AJgAxACkAMAAvACYAbQAIAA8AHAAUAAkAGgAcABcAbQAIACkANgAuACMANAA2ADEAQAAHAB4AEAAbABsADAAZAEAABwA4ACoANQA1ACYAMwBHAAYAHAAUAAkAEwAZAEcABgA2AC4AIwAtADMABAAKABYAIgAsAE0ABQAQABQADAAWAE0ABQAqAC4AJgAwAE8ABAAQABUADABPAAQAKgAvACYABQAMACAANABIAFgASAAJABYAGQALABcAGQAMABoAGgBIAAkAMAAzACUAFwAzACYANAA0AEgACQAwADMAJQAxADMAJgA0ADQAaQAHACoALwAlADAAOAA0AGkABwAQABUACwAWAB4AGgAFAAwAHAAsADwARgBMAAcAFgAcABsAHAAJAAwATAAHADAANgAbADYAIwAmAEwABwAwADYANQA2ACMAJgBiAAQAJgAtADEAYgAEAAwAEwAXAAIABgAUAEQABgAMABkAFwATACAARAAGACYAMwAxAC0AOgAHABAAKAA8AEwAXABsAHoAQwALADEAMQADACUAMAA1AAMALwAmADUAQwAJADEAMQAlADAANQAvACYANQBqAAcALwAlADMAMAAqACUAbQAHADEAMQAzADAANwAmAEMABwAxADEAAwAvACYANQBDAAYAMQAxAC8AJgA1AGwABQAxADEALQAmAAMACAAeAC4AawAKAC0AIgAkACwAIwAmADMAMwA6AFoABwAmACkAIgAvACQAJgBJAAcALQAwACgAKAAmADMAAQAEAG4ABAAiAC0ALQADAAgAHAAuAFgACQAmAC0AKgAkACoAMAA2ADQAWQAIADMAKgAjACMAIwAtACYAVgAHADMAMAAxACMAMAA5AAMACAAaACYAPAAIAC8ANwAmAC0AMAAxACYAPAAFAC4AIgAqAC0AYAAEADUANAA6AAcAEAA4AFwAfACYAK4AwABSABMAKgA3ACYAAwApADYALwAlADMAJgAlAAMAMQAqADkAJgAtADQAUgARACoANwAmACkANgAvACUAMwAmACUAMQAqADkAJgAtADQAUgAPACoANwAmAAMAKQA2AC8AJQAzACYAJQADADEAOQBSAA0AKgA3ACYAKQA2AC8AJQAzACYAJQAxADkAYQAKADAANgAzADQAMgA2ACIAMwAmAD8ACAAiACQAJgAjADAAMAAsAFAABgAtACoAJAAsADMABwAQAC4ASgBiAHgAigCaAFwADgAqADUAKQA2ACMAAwAwACQANQAwACQAIgA1AFwADQAqADUAKQA2ACMAMAAkADUAMAAkACIANQBCAAsAMAAwACgALQAmAAMAMQAtADYANABCAAoAMAAwACgALQAmADEALQA2ADQAQgAIADAAMAAoAC0AJgADAAQAQgAHADAAMAAoAC0AJgAEAFsABgAqADUAKQA2ACMAAQAEAFEACQAvADQANQAiACgAMwAiAC4AAQAEAF8ACwAqACQALAA0ADUAIgAzADUAJgAzAAgAEgAoADoASgBaAGgAdgCAAE4ACgAmADUANQAmADMAIwAwADkAJQBBAAgAKgAvACwAJgAlACoALwBmAAcAIgA0ADUAAwANABQAZgAHACIANAA1AAMAJwAuAGYABgAiADQANQANABQAZgAGACIANAA1ACcALgBtAAQAKgAsACYAbwAEACoALwAsAAIABgAaAGgACQAqACQAMwAwADQAMAAnADUAPAAEACIAKgAtAAEABABcAAcAJAA1ADAAJAAiADUABQAMACAANABGAFQAUwAJACoALwA1ACYAMwAmADQANQBKAAkAMAA0ADUAJgAzADAANgA0AFcACAAqAC8AIwAwACIAMwAlAF4ABgAiADoAMQAiAC0AbgAFACkAMAAvACYAAQAEAEsABQA2ADAAMwAiAAQACgAcACoANABVAAgAJgAiACUALgAqAC0ALQBFAAYAJgAlACUAKgA1AGQABAAlACoAMAA9AAMANAA0AAgAEgAwAEwAYgByAIAAjACYAF0ADgA1ACIAJAAsAAMAMAA3ACYAMwAnAC0AMAA4AF0ADQA1ACIAJAAsADAANwAmADMAJwAtADAAOABnAAoAMAA2AC8AJQAkAC0AMAA2ACUAZQAHADEAMAA1ACoAJwA6AFQABgA3ADEAMQAtADoAYwAFACwAOgAxACYAPgAFACkAIgAzACYARgAFADUAJgAiAC4ABQAMACAANABGAFYAbQAJACkANgAuACMANAADADYAMQBuAAkAJgAtACYAMQApADAALwAmAG0ACAApADYALgAjADQANgAxAEAABwA4ACoANQA1ACYAMwBHAAYANgAuACMALQAzAAIABgASAE0ABQAqAC4AJgAwAE8ABAAqAC8AJgACAAYAGgBIAAkAMAAzACUAMQAzACYANAA0AGkABwAqAC8AJQAwADgANAACAAYAFgBMAAcAMAA2ADUANgAjACYAYgAEACYALQAxAAEABABEAAYAJgAzADEALQA6AAIACwAHAA4AAAAQABAACAASABQACQAWABsADAAdAB4AEgAgACgAFAAqACoAHQAsAC4AHgAwADUAIQA3ADgAJwA6ADsAKQABABYAAQAIAAEABAAAAAQADQATABsAAQABAAsAAQAAAAoALgA8AAJERkxUAA5sYXRuABgABAAAAAD//wAAAAQAAAAA//8AAQAAAAFrZXJuAAgAAAABAAAAAQAEAAIAAAABAAgAAQTWAAQAAAAhAEwAcgB4AJ4AwADKATABjgH0Ak4CaAKyAwwDFgMkAyoDOANOA2ADxgQQBDoETASSBJgEngSwBLoEngS6BNAEsAS6AAkACv+sAA7/dwAb/t8AHP+kAB3+nAAe/wYAIP6cADf/PQA4/2gAAQAc/6oACQAI/5wADP+qAA3/qgAQ/6IAF/+qABn/pgAd/5MAH/+TACD/oAAIAAz/pAAN/6QADv+kABD/mgAW/9sAF/+kABn/oAAc/6gAAgAI/0YAIv+mABkACf+TAAv/fwAM/3MADf9zAA//iQAQ/2gAEv+JABP/iQAU/5MAFf+JABf/cwAZ/6QAHP+FAB3/dwAe/5EAIP+aACn/pgAq/6YAK/+iACz/ogAt/6IALv+mAC//pgAz/4kANv+YABcACf+LAAv/eQAM/2oADf9qAA//gQAQ/2AAEv+BABP/gQAU/4sAFf+BABb/4wAX/2oAGf9mABz/fwAp/6AAKv+gACv/mgAs/5oALf+aAC7/oAAv/6AAM/+BADb/kQAZAAn/bwAL/1wADP9OAA3/TgAO/6oAD/9mABD/RgAS/2YAE/9mABT/bwAV/2YAF/9OABn/SgAa/6YAHP9gACP/kwAp/4EAKv+BACz/fwAt/38ALv+BAC//gQAx/5MAM/9mADb/dQAWAAn/mAAL/4UADP93AA3/dwAP/40AEP9tABL/jQAT/40AFP+YABX/jQAX/3cAGf9zABz/iQAp/6oAKv+qACv/pgAs/6YALf+mAC7/qgAv/6oAM/+NADb/nAAGABv+nAAd/q4AHv8rACD+nAA3/1QAOP+BABIACf+cAAv/iQAM/3sADf97AA//kwAQ/3MAEv+TABP/kwAU/5wAFf+TABf/ewAZ/3cAHP+NACv/qgAs/6oALf+qADP/kwA2/6IAFgAJ/4sAC/95AAz/agAN/2oAD/+BABD/YAAS/4EAE/+BABT/iwAV/4EAF/9qABn/ZgAc/38AKf+gACr/oAAr/5oALP+aAC3/mgAu/6AAL/+gADP/gQA2/5EAAgAd/6IAH/+YAAMACP8CABD/qAAZ/6wAAQAd/6IAAwAM/8EAHP+WACb/wQAFAAz/rAAN/6wAEP+kABf/rAAZ/6gABAAI/tEAEf6cACb/ogAw/6oAGQAI/6AACf+JAAv/dwAM/2gADf9oAA//fwAQ/14AEv9/ABP/fwAU/4kAFf9/ABf/aAAZ/2QAHP97ACP/rAAp/5wAKv+cACv/mAAs/5gALf+YAC7/nAAv/5wAMf+sADP/fwA2/40AEgAI/pwACv+iAA7/iQAR/ycAFv+gABj/oAAi/z8AJP9SACX/UgAm/0YAKP9GAC7/pgAv/6YAMP9CADL/UgAz/4kANP9mADb/mAAKAAj/BgAR/4EAIv9/ACT/mgAl/5gAJv9/ACj/jQAw/4sAMv+YADT/ogAEAAr/mAAO/6QAFv+WABj/lgARAAj+nAAO/5oAEf6cACL/MQAk/xIAJf8dACb/EgAo/ykALv+RAC//kQAw/yEAMf+iADL/HQAz/3UANP8/ADb/gQA7/6YAAQAz/6wAAQA3/74ABAAs/6wALf+sADP/lgA2/6QAAgAz/5oANv+oAAUAK/+sACz/rAAt/6wAM/+WADb/pAABADP/pgACAAcACAAJAAAACwARAAIAEwAgAAkAJQAmABcAKAArABkALQAvAB0ANgA2ACAAAAABAAAAAMwXcmMAAAAAzXEd0AAAAADNcJ+/') format('truetype'), url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/Pgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiID4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8bWV0YWRhdGE+PC9tZXRhZGF0YT4KPGRlZnM+Cjxmb250IGlkPSJTU1NvY2lhbFJlZ3VsYXIiID4KPGZvbnQtZmFjZSBmb250LWZhbWlseT0iU1MgU29jaWFsIiB1bml0cy1wZXItZW09IjIwNDgiIGFzY2VudD0iMjE3NiIgZGVzY2VudD0iLTY0MCIgLz4KPG1pc3NpbmctZ2x5cGggIC8+CjxnbHlwaCAgaG9yaXotYWR2LXg9IjIwNDgiICAvPgo8Z2x5cGggdW5pY29kZT0iJiN4MjcwOTsiIGhvcml6LWFkdi14PSIyMDQ4IiBkPSJNMjA0OCAxNjY0bC0xMDI0IC03NjhsLTEwMjQgNzY4cTAgNTMgMzcuNSA5MC41dDkwLjUgMzcuNWgxNzkycTUzIDAgOTAuNSAtMzcuNXQzNy41IC05MC41ek0wIDE0MzRsMTAyNCAtNzY4bDEwMjQgNzY4di0xMDUwcTAgLTUzIC0zNy41IC05MC41dC05MC41IC0zNy41aC0xNzkycS01MyAwIC05MC41IDM3LjV0LTM3LjUgOTAuNXYxMDUweiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGUzMTA7IiBob3Jpei1hZHYteD0iMjA0OCIgZD0iTTY0MCAzMjBxMCAtMTMzIC05NCAtMjI2LjV0LTIyNiAtOTMuNXEtMTM0IDAgLTIyNyA5M3QtOTMgMjI3cTAgMTMyIDkzLjUgMjI2dDIyNi41IDk0cTEzMSAwIDIyNS41IC05NC41dDk0LjUgLTIyNS41ek0yMDQ4IDQzcTAgLTE4IC0xMi41IC0zMC41dC0zMC41IC0xMi41aC0yOThxLTE4IDAgLTMwLjUgMTIuNXQtMTIuNSAzMC41cTAgMjIxIC01OCA0MzF0LTE2Mi41IDM4OHQtMjU0IDMyNy41dC0zMjcuNSAyNTR0LTM4OCAxNjIuNQp0LTQzMSA1OHEtMTggMCAtMzAuNSAxMi41dC0xMi41IDMwLjV2Mjk4cTAgMTggMTIuNSAzMC41dDMwLjUgMTIuNXEyNzMgMCA1MzIuNSAtNzJ0NDc5LjUgLTIwMS41dDQwNSAtMzE0LjV0MzE0LjUgLTQwNXQyMDEuNSAtNDc5LjV0NzIgLTUzMi41ek0xNDA4IDQzcTAgLTE4IC0xMi41IC0zMC41dC0zMC41IC0xMi41aC0yOThxLTE4IDAgLTMwLjUgMTIuNXQtMTIuNSAzMC41cTAgMjAwIC03Ny41IDM4MS41dC0yMDkgMzEzdC0zMTMgMjA5CnQtMzgxLjUgNzcuNXEtMTggMCAtMzAuNSAxMi41dC0xMi41IDMwLjV2Mjk4cTAgMTggMTIuNSAzMC41dDMwLjUgMTIuNXExODUgMCAzNjIgLTQ5dDMyNyAtMTM3dDI3NiAtMjE0dDIxNCAtMjc2dDEzNyAtMzI3dDQ5IC0zNjJ6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZjYwMTsiIGhvcml6LWFkdi14PSIyMDQ4IiBkPSJNMjA0OCAzODRxMCAtMTU5IC0xMTIuNSAtMjcxLjV0LTI3MS41IC0xMTIuNXQtMjcxLjUgMTEyLjV0LTExMi41IDI3MS41djFsLTY2NSAzMzJxLTEwMyAtNzcgLTIzMSAtNzdxLTE1OSAwIC0yNzEuNSAxMTIuNXQtMTEyLjUgMjcxLjV0MTEyLjUgMjcxLjV0MjcxLjUgMTEyLjVxMTI4IDAgMjMxIC03N2w2NjUgMzMydjFxMCAxNTkgMTEyLjUgMjcxLjV0MjcxLjUgMTEyLjV0MjcxLjUgLTExMi41dDExMi41IC0yNzEuNXQtMTEyLjUgLTI3MS41CnQtMjcxLjUgLTExMi41cS0xMjggMCAtMjMxIDc3bC02NjcgLTMzM2w2NjcgLTMzM3ExMDMgNzcgMjMxIDc3cTE1OSAwIDI3MS41IC0xMTIuNXQxMTIuNSAtMjcxLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZjYxMDsiIGhvcml6LWFkdi14PSIyMDQ4IiBkPSJNMjA0OCAxOTIwdi0xNzkycTAgLTUyIC0zOCAtOTB0LTkwIC0zOGgtNTEydjc5NmgyNTZsNDMgMjk1aC0yOTl2MjMycTAgNjQgMzIuNSA5OHQ5NS41IDM0aDE5MnYyNjZxLTg2IDE0IC0yMTAgMTRxLTIwNiAwIC0zMTQuNSAtMTA0LjV0LTEwOC41IC0yODQuNXYtMjU1aC0yNTZ2LTI5NWgyNTZ2LTc5NmgtOTY3cS01MiAwIC05MCAzOHQtMzggOTB2MTc5MnEwIDUyIDM4IDkwdDkwIDM4aDE3OTJxNTIgMCA5MCAtMzh0MzggLTkweiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGY2MTE7IiBob3Jpei1hZHYteD0iMjA0OCIgZD0iTTIwNDggMTY4MXEtODQgLTEyNyAtMjA5IC0yMTh2LTU1cTAgLTE0MCAtMzUuNSAtMjgxLjV0LTEwMiAtMjc1dC0xNzAuNSAtMjQ5LjV0LTIzMyAtMjAyLjV0LTI5Ny41IC0xMzYuNXQtMzU1LjUgLTUwcS0zNzkgMCAtNjQ1IDE3MXE0NiAtNyAxMDAgLTdxMTQwIDAgMjc0IDU0dDI0NyAxNDVxLTEzNSAxIC0yNDMuNSA4My41dC0xNDcuNSAyMDguNXE0MiAtOCA3OCAtOHE1OCAwIDExMiAxNXEtMTQ1IDI5IC0yNDEgMTQ0LjV0LTk2IDI2Ny41djUKcTkwIC00OSAxOTAgLTUycS04NyA1OCAtMTM3LjUgMTUwdC01MC41IDE5OHEwIDEwMyA1NyAyMDRxMTU4IC0xOTIgMzgyIC0zMDQuNXQ0ODMgLTEyNi41cS05IDM5IC05IDk3cTAgMTc0IDEyMi41IDI5Ni41dDI5Ni41IDEyMi41cTE3OSAwIDMwOSAtMTMycTE0MyAyOSAyNjUgMTAycS00OCAtMTUyIC0xODUgLTIzM3ExMjUgMTQgMjQyIDY3eiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGY2MTI7IiBob3Jpei1hZHYteD0iMjA0OCIgZD0iTTQzIDEzMjNoNDI2di0xMzIzaC00MjZ2MTMyM3pNMTE1MiAwdjc2OHEwIDEyMyA2Ny41IDE4OS41dDE2OS41IDY2LjVxMTAzIDAgMTY3LjUgLTczLjV0NjQuNSAtMjI1LjV2LTcyNWg0Mjd2NzY4cTAgMjgyIC0xNDEgNDM5LjV0LTM3MSAxNTcuNXEtMTIyIDAgLTIxOSAtNjF0LTE2NSAtMTY0bC0xNCAxODNoLTQyMGw3IC0yOTl2LTEwMjRoNDI3ek0yNTQgMTUzNmgtM3EtMTExIDAgLTE4MSA2Ny41dC03MCAxNjcuNQpxMCAxMDEgNzEuNSAxNjcuNXQxODYuNSA2Ni41cTExMyAwIDE4Mi41IC02Ni41dDcxLjUgLTE2Ny41cTAgLTEwMSAtNzEgLTE2OHQtMTg3IC02N3oiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hmNjEzOyIgaG9yaXotYWR2LXg9IjIwNDgiIGQ9Ik0yMDQ4IDE1Nzl2LTg2aC0zNDF2LTM0MWgtODZ2MzQxaC0zNDF2ODZoMzQxdjM0MWg4NnYtMzQxaDM0MXpNODg5IDg4MnExMDQgLTc2IDE0NS41IC0xNTR0NDEuNSAtMTk1cTAgLTc0IC0zNS41IC0xNDIuNXQtMTAwIC0xMjN0LTE2Ni41IC04Ny41dC0yMjYgLTMzcS0xNDkgMCAtMjczIDM3LjV0LTE5OS41IDExMC41dC03NS41IDE2N3EwIDE1MSAxNTQuNSAyNjl0MzcxLjUgMTE4aDkzcS03MSA2OSAtNzEgMTQ3cTAgNTUgMjYgMTAxCnEtMTcgLTIgLTUwIC0ycS0xODAgMCAtMjk0IDExMnQtMTE0IDI3N3EwIDEwMyA2NiAxOTQuNXQxNzQgMTQ1dDIyNyA1My41aDUzNmwtMTIxIC04N2gtMTcxcTgyIC0zMSAxMjcuNSAtMTE2LjV0NDUuNSAtMTkyLjVxMCAtMTYzIC0xNTEgLTI3OXEtNjMgLTUxIC04Mi41IC04MC41dC0xOS41IC03My41cTAgLTM0IDQ3LjUgLTg0LjV0OTQuNSAtODEuNXpNNjAyIDExNTBxMTAzIC00IDE2My41IDkwdDQyLjUgMjMwcS0xNyAxMzYgLTEwMyAyMzIKdC0xOTEgOTlxLTEwMyA0IC0xNjMuNSAtODh0LTQyLjUgLTIyN3ExOCAtMTM2IDEwNC41IC0yMzQuNXQxODkuNSAtMTAxLjV6TTU0OCAyMzJxMjA0IDAgMjk2IDc2LjV0OTIgMjAzLjVxMCAxNyAtNCA1NXEtNiAyMSAtMTguNSA0MS41dC0yMiAzMy41dC0zNi41IDM0LjV0LTM3LjUgMjkuNXQtNTAgMzUuNXQtNTEuNSAzNS41cS01OCAxNyAtMTMzIDIycS0xMDIgMCAtMTkxLjUgLTM3LjV0LTE0My41IC0xMDIuNXQtNTQgLTE0MApxMCAtMTE5IDEwMC41IC0yMDN0MjUzLjUgLTg0eiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGY2MTQ7IiBob3Jpei1hZHYteD0iMjA0OCIgZD0iTTE5ODMgNTYzcTMxIDAgNDggLTIwLjV0MTcgLTU1LjVxMCAtNDAgLTEzIC04Ni41dC00Mi41IC05NS41dC03MC41IC04OHQtMTAzLjUgLTY0dC0xMzQuNSAtMjVxLTE0NyAwIC0yNTYgOTYuNXQtMTkxIDI3OC41cS0yNjQgLTM3NSAtNTkxIC0zNzVxLTYzIDAgLTEyNC41IDEyLjV0LTEyNi41IDQyLjV0LTEyMiA3NnQtMTA3LjUgMTE3LjV0LTg3IDE2MS41dC01Ny41IDIxNHQtMjEgMjY5cTAgMTU5IDI1IDI5Mi41dDcwIDIzMC41CnQxMDUgMTcwLjV0MTM0IDExNy41dDE1Mi41IDY2dDE2NC41IDIycTgzIDAgMTU4IC0yNnQxMzUgLTczLjV0MTEwLjUgLTEwNS41dDkxLjUgLTEzMXQ3MSAtMTM5LjV0NTYgLTE0MS41cTkwIDI0MyAxNzYgNTQ3cTEzIDM5IDMzIDU0LjV0NTUgMTUuNWgxOTRxMzQgMCA1My41IC0xNXQxMS41IC00NHEtMTg5IC02NTcgLTM3OCAtMTA0NXE2OSAtMTk3IDEzMy41IC0yODAuNXQxMzIuNSAtODMuNXE2MyAwIDgyIDUzcTI0IDU4IDg4IDU4aDEyOXoKTTYzNCA0NjJxMTIzIDAgMjM4LjUgMTA3LjV0MjI5LjUgMzMxLjVxLTkyIDM1MCAtMTk5IDUxNy41dC0yNjMgMTY3LjVxLTU4IDAgLTEwOC41IC0xNS41dC0xMDAgLTU0LjV0LTg0IC0xMDB0LTU2IC0xNTl0LTIxLjUgLTIyNHEwIC0xNDEgMjQuNSAtMjQ4dDYxIC0xNjd0ODcuNSAtOTYuNXQ5NiAtNDh0OTUgLTExLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZjYxNTsiIGhvcml6LWFkdi14PSIyMDQ4IiBkPSJNMTQ0NyAwcS02OCAwIC0xNDAgMjcuNXQtMTEwIDUydC0xMjIgODUuNXEtMTggMTMgLTI3IDE5cS03MyA1NSAtMTIzIDg4dC0xMjggNzJ0LTE2Ny41IDU4dC0xOTEuNSAxOXEtNzYgMCAtMTY2IC0xOHEtMzEgMTA2IDMgMjA5dDE1NCAyMjZxMTU1IDE2MyAzNzAgNDA5dDM1MSA0MTFxLTE3NSAtMjcgLTMyNiAtMjdxLTUyIDAgLTk2LjUgNnQtODkuNSAyMC41dC03MSA0NC41dC0yNiA3M3EwIDU0IDMyLjUgMTIydDY0LjUgMTA5bDMzIDQyCnExMjkgLTkwIDQ4OSAtOTBxMjcwIDAgNTE1IDUwcTkgLTI3IDkgLTgxcTAgLTY2IC0zOC41IC0xMjZ0LTE0NS41IC0xNzlxLTEzNiAtMTU0IC00MzAgLTQ3MnQtNDA3IC00NTZxNzcgLTkgMTQzIC0yNnQxMjUuNSAtNDQuNXQ5NCAtNDd0OTMuNSAtNTYuNXE2MSAtNDEgOTQgLTYwLjV0OTAgLTQ2LjV0MTE4IC0zOC41dDEzMyAtMTEuNXE2NiAwIDExNSAxOHQxMDkgNzJxMjUgLTEwMSA1IC0xODQuNXQtNzAgLTE0M3QtMTIwIC05Mi41dC0xNDYgLTMzCnoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hmNjE2OyIgaG9yaXotYWR2LXg9IjIwNDgiIGQ9Ik0yMDkxIDEwODhxMCAtNTkgLTI3LjUgLTExMHQtNzQuNSAtODRxMTYgLTYwIDE2IC0xMjZxMCAtMTExIC00OS41IC0yMTUuNXQtMTQwIC0xODguNXQtMjExLjUgLTE0N3QtMjcwLjUgLTk3LjV0LTMwOS41IC0zNC41dC0zMDkuNSAzNC41dC0yNzAuNSA5Ny41dC0yMTEuNSAxNDd0LTE0MCAxODguNXQtNDkuNSAyMTUuNXEwIDY2IDE2IDEyNnEtNDcgMzMgLTc0LjUgODR0LTI3LjUgMTEwcTAgOTggNjguNSAxNjYuNXQxNjYuNSA2OC41CnE5MCAwIDE1NiAtNjBxMTMzIDg3IDMwNCAxMzYuNXQzNjAgNTEuNWwxMzMgNDAwcTYgMTkgMjMgMjl0MzcgNmwzNTIgLTcxcTI0IDQ4IDcwIDc2LjV0MTAxIDI4LjVxODAgMCAxMzYgLTU2dDU2IC0xMzZ0LTU2IC0xMzZ0LTEzNiAtNTZxLTc2IDAgLTEzMSA1MS41dC02MCAxMjUuNWwtMzA3IDYybC0xMDkgLTMyOHEzMzUgLTIzIDU3OSAtMTg0cTY2IDYwIDE1NiA2MHE5OCAwIDE2Ni41IC02OC41dDY4LjUgLTE2Ni41ek01NTUgOTE3CnEwIC02MSA0My41IC0xMDV0MTA1LjUgLTQ0dDEwNS41IDQ0dDQzLjUgMTA1cTAgNjIgLTQzLjUgMTA2dC0xMDUuNSA0NHQtMTA1LjUgLTQ0dC00My41IC0xMDZ6TTEzNzggNDUzcTE1IDEzIDE3LjUgMzJ0LTkuNSAzNXEtMTIgMTUgLTMxLjUgMTcuNXQtMzUuNSAtOS41cS0xMjQgLTk3IC0yOTUgLTk3dC0yOTUgOTdxLTE2IDEyIC0zNS41IDkuNXQtMzEuNSAtMTcuNXEtMTIgLTE2IC05LjUgLTM1dDE3LjUgLTMycTE0OCAtMTE2IDM1NCAtMTE2CnQzNTQgMTE2ek0xMzQ0IDc2OHE2MiAwIDEwNS41IDQ0dDQzLjUgMTA1cTAgNjIgLTQzLjUgMTA2dC0xMDUuNSA0NHQtMTA1LjUgLTQ0dC00My41IC0xMDZxMCAtNjEgNDMuNSAtMTA1dDEwNS41IC00NHoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hmNjE3OyIgaG9yaXotYWR2LXg9IjIwNDgiIGQ9Ik0xNzcxIDE0NzJxMTE1IDAgMTk2IC04MXQ4MSAtMTk2cTAgLTExMSAtNzYgLTE5MXQtMTg1IC04NmwtMjcyIC0xOTVxLTIgLTg4IC02NCAtMTQ5LjV0LTE1MCAtNjEuNXEtNzQgMCAtMTMyIDQ2LjV0LTc1IDExNi41bC03NzUgMzM0cS01MSAtMjggLTEwNiAtMjhxLTg4IDAgLTE1MC41IDYyLjV0LTYyLjUgMTUxLjV0NjIgMTUxdDE1MSA2MnE3NSAwIDEzMyAtNDZ0NzUgLTExN2w3NzQgLTMzNHE1MyAyOCAxMDYgMjhoMWwxOTEgMjU2CnExIDExNSA4MiAxOTZ0MTk2IDgxek0zNDcgMTI2NXE3IDUgOCAxNHQtNCAxNnEtNTEgNzAgLTEzOCA3MHEtNzEgMCAtMTIwLjUgLTQ5LjV0LTQ5LjUgLTEyMC41dDUwIC0xMjF0MTIwIC01MHExMCAwIDI0IDJxOSAxIDE0LjUgOHQzLjUgMTZxLTEgOCAtOCAxMy41dC0xNiA0LjVxLTYgLTEgLTE4IC0xcS01MyAwIC05MC41IDM3LjV0LTM3LjUgOTAuNXQzNy41IDkwLjV0OTAuNSAzNy41cTY1IDAgMTA0IC01M3ExMyAtMTcgMzAgLTV6TTEzMDEgNTU1CnE3MSAwIDEyMSA0OS41dDUwIDEyMC41dC01MCAxMjF0LTEyMSA1MHEtOCAwIC0yNCAtMnEtOCAtMSAtMTMuNSAtOHQtNC41IC0xNnEyIC04IDkgLTEzLjV0MTUgLTQuNXE2IDEgMTggMXE1MyAwIDkwLjUgLTM3LjV0MzcuNSAtOTAuNXQtMzcuNSAtOTAuNXQtOTAuNSAtMzcuNXEtNjQgMCAtMTAzIDUzcS0xMyAxNyAtMzAgNXEtMTYgLTEzIC01IC0zMHE1MSAtNzAgMTM4IC03MHpNMTc3MSAxMDAzcTc5IDAgMTM1LjUgNTYuNXQ1Ni41IDEzNS41CnQtNTYuNSAxMzUuNXQtMTM1LjUgNTYuNXQtMTM1LjUgLTU2LjV0LTU2LjUgLTEzNS41dDU2LjUgLTEzNS41dDEzNS41IC01Ni41ek0xOTIwIDExOTVxMCA2MSAtNDQgMTA1dC0xMDUgNDRxLTYyIDAgLTEwNiAtNDMuNXQtNDQgLTEwNS41dDQ0IC0xMDZ0MTA2IC00NHQxMDUuNSA0NHQ0My41IDEwNnoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hmNjIwOyIgaG9yaXotYWR2LXg9IjIwNDgiIGQ9Ik0xNjY0IDExMXEtNyAtNSAtMjAuNSAtMTJ0LTU5IC0yNi41dC05NiAtMzR0LTEzMC41IC0yNi41dC0xNjMgLTEycS0yODUgMCAtNDIwIDEyN3QtMTM1IDM4NXY2NDBoLTI5OXYyOTlxODIgMjcgMTQzLjUgNTh0MTE5LjUgNzguNXQ5Ny41IDEwOXQ2OCAxNTB0NDEuNSAyMDEuNWgyOTh2LTUxMmg0NzB2LTM4NGgtNDcwdi01MTJxMCAtODUgMTAgLTEzNy41dDM4IC05MXQ3OCAtNTQuNXQxMzAgLTE2cTU3IDAgMTMxLjUgMjEuNXQxMjEuNSA0My41Cmw0NiAyMXYtMzE2eiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGY2MjE7IiBob3Jpei1hZHYteD0iMjA0OCIgZD0iTTEwMjQgMjA0OHEyMDkgMCAzOTguNSAtODF0MzI2LjUgLTIxOHQyMTggLTMyNi41dDgxIC0zOTguNXQtODEgLTM5OC41dC0yMTggLTMyNi41dC0zMjYuNSAtMjE4dC0zOTguNSAtODF0LTM5OC41IDgxdC0zMjYuNSAyMTh0LTIxOCAzMjYuNXQtODEgMzk4LjV0ODEgMzk4LjV0MjE4IDMyNi41dDMyNi41IDIxOHQzOTguNSA4MXpNMTAyNCAxMjhxMTgyIDAgMzQ4IDcxdDI4NiAxOTF0MTkxIDI4NnQ3MSAzNDh0LTcxIDM0OHQtMTkxIDI4Ngp0LTI4NiAxOTF0LTM0OCA3MXQtMzQ4IC03MXQtMjg2IC0xOTF0LTE5MSAtMjg2dC03MSAtMzQ4dDcxIC0zNDh0MTkxIC0yODZ0Mjg2IC0xOTF0MzQ4IC03MXpNMzIwIDEzMzJxLTY0IC0xNTIgLTY0IC0zMDhxMCAtMjI0IDExNy41IC00MDl0MzExLjUgLTI4MXpNMTI3NSAyOTlsLTI0MiA2NTlsLTIyNyAtNjcxcTExMyAtMzEgMjE4IC0zMXExMzUgMCAyNTEgNDN6TTE0NzQgMTI3NXEtMyA1IC0xMi41IDIwLjV0LTEyLjUgMjF0LTEwLjUgMTkKdC0xMC41IDIwdC04LjUgMTguNXQtOCAyMC41dC01LjUgMTl0LTQgMjF0LTEgMjAuNXEwIDU2IDM2LjUgOTd0OTEuNSA0MWg5cS0xMDQgOTQgLTIzNiAxNDYuNXQtMjc4IDUyLjVxLTE5OCAwIC0zNjggLTkzLjV0LTI3NCAtMjUyLjVoNDdxMzUgMCA4NiAydDg1IDRsMzMgM3ExOSAxIDI4IC0xNHQyLjUgLTMxLjV0LTI1LjUgLTE4LjVxLTQzIC00IC04OCAtN2wyODAgLTgzMmwxNjggNTA1bC0xMjEgMzI3bC04MSA3cS0xOSAxIC0yNS41IDE4CnQyLjUgMzJ0MjggMTRxMTI4IC05IDIwNCAtOXEzNiAwIDg3IDJ0ODQgNGwzMyAzcTIwIDEgMjkuNSAtMTR0Mi41IC0zMS41dC0yNyAtMTguNXEtNDEgLTQgLTg4IC03bDI3NyAtODI1bDc2IDI1NnEzIDEwIDEyIDM4dDExLjUgMzcuNXQ5LjUgMzIuNXQ5LjUgMzN0Ni41IDI4dDUuNSAyOXQzIDI1dDEuNSAyNnEwIDEwOCAtNjQgMjExek0xNzkyIDEwMjRxMCAyMDAgLTk1IDM2N3E1IC0yMyA1IC03OHEwIC0xMzEgLTU3IC0yNzVsLTIzNSAtNjc4CnExNzQgMTAyIDI3OCAyNzguNXQxMDQgMzg1LjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZjYyMjsiIGhvcml6LWFkdi14PSIyMDQ4IiBkPSJNMTkyMCAxMjgwcTUzIDAgOTAuNSAtMzcuNXQzNy41IC05MC41di01MTJxMCAtMTMwIC01MSAtMjQ4LjV0LTEzNi41IC0yMDR0LTIwNCAtMTM2LjV0LTI0OC41IC01MWgtNzY4cS0xMzAgMCAtMjQ4LjUgNTF0LTIwNCAxMzYuNXQtMTM2LjUgMjA0dC01MSAyNDguNXY3NjhxMCAxMzAgNTEgMjQ4LjV0MTM2LjUgMjA0dDIwNCAxMzYuNXQyNDguNSA1MWgzODRxMTMwIDAgMjQ4LjUgLTUxdDIwNCAtMTM2LjV0MTM2LjUgLTIwNHQ1MSAtMjQ4LjUKcTAgLTUzIDMxIC05MC41dDc2IC0zNy41aDE0OXpNNjQwIDE1MzZxLTUzIDAgLTkwLjUgLTM3LjV0LTM3LjUgLTkwLjV0MzcuNSAtOTAuNXQ5MC41IC0zNy41aDM4NHE1MyAwIDkwLjUgMzcuNXQzNy41IDkwLjV0LTM3LjUgOTAuNXQtOTAuNSAzNy41aC0zODR6TTE0MDggNTEycTUzIDAgOTAuNSAzNy41dDM3LjUgOTAuNXQtMzcuNSA5MC41dC05MC41IDM3LjVoLTc2OHEtNTMgMCAtOTAuNSAtMzcuNXQtMzcuNSAtOTAuNXQzNy41IC05MC41CnQ5MC41IC0zNy41aDc2OHoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hmNjIzOyIgaG9yaXotYWR2LXg9IjIwNDgiIGQ9Ik0xMTA5IDIwNDhxMTg5IDAgMzM1IC05MnQyMjUuNSAtMjU3dDc5LjUgLTM3NnEwIC0yMjIgLTgwIC0zOTZ0LTIzMS41IC0yNzN0LTM1MS41IC05OXEtMTQzIDAgLTI1MSA2NC41dC0xNzYgMTY5LjVoLTE5di03ODloLTI1NnYxNjY0bC0xNCAzNDFoMjI3bDQxIC0yMzdoMTZxNzMgMTI0IDE5MC41IDIwMnQyNjQuNSA3OHpNMTA0NSA3NDRxOTAgMCAxNjkuNSAzN3QxNDIuNSAxMDcuNXQ5OS41IDE4M3QzNi41IDI1MS41CnEwIDEyNCAtMzYuNSAyMjd0LTk4LjUgMTY5dC0xNDEgMTAyLjV0LTE2NSAzNi41cS03MSAwIC0xNDMuNSAtMzEuNXQtMTMyLjUgLTg3dC05OCAtMTQzdC0zOCAtMTg4LjV2LTI1NnEwIC05MiAzNiAtMTcxdDk0LjUgLTEyOS41dDEzMCAtNzl0MTQ0LjUgLTI4LjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZjYyNDsiIGhvcml6LWFkdi14PSIyMDQ4IiBkPSJNMTcxMCAxODNoMTlsMjYgLTE3MXEtNjcgLTI4IC0xNDkgLTI4cS0xMTcgMCAtMjE5LjUgNjZ0LTE1OC41IDE4MnEtMTE4IC0yNyAtMjMzIC0yN3EtMTk5IDAgLTM2MCA2Mi41dC0yNzMuNSAxODAuNXQtMTczIDI5Mi41dC02MC41IDM5My41cTAgMTk3IDcwIDM2Ny41dDE5MiAyOTB0MjkzLjUgMTg4dDM2Ny41IDY4LjVxNDAzIDAgNjM2IC0yMzl0MjMzIC02NzVxMCAtMjU4IC0xMTUuNSAtNDY3dC0zMTcuNSAtMzMwcTQ3IC04MiAxMDAgLTExOAp0MTIzIC0zNnpNMTAzNyA3NzJxOTIgMCAxNzYgLTQ2dDE0NCAtMTI4cTEzNiAxODEgMTM2IDUzNnEwIDM0MiAtMTI0IDUxM3QtMzQ2IDE3MXEtMjE5IDAgLTM0My41IC0xNzguNXQtMTI0LjUgLTUwNS41cTAgLTE1NCAyMSAtMjczdDYwIC0xOTl0OTcuNSAtMTMxdDEyOS41IC03My41dDE2MCAtMjIuNXE2MiAwIDExNiAxNXEtMzggNzMgLTgxLjUgMTA1dC0xMDQuNSAzMnEtNCAwIC0xNC41IC0xLjV0LTE2LjUgLTEuNWwtMjggMTU3CnE3MyAzMSAxNDMgMzF6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZjYzMDsiIGhvcml6LWFkdi14PSIyMDQ4IiBkPSJNMTAyNCAxNzQ5cTQ2NCAwIDYxMCAtMTNxMjExIC0xOCAyOTYgLTg1cTc5IC02MiAxMDIgLTIwNXExNiAtMTAyIDE2IC0zOTJ2LTMwcTAgLTMwMSAtMTMgLTQwMXEtMjEgLTE1MiAtOTUgLTIxN3EtNzkgLTcxIC0yNzggLTkxcS0xNDggLTE2IC01OTYgLTE2aC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC0xaC05CnEtNDY0IDAgLTYxMCAxM3EtMjExIDE4IC0yOTYgODVxLTc5IDYyIC0xMDIgMjA1cS0xNiAxMDIgLTE2IDM5MnYzMHEwIDMwMSAxMyA0MDFxMjEgMTUyIDk1IDIxN3E3OSA3MSAyNzggOTFxMTQ4IDE2IDU5NiAxNmgxaDFoMWgxaDFoMWgxaDFoMWgxaDFoMWgxaDFoMWgxaDFoMWgxaDFoMWgxaDFoMWgxaDFoMWgxaDFoMWgxaDFoMWg5ek03NjggNjQwbDY0MCAzODRsLTY0MCAzODR2LTc2OHoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hmNjMxOyIgaG9yaXotYWR2LXg9IjIwNDgiIGQ9Ik0xMTk1IDE0NTFxMjQgOTggNzQgMTc5LjV0MTA5IDEzMy41dDEyNyA4OC41dDEyOSA1MnQxMTUgMTUuNXExMzAgMCAyMTQuNSAtOTUuNXQ4NC41IC0yNTAuNXEwIC0xMzIgLTYxLjUgLTI5Ny41dC0xNTkgLTMyMi41dC0yMTkuNSAtMzA5dC0yNDIgLTI2NXQtMjI4LjUgLTE4Mi41dC0xNzUuNSAtNjkuNXEtNDkgMCAtOTMgMTUuNXQtNzYgMzh0LTYxLjUgNTguNXQtNDggNjYuNXQtMzcuNSA3NHQtMjggNjl0LTIxIDYyLjVsLTI1NiA4MTEKcS0xOCA1NSAtNDMuNSA3NXQtNzcgNHQtMTM1LjUgLTc5bC04NSAxMDRxOCAxMCAyMi41IDI4dDU5LjUgNjl0OTAgOTcuNXQxMDguNSAxMDMuNXQxMjEgOTh0MTIyIDY5dDExNi41IDI4cTQ3IDAgODUgLTE3LjV0NjQuNSAtNDV0NDguNSAtNzF0MzUgLTg0dDI0IC05Ny41dDE2LjUgLTk4dDEzIC05OHQxMi41IC04NnExNSAtOTUgMzEuNSAtMTgwdDQwLjUgLTE3NnQ1My41IC0xNDV0NTkuNSAtNTRxNDEgMCAxMjAgMTAydDE0MyAyMzd0NjQgMjE2CnEwIDY2IC0yOC41IDEwOXQtODUuNSA1MnQtMTQyIC0zM3oiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hmNjMyOyIgaG9yaXotYWR2LXg9IjIwNDgiIGQ9Ik01MTIgMzQxdjEzNjZoLTI1NnYzNDFoODk2di0zNDFoLTI1NnYtMTM2Nmg1NTV2Mzg0aDQwM3YtNzI1aC0xNTk4djM0MWgyNTZ6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZjYzMzsiIGhvcml6LWFkdi14PSIyMDQ4IiBkPSJNMTkwMyA5ODZ2LTI0NnEtMTAzIC0zIC0xOTkgMTRxLTIwMyAtNDM5IC01ODggLTcyNnEtNDAgLTMzIC04NSAtMzNxLTM1IDAgLTgxIDI5cS0zNzIgMjU4IC01ODQgNzExLjV0LTIxMiAxMDEzLjVoMjk0cTAgLTQ1MyAxNTEuNSAtODI1dDQyNi41IC01OTdxMjU1IDIyMCA0MDIgNTI4cS0xMjkgNzcgLTIyMSAxOTguNXQtMTM2LjUgMjYzLjV0LTQ0LjUgMjk1cTAgODggMjkuNSAxNjYuNXQ4My41IDEzOC41dDEzNy41IDk1LjV0MTg1LjUgMzUuNQp0MTg2LjUgLTM2LjV0MTM5LjUgLTk4dDg1IC0xMzkuNXQzMCAtMTYycTAgLTQyIC0xLjUgLTgydC02LjUgLTg5LjV0LTcuNSAtNzR0LTExIC04OS41dC0xMC41IC04MmgtMjk0cTIgMTggMTEgODcuNXQxMy41IDEwNi41dDkgOTh0NC41IDExMXEwIDE2MSAtMTQ4IDE2MXEtMTQyIDAgLTE0MiAtMTYxcTAgLTEyMyA0MC41IC0yMzMuNXQxMTMuNSAtMTk1dDE4NC41IC0xMzR0MjQ0LjUgLTQ5LjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZjY0MDsiIGhvcml6LWFkdi14PSIyMDQ4IiBkPSJNOTM5IDEwMjRxMCAtMTI3IC02MyAtMjM1dC0xNzEuNSAtMTcxdC0yMzUuNSAtNjN0LTIzNSA2M3QtMTcxIDE3MXQtNjMgMjM1dDYzIDIzNXQxNzEgMTcxdDIzNSA2M3QyMzUuNSAtNjN0MTcxLjUgLTE3MXQ2MyAtMjM1ek0yMDQ4IDEwMjRxMCAtMTI3IC02MyAtMjM1dC0xNzEgLTE3MXQtMjM1IC02M3QtMjM1LjUgNjN0LTE3MS41IDE3MXQtNjMgMjM1dDYzIDIzNXQxNzEuNSAxNzF0MjM1LjUgNjN0MjM1IC02M3QxNzEgLTE3MXQ2MyAtMjM1egoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hmNjQxOyIgaG9yaXotYWR2LXg9IjIwNDgiIGQ9Ik0xNzQ5IDIwNDhxMTI0IDAgMjExLjUgLTg3LjV0ODcuNSAtMjExLjV2LTE0NTBxMCAtMTI0IC04Ny41IC0yMTEuNXQtMjExLjUgLTg3LjVoLTE0NTBxLTEyNCAwIC0yMTEuNSA4Ny41dC04Ny41IDIxMS41djE0NTBxMCAxMjQgODcuNSAyMTEuNXQyMTEuNSA4Ny41aDE0NTB6TTEwMjQgMTQwOHEtMTU5IDAgLTI3MS41IC0xMTIuNXQtMTEyLjUgLTI3MS41dDExMi41IC0yNzEuNXQyNzEuNSAtMTEyLjV0MjcxLjUgMTEyLjV0MTEyLjUgMjcxLjUKdC0xMTIuNSAyNzEuNXQtMjcxLjUgMTEyLjV6TTE4MzUgMjU2djg5NmgtMjI3cTEzIC01OSAxMyAtMTI4cTAgLTE2MiAtODAgLTI5OS41dC0yMTcuNSAtMjE3LjV0LTI5OS41IC04MHQtMjk5LjUgODB0LTIxNy41IDIxNy41dC04MCAyOTkuNXEwIDY5IDEzIDEyOGgtMjI3di04OTZxMCAtMTggMTIuNSAtMzAuNXQzMC41IC0xMi41aDE1MzZxMTggMCAzMC41IDEyLjV0MTIuNSAzMC41ek0xODM1IDE1MzZ2MjU2cTAgMTggLTEyLjUgMzAuNQp0LTMwLjUgMTIuNWgtMjU2cS0xOCAwIC0zMC41IC0xMi41dC0xMi41IC0zMC41di0yNTZxMCAtMTggMTIuNSAtMzAuNXQzMC41IC0xMi41aDI1NnExOCAwIDMwLjUgMTIuNXQxMi41IDMwLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZjY0MjsiIGhvcml6LWFkdi14PSIyMDQ4IiBkPSJNMTU3MSA3OTBxMTAwIDAgMTU3LjUgNjZ0NTcuNSAxNjdxMCAxMDAgLTYxLjUgMTY4LjV0LTE2Mi41IDY4LjVxLTUyIDAgLTEwMy41IC0yMS41dC0xMDUuNSAtNjYuNXQtODEuNSAtNzIuNXQtNzcuNSAtODEuNXE4NSAtMTAxIDE3Ni41IC0xNjQuNXQyMDAuNSAtNjMuNXpNNDkwIDUwOHEtMjE5IDAgLTM1NC41IDE0NnQtMTM1LjUgMzcxcTAgMTQzIDU1LjUgMjU5dDE2NS41IDE4NnQyNTYgNzBxNzIgMCAxMzkgLTE5dDExOCAtNDcKdDEwNi41IC03NnQ5NCAtODkuNXQ5MC41IC0xMDMuNXE0OCA1OCA4Ny41IDEwMC41dDk0IDg5LjV0MTA2LjUgNzYuNXQxMTguNSA0OXQxMzUuNSAxOS41cTIyMiAwIDM1MS41IC0xNDR0MTI5LjUgLTM2NnEwIC0xNDMgLTU4LjUgLTI2MXQtMTcwIC0xODkuNXQtMjU1LjUgLTcxLjVxLTgxIDAgLTE1OCAyNS41dC0xNDUgNzIuNXQtMTIzIDk5dC0xMTMgMTIwcS0xMjEgLTEyNyAtMTY5IC0xNjhxLTE0NiAtMTI3IC0zMDIgLTE0NQpxLTMxIC00IC02NCAtNHpNNDg2IDc5MHE5MiAwIDE5MS41IDY3LjV0MTc4LjUgMTYwLjVxLTQyIDQ2IC03OS41IDgxdC04OSA3NS41dC0xMDYgNjN0LTEwNC41IDIyLjVxLTkzIDAgLTE1MyAtNzJ0LTYwIC0xNjlxMCAtMTAyIDYwIC0xNjUuNXQxNjIgLTYzLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZjY1MDsiIGhvcml6LWFkdi14PSIyMDQ4IiBkPSJNMTA3MSAyMDQ4cTE2NCAwIDMwNS41IC01NnQyMzYuNSAtMTQ5LjV0MTQ5IC0yMTUuNXQ1NCAtMjUycTAgLTIyOSAtNzkgLTQxMi41dC0yMjQgLTI4OC41dC0zMzAgLTEwNXEtOTQgMCAtMTc1LjUgNDJ0LTExMy41IDEwMnEtNjcgLTI3MCAtODMgLTMyMnEtMjIgLTgzIC03NS41IC0xNzl0LTg1LjUgLTE0MHQtNTAgLTY1cS04IC05IC0xNy41IC02LjV0LTExLjUgMTEuNXEwIDEgLTMuNSAyOHQtNi41IDU2LjV0LTUgNzd0LTEuNSA5MS41CnQ1LjUgOTd0MTYgOThsMTQ5IDY0MHEtMzUgNzYgLTM1IDE4N3EwIDEzMSA2NSAyMTcuNXQxNjAgODYuNXE3NyAwIDExOCAtNDkuNXQ0MSAtMTI2LjVxMCAtNDcgLTE3LjUgLTExNXQtNDYgLTE1OC41dC00MS41IC0xNDMuNXEtMjEgLTkzIDM2LjUgLTE2MC41dDE1MS41IC02Ny41cTEwOSAwIDE5NC41IDg2dDEzMS41IDIyOHQ0NiAzMTJxMCAyMDAgLTEyOSAzMjUuNXQtMzU5IDEyNS41cS0xMzAgMCAtMjQxIC00NnQtMTg0LjUgLTEyNAp0LTExNC41IC0xNzkuNXQtNDEgLTIxMi41cTAgLTEzOCA3OCAtMjMzcTE2IC0yMCAxOSAtMzF0LTIgLTMzcS0zIC0xNiAtMjQgLTk0cS01IC0yMyAtMjEgLTMxdC0zOCAwcS0xMTggNTAgLTE3OSAxNzF0LTYxIDI3OXEwIDEwMiAzMyAyMDQuNXQxMDIgMTk4LjV0MTY2IDE2OS41dDIzNi41IDExOHQzMDEuNSA0NC41eiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGY2NTE7IiBob3Jpei1hZHYteD0iMjA0OCIgZD0iTTIzMDQgMTY2NHYtODVoLTg1cS02NCAwIC0xMTUuNSAtNTEuNXQtOTUuNSAtMTU5LjVxLTM3NyAtOTU4IC0zODcgLTk4NGgtODVsLTQxNyAxMTI0cS0xNiA0MiAtNDQuNSA1Ni41dC05My41IDE0LjVoLTg1djg1aDY4M3YtODVoLTIxNGwzMDggLTg0OWwyNjggNjc4cTMwIDc2IDE0LjUgMTIzLjV0LTc4LjUgNDcuNWgtODV2ODVoNTEyek05MzkgNzY4cTAgLTExMCAtNDEuNSAtMjAwLjV0LTEzMC41IC0xNDl0LTIxMiAtNTguNQpxLTEzNSAwIC0yNDMuNSA2MC41dC0xNzQuNSAxNDYuNWwtNTIgLTE4M2gtODV2NTEyaDg1cTM3IC05OSA4MyAtMTc3LjV0OTIuNSAtMTI4LjV0OTcgLTgzLjV0OTYuNSAtNDd0OTEgLTEzLjVxMTE1IDAgMTkwLjUgNjIuNXQ3NS41IDE0My41cTAgODIgLTQyLjUgMTMydC0xNjEuNSA4NmwtMzE1IDk1cS0zMDQgOTUgLTMwNCAzNzlxMCA4NSAyOS41IDE1Mi41dDc5IDEwOC41dDExMiA2MnQxMzIuNSAyMXExMTggMCAyMDUuNSAtNDYuNQp0MTQzLjUgLTExNC41bDM1IDEzN2g4NnYtNDI3aC04NnEtNDAgMTcxIC0xNDcuNSAyNzN0LTIzOC41IDEwMnEtNjEgMCAtMTA4LjUgLTE5LjV0LTc0IC01MXQtMzkuNSAtNjUuNXQtMTMgLTY4cTAgLTExNCAxODAgLTE3MXExODggLTU5IDMzNSAtMTAycTMyMCAtOTEgMzIwIC0zNjd6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZjY1MjsiIGhvcml6LWFkdi14PSIyMDQ4IiBkPSJNMzg0IDE0MDhsNDY5IC0xMjh2MTcxbC00NjkgMTI4di0xNzF6TTM4NCAxMTA5bDQ2OSAtMTI4djE3MWwtNDY5IDEyOHYtMTcxek0zODQgODExbDQ2OSAtMTI4djE3MGwtNDY5IDEyOHYtMTcwek0xNjY0IDE0MDhsLTQ2OSAtMTI4djE3MWw0NjkgMTI4di0xNzF6TTE2NjQgMTEwOWwtNDY5IC0xMjh2MTcxbDQ2OSAxMjh2LTE3MXpNMTY2NCA4MTFsLTQ2OSAtMTI4djE3MGw0NjkgMTI4di0xNzB6TTE4ODcgMTkwMXEzMyAtMjIgMzMgLTY2CnYtMTI4MHEwIC0yOSAtMTggLTUyLjV0LTQ2IC0zMC41bC03MzUgLTE5N3ExNCAtNjIgNDYuNSAtMTA4dDkzLjUgLTk0cTUgLTIgNSAtOXEtNCAtNyAtMTAgLTdsLTEwOSAtMTRsLTkgLTE2MnEwIC01IC03IC05aC0zcS00IDAgLTcgMnEtODAgNzggLTEyMS41IDE3MC41dC01My41IDIyNS41bC03NTQgMjAycS0yOCA3IC00NiAzMC41dC0xOCA1Mi41djEyODBxMCA0NCAzMyA2NnEzNSAyNyA3NCAxN2w2NDAgLTE3M3E4NyAtMjMgMTQ5IC05MwpxNjIgNzAgMTQ5IDkzbDY0MCAxNzNxMzggMTEgNzQgLTE3ek05MzkgNDQ4djk5OHEwIDQyIC0zMiA4MnQtNzUgNTNsLTUzMyAxNDJ2LTExMDJ6TTE3NDkgNjIxdjExMDJsLTUzMyAtMTQycS00MyAtMTMgLTc1IC01M3QtMzIgLTgydi05OTh6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZjY1MzsiIGhvcml6LWFkdi14PSIyMDQ4IiBkPSJNMjA0OCA5MTVsLTYwMiAtMzkxbC00MjIgMzUxbDYwNyAzNzR6TTAgOTE1bDYwMiAtMzkxbDQyMiAzNTFsLTYwNyAzNzR6TTAgMTU4M2w2MDIgMzk0bDQyMiAtMzUzbC02MDcgLTM3NXpNMjA0OCAxNTgzbC02MDIgMzk0bC00MjIgLTM1M2w2MDcgLTM3NXpNMTAyNCA3MWw2MDQgMzYzdjEyM2wtMTg0IC0xMThsLTQyMCAzNDZsLTQxNyAtMzQ2bC0xODUgMTE4di0xMjN6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZjY1NDsiIGhvcml6LWFkdi14PSIyMDQ4IiBkPSJNMjAzNiAxMnEtMTQgLTEyIC0zMSAtMTJxLTE2IDAgLTI3IDEwbC04MzggNjg2bC0zODQgLTM4NXEtMTQgLTEyIC0zMSAtMTJxLTExIDAgLTIyIDZxLTI4IDE4IC0xOCA1MWwxMTEgMzE1bC02MjYgNzMxbC00OSAtNDlxLTE5IC0yMSAtNTAgLTIxcS0yOSAwIC01MCAyMXQtMjEgNTAuNXQyMSA0OS41bDU3NCA1NzRxMjAgMjEgNDkuNSAyMXQ1MC41IC0yMXQyMSAtNTAuNXQtMjEgLTQ5LjVsLTQ5IC00OWw3MzEgLTYyNmwzMTUgMTExCnEzMyAxMCA1MSAtMThxMTcgLTI4IC02IC01M2wtMzg1IC0zODRsNjg2IC04MzhxMTAgLTEzIDkuNSAtMjkuNXQtMTEuNSAtMjguNXoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hmNjU1OyIgaG9yaXotYWR2LXg9IjIwNDgiIGQ9Ik0wIDB2MTAyNGgxMDI0di0xMDI0aC0xMDI0ek0xMDI0IDEwMjR2MTAyNGgxMDI0di0xMDI0aC0xMDI0eiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGY2NjA7IiBob3Jpei1hZHYteD0iMjA0OCIgZD0iTTk5OCAxMzU2cS00MDEgLTExOCAtOTc3IC0xMjhxNDggMjQwIDIwMC41IDQzMS41dDM3My41IDI5My41cTIzMSAtMjgwIDQwMyAtNTk3ek0yNzAgMzI5cS0xMjggMTQwIC0xOTkgMzE4LjV0LTcxIDM3Ni41djQ3cTY0MiAxMiAxMDY5IDE0NXE0NyAtOTMgOTAgLTE5N3EtNTIgLTE0IC03OCAtMjNxLTQ4NyAtMTczIC04MTEgLTY2N3pNMTQyNyA4M3EtMTkwIC04MyAtNDAzIC04M3EtMTc2IDAgLTMzOS41IDU3LjV0LTI5NS41IDE2Mi41CnEzMjYgNTE1IDgyNyA2NTVxMTM4IC0zNjYgMjExIC03OTJ6TTIwMzYgODcwcS0zMiAtMjE2IC0xNTAgLTM5OHQtMjk4IC0zMDFxLTczIDQwMSAtMTk5IDczOXEzMDggNDUgNjQ3IC00MHpNMTE2NiAxNDEzcS0xNzIgMzIyIC0zOTggNjAycTEzMCAzMyAyNTYgMzNxMTk0IDAgMzY5LjUgLTY5dDMxMy41IC0xOTRxLTIwNyAtMjM4IC01NDEgLTM3MnpNMjA0OCAxMDI5cS0zODQgODYgLTcxNiAzMXEtMjggNzIgLTk1IDIxNXEzNTIgMTQxIDU3OSAzOTgKcTExMCAtMTMzIDE3MC41IC0yOTguNXQ2MS41IC0zNDUuNXoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hmNjYxOyIgaG9yaXotYWR2LXg9IjIwNDgiIGQ9Ik04NTMgMTA3MXE4IC0yIDIxLjUgLTd0NDcuNSAtMjcuNXQ1OS41IC01Mi41dDQ3IC04N3QyMS41IC0xMjdxMCAtNzcgLTI0IC0xNDN0LTc2IC0xMjJ0LTE0Ny41IC04OC41dC0yMjYuNSAtMzIuNWgtNTc2djEyODBoNjE5cTE3OSAwIDI4NSAtODYuNXQxMDYgLTI0NS41cTAgLTUwIC0xMi41IC05M3QtMjcgLTY3LjV0LTQwLjUgLTQ3LjV0LTM3LjUgLTMwLjV0LTMyLjUgLTE4LjVxLTUgLTMgLTcgLTR6TTI5NCAxNDQxdi0yODJoMjczCnExODcgMCAxODcgMTQ1cTAgNzkgLTUyLjUgMTA4dC0xNjguNSAyOWgtMjM5ek01NjcgNjA3cTExOCAwIDE2NS41IDQ3LjV0NDcuNSAxMzQuNXEwIDE1OSAtMjA5IDE1OWgtMjc3di0zNDFoMjczek0yMDQ4IDg0NHYtNTdoLTY2OHExIC0xMDcgNjYuNSAtMTY3LjV0MTYwLjUgLTYwLjVxMzkgMCA3Mi41IDExdDUzIDI2LjV0MzMgMzAuNXQxOC41IDI2bDYgMTFoMjQ2cS0zMCAtMTM0IC0xNDkuNSAtMjE2LjV0LTI4Ni41IC04Mi41CnEtMjA4IDAgLTMzNSAxMjUuNXQtMTI3IDM1My41cTAgMTIyIDM0LjUgMjE3dDk2LjUgMTU0LjV0MTQ0IDkwLjV0MTgwIDMxcTIxOSAwIDMzNyAtMTMwdDExOCAtMzYzek0xMzg0IDk0Nmg0MTVxMCA4MyAtNTggMTM4LjV0LTE0OCA1NS41cS05MiAwIC0xNDUuNSAtNTV0LTYzLjUgLTEzOXpNMTg3NyAxNDkzdjEyOGgtNTU0di0xMjhoNTU0eiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGY2NzA7IiBob3Jpei1hZHYteD0iMjA0OCIgZD0iTTE1NzkgMjA0OHYtMjk5aC0xNjlxNDEgLTkzIDQxIC0yMDRxMCAtMTAzIC0zNS41IC0xOTJ0LTk2LjUgLTE1MHQtMTQzLjUgLTk3dC0xNzUuNSAtMzlxLTU0IC04OCAtNDEuNSAtMTQ1dDkzLjUgLTExMXExNDYgLTYgMjY2LjUgLTYwdDE5MC41IC0xNDUuNXQ3MCAtMjAwLjVxMCAtMTE2IC03NSAtMjA5LjV0LTIwMS41IC0xNDQuNXQtMjc4LjUgLTUxdC0yNzkgNTJ0LTIwMS41IDE0NXQtNzQuNSAyMDhxMCAxMTIgNzEgMjAzdDE5MiAxNDMKcS01NCA1MyAtNzYuNSAxMDguNXQtMTUgMTA0LjV0MzMgOTF0NjYuNSA3NnEtMTA2IDYwIC0xNjcgMTY3LjV0LTYxIDI0Ni41cTAgMjEzIDEzNS41IDM0Ny41dDMzMy41IDEzNC41cTE0MSAwIDI1NiAtNzFxNzEgNCAxMzIuNSAxNS41dDk4LjUgMjR0NjMuNSAyNC41dDM2LjUgMjB6TTEwMjQgNTU1cS0xMTUgMCAtMTg1LjUgLTQzdC03MC41IC0xMDd0NzAuNSAtMTA2LjV0MTg1LjUgLTQyLjV0MTg1LjUgNDIuNXQ3MC41IDEwNi41dC03MC41IDEwNwp0LTE4NS41IDQzek05ODEgMTMyM3E3NCAwIDEyMi41IDYzdDQ4LjUgMTcxcTAgMTA5IC00OC41IDE3MnQtMTIyLjUgNjNxLTczIDAgLTEyMS41IC02M3QtNDguNSAtMTcycTAgLTEwOCA0OC41IC0xNzF0MTIxLjUgLTYzeiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGY2NzE7IiBob3Jpei1hZHYteD0iMjA0OCIgZD0iTTE4OTkgMTQxM3ExNDkgLTE4OSAxNDkgLTQyOXEwIC0xNzggLTQ1LjUgLTMxNXQtMTMwIC0yMzAuNXQtMjEyIC0xNTMuNXQtMjgzLjUgLTg3dC0zNTMgLTI3cS0yNDcgMCAtNDMxLjUgNDN0LTMxOS41IDEzNy41dC0yMDQgMjUydC02OSAzNzcuNXEwIDI0NSAxNDkgNDI5cS01MyAyODUgMjIgNDY3cTI0MiAtMTkgNDQ1IC0xODBxMTk1IDUyIDQwOCA1MnEyMTQgMCA0MDUgLTUycTIxMCAxNjEgNDQ4IDE4MHE3NSAtMTgyIDIyIC00NjR6Ck0xMDI0IDI5OXE3NTQgMCA3NTQgNDI2cTAgODUgLTI2LjUgMTUydC02Ni41IDEwNS41dC05MiA2My41dC05NyAzMy41dC04OCA4LjVxLTQ4IDAgLTE0NCAtMTAuNXQtMjQwIC0xMC41dC0yNDAgMTAuNXQtMTQ0IDEwLjVxLTQzIDAgLTg4IC04LjV0LTk3IC0zMy41dC05MiAtNjMuNXQtNjYuNSAtMTA1LjV0LTI2LjUgLTE1MnEwIC00MjYgNzU0IC00MjZ6TTE0NTEgNzA0cTAgMTkyIC0xMDcgMTkydC0xMDcgLTE5MnQxMDcgLTE5MnQxMDcgMTkyegpNODExIDcwNHEwIDE5MiAtMTA3IDE5MnQtMTA3IC0xOTJ0MTA3IC0xOTJ0MTA3IDE5MnoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hmNjcyOyIgaG9yaXotYWR2LXg9IjIwNDgiIGQ9Ik0xOTIwIDc2OGgtMjU2di01MTJoLTEyODB2NTEyaC0yNTZ2LTc2OGgxNzkydjc2OHpNNTEyIDM4NHYyNTZoMTAyNHYtMjU2aC0xMDI0ek01MzEgODYzbDQzIDI1M2wxMDA5IC0xNzdsLTQ1IC0yNTR6TTY3MSAxNDE3bDEwNiAyMzNsOTMwIC00MzJsLTEwOSAtMjMyek0xMDEwIDE5ODJsMTgyIDE4Mmw3MjMgLTcyNWwtMTgwIC0xODB6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZjY4MDsiIGhvcml6LWFkdi14PSIyMDQ4IiBkPSJNNDMgMGw0NDUgMjA0OGgxMDA1cTExNCAwIDIyMiAtNDQuNXQxOTQuNSAtMTM0dDEyMCAtMjIzLjV0LTAuNSAtMzE0cS02NyAtMzE3IC0yOTUuNSAtNTA0LjV0LTU0NS41IC0xODcuNWgtNDEzbC0xMzUgLTY0MGgtNTk3ek0xNDc0IDEzMjdxMzIgMTE1IC0yOSAyMDQuNXQtMTcwIDg5LjVoLTI5MWwtMTMxIC01OTdoMjc1cTEyOCAwIDIyMyA4OS41dDEyMyAyMTMuNXoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hmNjgxOyIgaG9yaXotYWR2LXg9IjIwNDgiIGQ9Ik0xODAxIDExNHEtMTAyIC04MSAtMjMwLjUgLTY5LjV0LTIxNC41IDEwNy41bC00NjAgNTU5di0zOTFxMCAtMTMzIC05NCAtMjI2LjV0LTIyNiAtOTMuNXEtMTM0IDAgLTIyNyA5M3QtOTMgMjI3djE0MDhxMCAxMzIgOTMuNSAyMjZ0MjI2LjUgOTRxMTMxIDAgMjI1LjUgLTk0LjV0OTQuNSAtMjI1LjV2LTM0NGwzODkgNTE3cTc4IDEwNSAyMDggMTI0LjV0MjM3IC02MC41cTEwNSAtNzggMTI0LjUgLTIwOHQtNjAuNSAtMjM4bC0zODYgLTQ1MgpsNDQxIC01MDBxODMgLTEwMyA2OSAtMjM2LjV0LTExNyAtMjE2LjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZjY4MjsiIGhvcml6LWFkdi14PSIyMDQ4IiBkPSJNMTkwNSA2MDlsLTc0IC02MDlxLTc0OCAxNCAtMTI1MSAxNHEtMjYyIDAgLTQ5NSAtMTR2MTIxcTk3IDExIDE1MiAyM3Q4NS41IDM0LjV0MzkgNDh0MTAuNSA3Mi41cTEyIDI2NyAxMiA3MjNxMCA0MTYgLTE0IDczMHEtMiA0OCAtMTAuNSA3M3QtMzggNDd0LTg0LjUgMzR0LTE1MiAyM3YxMjFxMzg0IC0xOSA5MDUgLTE5cTIxMiAwIDMxMS41IDF0MjM1IDh0MjcwLjUgMjJsLTMzIC01ODhoLTExMXEtMzUgMTY4IC03MiAyNTl0LTg1IDEyOC41CnQtMTIxIDM3LjVoLTYzN3EtMjcgMCAtMzcuNSAtMTB0LTEwLjUgLTM4di03NjNoMTIzcTgyIDAgMTE4LjUgLTAuNXQ5MyAzdDc2IDMuNXQ1NS41IDExLjV0NDQgMTV0MjkgMjV0MjMuNSAzMnQxNC41IDQ2dDE1IDU2dDEyIDcyLjVxNiAzNiAxMCA1NmgxMTRxLTIwIC0yOTMgLTIwIC0zODRxMCAtODggMTMgLTM2NWgtMTE0cS00IDE4IC0xMCA1MXEtMjQgMTI4IC00MyAxNjVxLTI3IDUyIC05NSA2OXEtNjQgMTYgLTI4OCAxNmgtNTVoLTExNnYtNjI2CnEwIC0xODUgMTkwIC0xODVoNDUwcTYzIDAgMTAzIDQuNXQ4MyAyMXQ3My41IDQ2dDY1IDgxLjV0NjYgMTI2dDY5LjUgMTgxaDEwNXoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hmNjkwOyIgaG9yaXotYWR2LXg9IjIwNDgiIGQ9Ik0yMDM0IDE0MzNsLTk3MyAtOTc0cS0yMCAtMjAgLTQ4IC0yMGgtMXEtNSAwIC04IDFxLTIyIDIgLTQwIDE5bC01NDIgNTQzcS0yMCAyMCAtMjAgNDh0MjAgNDhsMTYwIDE2MHEyMCAyMCA0OCAyMHEyNyAwIDQ3IC0yMGwzMzYgLTMzNmw3NjYgNzY2cTIwIDIwIDQ3IDIwcTI4IDAgNDggLTIwbDE2MCAtMTYwcTIwIC0yMCAyMCAtNDh0LTIwIC00N3pNMTk3OCA4NTRsLTc4NCAtNzg0cS03MCAtNzAgLTE3MCAtNzB0LTE3MCA3MGwtNzg0IDc4NApxLTcwIDcwIC03MCAxNzB0NzAgMTcwbDc4NCA3ODRxNzAgNzAgMTcwIDcwdDE3MCAtNzBsMzU0IC0zNTRsLTUzMSAtNTMybC0yNTAgMjUxcS01NSA1NSAtMTMzIDU1dC0xMzMgLTU1bC0xNjAgLTE2MHEtNTUgLTUzIC01NSAtMTMzcTAgLTc4IDU1IC0xMzNsNTQyIC01NDNxMzggLTM4IDg5IC01MGw4IC01bDM3IC0xcTc2IDAgMTMzIDU1bDgyNCA4MjVsNCAtNHE3MCAtNzAgNzAgLTE3MHQtNzAgLTE3MHoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hmNjkxOyIgaG9yaXotYWR2LXg9IjIwNDgiIGQ9Ik0xMDMxIDEyOTFxMCAtMTMyIC05MCAtMTMycS01MiAwIC0xMDUgNzFsLTM5NiA1NDBxLTQ1IDYyIC00NSAxMDRxMCA0NSA4NyA3OGwzNjIgMTM0cTU3IDIxIDc5IDIxcTQ3IDAgNzUuNSAtNDIuNXQyOC41IC0xMjYuNXpNNzk0IDk2MXEzMyAtMTcgNDkgLTM3dDE2IC01MXEwIC03NCAtODMgLTkzbC00NTEgLTEwMHEtNzMgLTE2IC0xMDYgLTE2cS0zMiAwIC00MS41IDI2dC01LjUgODNsMjYgMzI5cTkgOTkgODIgOTlxMzggMCAxMDAgLTMxegpNOTU2IDY4NnEzNSAwIDU1LjUgLTIyLjV0MTkuNSAtNTQuNWwtOCAtNTIwcTAgLTQ3IC0xNi41IC02OHQtNTUuNSAtMjFxLTI2IDAgLTc0IDE1bC0yODcgOTFxLTQ0IDE0IC02My41IDM0dC0xOS41IDU0cTAgMzggMzUgNzhsMzM1IDM2OXE0MiA0NSA3OSA0NXpNMTI2MiA5NTZxLTM1IDAgLTU0LjUgMTguNXQtMTkuNSA1MS41cTAgMjkgMjMgNjNsMjcxIDQyOHExMyAxOSAxOS41IDI3dDIxIDE3dDMxLjUgOXEyMiAwIDM4IC0xMXQ0MiAtNDIKbDE5MCAtMjI0cTI5IC0zMiA0MCAtNTMuNXQxMSAtNTAuNXEwIC0zMyAtMjcuNSAtNTUuNXQtODkuNSAtNDEuNWwtNDIyIC0xMjNxLTQ1IC0xMyAtNzQgLTEzek0xMjAzIDcxM3EwIDI4IDIxIDUwdDUyIDIycTIxIDAgNjAgLTEybDQ3MCAtMTUxcTM3IC0xMSA1NCAtMjYuNXQxNyAtMzkuNXEwIC0zNSAtMjYgLTcybC0xOTMgLTI3N3EtMzUgLTUxIC04NyAtNTFxLTMwIDAgLTUxLjUgMTl0LTUyLjUgNjlsLTI0OSA0MTdxLTE1IDI1IC0xNSA1MnoKIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZjZhMDsiIGhvcml6LWFkdi14PSIyMDQ4IiBkPSJNMTk1MSA4NzBxOTcgLTE0MyA5NyAtMzE1cTAgLTE1MCAtNzQuNSAtMjc4dC0yMDIuNSAtMjAyLjV0LTI3OCAtNzQuNXEtMTcyIDAgLTMxNSA5N3EtODYgLTEyIC0xNTQgLTEycS0xOTEgMCAtMzY1IDc0LjV0LTI5OS41IDIwMHQtMjAwIDI5OS41dC03NC41IDM2NXEwIDY4IDEyIDE1NHEtOTcgMTQzIC05NyAzMTVxMCAxNTAgNzQuNSAyNzh0MjAyLjUgMjAyLjV0Mjc4IDc0LjVxMTcyIDAgMzE1IC05N3E4NiAxMiAxNTQgMTIKcTE5MSAwIDM2NSAtNzQuNXQyOTkuNSAtMjAwdDIwMCAtMjk5LjV0NzQuNSAtMzY1cTAgLTY4IC0xMiAtMTU0ek0xMDQzIDM4NHExMzggMCAyNTYgNDZ0MTk0IDE0MXQ3NiAyMjFxMCAyNjcgLTQyNiAzNjJsLTE0MyAzMXEtMzkgOSAtNTkuNSAxNC41dC00OC41IDE2dC00MSAyMS41dC0yMyAyOC41dC0xMCA0MC41cTAgNTQgNTIgODAuNXQxNDUgMjYuNXE2MCAwIDEwNiAtMTZ0NzQgLTM5LjV0NTIuNSAtNDYuNXQ1NC41IC0zOXQ2NiAtMTYKcTYzIDAgMTAyLjUgNDMuNXQzOS41IDEwNi41cTAgNzUgLTc3IDEzNS41dC0xOTUuNSA5MS41dC0yNDkuNSAzMXEtOTMgMCAtMTc5IC0yMXQtMTYyIC02NHQtMTIyIC0xMTl0LTQ2IC0xNzVxMCAtODMgMjYgLTE0NS41dDc3IC0xMDMuNXQxMDkgLTY2dDEzOSAtNDZsMjAxIC00N3ExMTMgLTI5IDE0MiAtNDRxNTUgLTI5IDU1IC04OXEwIC01MiAtNTUgLTg3LjV0LTE0NCAtMzUuNXEtNTkgMCAtMTA3LjUgMTUuNXQtNzkgMzl0LTU5LjUgNTEKdC01MSA1MXQtNTIgMzl0LTY0IDE1LjVxLTY3IDAgLTEwMiAtNDF0LTM1IC0xMDFxMCAtODMgNzYgLTE1My41dDIwNiAtMTExLjV0MjgyIC00MXoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hmNmIwOyIgaG9yaXotYWR2LXg9IjIwNDgiIGQ9Ik0yMDQ4IDE0MjdxLTI0IC0xNDUgLTE3NSAtMjQycS01NyAtMzcgLTEzMSAtNjRxNyAtNDMgNyAtOTdxMCAtMTc0IC02OSAtMzMydC0xODYgLTI3MnQtMjc5IC0xODEuNXQtMzQwIC02Ny41dC0zNDAgNjcuNXQtMjc5LjUgMTgxLjV0LTE4Ni41IDI3MnQtNjkgMzMydDY5IDMzMnQxODYuNSAyNzJ0Mjc5LjUgMTgxLjV0MzQwIDY3LjVxMTI5IDAgMjU2IC0zNXYtNTA1cS04NCA1MCAtMTkyIDUwcS0xMDcgMCAtMTk5IC00Mi41dC0xNDkgLTEwNy41CnQtODkuNSAtMTM4dC0zMi41IC0xMzlxMCAtOTIgNTAuNSAtMTYydDEyNyAtMTAzLjV0MTY0LjUgLTMzLjVxMTI3IDAgMjM5LjUgNTh0MTgxLjUgMTYydDY5IDIyOHY2NjJxMjQgLTEyIDE3NiAtMTAwcTczIC00NSAxMTguNSAtNzB0MTEzLjUgLTU1dDEzNyAtNDMuNXQxNDUgLTEzLjVxMjIgMCA0MyAtMTlxMTQgLTE5IDE0IC00M3oiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hmNmIxOyIgaG9yaXotYWR2LXg9IjIwNDgiIGQ9Ik0xNDYwIDE0NzRxMTYgLTEwIDE5LjUgLTI3LjV0LTUuNSAtMzEuNXEtOCAtMTYgLTI1LjUgLTIwdC0zMy41IDZxLTI0NiAxNDggLTYwNCA2NnEtMTggLTUgLTMzLjUgNXQtMTguNSAyNnEtNCAxOCA1LjUgMzN0MjcuNSAxOXEzOTUgOTAgNjY4IC03NnpNMTQ4NiAxNTgzcS0xNDAgODggLTMzMiAxMTAuNXQtMzU1IC0yOS41cS0yMiAtNSAtNDIgNS41dC0yNyAzMi41cS01IDIxIDYgNDB0MzIgMjZxMTg3IDU3IDQwMC41IDMxLjUKdDM3Mi41IC0xMjMuNXExOSAtMTAgMjQuNSAtMzIuNXQtNS41IC00MS41cS0xMyAtMTkgLTM0LjUgLTI0LjV0LTM5LjUgNS41ek0xMDI0IDEzNjVxMTMzIDAgMjQ3IC00N3QxOTYuNSAtMTMzLjV0MTI5IC0yMTUuNXQ0Ni41IC0yODZxMCAtMTU2IC00OSAtMjg2dC0xMzMgLTIxNnQtMTk2LjUgLTEzMy41dC0yNDAuNSAtNDcuNXEtMTMzIDAgLTI0NyA0N3QtMTk2LjUgMTMzLjV0LTEyOSAyMTZ0LTQ2LjUgMjg2LjVxMCAxNTYgNDkgMjg1LjUKdDEzMyAyMTUuNXQxOTYuNSAxMzMuNXQyNDAuNSA0Ny41ek0xMDI0IDI3MHExMzAgMCAyMTIgMTEydDgyIDMwMXEwIDIwMSAtODAuNSAzMDYuNXQtMjEzLjUgMTA1LjVxLTEzMCAwIC0yMTIgLTExMS41dC04MiAtMzAwLjVxMCAtMjAyIDgwLjUgLTMwNy41dDIxMy41IC0xMDUuNXpNMTY1NSAxODIzcS0xNCAtMjMgLTM5LjUgLTI5LjV0LTQ4LjUgNy41cS0xMDcgNjMgLTI1OCA5M3QtMjkzLjUgMjV0LTI0OS41IC0zOXEtMjYgLTggLTUwIDUKdC0zMSA0MHEtNyAyNSA1LjUgNDh0MzcuNSAzMnExMjUgMzggMjg0IDQzLjV0MzI4LjUgLTI4LjV0MjkyLjUgLTEwN3EyMiAtMTQgMjguNSAtNDAuNXQtNi41IC00OS41eiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGY2YjI7IiBob3Jpei1hZHYteD0iMjA0OCIgZD0iTTE1NjQgNjQwcTI0NSAwIDI0NSAxMjhxMCA0MSAtMjAgNjkuNXQtNTQuNSA0NXQtNzkgMjguNXQtOTMgMjIuNXQtOTcuNSAyMy41dC05My41IDM2dC03OSA1NXQtNTQuNSA4NXQtMjAgMTIzcTAgMTcxIDExNSAyNTR0MzAzIDgzcTM3MyAwIDQwMyAtMjk5bC0yMzUgLTI4cS05IDc0IC01Mi41IDEwOHQtMTMwLjUgMzRxLTc5IDAgLTEyMy41IC0zMy41dC00NC41IC05Mi41cTAgLTQyIDIwLjUgLTcxdDU1IC00NXQ3OSAtMjd0OTMuNSAtMjEKdDk4LjUgLTIyLjV0OTQgLTM2LjV0NzkgLTU3LjV0NTUgLTkwdDIwLjUgLTEzMS41cTAgLTc2IC0yNi41IC0xMzMuNXQtODUgLTEwMS41dC0xNTkgLTY3dC0yNDEuNSAtMjNxLTc0IDAgLTE0MCAxMC41dC0xMTYgMjcuNXQtOTQuNSA0My41dC03NS41IDUzdC01OSA2Mi41dC00NiA2NnQtMzUgNjl0LTI2LjUgNjV0LTIxLjUgNjFxLTUgMTQgLTcgMjFxLTkgMjggLTI0IDc1dC0yMy41IDczLjV0LTIzIDY2LjV0LTI1LjUgNjN0LTI4LjUgNTQuNQp0LTM0LjUgNDl0LTQwLjUgMzh0LTQ5LjUgMzAuNXQtNTkgMTd0LTcxIDdxLTEzMyAwIC0yMTEgLTEwMy41dC03OCAtMjgwLjVxMCAtMTgxIDc4LjUgLTI4Mi41dDE4Ni41IC0xMDEuNXE1NiAwIDEwOSAxNC41dDg4LjUgMzUuNXQ2My41IDQydDQxIDM2bDEzIDE0bDc2IC0yMDRxLTYgLTUgLTE2LjUgLTEzLjV0LTQ3LjUgLTI5LjV0LTc5IC0zN3QtMTA5IC0yOS41dC0xMzkgLTEzLjVxLTgxIDAgLTE1MiAxNS41dC0xMzguNSA1NC41CnQtMTE1LjUgOTkuNXQtNzcgMTU3LjV0LTI5IDIyMXEwIDE1NiA0MiAyNzN0MTE2LjUgMTg0LjV0MTY3IDEwMHQyMDMuNSAzMi41cTg1IDAgMTU0IC0xMnQxMjIuNSAtMzN0OTcuNSAtNTguNXQ3NiAtNzh0NjEuNSAtMTAydDUxIC0xMjF0NDYuNSAtMTQzLjVxMTcgLTU2IDMwLjUgLTk0LjV0MzQuNSAtODQuNXQ0MyAtNzYuNXQ1My41IC02MXQ2OSAtNDguNXQ4NyAtMjl0MTA4LjUgLTExeiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGY2YjM7IiBob3Jpei1hZHYteD0iMjA0OCIgZD0iTTg0IDY4OHEtOCAwIC04IDhsLTIwIDE4MWwyMCAxODZxMCA4IDggOHE3IDAgOSAtOGwyMyAtMTg2bC0yMyAtMTgxcS0yIC04IC05IC04ek0xNiA3NjV6TTggNzU3cS04IDAgLTggOGwtMTUgMTEybDE1IDExNXEwIDggOCA4dDggLThsMTggLTExNWwtMTggLTExMnEwIC04IC04IC04ek0xNzYgMTA5N2wyMiAtMjIwbC0yMiAtMjExcS0yIC0xMCAtMTEgLTEwcS04IDAgLTEwIDEwbC0xOSAyMTFsMTkgMjIwcTIgMTAgMTAgMTBxOSAwIDExIC0xMHoKTTI0NyA2NDdxLTEwIDAgLTEyIDEybC0xOCAyMThsMTggMjI2cTIgMTIgMTIgMTJxMTIgMCAxMiAtMTJsMjEgLTIyNmwtMjEgLTIxOHEwIC0xMiAtMTIgLTEyek0zMzAgNjQzcS0xNCAwIC0xNCAxNGwtMTcgMjIwbDE3IDIxMHEwIDE0IDE0IDE0cTEzIDAgMTMgLTE0bDIwIC0yMTBsLTIwIC0yMjBxMCAtMTQgLTEzIC0xNHpNNDQ2IDg3N2wtMTggLTIyMHEwIC0xNSAtMTUgLTE1cS0xNCAwIC0xNiAxNWwtMTYgMjIwbDE2IDM0MXEyIDE2IDE2IDE2CnE2IDAgMTAuNSAtNC41dDQuNSAtMTEuNXpNNDk2IDY0MXEtNyAwIC0xMiA1dC01IDEybC0xNSAyMTlsMTUgNDE5cTAgNyA1IDEydDEyIDVxMTYgMCAxOCAtMTdsMTcgLTQxOWwtMTcgLTIxOXEtMiAtMTcgLTE4IC0xN3pNNTgxIDEzNTBxMTcgMCAxOSAtMTlsMTYgLTQ1NGwtMTYgLTIxN3YxcS0yIC0xOSAtMTkgLTE5cS04IDAgLTEzLjUgNXQtNS41IDEzbC0xNCAyMTdsMTQgNDU0cTAgMTkgMTkgMTl6TTY2NiA2NDFxLTkgMCAtMTUgNnQtNiAxNQpsLTEzIDIxNWwxMyA0NjlxMCA5IDYgMTV0MTUgNnExOSAwIDIxIC0yMWwxNCAtNDY5bC0xNCAtMjE1cS0yIC0yMSAtMjEgLTIxek03NTEgNjQxcS05IDAgLTE1LjUgNi41dC02LjUgMTYuNWwtMTIgMjEzbDEyIDQ1N3EwIDEwIDYuNSAxNi41dDE1LjUgNi41cTEwIDAgMTYuNSAtNi41dDYuNSAtMTYuNWwxNCAtNDU3bC0xNCAtMjEzcTAgLTEwIC02LjUgLTE2LjV0LTE2LjUgLTYuNXpNODc0IDg3N2wtMTIgLTIxMnEwIC0xMCAtNyAtMTd0LTE3IC03CnQtMTcgN3QtOCAxN2wtMTEgMjEybDExIDQ0MHExIDExIDggMTh0MTcgN3QxNyAtN3Q3IC0xN3pNOTI1IDY0MXEtMTEgMCAtMTguNSA3LjV0LTcuNSAxNy41bC0xMCAyMTFsMTAgNTI0cTAgMTEgNy41IDE4LjV0MTguNSA3LjV0MTguNSAtNy41dDcuNSAtMTguNWwxMSAtNTI0bC0xMSAtMjExdjFxMCAtMTEgLTcuNSAtMTguNXQtMTguNSAtNy41ek0xMDEyIDE0NzdxMTEgMCAxOSAtOC41dDggLTE5LjVsMTMgLTU3MmwtMTMgLTIwOHYxCnEwIC0xMiAtOCAtMjB0LTE5IC04cS0xMiAwIC0yMCA4dC04IDE5bC0xMiAyMDhsMTIgNTcycTAgMTEgOCAxOS41dDIwIDguNXpNMTA5MSA2NDBxLTExIDEgLTE5IDEwdC05IDIwdjgwNnExIDIwIDI1IDMwcTc3IDMwIDE2MiAzMHExNzUgMCAzMDMgLTExOHQxNDMgLTI5MHE0NCAxOSA5OCAxOXExMDUgMCAxNzkuNSAtNzR0NzQuNSAtMTc5dC03NC41IC0xNzkuNXQtMTc5LjUgLTc0LjVoLTcwM3oiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hmNmYxOyIgaG9yaXotYWR2LXg9IjIwNDgiIGQ9Ik0wIDIwNDhoOTgxdi05ODFoLTk4MXY5ODF6TTEwNjcgMjA0OGg5ODF2LTk4MWgtOTgxdjk4MXpNMCA5ODFoOTgxdi05ODFoLTk4MXY5ODF6TTEwNjcgOTgxaDk4MXYtOTgxaC05ODF2OTgxeiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGY2ZjI7IiBob3Jpei1hZHYteD0iMjA0OCIgZD0iTTc2OCAxODA0di03MzVsLTY4MyAtN3Y2MDJ6TTg1IDk4Nmw2ODMgLTd2LTczNWwtNjgzIDE0MHY2MDJ6TTE5NjMgMjA0OHYtOTY3bC0xMTEwIC0xMXY3NTF6TTg1MyA5NzhsMTExMCAtMTF2LTk2N2wtMTExMCAyMjd2NzUxeiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGY2ZjM7IiBob3Jpei1hZHYteD0iMjA0OCIgZD0iTTM4NCAxMzY1di0xdjF6TTM4NCA3Njh2MnYtMnpNMzg0IDEzNDRxMCA1MyAtMzcuNSA5MC41dC05MC41IDM3LjV0LTkwLjUgLTM3LjV0LTM3LjUgLTkwLjV2LTU3NnEwIC01MyAzNy41IC05MC41dDkwLjUgLTM3LjV0OTAuNSAzNy41dDM3LjUgOTAuNXY1NzZ6TTE5MjAgMTM0NHEwIDUzIC0zNy41IDkwLjV0LTkwLjUgMzcuNXQtOTAuNSAtMzcuNXQtMzcuNSAtOTAuNXYtNTc2cTAgLTUzIDM3LjUgLTkwLjV0OTAuNSAtMzcuNXQ5MC41IDM3LjUKdDM3LjUgOTAuNXY1NzZ6TTE2MjEgMTQ1MWgtMTE5NHYtODk2cTAgLTUzIDM3LjUgLTkwLjV0OTAuNSAtMzcuNWgxMjh2LTI5OXEwIC01MyAzNy41IC05MC41dDkwLjUgLTM3LjV0OTAuNSAzNy41dDM3LjUgOTAuNXYyOTloMTcwdi0yOTlxMCAtNTMgMzcuNSAtOTAuNXQ5MC41IC0zNy41dDkwLjUgMzcuNXQzNy41IDkwLjV2Mjk5aDEyOHE1MyAwIDkwLjUgMzcuNXQzNy41IDkwLjV2ODk2ek0xMzE0IDE5NzhxMTQwIC03MiAyMjMuNSAtMjAxLjUKdDgzLjUgLTI4My41aC0xMTk0cTAgMTU0IDgzLjUgMjgzLjV0MjIzLjUgMjAxLjVsLTExMiAxODdxLTExIDE4IDcgMjl0MjkgLTdsMTE1IC0xOTBxMTE3IDUxIDI1MSA1MXQyNTEgLTUxbDExNSAxOTBxMTEgMTggMjkgN3Q3IC0yOXpNNzQ3IDE3MDdxMjYgMCA0NSAxOC41dDE5IDQ1LjVxMCAyNiAtMTkgNDV0LTQ1IDE5cS0yNyAwIC00NS41IC0xOXQtMTguNSAtNDVxMCAtMjcgMTguNSAtNDUuNXQ0NS41IC0xOC41ek0xMzAxIDE3MDcKcTI3IDAgNDUuNSAxOC41dDE4LjUgNDUuNXEwIDI2IC0xOC41IDQ1dC00NS41IDE5cS0yNiAwIC00NSAtMTl0LTE5IC00NXEwIC0yNyAxOSAtNDUuNXQ0NSAtMTguNXoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hmNmY0OyIgaG9yaXotYWR2LXg9IjIwNDgiIGQ9Ik02NTIgMTU5NHEwIC0zOSAtMTMuNSAtNzIuNXQtNDQuNSAtNjMuNXQtODguNSAtNDcuNXQtMTM2LjUgLTE3LjVoLTI4Mmw3NiAzNTZoMjcycTYzIDAgMTA3LjUgLTE0dDY3LjUgLTM4dDMyLjUgLTQ5dDkuNSAtNTR6TTEzODIgMTU5NHEwIC0zOSAtMTMuNSAtNzIuNXQtNDQuNSAtNjMuNXQtODguNSAtNDcuNXQtMTM2LjUgLTE3LjVoLTI4Mmw3NyAzNTZoMjcwcTYzIDAgMTA4IC0xNHQ2Ny41IC0zOHQzMi41IC00OXQxMCAtNTR6TTU1NSAxMDU4CnEwIC0zOSAtMTQgLTcyLjV0LTQ0LjUgLTYzLjV0LTg4LjUgLTQ3LjV0LTEzNyAtMTcuNWgtMjgybDc3IDM1NmgyNzFxNjMgMCAxMDggLTE0dDY3LjUgLTM4dDMyLjUgLTQ5dDEwIC01NHpNMTI4NSAxMDU4cTAgLTM5IC0xNCAtNzIuNXQtNDQuNSAtNjMuNXQtODguNSAtNDcuNXQtMTM3IC0xNy41aC0yODJsNzcgMzU2aDI3MXE2MyAwIDEwOCAtMTR0NjcuNSAtMzh0MzIuNSAtNDl0MTAgLTU0ek0yMDQ4IDEyNzVxMCAtODQgLTY2IC0xNDIuNQp0LTIxNyAtNTguNWgtMjgzbDc3IDM1N2gyNzFxNjMgMCAxMDggLTE0dDY3LjUgLTM4LjV0MzIuNSAtNDkuNXQxMCAtNTR6TTE5NDMgNzE3cTAgLTM5IC0xNCAtNzIuNXQtNDQuNSAtNjMuNXQtODguNSAtNDcuNXQtMTM3IC0xNy41aC0yODJsNzcgMzU2aDI3MXE2MyAwIDEwOCAtMTR0NjcuNSAtMzguNXQzMi41IC00OS41dDEwIC01M3pNMTE3OSA1MDBxMCAtMzkgLTEzLjUgLTcyLjV0LTQ0IC02My41dC04OCAtNDcuNXQtMTM2LjUgLTE3LjVoLTI4MwpsNzcgMzU2aDI3MXE2MyAwIDEwOCAtMTR0NjcuNSAtMzguNXQzMiAtNDkuNXQ5LjUgLTUzeiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGY4ZmY7IiBob3Jpei1hZHYteD0iMjA0OCIgZD0iTTEwMDMgMTU5NXEtMTAgODIgMTEuNSAxNTguNXQ2NSAxMzR0MTAxIDEwMS41dDExOC41IDY4LjV0MTE4IDI5LjVxMTggLTExMSAtMzUgLTIyNy41dC0xNTcgLTE5Mi41dC0yMjIgLTcyek0xMDYwIDE1MTZxNDkgMCAxMTEuNSAyNnQxMzYuNSA1Mi41dDE1MSAyNi41cTY4IDAgMTM0LjUgLTI0dDExMi41IC01OC41dDgyIC02OXQ1NCAtNTguNWwxNyAtMjRxLTEwIC01IC0yNiAtMTUuNXQtNTcgLTQ3LjV0LTcyLjUgLTgwdC01NyAtMTE0CnQtMjUuNSAtMTQ5cTAgLTY3IDE2LjUgLTEyN3Q0MyAtMTAydDU4IC03N3Q2My41IC01Ni41dDU4LjUgLTM2LjV0NDMuNSAtMjFsMTYgLTZxLTUgLTEyIC0xNCAtMzJ0LTM5IC03Ny41dC02MSAtMTEwdC03OC41IC0xMTYuNXQtOTMuNSAtMTEwdC0xMDMuNSAtNzcuNXQtMTExLjUgLTMxLjVxLTQ5IDAgLTkxIDEzLjV0LTY5IDI5dC03OC41IDI5dC0xMTguNSAxMy41cS03MyAwIC0xMzUuNSAtMjEuNXQtMTE3LjUgLTQyLjV0LTEwOCAtMjEKcS03MyAwIC0xNTUgNTl0LTE1NSAxNjAuNXQtMTMzIDIyNS41dC05NSAyNjZ0LTM1IDI3MHEwIDEzMSAzNiAyNDEuNXQ5Mi41IDE4MnQxMjggMTIydDE0MS41IDcyLjV0MTM0IDIycTYwIDAgMTE3LjUgLTE2LjV0OTUuNSAtMzZ0ODguNSAtMzZ0OTguNSAtMTYuNXoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3gxZjQ0ZDsiIGhvcml6LWFkdi14PSIyMDQ4IiBkPSJNMzQxIDQzdjExOTRxMCAxOCAtMTIuNSAzMC41dC0yOS41IDEyLjVoLTI1NnEtMTggMCAtMzAuNSAtMTIuNXQtMTIuNSAtMzAuNXYtMTE5NHEwIC0xOCAxMi41IC0zMC41dDMwLjUgLTEyLjVoMjU2cTE3IDAgMjkuNSAxMi41dDEyLjUgMzAuNXpNMTk0NCA5MTdxNDcgLTI1IDc1LjUgLTcwLjV0MjguNSAtOTkuNXEwIC02NyAtNDIuNSAtMTIwLjV0LTEwNi41IC02Ny41cTIxIC00MiAyMSAtOTBxMCAtNzEgLTQyIC0xMjd0LTEwNyAtNzcKcTIxIC00MiAyMSAtOTRxMCAtNzEgLTUwIC0xMjF0LTEyMSAtNTBoLTQyNnEtNTMgMCAtMTI0IDE1LjV0LTEyMCAzNi41bC00MzkgMjA0djg5NnExNTMgMTAyIDI1OSAxODd0MTcyLjUgMTU2dDEwMyAxNDN0NDkuNSAxMzZ0MTMgMTQ2cTAgNTMgMzcuNSA5MC41dDkwLjUgMzcuNXEzNiAwIDczIC0yNS41dDY3IC02OS41cTc0IC0xMDIgNzQgLTI0NnEwIC03MiAtMjAuNSAtMTY0dC00MC41IC0xNDh0LTIyIC01NnEtNyAtMjEgNCAtNDAKcTEzIC0xOSAzNiAtMTloNDQ4cTgwIDAgMTM2IC01NnQ1NiAtMTM2cTAgLTU0IC0yOSAtMTAwLjV0LTc1IC03MC41eiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeDFmNGRlOyIgaG9yaXotYWR2LXg9IjIwNDgiIGQ9Ik0yMDQ4IDE4MDRxMCAtMTAgLTIgLTE3cS0yOSAtMjMwIC0xMDguNSAtNDQ3dC0xOTkuNSAtNDAzLjV0LTI4MCAtMzQ3dC0zNDcgLTI4MHQtNDAzLjUgLTE5OXQtNDQ2LjUgLTEwOC41cS03IC0yIC0xNyAtMnEtMTIgMCAtMTYgMnEtMTQgNiAtMjQgMjRsLTIwMiA1MDdxLTUgMTYgMS41IDMxLjV0MjAuNSAyMy41bDU1OSAyODBxMjUgMTMgNTAgLThsMjcyIC0yNzVxMzQwIDIxMCA1NTUgNTU4bC0yNzIgMjcycS0yMSAyNSAtOCA1MGwyODAgNTU5CnE4IDE0IDIzLjUgMjAuNXQzMS41IDEuNWw1MDcgLTIwMnExOCAtMTAgMjEgLTI0cTUgLTcgNSAtMTZ6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4MWY1MTc7IiBob3Jpei1hZHYteD0iMjA0OCIgZD0iTTE4ODQgMTEwMGwtMjg5IC0yODlxMTUgMTY0IC00MiAzMTdsMTUxIDE1NHE4NyA4OCA4NyAyMTEuNXQtODcgMjEwLjV0LTIxMC41IDg3dC0yMTEuNSAtODdsLTMyMCAtMzE3cS04NyAtODkgLTg3IC0yMTIuNXQ4NyAtMjEyLjVxNDAgLTM3IDQwIC04OS41dC00MCAtOTAuNXEtMzcgLTM4IC04OS41IC0zOHQtOTAuNSAzOHEtMTA2IDEwNyAtMTQzLjUgMjUwdDAgMjg2dDE0My41IDI0OWwzMTggMzE3cTEwNyAxMDggMjUwIDE0NnQyODUuNSAwCnQyNDguNSAtMTQ2cTEwOCAtMTA2IDE0NiAtMjQ4LjV0MCAtMjg1LjV0LTE0NiAtMjUwek0xMjY2IDQ4MWwtMzIwIC0zMjBxLTEwNiAtMTA2IC0yNDkgLTE0NHQtMjg2IDB0LTI1MCAxNDRxLTEwNiAxMDcgLTE0NCAyNTB0MCAyODZ0MTQ0IDI0OWwyOTIgMjkxcS0xNSAtMTY2IDQyIC0zMjBsLTE1MSAtMTUxcS04NyAtODggLTg3IC0yMTEuNXQ4NyAtMjEwLjV0MjEwLjUgLTg3dDIxMS41IDg3bDMxNyAzMTdxODkgODcgODkgMjExdC04OSAyMTEKcS0zNyAzNyAtMzcgOTF0MzcgOTJ0OTEgMzh0OTIgLTM4cTEwNiAtMTA3IDE0My41IC0yNTB0MCAtMjg2dC0xNDMuNSAtMjQ5eiIgLz4KPGdseXBoICAgLz4KPGdseXBoICBob3Jpei1hZHYteD0iNjgyIiAgLz4KPGdseXBoIHVuaWNvZGU9IiAiIGhvcml6LWFkdi14PSI1MTIiICAvPgo8Z2x5cGggdW5pY29kZT0iKyIgaG9yaXotYWR2LXg9IjEzODQiIGQ9Ik0xMjkyIDUxMGgtNTE1di01MTBoLTE3MHY1MTBoLTUxNXYxNzVoNTE1djUxMGgxNzB2LTUxMGg1MTV2LTE3NXoiIC8+CjxnbHlwaCB1bmljb2RlPSItIiBob3Jpei1hZHYteD0iMTk3NSIgIC8+CjxnbHlwaCB1bmljb2RlPSIwIiBob3Jpei1hZHYteD0iMTE1NyIgZD0iTTEwOTYgNzI3cTAgLTMzMCAtMTM2IC01MjcuNXQtMzcwIC0xOTcuNXEtMTI5IDAgLTIyNyA1OHQtMTU3IDE2MHQtODkuNSAyMzB0LTMyLjUgMjc5cTAgMzkxIDEzNy41IDU4Ni41dDM3Mi41IDE5NS41cTIzOCAwIDM3MCAtMTk0LjV0MTMyIC01ODkuNXpNOTA3IDc1MHEwIDU5NiAtMzEzIDU5NnEtMTAyIDAgLTE3MS41IC03MC41dC0xMDEuNSAtMTkxdC0zMiAtMjg1LjVxMCAtMTgyIDMyIC0zMjEuNXQxMDIgLTIyNC41dDE3MSAtODUKcTk2IDAgMTY4LjUgODEuNXQxMDguNSAyMTIuNXQzNiAyODh6IiAvPgo8Z2x5cGggdW5pY29kZT0iNSIgaG9yaXotYWR2LXg9IjExNDEiIGQ9Ik0xMDkwIDQ5NHEwIC03NyAtMjEgLTE0OXQtNjMuNSAtMTM0LjV0LTEwMyAtMTA5LjV0LTE0NS41IC03NHQtMTg0IC0yN3EtODkgMCAtMTczIDI0dC0xNTYgNzF0LTExNiAxMjcuNXQtNDQgMTgzLjVoMTkycTE1IC0xMjAgOTQuNSAtMTgydDIwNy41IC02MnExMzUgMCAyMjcgOTEuNXQ5MiAyMjUuNXEwIDExMCAtNDYgMTg4dC0xMTcuNSAxMTR0LTE2MC41IDM2cS05NCAwIC0xNjkgLTM1LjV0LTEwNyAtOTcuNWwtMTYwIDhsMTA5IDc4N2g3NjYKdi0xODFoLTYyNWwtNjMgLTQwM3EzOCAzNyAxMTkuNSA2Mi41dDE2Mi41IDI1LjVxOTkgMCAxODUuNSAtMzAuNXQxNTMuNSAtODkuNXQxMDYgLTE1NHQzOSAtMjE1eiIgLz4KPGdseXBoIHVuaWNvZGU9IkEiIGhvcml6LWFkdi14PSIxMzc1IiBkPSJNMTM0NCAwaC0yMThsLTE0NSA0MjloLTU5NWwtMTU0IC00MjloLTIwNGw1NTUgMTQ3OWgyMzB6TTkwNSA2MDdsLTIxOCA2NTRsLTIzNyAtNjU0aDQ1NXoiIC8+CjxnbHlwaCB1bmljb2RlPSJCIiBob3Jpei1hZHYteD0iMTM3NSIgZD0iTTEyODcgNDQzcTAgLTEzMiAtNjQuNSAtMjM0LjV0LTE2OC41IC0xNTUuNXQtMjI3IC01M2gtNjgwdjE0NzloNjY4cTE2NSAwIDI4MCAtOTl0MTE5IC0yNzVxMCAtMTAwIC01MCAtMTg3LjV0LTE0MiAtMTIxLjVxMTE3IC00MSAxOTEgLTEzMy41dDc0IC0yMTkuNXpNMTAxNyAxMDYycTAgMTIyIC02Mi41IDE4MXQtMjE5LjUgNjNoLTM4NHYtNDU1aDM4OXExMzkgMCAyMDYgNjAuNXQ3MSAxNTAuNXpNMTA4OCA0MTdxMCA2NiAtMTQgMTExLjUKdC01MC41IDgyLjV0LTEwNSA1NnQtMTcxLjUgMjBoLTM5NnYtNTE5aDQ2MnE2OSAwIDEyMyAyM3Q4NS41IDYwLjV0NDggNzkuNXQxOC41IDg2eiIgLz4KPGdseXBoIHVuaWNvZGU9IkMiIGhvcml6LWFkdi14PSIxNDg5IiBkPSJNMTQwMyA1NDNxLTExIC05NiAtNDQuNSAtMTgzdC04OSAtMTYwdC0xMjggLTEyNi41dC0xNjcgLTgzLjV0LTIwMS41IC0zMHEtMTUwIDAgLTI3MC41IDQ5dC0xOTYuNSAxMjcuNXQtMTI3LjUgMTg0dC03Mi41IDIxMnQtMjEgMjE4LjVxMCAxMTYgMjcgMjI1dDgyLjUgMjA2dDEzNSAxNzAuNXQxOTEgMTE4dDI0Mi41IDQ4LjVxNTcgMCAxMTUuNSAtOXQxMjUuNSAtMjguNXQxMjcuNSAtNTd0MTEzIC04OXQ5MC41IC0xMjkuNXQ1MiAtMTczCmgtMTk1cS0yOSAxNDcgLTEzNy41IDIyNS41dC0yNjIuNSA3OC41cS0xMDUgMCAtMTg5IC0zMXQtMTQwLjUgLTg0dC05NCAtMTI4LjV0LTU1IC0xNjB0LTE5LjUgLTE4Mi41cTIgLTkxIDE5IC0xNzd0NTMgLTE2NnQ4Ny41IC0xMzkuNXQxMjggLTk1LjV0MTY5LjUgLTM2cTE5MyAwIDMxMCAxMDd0MTQ2IDI5OWgxOTZ6IiAvPgo8Z2x5cGggdW5pY29kZT0iRCIgaG9yaXotYWR2LXg9IjE0ODkiIGQ9Ik0xMzg0IDc5MnEwIC0xMjUgLTI0LjUgLTI0MC41dC03NCAtMjE1dC0xMTkgLTE3My41dC0xNjYgLTExNy41dC0yMDguNSAtNDUuNWgtNjI4djE0NzloNjIxcTc3IDAgMTU1LjUgLTIydDE1Ny41IC03NC41dDE0MCAtMTI5dDEwMS41IC0xOTZ0NDQuNSAtMjY1LjV6TTExNzggNzc1cTAgODUgLTEzLjUgMTYwLjV0LTQ1LjUgMTQ0dC03OS41IDExOHQtMTIwIDc5dC0xNjMuNSAyOS41aC0zODl2LTExMzhoNDEzcTExOSAwIDIxMC41IDgxCnQxMzkuNSAyMTh0NDggMzA4eiIgLz4KPGdseXBoIHVuaWNvZGU9IkUiIGhvcml6LWFkdi14PSIxMzc1IiBkPSJNMTI2NiAwaC0xMDkzdjE0NzloMTA4MXYtMTgwaC04Nzl2LTQ1MGg4MTB2LTE3OGgtODEwdi00OTNoODkxdi0xNzh6IiAvPgo8Z2x5cGggdW5pY29kZT0iRiIgaG9yaXotYWR2LXg9IjEyNTYiIGQ9Ik0xMTk3IDEyOTloLTgyMnYtNDUwaDcyNXYtMTc4aC03MjV2LTY3MWgtMjAydjE0NzloMTAyNHYtMTgweiIgLz4KPGdseXBoIHVuaWNvZGU9IkciIGhvcml6LWFkdi14PSIxNTk4IiBkPSJNMTQ0NiAwaC0xMjhsLTQ3IDE5N3EtNzAgLTk4IC0yMDAgLTE2MS41dC0yODYgLTY4LjVxLTE0NiAwIC0yNjIgMzl0LTE5NSAxMDguNXQtMTMxLjUgMTY4LjV0LTc2IDIxNXQtMjMuNSAyNTNxMCAxMTIgMjYuNSAyMTkuNXQ4My41IDIwNXQxMzcuNSAxNzF0MTk3IDExOHQyNTQuNSA0NS41cTExMyAwIDIxNy41IC0zMXQxOTAuNSAtOTB0MTQ0LjUgLTE1MnQ3My41IC0yMDhoLTE5MnEtMjcgMTA5IC05NSAxODB0LTE1NCA5OS41dC0xOTQgMjguNQpxLTIxMiAwIC0zNDkgLTE2MS41dC0xMzcgLTQzNS41cTAgLTI5NSAxMzQgLTQ1NC41dDM1MiAtMTU5LjVxMTczIDAgMzEwIDEwNnE5MSA3NCAxMjUuNSAxNTguNXQzOC41IDIyNS41aC00NjB2MTcxaDY0NXYtNzg3eiIgLz4KPGdseXBoIHVuaWNvZGU9IkgiIGhvcml6LWFkdi14PSIxNDg5IiBkPSJNMTMzMiAwaC0yMDF2Njg3aC03NzN2LTY4N2gtMjAydjE0NzloMjAydi02MTRoNzczdjYxNGgyMDF2LTE0Nzl6IiAvPgo8Z2x5cGggdW5pY29kZT0iSSIgaG9yaXotYWR2LXg9IjU2OSIgZD0iTTM4NiAwaC0yMDF2MTQ3OWgyMDF2LTE0Nzl6IiAvPgo8Z2x5cGggdW5pY29kZT0iSiIgaG9yaXotYWR2LXg9IjEwMjkiIGQ9Ik04ODIgMzk4cTAgLTExNyAtMzMuNSAtMjAzdC05My41IC0xMzZ0LTEzNC41IC03My41dC0xNjUuNSAtMjUuNXEtOTMgMCAtMTY3IDIzdC0xMjEgNjB0LTc4IDg2LjV0LTQzLjUgOTl0LTEyLjUgMTAwLjV2MTQ1aDE4N3YtMTA0cTAgLTEyMyA1NC41IC0xODEuNXQxNjguNSAtNTguNXExMjIgMCAxNzcuNSA2MnQ1Ny41IDE5NHYxMDkzaDIwNHYtMTA4MXoiIC8+CjxnbHlwaCB1bmljb2RlPSJLIiBob3Jpei1hZHYteD0iMTM3NSIgZD0iTTEzNjMgMGgtMjU4bC01MjAgNzQwbC0yMzIgLTIyMXYtNTE5aC0yMDF2MTQ3OWgyMDF2LTcyMGw3MTggNzIwaDI3NWwtNjE2IC01OTd6IiAvPgo8Z2x5cGggdW5pY29kZT0iTCIgaG9yaXotYWR2LXg9IjExNDciIGQ9Ik0xMTA1IDBoLTk1M3YxNDc5aDIwMXYtMTMwMWg3NTJ2LTE3OHoiIC8+CjxnbHlwaCB1bmljb2RlPSJNIiBob3Jpei1hZHYteD0iMTcxMSIgZD0iTTE1NjcgMGgtMTk3djEyNDJsLTQxMiAtMTI0MmgtMTk5bC00MjIgMTI0MHYtMTI0MGgtMTkwdjE0NzloMjg3bDQyNiAtMTI1NGw0MjIgMTI1NGgyODV2LTE0Nzl6IiAvPgo8Z2x5cGggdW5pY29kZT0iTiIgaG9yaXotYWR2LXg9IjE0ODkiIGQ9Ik0xMzMyIDBoLTIyN2wtNzU0IDExOTJ2LTExOTJoLTE5NXYxNDc5aDIzN2w3NDUgLTExOTd2MTE5N2gxOTR2LTE0Nzl6IiAvPgo8Z2x5cGggdW5pY29kZT0iTyIgaG9yaXotYWR2LXg9IjE1OTgiIGQ9Ik0xNTE5IDc0MHEwIC01NiAtNS41IC0xMTJ0LTIzLjUgLTEzNC41dC00OCAtMTQ2LjV0LTg1IC0xMzguNXQtMTI3LjUgLTEyMXQtMTgyLjUgLTgzLjV0LTI0MyAtMzVxLTE0NSAwIC0yNjUuNSA0M3QtMjAzIDExNi41dC0xNDAgMTcyLjV0LTg0IDIwOS41dC0yNi41IDIyOS41cTAgMTI0IDI3IDIzNnQ4NSAyMDl0MTQxLjUgMTY4LjV0MjAyLjUgMTEzdDI2MyA0My41cTExMyAwIDIxMSAtMjUuNXQxNjkuNSAtNjkuNXQxMjkuNSAtMTA1CnQ5NS41IC0xMjkuNXQ2MyAtMTQ1dDM2IC0xNDkuNXQxMC41IC0xNDZ6TTEzMTggNzQwcTAgMjY0IC0xMzYuNSA0MjZ0LTM3Ny41IDE2NnEtMjMwIDAgLTM3Mi41IC0xNjAuNXQtMTQyLjUgLTQzMS41cTAgLTI2NyAxMzggLTQyOHQzNzcgLTE2NXEyNDEgMCAzNzcuNSAxNjIuNXQxMzYuNSA0MzAuNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJQIiBob3Jpei1hZHYteD0iMTM3NSIgZD0iTTEyNzggMTA2MnEwIC02NiAtMTQgLTEyNnQtNDcgLTExN3QtODIuNSAtOTl0LTEyNS41IC02OC41dC0xNzAgLTI4LjVoLTQ2NHYtNjIzaC0yMDJ2MTQ3OWg2NjZxMTg4IDAgMzExIC0xMDl0MTI4IC0zMDh6TTEwNzEgMTA2MnEwIDI0NCAtMjkxIDI0NGgtNDA1di01MTRoMzk4cTI5NSAwIDI5OCAyNzB6IiAvPgo8Z2x5cGggdW5pY29kZT0iUSIgaG9yaXotYWR2LXg9IjE1OTgiIGQ9Ik0xNTE5IDc0MHEwIC0zNTggLTIxNSAtNTY5bDIwMSAtMTU3bC05NyAtMTIxbC0yMjggMTc4cS0xNTUgLTEwMiAtMzc5IC0xMDJxLTE0NSAwIC0yNjUuNSA0M3QtMjAzLjUgMTE2LjV0LTE0MC41IDE3Mi41dC04NCAyMDkuNXQtMjYuNSAyMjkuNXEwIDEyNCAyNyAyMzZ0ODUgMjA5dDE0MS41IDE2OC41dDIwMyAxMTN0MjYzLjUgNDMuNXExMTMgMCAyMTAuNSAtMjUuNXQxNjkuNSAtNjkuNXQxMzAgLTEwNXQ5Ni41IC0xMjkuNXQ2NCAtMTQ1CnQzNi41IC0xNDkuNXQxMSAtMTQ2ek0xMzEzIDc0MHEwIDI2NCAtMTM1LjUgNDI2dC0zNzYuNSAxNjZxLTIzMSAwIC0zNzIuNSAtMTYwdC0xNDEuNSAtNDMycTAgLTI2OCAxMzcgLTQyOC41dDM3NyAtMTY0LjVxMTE5IDAgMjE2IDQ3bC0xNTQgMTE3bDEwMiAxMjVsMTg5IC0xNDRxMTU5IDE2NSAxNTkgNDQ4eiIgLz4KPGdseXBoIHVuaWNvZGU9IlIiIGhvcml6LWFkdi14PSIxNDg5IiBkPSJNMTM4NCAwaC0yMjVxLTI2IDU3IC0zNy41IDE1MHQtMTUgMTg2LjV0LTYuNSAxMTMuNXEtMjYgMTc4IC0yNDIgMTgxaC01MDJ2LTYzMWgtMjAydjE0NzloNzA5cTg5IDAgMTY5IC0yNHQxNDYgLTcxLjV0MTA2IC0xMjh0NDMgLTE4NC41cTAgLTIzMCAtMjE1IC0zNDNxNzkgLTI1IDEyNiAtODd0NTYgLTE1M3E2IC01NiAxMi41IC0xNTd0MTQuNSAtMTY1LjV0MjUgLTEwNi41cTE4IC00MiAzOCAtNTl6TTExMjQgMTA1MgpxMCAxMTIgLTU4LjUgMTgxdC0xODYuNSA3M2gtNTIzdi01MDJoNTA3cTExMiAwIDE4Ni41IDY5dDc0LjUgMTc5eiIgLz4KPGdseXBoIHVuaWNvZGU9IlMiIGhvcml6LWFkdi14PSIxMzc1IiBkPSJNMTI3MyA0MTVxMCAtMTQ1IC03Ni41IC0yNDcuNXQtMjA0LjUgLTE1MC41dC0yOTcgLTQ4cS0yODQgMCAtNDM4IDEyN3QtMTU1IDM5MmgxODVxMCAtNzggMjQgLTEzOXQ2Mi41IC05OC41dDkzLjUgLTYyLjV0MTA5LjUgLTM1LjV0MTE4LjUgLTEyLjVxNTkgMCAxMTIgNy41dDEwNCAyNS41dDg4IDQ1LjV0NTkuNSA3MXQyMi41IDk5LjVxMCAzOSAtOC41IDY5LjV0LTI0LjUgNTR0LTQ0LjUgNDIuNXQtNjQgMzR0LTg4IDI5LjV0LTExMC41IDI4CnQtMTM4IDMxLjVxLTM2IDggLTU1IDEycS02NyAxNSAtMTE5LjUgMzIuNXQtMTA2LjUgNDcuNXQtOTAgNjcuNXQtNTkuNSA5NHQtMjUuNSAxMjUuNXEwIDkyIDMwIDE3MS41dDkwIDE0My41dDE2MSAxMDF0MjMxIDM3cTExMSAwIDIwMS41IC0yMXQxNDggLTUxdDEwMS41IC03Ny41dDY1LjUgLTg0LjV0MzYgLTg5LjV0MTcgLTc1LjV0NS41IC01OHExIC05IDEgLTEyaC0xODVxMCA2MyAtMjEuNSAxMTR0LTU3IDg0LjV0LTg1IDU2LjUKdC0xMDAuNSAzMy41dC0xMDggMTIuNXEtNTEgMCAtOTYgLTYuNXQtOTAuNSAtMjQuNXQtNzcuNSAtNDYuNXQtNTIuNSAtNzUuNXQtMjAuNSAtMTA4cTAgLTE0MSAxNzggLTE4MGw0MjIgLTk3cTMzMiAtNzQgMzMyIC0zODl6IiAvPgo8Z2x5cGggdW5pY29kZT0iVCIgaG9yaXotYWR2LXg9IjEyNTYiIGQ9Ik0xMjMwIDEyOTloLTUwMnYtMTI5OWgtMjAydjEyOTloLTQ5OHYxODBoMTIwMnYtMTgweiIgLz4KPGdseXBoIHVuaWNvZGU9IlUiIGhvcml6LWFkdi14PSIxNDg5IiBkPSJNMTMyNyA0ODZxMCAtMTA1IC0zNS41IC0xOTUuNXQtMTA2IC0xNjJ0LTE4NyAtMTEzLjV0LTI2OC41IC00M3EtMjgyIDAgLTQyMy41IDEzMC41dC0xNDUuNSAzNzMuNXYxMDAzaDIwMnYtOTY1cTAgLTE3MSA5NSAtMjY5dDI3MiAtOThxMTgwIDAgMjg1LjUgOTQuNXQxMTAuNSAyNjguNXY5NjloMjAxdi05OTN6IiAvPgo8Z2x5cGggdW5pY29kZT0iViIgaG9yaXotYWR2LXg9IjEzNzUiIGQ9Ik0xMzMwIDE0NzlsLTUzOCAtMTQ3OWgtMjE0bC01MzggMTQ3OWgyMzNsNDE5IC0xMjYzbDQzNiAxMjYzaDIwMnoiIC8+CjxnbHlwaCB1bmljb2RlPSJXIiBob3Jpei1hZHYteD0iMTk0MSIgZD0iTTE5MTEgMTQ3OWwtMzkyIC0xNDc5aC0yMDhsLTMzNyAxMjI1bC0zNDYgLTEyMjVoLTIxMWwtMzg0IDE0NzloMjE2bDI3MiAtMTIwNmwzMzkgMTIwNmgyMTZsMzM5IC0xMjA2bDI3MyAxMjA2aDIyM3oiIC8+CjxnbHlwaCB1bmljb2RlPSJYIiBob3Jpei1hZHYteD0iMTM3NSIgZD0iTTEzMzIgMGgtMjQ5bC0zOTYgNjA3bC00MTAgLTYwN2gtMjM5bDUyOSA3NTlsLTQ5OCA3MjBoMjUxbDM3NSAtNTY2bDM3NiA1NjZoMjQwbC00OTYgLTcyM3oiIC8+CjxnbHlwaCB1bmljb2RlPSJZIiBob3Jpei1hZHYteD0iMTM3NSIgZD0iTTEzNDIgMTQ3OWwtNTU3IC04ODl2LTU5MGgtMjAwdjU5MGwtNTU0IDg4OWgyNDJsNDIyIC03MTFsNDI0IDcxMWgyMjN6IiAvPgo8Z2x5cGggdW5pY29kZT0iWiIgaG9yaXotYWR2LXg9IjEyNTYiIGQ9Ik0xMjA5IDBoLTExNjJ2MTY0bDkwNiAxMTM3aC04Mzl2MTc4aDEwOTV2LTE3M2wtOTEwIC0xMTI2aDkxMHYtMTgweiIgLz4KPGdseXBoIHVuaWNvZGU9ImEiIGhvcml6LWFkdi14PSIxMTQ3IiBkPSJNMTA5MyAydi0ycS01NyAtMjEgLTExOSAtMjFxLTE2OCAwIC0xNzMgMTYxcS0xNTQgLTE2NiAtMzg5IC0xNzNxLTE1MSAwIC0yNDYgODl0LTk1IDIxNHEwIDYwIDE1LjUgMTA5dDM5LjUgODIuNXQ2NCA2MC41dDc2LjUgNDIuNXQ5MSAyOS41dDkzLjUgMjAuNXQ5OCAxNi41dDkxIDE2cTgyIDE0IDExNyA1MC41dDM1IDc5LjVxMCA4MyAtNjMuNSAxMzN0LTE4NS41IDUwcS0xMTAgMCAtMTc2LjUgLTUzdC03MC41IC0xNjBoLTE2OApxMCAxNDcgMTExLjUgMjUwLjV0MzI3LjUgMTA3LjVxMTA2IDAgMTk1LjUgLTMyLjV0MTUwLjUgLTEwNi41dDYxIC0xNzl2LTU3NnEwIC02MCAyMi41IC04MnQ5Ni41IDR2LTEzMXpNNzg3IDM1OHYxOTRxLTI5IC0xOSAtODQgLTM0dC0xMTEuNSAtMjMuNXQtMTE3LjUgLTI1dC0xMDggLTM3LjV0LTc3LjUgLTYydC0zMC41IC05N3EwIC03OCA1MiAtMTE4LjV0MTQwIC00MC41cTUxIDAgMTA5IDE3dDEwOS41IDQ3dDg1IDc3LjV0MzMuNSAxMDIuNXoKIiAvPgo8Z2x5cGggdW5pY29kZT0iYiIgaG9yaXotYWR2LXg9IjExNDciIGQ9Ik0xMDg4IDU2OXEzIC04NSAtMTAuNSAtMTY2LjV0LTQ4IC0xNjEuNXQtODggLTE0MHQtMTM4LjUgLTk3dC0xOTEgLTM3cS0xMDQgMCAtMTg3LjUgNDIuNXQtMTMwLjUgMTIzLjVsLTE0IC0xMzNoLTE2NHYxNDc5aDE4NXYtNTM4cTU5IDc4IDEzOC41IDExOXQxOTEuNSA0NXExOTcgMCAzMjMuNSAtMTQ5LjV0MTMzLjUgLTM4Ni41ek04OTggNTM4cTAgMTk4IC03OSAzMDEuNXQtMjIyIDEwMy41cS04MiAwIC0xNDMuNSAtMzguNXQtOTUgLTEwMC41CnQtNDkgLTEyOC41dC0xNS41IC0xMzUuNXEwIC00MDQgMzEzIC00MTRxMTQwIDAgMjE1LjUgMTEyLjV0NzUuNSAyOTkuNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJjIiBob3Jpei1hZHYteD0iMTAyOSIgZD0iTTk5MSAzNzlxLTEyIC0xMTEgLTU3IC0xOTR0LTExMSAtMTI5dC0xMzggLTY3LjV0LTE0OSAtMjEuNXEtMjAzIDAgLTM0MCAxNTguNXQtMTM3IDQxMi41cTAgMTQwIDM5LjUgMjUxdDEwNyAxNzl0MTUzLjUgMTAzLjV0MTg0IDM1LjVxNjIgMCAxMTkuNSAtMTEuNXQxMTQuNSAtNDB0MTAwLjUgLTcxLjV0NzQuNSAtMTEydDM5IC0xNTZoLTE3M3EtMTAgMTA2IC04My41IDE2Ni41dC0xODQuNSA2MC41cS02MyAwIC0xMTQuNSAtMjF0LTk0IC02Ngp0LTY2LjUgLTEyNnQtMjQgLTE5MnEwIC0xNzAgODUgLTI4Ny41dDIxNCAtMTE3LjVxMTA5IDAgMTc2LjUgNjJ0ODguNSAxODRoMTc2eiIgLz4KPGdseXBoIHVuaWNvZGU9ImQiIGhvcml6LWFkdi14PSIxMTQ3IiBkPSJNNjQgNTY5cTcgMjM3IDEzMy41IDM4Ni41dDMyMy41IDE0OS41cTExMyAtNCAxOTEuNSAtNDV0MTM4LjUgLTExOXY1MzhoMTg1di0xNDc5aC0xNjR2MTUycS00OCAtODIgLTEzOS41IC0xMzMuNXQtMTkyLjUgLTUxLjVxLTEwNiAwIC0xOTEgMzd0LTEzOC41IDk3dC04OCAxNDB0LTQ4IDE2MS41dC0xMC41IDE2Ni41ek0yNTQgNTM4cTAgLTE4NyA3NS41IC0yOTkuNXQyMTUuNSAtMTEyLjVxMzEzIDEwIDMxMyA0MTRxMCA2OSAtMTUuNSAxMzUuNQp0LTQ4LjUgMTI4LjV0LTk0LjUgMTAwLjV0LTE0NC41IDM4LjVxLTE0MyAwIC0yMjIgLTEwMy41dC03OSAtMzAxLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0iZSIgaG9yaXotYWR2LXg9IjExNDciIGQ9Ik0xMDc0IDQ3NmgtODA0cTAgLTE1MCA5MS41IC0yNDYuNXQyMjYuNSAtOTYuNXE2OCAwIDEyNSAyMnQ5MSA1NC41dDUyLjUgNjYuNXQxOC41IDYxaDE4NXEtMzAgLTE3MiAtMTYxIC0yNzB0LTMyMSAtOThxLTExNCAwIC0yMDkgNDIuNXQtMTU3IDExNnQtOTcgMTcxdC0zNyAyMDguNXEwIDI3MCAxMzkuNSA0MzZ0MzY1LjUgMTY2cTE2MCAwIDI3My41IC04MS41dDE2OCAtMjIzLjV0NDkuNSAtMzI4ek04ODQgNjIzcTAgMTQ0IC04NyAyMzQuNQp0LTIxMiA5MC41cS0xMjggMCAtMjE5IC05NS41dC05NiAtMjI5LjVoNjE0eiIgLz4KPGdseXBoIHVuaWNvZGU9ImYiIGhvcml6LWFkdi14PSI1NjkiIGQ9Ik01MzggMTQ5M3YtMTQ5cS0zMSA1IC03NiA1cS01NCAwIC03Ni41IC0yNXQtMjIuNSAtODR2LTE2NGgxNzV2LTE2M2gtMTc1di05MTNoLTE4NXY5MTNoLTE1MHYxNjNoMTUwdjE5OXEwIDk4IDczLjUgMTY0dDE5MS41IDY2cTU1IDAgOTUgLTEyeiIgLz4KPGdseXBoIHVuaWNvZGU9ImciIGhvcml6LWFkdi14PSIxMjI4IiBkPSJNMTA4NiA0N3EwIC0yNjIgLTEyOCAtMzkwLjV0LTM1OCAtMTI4LjVxLTMzIDAgLTY2IDN0LTc1IDEyLjV0LTc5LjUgMjQuNXQtNzQuNSA0MS41dC02My41IDYxdC00My41IDg1dC0xOCAxMTEuNWgxODBxMCAtODAgNjggLTEyNXQxNjAgLTQ1cTE1MCAwIDIzMy41IDgzdDgzLjUgMjUzdjY0cS02NSAtNzAgLTE0NS41IC05OXQtMTgzLjUgLTI5cS04NCAwIC0xNjYuNSAzNi41dC0xNTEgMTAzdC0xMTIgMTcxLjV0LTQ2LjUgMjMwCnEwIDI3NyAxMzkuNSA0MzZ0MzYyLjUgMTU5cTk4IDAgMTgwIC00MnQxMjMgLTExMHYxMzBoMTgxdi0xMDM2ek05MDUgNTM2cTAgMTgwIC04Mi41IDI4M3QtMjI3LjUgMTAzcS01NiAwIC0xMDkgLTIzdC05NyAtNjd0LTcwLjUgLTExNi41dC0yNi41IC0xNjMuNXEwIC0xMDYgMjYuNSAtMTg5LjV0NzEuNSAtMTMyLjV0OTkgLTc0LjV0MTEzIC0yNS41cTEzMiAwIDIxNiAxMDcuNXQ4NyAyOTguNXoiIC8+CjxnbHlwaCB1bmljb2RlPSJoIiBob3Jpei1hZHYteD0iMTE0NyIgZD0iTTEwMTIgMGgtMTg1djcwNHEwIDExNyAtNTAgMTc4dC0xNjEgNjFxLTYxIDAgLTExMy41IC0yMXQtOTYgLTYyLjV0LTY4LjUgLTExMnQtMjUgLTE2Mi41di01ODVoLTE4NXYxNDc5aDE4NXYtNTQ3cTU1IDg1IDE0NyAxMjh0MTg3IDQ3cTU1IDAgMTA0IC0xMC41dDk4IC0zOHQ4NCAtNzAuNXQ1NyAtMTEyLjV0MjIgLTE1OS41di03MTZ6IiAvPgo8Z2x5cGggdW5pY29kZT0iaSIgaG9yaXotYWR2LXg9IjQ2MCIgZD0iTTMxOCAxMjcxaC0xODV2MjAzaDE4NXYtMjAzek0zMTggMGgtMTg1djEwNzZoMTg1di0xMDc2eiIgLz4KPGdseXBoIHVuaWNvZGU9ImoiIGhvcml6LWFkdi14PSI1NDMiIGQ9Ik00MDUgLTE4NXEwIC0xMDYgLTcwIC0xNzV0LTIwMCAtNjlxLTU5IDAgLTkyIDd2MTU3cTQxIC0xMCA4MyAtMTBxNTEgMCA3Mi41IDI5dDIxLjUgMTAxdjEyMjFoMTg1di0xMjYxek00MDUgMTI3MWgtMTg1djIwOGgxODV2LTIwOHoiIC8+CjxnbHlwaCB1bmljb2RlPSJrIiBob3Jpei1hZHYteD0iMTAyOSIgZD0iTTEwMjkgMGgtMjMwbC0zNTYgNTI2bC0xMzAgLTEyOHYtMzk4aC0xODV2MTQ3OWgxODV2LTg2MGw0NjAgNDU3aDIzMmwtNDI5IC00MTJ6IiAvPgo8Z2x5cGggdW5pY29kZT0ibCIgaG9yaXotYWR2LXg9IjQ2MCIgZD0iTTMyMCAwaC0xODd2MTQ3OWgxODd2LTE0Nzl6IiAvPgo8Z2x5cGggdW5pY29kZT0ibSIgaG9yaXotYWR2LXg9IjE3MTEiIGQ9Ik0xNTg2IDBoLTE4NXY2OTVxMCAyNDggLTE5OSAyNDhxLTEwOCAwIC0xNzcgLTc4dC03NCAtMjExdi02NTRoLTE4NXY3NDJxMCA4NCAtNDIgMTQyLjV0LTEzMSA1OC41cS01MyAwIC05OS41IC0xOC41dC04NyAtNTh0LTY1IC0xMTJ0LTI2LjUgLTE2OS41di01ODVoLTE4NXYxMDc2aDE3MXYtMTUycTU3IDg5IDE0NCAxMzV0MTg2IDQ2cTExMyAwIDE3OS41IC00NnQxMDkuNSAtMTI3cTQ2IDcyIDEzMSAxMjIuNXQxOTggNTAuNQpxNDIgMCA4NCAtOC41dDg5IC0zMy41dDgyIC02My41dDU4LjUgLTEwNXQyMy41IC0xNTIuNXYtNzQyeiIgLz4KPGdseXBoIHVuaWNvZGU9Im4iIGhvcml6LWFkdi14PSIxMTQ3IiBkPSJNMTAxMiAwaC0xODV2NjczcTAgNjEgLTEwIDEwNy41dC0zMyA4NC41dC02NS41IDU4dC0xMDIuNSAyMHEtMTMwIDAgLTIxNi41IC04OC41dC04Ni41IC0yNDAuNXYtNjE0aC0xODV2MTA3NmgxNzV2LTE1NnExNSAyNCA0My41IDUyLjV0NzIgNjB0MTA0IDUydDEyNC41IDIwLjVxMTY2IDAgMjY1LjUgLTk2dDk5LjUgLTI5M3YtNzE2eiIgLz4KPGdseXBoIHVuaWNvZGU9Im8iIGhvcml6LWFkdi14PSIxMTQ3IiBkPSJNMTA4MSA1MzhxMCAtMTEyIC0zNC41IC0yMTN0LTk3LjUgLTE3OS41dC0xNTkuNSAtMTI2dC0yMTMuNSAtNTAuNXEtOTQgMCAtMTc1IDMwLjV0LTE0MC41IDg0dC0xMDIgMTI1dC02NCAxNTUuNXQtMjEuNSAxNzRxMCAxNTUgNTggMjgzdDE3NCAyMDd0MjcxIDc5dDI3MS41IC03OXQxNzUgLTIwN3Q1OC41IC0yODN6TTg5MSA1MzhxMSA2OCAtMTYuNSAxMzZ0LTUzLjUgMTI5LjV0LTEwMCAxMDF0LTE0NSA0MS41cS04MCAwIC0xNDMgLTM5CnQtOTguNSAtMTAxLjV0LTUzLjUgLTEzMXQtMTggLTEzNi41cTAgLTgxIDE4IC0xNTIuNXQ1NCAtMTMwLjV0OTggLTkzdDE0MyAtMzRxODIgMCAxNDMuNSAzNHQ5NyA5My41dDUzLjUgMTI5LjV0MjEgMTUzeiIgLz4KPGdseXBoIHVuaWNvZGU9InAiIGhvcml6LWFkdi14PSIxMTQ3IiBkPSJNMTA5MCA1MDdxLTcgLTIzNyAtMTM0IC0zODZ0LTMyNSAtMTQ5cS0xMTIgMyAtMTkwIDQ0dC0xMzggMTE5di01NjJoLTE4N3YxNTAzaDE2NnYtMTUycTQ4IDgyIDEzOS41IDEzMy41dDE5Mi41IDUxLjVxMTA2IDAgMTkxIC0zN3QxMzguNSAtOTd0ODguNSAtMTQwdDQ4IC0xNjEuNXQxMCAtMTY2LjV6TTkwMSA1MzhxMCAxODcgLTc2IDMwMHQtMjE2IDExM3EtMTYwIC02IC0yMzYuNSAtMTE0dC03Ni41IC0zMDFxMCAtNjkgMTUuNSAtMTM1CnQ0OC41IC0xMjguNXQ5NSAtMTAxdDE0NSAtMzguNXExNDMgMCAyMjIgMTAzLjV0NzkgMzAxLjV6IiAvPgo8Z2x5cGggdW5pY29kZT0icSIgaG9yaXotYWR2LXg9IjExNDciIGQ9Ik00NSA1MDdxMCA4NSAxNCAxNjZ0NDguNSAxNjEuNXQ4NyAxNDB0MTM2LjUgOTd0MTkwIDM3LjVxMTAzIDAgMTg2IC00Mi41dDEzMCAtMTIzLjVsMTYgMTMzaDE2NnYtMTUwM2gtMTg1djU2MnEtNjIgLTc4IC0xNDAgLTExOXQtMTg5IC00NHEtMjAxIDAgLTMyOCAxNDMuNXQtMTMyIDM5MS41ek0yMzUgNTM4cTAgLTE5OCA4MCAtMzAxLjV0MjIzIC0xMDMuNXE2NiAwIDExOSAyNnQ4Ni41IDY3dDU1LjUgOTUuNXQzMSAxMDcuNXQ5IDEwNwpxMCA0MDQgLTMxMyA0MTVxLTE0MCAwIC0yMTUuNSAtMTEzdC03NS41IC0zMDB6IiAvPgo8Z2x5cGggdW5pY29kZT0iciIgaG9yaXotYWR2LXg9IjY4MyIgZD0iTTYwOSA5MTNxLTE1NCAwIC0yNTAgLTcxLjV0LTk2IC0xOTYuNXYtNjQ1aC0xODV2MTA3NmgxNzh2LTE4MnE5NCAyMDYgMzUzIDIwNnYtMTg3eiIgLz4KPGdseXBoIHVuaWNvZGU9InMiIGhvcml6LWFkdi14PSIxMDI5IiBkPSJNOTYwIDMyNXEwIC0xNTUgLTExMy41IC0yNTYuNXQtMzEwLjUgLTEwMS41cS05NyAwIC0xNzYgMjAuNXQtMTQyLjUgNjQuNXQtMTAxLjUgMTE4LjV0LTQ1IDE3NS41aDE3OHEwIC0yMjAgMjg3IC0yMjBxMTAxIDAgMTcyLjUgNDN0NzEuNSAxMjVxMCA0NCAtMjMgNzB0LTEwMiA1NXQtMjQ3IDY5cS00OCAxMiAtODEuNSAyMi41dC03OCAzMi41dC03MiA0OXQtNDcuNSA3MS41dC0yMCA5OS41cTAgMTYzIDExNC41IDI1My41dDI5My41IDkwLjUKcTk5IDAgMTc1LjUgLTI2dDExOC41IC02M3Q2OS41IC04Ni41dDM2IC04Ny41dDEwLjUgLTc2aC0xNzZxMCA4OCAtNjQgMTM0dC0xODkgNDZxLTE1IDAgLTMwIC0xdC00MiAtNS41dC00OSAtMTQuNXQtNDQuNSAtMjZ0LTM1LjUgLTQzdC0xNSAtNjJxMCAtNjYgNjIuNSAtOTUuNXQyNjcuNSAtNzguNXEyMyAtNSAzNSAtOHE1NSAtMTUgOTUuNSAtMzB0ODMuNSAtMzl0NzAgLTUzdDQ1IC03MS41dDE5IC05NS41eiIgLz4KPGdseXBoIHVuaWNvZGU9InQiIGhvcml6LWFkdi14PSI1NjkiIGQ9Ik01MzggMTI4di0xNTJxLTU3IC0xMiAtOTUgLTEycS0xMTggMCAtMTkxLjUgNjd0LTczLjUgMTYzdjcxOWgtMTQwdjE2M2gxNDB2MzA0aDE4NXYtMzA0aDE3NXYtMTYzaC0xNzV2LTY4MXEwIC01OSAyMi41IC04NXQ3Ni41IC0yNnEzMyAwIDc2IDd6IiAvPgo8Z2x5cGggdW5pY29kZT0idSIgaG9yaXotYWR2LXg9IjExNDciIGQ9Ik0xMTYgMTA3NmgxODd2LTY3M3EwIC02MSAxMCAtMTA3LjV0MzMgLTg0LjV0NjUuNSAtNTh0MTAyLjUgLTIwcTEyOSAwIDIxNi41IDg5dDg3LjUgMjQwdjYxNGgxODV2LTEwNzZoLTE3OHYxNTZxLTE0IC0yNCAtNDMgLTUyLjV0LTcyIC01OS41dC0xMDQgLTUxLjV0LTEyNSAtMjAuNXEtMTY2IDAgLTI2NS41IDk1LjV0LTk5LjUgMjkyLjV2NzE2eiIgLz4KPGdseXBoIHVuaWNvZGU9InYiIGhvcml6LWFkdi14PSIxMDI5IiBkPSJNOTg4IDEwNzZsLTQxMCAtMTA3NmgtMTk0bC0zOTEgMTA3NmgyMDZsMjk0IC04ODJsMzAxIDg4MmgxOTR6IiAvPgo8Z2x5cGggdW5pY29kZT0idyIgaG9yaXotYWR2LXg9IjE0ODkiIGQ9Ik0xNDU4IDEwNzZsLTMxMSAtMTA3NmgtMTg5bC0yMTYgODMybC0yMTYgLTgzMmgtMTg5bC0zMDkgMTA3NmgxOTdsMjA0IC04NDhsMjIwIDg0OGgyMDJsMjExIC04NDhsMjE2IDg0OGgxODB6IiAvPgo8Z2x5cGggdW5pY29kZT0ieCIgaG9yaXotYWR2LXg9IjEwMjkiIGQ9Ik0xMDA3IDBoLTIzMmwtMjY1IDQwNWwtMjYxIC00MDVoLTIyOGwzODAgNTU1bC0zNjEgNTIxaDIzM2wyNDggLTM4MWwyNTIgMzgxaDIxOGwtMzYzIC01MjR6IiAvPgo8Z2x5cGggdW5pY29kZT0ieSIgaG9yaXotYWR2LXg9IjEwMjkiIGQ9Ik0xMDA3IDEwNzZxLTE2NiAtNDcyIC0zMTQuNSAtODY1LjV0LTE4Mi41IC00NjEuNXEtNjYgLTEzMyAtMTQ5IC0xNzEuNXQtMjM1IC00LjV2MTY2cTM1IC0xMyA2My41IC0xOC41dDYwIC0zdDU4IDIydDQ1LjUgNTYuNWw3NCAxNzFsLTQwMyAxMTA5aDIwNGwyOTMgLTg3OWwyOTIgODc5aDE5NHoiIC8+CjxnbHlwaCB1bmljb2RlPSJ6IiBob3Jpei1hZHYteD0iMTAyOSIgZD0iTTk2NSAwaC05MDF2MTQwbDY0NyA3ODRoLTU5N3YxNTJoODI5di0xNDlsLTY0MiAtNzgwaDY2NHYtMTQ3eiIgLz4KPC9mb250Pgo8L2RlZnM+PC9zdmc+Cg==') format('svg'); }
/* This triggers a redraw in IE to Fix IE8's :before content rendering. */
html:hover [class^="ss-"] {
-ms-zoom: 1; }
.ss-icon, .ss-icon.ss-social-regular,
[class^="ss-"]:before, [class*=" ss-"]:before,
[class^="ss-"].ss-social-regular:before, [class*=" ss-"].ss-social-regular:before,
[class^="ss-"].right:after, [class*=" ss-"].right:after,
[class^="ss-"].ss-social-regular.right:after, [class*=" ss-"].ss-social-regular.right:after {
font-family: "SSSocialRegular";
font-style: normal;
font-weight: normal;
text-decoration: none;
text-rendering: optimizeLegibility;
white-space: nowrap;
/*-webkit-font-feature-settings: "liga"; Currently broken in Chrome >= v22. Falls back to text-rendering. Safari is unaffected. */
-moz-font-feature-settings: "liga=1";
-moz-font-feature-settings: "liga";
-ms-font-feature-settings: "liga" 1;
-o-font-feature-settings: "liga";
font-feature-settings: "liga";
-webkit-font-smoothing: antialiased; }
[class^="ss-"].right:before,
[class*=" ss-"].right:before {
display: none;
content: ''; }
.ss-facebook:before, .ss-facebook.right:after {
content: ''; }
.ss-twitter:before, .ss-twitter.right:after {
content: ''; }
.ss-linkedin:before, .ss-linkedin.right:after {
content: ''; }
.ss-googleplus:before, .ss-googleplus.right:after {
content: ''; }
.ss-appdotnet:before, .ss-appdotnet.right:after {
content: ''; }
.ss-zerply:before, .ss-zerply.right:after {
content: ''; }
.ss-reddit:before, .ss-reddit.right:after {
content: ''; }
.ss-steam:before, .ss-steam.right:after {
content: ''; }
.ss-tumblr:before, .ss-tumblr.right:after {
content: ''; }
.ss-wordpress:before, .ss-wordpress.right:after {
content: ''; }
.ss-blogger:before, .ss-blogger.right:after {
content: ''; }
.ss-posterous:before, .ss-posterous.right:after {
content: ''; }
.ss-quora:before, .ss-quora.right:after {
content: ''; }
.ss-youtube:before, .ss-youtube.right:after {
content: ''; }
.ss-vimeo:before, .ss-vimeo.right:after {
content: ''; }
.ss-vine:before, .ss-vine.right:after {
content: ''; }
.ss-letterboxd:before, .ss-letterboxd.right:after {
content: ''; }
.ss-flickr:before, .ss-flickr.right:after {
content: ''; }
.ss-instagram:before, .ss-instagram.right:after {
content: ''; }
.ss-500px:before, .ss-500px.right:after {
content: ''; }
.ss-etsy:before, .ss-etsy.right:after {
content: ''; }
.ss-pinterest:before, .ss-pinterest.right:after {
content: ''; }
.ss-svpply:before, .ss-svpply.right:after {
content: ''; }
.ss-readmill:before, .ss-readmill.right:after {
content: ''; }
.ss-dropbox:before, .ss-dropbox.right:after {
content: ''; }
.ss-pinboard:before, .ss-pinboard.right:after {
content: ''; }
.ss-delicious:before, .ss-delicious.right:after {
content: ''; }
.ss-dribbble:before, .ss-dribbble.right:after {
content: ''; }
.ss-behance:before, .ss-behance.right:after {
content: ''; }
.ss-github:before, .ss-github.right:after {
content: ''; }
.ss-octocat:before, .ss-octocat.right:after {
content: ''; }
.ss-stackoverflow:before, .ss-stackoverflow.right:after {
content: ''; }
.ss-paypal:before, .ss-paypal.right:after {
content: ''; }
.ss-kickstarter:before, .ss-kickstarter.right:after {
content: ''; }
.ss-foursquare:before, .ss-foursquare.right:after {
content: ''; }
.ss-yelp:before, .ss-yelp.right:after {
content: ''; }
.ss-skype:before, .ss-skype.right:after {
content: ''; }
.ss-rdio:before, .ss-rdio.right:after {
content: ''; }
.ss-spotify:before, .ss-spotify.right:after {
content: ''; }
.ss-lastfm:before, .ss-lastfm.right:after {
content: ''; }
.ss-soundcloud:before, .ss-soundcloud.right:after {
content: ''; }
.ss-link:before, .ss-link.right:after {
content: '🔗'; }
.ss-phone:before, .ss-phone.right:after {
content: '📞'; }
.ss-mail:before, .ss-mail.right:after {
content: '✉'; }
.ss-like:before, .ss-like.right:after {
content: '👍'; }
.ss-rss:before, .ss-rss.right:after {
content: ''; }
.ss-share:before, .ss-share.right:after {
content: ''; }
.ss-apple:before, .ss-apple.right:after {
content: ''; }
.ss-microsoft:before, .ss-microsoft.right:after {
content: ''; }
.ss-windows:before, .ss-windows.right:after {
content: ''; }
.ss-android:before, .ss-android.right:after {
content: ''; }
.ss-blackberry:before, .ss-blackberry.right:after {
content: ''; }
/* Legacy */
.ss-fivehundredpx:before, .ss-fivehundredpx.right:after {
content: ''; }
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box; }
*:focus {
outline: none; }
html {
font-size: 1em; }
@media screen and (min-width: 768px) {
html {
font-size: 1.125em; } }
body {
font-family: 'Raleway', Verdana, sans-serif;
font-weight: 200;
line-height: 1.45;
color: #333;
padding-bottom: 2em;
box-shadow: inset 0px -1px 0px 0px white, inset 0px -2px 0px 0px teal, inset 0px -3px 0px 0px yellowgreen, inset 0px -4px 0px 0px blue, inset 0px -5px 0px 0px red, inset 0px -6px 0px 0px yellow, inset 0px -7px 0px 0px purple, inset 0px -8px 0px 0px orange; }
h1, h2, h3, h4 {
margin: 1.414em 0 0.5em;
line-height: 1.2;
font-weight: 300; }
h1 {
margin-top: 0;
font-size: 3em; }
@media screen and (min-width: 768px) {
h1 {
font-size: 3.998em; } }
h2 {
font-size: 2.827em; }
h3 {
font-size: 1.999em; }
h4 {
font-size: 1.414em; }
p {
margin: 0 0 1.3em; }
.small {
font-size: 0.707em; }
ul {
list-style-type: none;
padding: 0; }
ul li:before {
content: "↣";
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
padding: 0 0.5em 0 0; }
em {
border-bottom: 1px dashed; }
.contact a {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
position: relative;
color: #333;
text-decoration: none;
padding: 0.25em 0; }
.contact a:before {
position: absolute;
top: 100%;
left: 0;
width: 100%;
height: 3px;
background: #333;
content: '';
-webkit-transition: -webkit-transform 0.3s;
-moz-transition: -moz-transform 0.3s;
transition: transform 0.3s;
-webkit-transform: scale(0.85);
-moz-transform: scale(0.85);
transform: scale(0.85);
-moz-backface-visibility: hidden;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.contact a:hover:before {
-moz-transform: scale(1);
-ms-transform: scale(1);
-webkit-transform: scale(1);
transform: scale(1); }
.social-links {
padding: 0 0 2em; }
/* components */
@media screen and (min-width: 768px) {
body {
padding-left: 10em; } }
.page-header {
padding-top: 4.5em; }
@media screen and (min-width: 768px) {
.page-header {
padding-top: 3em; } }
.page-heading {
font-weight: 100;
text-transform: uppercase;
text-shadow: -8px 8px 0px purple, -7px 7px 0px yellow, -6px 6px 0px red, -5px 5px 0px blue, -4px 4px 0px yellowgreen, -3px 3px 0px teal, -2px 2px 0px orange; }
.page-heading:hover {
-webkit-animation: stripey 2s infinite; }
@-webkit-keyframes stripey {
14% {
text-shadow: -8px 8px 0px orange, -7px 7px 0px purple, -6px 6px 0px yellow, -5px 5px 0px red, -4px 4px 0px blue, -3px 3px 0px yellowgreen, -2px 2px 0px teal; }
28% {
text-shadow: -8px 8px 0px teal, -7px 7px 0px orange, -6px 6px 0px purple, -5px 5px 0px yellow, -4px 4px 0px red, -3px 3px 0px blue, -2px 2px 0px yellowgreen; }
42% {
text-shadow: -8px 8px 0px yellowgreen, -7px 7px 0px teal, -6px 6px 0px orange, -5px 5px 0px purple, -4px 4px 0px yellow, -3px 3px 0px red, -2px 2px 0px blue; }
56% {
text-shadow: -8px 8px 0px blue, -7px 7px 0px yellowgreen, -6px 6px 0px teal, -5px 5px 0px orange, -4px 4px 0px purple, -3px 3px 0px yellow, -2px 2px 0px red; }
70% {
text-shadow: -8px 8px 0px red, -7px 7px 0px blue, -6px 6px 0px yellowgreen, -5px 5px 0px teal, -4px 4px 0px orange, -3px 3px 0px purple, -2px 2px 0px yellow; }
84% {
text-shadow: -8px 8px 0px yellow, -7px 7px 0px red, -6px 6px 0px blue, -5px 5px 0px yellowgreen, -4px 4px 0px teal, -3px 3px 0px orange, -2px 2px 0px purple; }
98% {
text-shadow: -8px 8px 0px purple, -7px 7px 0px yellow, -6px 6px 0px red, -5px 5px 0px blue, -4px 4px 0px yellowgreen, -3px 3px 0px teal, -2px 2px 0px orange; } }
.section-links {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3em; }
@media screen and (min-width: 768px) {
.section-links {
position: fixed;
right: auto;
height: auto;
bottom: 0;
width: 10em;
padding-top: 1.5em; } }
.section-links ul {
list-style-type: none;
margin: 0;
padding: 0;
text-align: center; }
.section-links ul li {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
padding: 0.75em 0.5em; }
.section-links ul li:before {
content: "※";
vertical-align: top;
opacity: 0.75; }
@media screen and (min-width: 768px) {
.section-links ul li {
display: block;
position: relative;
padding: 1.5em 0; }
.section-links ul li:before {
display: block;
position: absolute;
left: 50%;
bottom: 0;
padding: 0;
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-webkit-transform: translateX(-50%);
transform: translateX(-50%); } }
.section-links ul li a {
border-bottom: 3px solid rgba(0, 0, 0, 0.15);
color: #333;
text-decoration: none;
padding: 0 0.15em;
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
-moz-transition: background 0.15s cubic-bezier(0.33, 0.66, 0.66, 1);
-o-transition: background 0.15s cubic-bezier(0.33, 0.66, 0.66, 1);
-webkit-transition: background 0.15s cubic-bezier(0.33, 0.66, 0.66, 1);
transition: background 0.15s cubic-bezier(0.33, 0.66, 0.66, 1); }
.section-links ul li a:hover, .section-links ul li a.current {
background-color: rgba(0, 0, 0, 0.15); }
header, section, aside, footer {
padding-left: 1.0605rem;
padding-right: 1.0605rem; }
@media screen and (min-width: 768px) {
header, section, aside, footer {
padding-left: 1.414rem;
padding-right: 1.414rem; } }
section {
overflow: hidden; }
.preamble {
padding-top: 1em;
padding-bottom: 1em; }
.inline-column {
padding: 0 2em 0 0; }
@media screen and (min-width: 768px) {
.inline-column {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
vertical-align: top;
max-width: 40%; } }
@media screen and (min-width: 768px) {
.two-column {
width: 60%;
vertical-align: bottom; } }
.work-tile {
float: left;
width: calc((100% - 2%) / 2);
height: 15em;
margin: 0 2% 2% 0;
position: relative;
overflow: hidden;
-webkit-filter: grayscale(90%);
filter: grayscale(90%);
-moz-backface-visibility: hidden;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transition: -webkit-filter 200ms cubic-bezier(0.33, 0.66, 0.66, 1); }
.work-tile:hover {
-webkit-filter: grayscale(0%);
filter: grayscale(0%); }
.work-tile:nth-of-type(even) {
margin-right: 0; }
.work-tile img {
position: absolute;
height: 100%;
width: auto;
left: 50%;
top: 0;
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-webkit-transform: translateX(-50%);
transform: translateX(-50%); }
@media screen and (min-width: 768px) {
.work-tile.mini {
width: calc((100% - 2%) / 3); }
.work-tile.mini img {
height: 100%;
width: auto; }
.work-tile.mega {
width: calc((100% - 2%) / 3 * 2); }
.work-tile img {
left: 0;
right: 0;
width: 100%;
height: auto;
-moz-transform: none;
-ms-transform: none;
-webkit-transform: none;
transform: none; } }
.work-tile-caption {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
color: white;
font-size: 70.7%; }
.work-tile-caption header {
position: relative;
z-index: 1;
opacity: 1;
-moz-transition: opacity 0.2s cubic-bezier(0.33, 0.66, 0.66, 1);
-o-transition: opacity 0.2s cubic-bezier(0.33, 0.66, 0.66, 1);
-webkit-transition: opacity 0.2s cubic-bezier(0.33, 0.66, 0.66, 1);
transition: opacity 0.2s cubic-bezier(0.33, 0.66, 0.66, 1); }
.work-tile-caption:hover header {
opacity: 0; }
.work-tile-caption:before {
content: "";
position: absolute;
left: -20%;
right: -20%;
top: -20%;
bottom: -20%;
opacity: 1;
-moz-transition: opacity 0.5s ease-out, top 0.3s ease-out;
-o-transition: opacity 0.5s ease-out, top 0.3s ease-out;
-webkit-transition: opacity 0.5s ease-out, top 0.3s ease-out;
transition: opacity 0.5s ease-out, top 0.3s ease-out;
background-image: linear-gradient(300deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8315)); }
.work-tile-caption:hover:before {
opacity: 0.15;
top: 0; }
| 83.848761 | 114,821 | 0.873897 |
0dde5f225429c13d0590447b0405cc6eb5ff14dc | 4,104 | cs | C# | Assets/Scripts/Behavior/TreeSharpPlus/LeafInvoke.cs | TonyPwny/CS428P1 | 23e288be5fbfa22618b672da3e6c9e7696ac067d | [
"MIT"
] | null | null | null | Assets/Scripts/Behavior/TreeSharpPlus/LeafInvoke.cs | TonyPwny/CS428P1 | 23e288be5fbfa22618b672da3e6c9e7696ac067d | [
"MIT"
] | null | null | null | Assets/Scripts/Behavior/TreeSharpPlus/LeafInvoke.cs | TonyPwny/CS428P1 | 23e288be5fbfa22618b672da3e6c9e7696ac067d | [
"MIT"
] | null | null | null | using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Text;
using System.Reflection;
using System.Reflection.Emit;
using System.Collections;
using UnityEngine;
namespace TreeSharpPlus
{
/// <summary>
/// Executes a lambda function in a node. If the given lambda returns a
/// RunStatus, will return the resulting RunStatus from execution of the
/// lambda. Otherwise, will always return RunStatus.Success.
///
/// NOTE: Do NOT use this for comparisons or evaluation! If you want to check
/// boolean function results, use LeafAssert.
/// </summary>
public class LeafInvoke : Node
{
// A clunky way of allowing the user to specify whether we want
// to use a function that returns a RunStatus or not. This is
// ugly in code, but more efficient than, say, nesting lambdas
protected Action func_noReturn = null;
protected Func<RunStatus> func_return = null;
protected Action term_noReturn = null;
protected Func<RunStatus> term_return = null;
protected LeafInvoke()
{
this.func_noReturn = null;
this.func_return = null;
this.term_noReturn = null;
this.term_return = null;
}
public LeafInvoke(
Func<RunStatus> function)
: this()
{
this.func_return = function;
this.term_return = null;
}
public LeafInvoke(
Action function)
: this()
{
this.func_noReturn = function;
this.term_return = null;
}
public LeafInvoke(
Func<RunStatus> function,
Action terminate)
: this()
{
this.func_return = function;
this.term_noReturn = terminate;
}
public LeafInvoke(
Action function,
Action terminate)
: this()
{
this.func_noReturn = function;
this.term_noReturn = terminate;
}
public LeafInvoke(
Func<RunStatus> function,
Func<RunStatus> terminate)
: this()
{
this.func_return = function;
this.term_return = terminate;
}
public LeafInvoke(
Action function,
Func<RunStatus> terminate)
: this()
{
this.func_noReturn = function;
this.term_return = terminate;
}
public override RunStatus Terminate()
{
RunStatus curStatus = this.StartTermination();
if (curStatus != RunStatus.Running)
return curStatus;
// Do we have a termination function that returns a RunStatus?
if (this.term_return != null)
return this.ReturnTermination(this.term_return.Invoke());
// If not, do we have a termination function that doesn't?
else if (this.term_noReturn != null)
this.term_noReturn.Invoke();
return this.ReturnTermination(RunStatus.Success);
}
public override IEnumerable<RunStatus> Execute()
{
if (this.func_return != null)
{
//Debug.Log ("YesInvoked!");
RunStatus status = RunStatus.Running;
while (status == RunStatus.Running)
{
status = this.func_return.Invoke();
//Debug.Log (status);
if (status != RunStatus.Running)
break;
yield return status;
}
yield return status;
yield break;
}
else if (this.func_noReturn != null)
{
this.func_noReturn.Invoke();
//Debug.Log ("NOInvoked!");
yield return RunStatus.Success;
yield break;
}
else
{
throw new ApplicationException(this + ": No method given");
}
}
}
} | 29.73913 | 81 | 0.538255 |
7aa62798e4722c77f44bc872fad4688138133473 | 702 | cs | C# | CoreWiki/Configuration/Startup/ConfigureAutomapperServices.cs | spboyer/CoreWiki | 5ef376c0d5557b620ff2ac9670195c7b5fc86ec5 | [
"MIT"
] | 379 | 2018-03-27T15:45:38.000Z | 2022-02-24T21:26:49.000Z | CoreWiki/Configuration/Startup/ConfigureAutomapperServices.cs | spboyer/CoreWiki | 5ef376c0d5557b620ff2ac9670195c7b5fc86ec5 | [
"MIT"
] | 415 | 2018-03-27T15:50:01.000Z | 2021-07-15T10:16:20.000Z | CoreWiki/Configuration/Startup/ConfigureAutomapperServices.cs | spboyer/CoreWiki | 5ef376c0d5557b620ff2ac9670195c7b5fc86ec5 | [
"MIT"
] | 193 | 2018-03-29T15:03:40.000Z | 2022-02-09T03:49:34.000Z | using AutoMapper;
using CoreWiki.Application.Articles.Managing;
using CoreWiki.Application.Articles.Reading;
using Microsoft.Extensions.DependencyInjection;
namespace CoreWiki.Configuration.Startup
{
public static class ConfigureAutomapperServices
{
public static IMapper ConfigureAutomapper(this IServiceCollection services) {
var config = new MapperConfiguration(cfg => {
cfg.AddProfile<ArticleReadingProfile>();
cfg.AddProfile<ArticleManagingProfile>();
cfg.AddProfile<CoreWikiWebsiteProfile>();
});
config.AssertConfigurationIsValid();
var mapper = config.CreateMapper();
services?.AddSingleton(mapper);
return mapper;
}
}
}
| 24.206897 | 80 | 0.742165 |
6648189ff800ca95b7ca4cb5c79135aec1d19a3e | 2,213 | py | Python | authenticate/migrations/0001_initial.py | PatrickCmd/flight-booking-application | a521932530d622c6eef46ea6a0f968c8267b622e | [
"MIT"
] | null | null | null | authenticate/migrations/0001_initial.py | PatrickCmd/flight-booking-application | a521932530d622c6eef46ea6a0f968c8267b622e | [
"MIT"
] | 8 | 2020-02-12T01:01:51.000Z | 2022-03-11T23:59:40.000Z | authenticate/migrations/0001_initial.py | PatrickCmd/flight-booking-application | a521932530d622c6eef46ea6a0f968c8267b622e | [
"MIT"
] | 1 | 2019-08-13T19:04:11.000Z | 2019-08-13T19:04:11.000Z | # Generated by Django 2.2.3 on 2019-07-15 00:36
from django.db import migrations, models
import django.utils.timezone
class Migration(migrations.Migration):
initial = True
dependencies = []
operations = [
migrations.CreateModel(
name="User",
fields=[
(
"id",
models.AutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
("password", models.CharField(max_length=128, verbose_name="password")),
(
"last_login",
models.DateTimeField(
blank=True, null=True, verbose_name="last login"
),
),
(
"email",
models.EmailField(
max_length=255, unique=True, verbose_name="email address"
),
),
("date_of_birth", models.DateField()),
("first_name", models.CharField(max_length=100, null=True)),
("middle_name", models.CharField(max_length=100, null=True)),
("last_name", models.CharField(max_length=100, null=True)),
(
"gender",
models.CharField(
choices=[("m", "Male"), ("f", "Female"), ("o", "Other")],
max_length=1,
),
),
("location", models.CharField(max_length=100, null=True)),
("phone", models.CharField(max_length=30)),
("image", models.ImageField(blank=True, null=True, upload_to="")),
(
"date_created",
models.DateTimeField(verbose_name=django.utils.timezone.now),
),
("is_active", models.BooleanField(default=True)),
("is_admin", models.BooleanField(default=False)),
],
options={"abstract": False},
)
]
| 35.126984 | 88 | 0.437415 |
a7c3cd60a3663e3a95908580620b39e282d8c4db | 4,868 | lua | Lua | credits.lua | MaiaLucas/Run-Square | 61a675b4e25a4946810c90efb600001b609618ac | [
"MIT"
] | null | null | null | credits.lua | MaiaLucas/Run-Square | 61a675b4e25a4946810c90efb600001b609618ac | [
"MIT"
] | 4 | 2019-02-26T19:50:39.000Z | 2019-03-15T15:18:00.000Z | credits.lua | MaiaLucas/Run-Cube-Game | 61a675b4e25a4946810c90efb600001b609618ac | [
"MIT"
] | null | null | null | local composer = require( "composer" )
local scene = composer.newScene()
math.randomseed( os.time() )
-- Set physics
local physics = require("physics")
physics.start()
----------------------------------------------------------
W = display.contentWidth
H = display.contentHeight
X = display.contentCenterX
Y = display.contentCenterY
----------------------------------------------------------
----------------------------------------------------------
----------------------------------------------------------
----------------------------------------------------------
local bg3
local house
local exit
local credits
local developer
local supervisor
local copyright
----------------------------------------------------------
----------------------------------------------------------
----------------------------------------------------------
local function backToMenu()
composer.gotoScene( "menu", { time=500, effect="crossFade" } )
end
-- COMPOSER --
----------------------------------------------------------
----------------------------------------------------------
----------------------------------------------------------
-- COMPOSER --
composer.recycleOnSceneChange = true;
function scene:create( event )
sceneGroup = self.view
----------------------------
-------- BACKGROUND --------
bg3 = display.newImageRect("images/meio-dia.PNG", 680, 380)
bg3.x = X
bg3.y = Y
bg3.alpha = 1
house = display.newImageRect("images/house.png", 100, 100)
house.x = X-200
house.y = Y+100
house.alpha = 1
-------------------------------
-------- SKY AND FLOOR --------
floor = display.newRect( 130, 299, 1000, 10 )
floor:setFillColor( 1 )
floor.alpha = 0
floor.name = "Floor"
physics.addBody( floor, "static" )
sky = display.newRect( 130, 1, 1000, 10 )
sky:setFillColor( 0.7 )
sky.alpha = 0
sky.name = "Sky"
physics.addBody( sky, "static" )
-------------------------
-------- CREDITS --------
exit = display.newImageRect("images/back.png", 90, 30)
exit.x = X
exit.y = Y+100
exit.alpha = 1
physics.addBody( exit, "static", { isSensor = false } )
credits = display.newImageRect("images/credits.png", 150, 30)
credits.x = X
credits.y = Y-130
credits.alpha = 1
physics.addBody( credits, "static", { isSensor = false } )
developer = display.newImageRect("images/developer.png", 250, 30)
developer.x = X
developer.y = Y-70
developer.alpha = 1
physics.addBody( developer, "static", { isSensor = false } )
supervisor = display.newImageRect("images/supervisor.png", 350, 30)
supervisor.x = X
supervisor.y = Y-20
supervisor.alpha = 1
physics.addBody( supervisor, "static", { isSensor = false } )
copyright = display.newImageRect("images/copyright.png", 450, 30)
copyright.x = X
copyright.y = Y+30
copyright.alpha = 1
physics.addBody( copyright, "static", { isSensor = false } )
------------------------
-------- INSERT --------
sceneGroup:insert(bg3)
sceneGroup:insert(house)
sceneGroup:insert(exit)
sceneGroup:insert(credits)
sceneGroup:insert(developer)
sceneGroup:insert(supervisor)
sceneGroup:insert(copyright)
sceneGroup:insert(sky)
sceneGroup:insert(floor)
end
function scene:show( event )
local sceneGroup = self.view
local phase = event.phase
if ( phase == "will" ) then
exit:addEventListener( "tap", backToMenu )
elseif ( phase == "did" ) then
-- Code here runs when the scene is entirely on screen
--audio.play( musicGame )
end
end
function scene:hide( event )
local sceneGroup = self.view
local phase = event.phase
if ( phase == "will" ) then
-- Code here runs when the scene is on screen (but is about to go off screen)
elseif ( phase == "did" ) then
-- Code here runs immediately after the scene goes entirely off screen
exit:removeEventListener( "tap", backToMenu )
end
end
function scene:destroy( event )
local sceneGroup = self.view
-- Code here runs prior to the removal of scene's view
end
----------------------------------------------------------
----------------------------------------------------------
----------------------------------------------------------
scene:addEventListener( "create", scene )
scene:addEventListener( "show", scene )
scene:addEventListener( "hide", scene )
scene:addEventListener( "destroy", scene )
return scene | 29.682927 | 83 | 0.474733 |
e1d402e77cd40ed47f1c17ff6a71a157a8bdc765 | 21,496 | pkb | SQL | src/plsql/flow_engine_util.pkb | flowsforapex/apex-flowsforapex | f63568cf25fc40ea8c1465d9d0770b7b67f23311 | [
"MIT"
] | 5 | 2022-02-05T12:18:01.000Z | 2022-03-20T23:07:44.000Z | src/plsql/flow_engine_util.pkb | flowsforapex/apex-flowsforapex | f63568cf25fc40ea8c1465d9d0770b7b67f23311 | [
"MIT"
] | 38 | 2022-01-20T17:48:48.000Z | 2022-03-30T11:03:58.000Z | src/plsql/flow_engine_util.pkb | flowsforapex/apex-flowsforapex | f63568cf25fc40ea8c1465d9d0770b7b67f23311 | [
"MIT"
] | 5 | 2022-02-05T08:58:25.000Z | 2022-03-27T20:28:26.000Z | /*
-- Flows for APEX - flow_engine_util.pkb
--
-- (c) Copyright Oracle Corporation and / or its affiliates, 2022.
-- (c) Copyright MT AG, 2021-2022.
--
-- Created April-2021 Richard Allen (Flowquest) - from flow_engine.pkb
--
*/
create or replace package body flow_engine_util
as
lock_timeout exception;
pragma exception_init (lock_timeout, -3006);
g_step_keys_enforced boolean;
function get_config_value
(
p_config_key in flow_configuration.cfig_key%type
, p_default_value in flow_configuration.cfig_value%type
) return flow_configuration.cfig_value%type
as
l_config_value flow_configuration.cfig_value%type;
begin
select cfig.cfig_value
into l_config_value
from flow_configuration cfig
where cfig.cfig_key = p_config_key
;
return l_config_value;
exception
when no_data_found then
return p_default_value;
end get_config_value;
procedure set_config_value
(
p_config_key in flow_configuration.cfig_key%type
, p_value in flow_configuration.cfig_value%type)
as
begin
update flow_configuration
set cfig_value = p_value
where cfig_key = p_config_key;
end set_config_value;
function step_key
( pi_sbfl_id in flow_subflows.sbfl_id%type default null
, pi_current in flow_subflows.sbfl_current%type default null
, pi_became_current in flow_subflows.sbfl_became_current%type default null
) return flow_subflows.sbfl_step_key%type
is
begin
return sys.dbms_random.string('A', 10);
end step_key;
function step_key_valid
( pi_prcs_id in flow_processes.prcs_id%type
, pi_sbfl_id in flow_subflows.sbfl_id%type
, pi_step_key_supplied in flow_subflows.sbfl_step_key%type
, pi_step_key_required in flow_subflows.sbfl_step_key%type default null
) return boolean
is
l_step_key_required flow_subflows.sbfl_step_key%type := pi_step_key_required;
begin
if pi_step_key_required is null then
select sbfl.sbfl_step_key
into l_step_key_required
from flow_subflows sbfl
where sbfl.sbfl_id = pi_sbfl_id
and sbfl.sbfl_prcs_id = pi_prcs_id
;
end if;
apex_debug.info
( p_message => 'Step Key Required: %0 Step Key Supplied: %1'
, p0 => l_step_key_required
, p1 => pi_step_key_supplied
);
if pi_step_key_supplied = l_step_key_required then
return true;
elsif (pi_step_key_supplied is null
and not g_step_keys_enforced) then
return true;
else
flow_errors.handle_instance_error
( pi_prcs_id => pi_prcs_id
, pi_sbfl_id => pi_sbfl_id
, pi_message_key => 'step-key-incorrect'
, p0 => nvl(pi_step_key_supplied, '"null"')
, p1 => l_step_key_required
);
-- $F4AMESSAGE 'step-key-incorrect' || 'This Process Step has already occurred. (Incorrect step key %0 supplied while exopecting step key %1).'
return false;
end if;
end step_key_valid;
function check_subflow_exists
(
p_process_id in flow_processes.prcs_id%type
, p_subflow_id in flow_subflows.sbfl_id%type
) return boolean
is
l_cnt number;
begin
select count(*)
into l_cnt
from flow_subflows sbfl
where sbfl.sbfl_id = p_subflow_id
and sbfl.sbfl_prcs_id = p_process_id
;
return ( l_cnt = 1 );
end check_subflow_exists;
function get_subprocess_parent_subflow
( p_process_id in flow_processes.prcs_id%type
, p_subflow_id in flow_subflows.sbfl_id%type
, p_current in flow_objects.objt_bpmn_id%type -- an object in the subprocess
) return flow_types_pkg.t_subflow_context
is
l_parent_subflow flow_types_pkg.t_subflow_context;
l_parent_subproc_activity flow_objects.objt_bpmn_id%type;
begin
select calling_sbfl.sbfl_id
, calling_sbfl.sbfl_step_key
, calling_sbfl.sbfl_scope
into l_parent_subflow.sbfl_id
, l_parent_subflow.step_key
, l_parent_subflow.scope
from flow_subflows calling_sbfl
join flow_subflows called_sbfl
on called_sbfl.sbfl_calling_sbfl = calling_sbfl.sbfl_id
and called_sbfl.sbfl_prcs_id = calling_sbfl.sbfl_prcs_id
where called_sbfl.sbfl_id = p_subflow_id
and called_sbfl.sbfl_prcs_id = p_process_id
;
return l_parent_subflow;
exception
when no_data_found then
-- no subflow found running the parent process
return null;
end get_subprocess_parent_subflow;
procedure get_number_of_connections
( pi_dgrm_id in flow_diagrams.dgrm_id%type
, pi_target_objt_id in flow_connections.conn_tgt_objt_id%type
, pi_conn_type in flow_connections.conn_tag_name%type
, po_num_forward_connections out number
, po_num_back_connections out number
)
is
begin
select count(*)
into po_num_back_connections
from flow_connections conn
where conn.conn_tgt_objt_id = pi_target_objt_id
and conn.conn_tag_name = pi_conn_type
and conn.conn_dgrm_id = pi_dgrm_id
;
select count(*)
into po_num_forward_connections
from flow_connections conn
where conn.conn_src_objt_id = pi_target_objt_id
and conn.conn_tag_name = pi_conn_type
and conn.conn_dgrm_id = pi_dgrm_id
;
end get_number_of_connections;
function get_object_subtag
( p_objt_bpmn_id in flow_objects.objt_bpmn_id%type
, p_dgrm_id in flow_diagrams.dgrm_id%type
)
return varchar2
is
l_objt_sub_tag_name flow_objects.objt_bpmn_id%type;
begin
select objt.objt_sub_tag_name
into l_objt_sub_tag_name
from flow_objects objt
where objt.objt_bpmn_id = p_objt_bpmn_id
and objt.objt_dgrm_id = p_dgrm_id
;
return l_objt_sub_tag_name;
end get_object_subtag;
function get_object_tag
( p_objt_bpmn_id in flow_objects.objt_bpmn_id%type
, p_dgrm_id in flow_diagrams.dgrm_id%type
) return flow_objects.objt_tag_name%type
is
l_objt_tag_name flow_objects.objt_bpmn_id%type;
begin
select objt.objt_tag_name
into l_objt_tag_name
from flow_objects objt
where objt.objt_bpmn_id = p_objt_bpmn_id
and objt.objt_dgrm_id = p_dgrm_id
;
return l_objt_tag_name;
end get_object_tag;
function get_subflow_info
( p_process_id in flow_processes.prcs_id%type
, p_subflow_id in flow_subflows.sbfl_id%type
, p_lock_subflow in boolean default false
, p_lock_process in boolean default false
) return flow_subflows%rowtype
is
l_sbfl_rec flow_subflows%rowtype;
l_prcs_check_id flow_processes.prcs_id%type;
begin
begin
if p_lock_process then
begin
select prcs.prcs_id
into l_prcs_check_id
from flow_processes prcs
where prcs.prcs_id = p_process_id
;
exception
when no_data_found then
flow_errors.handle_instance_error
( pi_prcs_id => p_process_id
, pi_sbfl_id => p_subflow_id
, pi_message_key => 'engine-util-prcs-not-found'
, p0 => p_process_id
);
-- $F4AMESSAGE 'engine-util-prcs-not-found' || 'Application Error: Process ID %0 not found).'
end;
end if;
if p_lock_subflow then
select *
into l_sbfl_rec
from flow_subflows sbfl
where sbfl.sbfl_prcs_id = p_process_id
and sbfl.sbfl_id = p_subflow_id
for update wait 2
;
else
select *
into l_sbfl_rec
from flow_subflows sbfl
where sbfl.sbfl_prcs_id = p_process_id
and sbfl.sbfl_id = p_subflow_id
;
end if;
exception
when no_data_found then
-- check if subflow valid in process
select sbfl.sbfl_prcs_id
into l_prcs_check_id
from flow_subflows sbfl
where sbfl.sbfl_id = p_subflow_id
;
if l_prcs_check_id != p_process_id then
flow_errors.handle_instance_error
( pi_prcs_id => p_process_id
, pi_sbfl_id => p_subflow_id
, pi_message_key => 'engine-util-sbfl-not-in-prcs'
, p0 => p_subflow_id
, p1 => p_process_id
);
-- $F4AMESSAGE 'engine-util-sbfl-not-in-prcs' || 'Application Error: Subflow ID supplied ( %0 ) exists but is not child of Process ID Supplied ( %1 ).'
end if;
when lock_timeout then
flow_errors.handle_instance_error
( pi_prcs_id => p_process_id
, pi_sbfl_id => p_subflow_id
, pi_message_key => 'timeout_locking_subflow'
, p0 => p_subflow_id
);
-- $F4AMESSAGE 'timeout_locking_subflow' || 'Unable to lock subflow %0 as currently locked by another user. Retry your transaction later.'
end;
return l_sbfl_rec;
exception
when no_data_found then
flow_errors.handle_instance_error
( pi_prcs_id => p_process_id
, pi_sbfl_id => p_subflow_id
, pi_message_key => 'engine-util-sbfl-not-found'
, p0 => p_subflow_id
);
return null;
-- $F4AMESSAGE 'engine-util-sbfl-not-found' || 'Subflow ID supplied ( %0 ) not found. Check for process events that changed process flow (timeouts, errors, escalations).'
end get_subflow_info;
function subflow_start
(
p_process_id in flow_processes.prcs_id%type
, p_parent_subflow in flow_subflows.sbfl_id%type
, p_starting_object in flow_objects.objt_bpmn_id%type
, p_current_object in flow_objects.objt_bpmn_id%type
, p_route in flow_subflows.sbfl_route%type
, p_last_completed in flow_objects.objt_bpmn_id%type
, p_status in flow_subflows.sbfl_status%type default flow_constants_pkg.gc_sbfl_status_running
, p_parent_sbfl_proc_level in flow_subflows.sbfl_process_level%type --- can remove?
, p_new_proc_level in boolean default false
, p_new_scope in boolean default false
, p_new_diagram in boolean default false
, p_dgrm_id in flow_diagrams.dgrm_id%type
) return flow_types_pkg.t_subflow_context
is
l_timestamp flow_subflows.sbfl_became_current%type;
l_process_level flow_subflows.sbfl_process_level%type := p_parent_sbfl_proc_level;
l_diagram_level flow_subflows.sbfl_diagram_level%type := 0;
l_new_subflow_context flow_types_pkg.t_subflow_context;
l_lane flow_objects.objt_bpmn_id%type;
l_lane_name flow_objects.objt_name%type;
l_scope flow_subflows.sbfl_scope%type := 0;
l_level_parent flow_subflows.sbfl_id%type := 0;
l_is_new_level varchar2(1 byte) := flow_constants_pkg.gc_false;
l_is_new_scope varchar2(1 byte) := flow_constants_pkg.gc_false;
begin
apex_debug.enter
( 'subflow_start'
, 'Process', p_process_id
, 'Parent Subflow', p_parent_subflow
);
-- convert boolean in parameters to varchar2 for use in SQL
if p_new_proc_level then
l_is_new_level := 'Y';
end if;
if p_parent_subflow is null then
-- initial subflow in process. Get starting Lane info. (could be null)
select lane_objt.objt_bpmn_id
, lane_objt.objt_name
into l_lane
, l_lane_name
from flow_objects start_objt
left join flow_objects lane_objt
on start_objt.objt_objt_lane_id = lane_objt.objt_id
and start_objt.objt_dgrm_id = lane_objt.objt_dgrm_id
where start_objt.objt_dgrm_id = p_dgrm_id
and start_objt.objt_bpmn_id = p_starting_object
;
else
-- new subflow in existing process
-- get process level, diagram level, scope, calling subflow for copy down unless this is the initial subflow in a process
select sbfl.sbfl_process_level
, sbfl.sbfl_diagram_level
, sbfl.sbfl_scope
, sbfl.sbfl_lane
, sbfl.sbfl_lane_name
, case l_is_new_level
when 'Y' then p_parent_subflow
when 'N' then sbfl.sbfl_calling_sbfl
end
into l_process_level
, l_diagram_level
, l_scope
, l_lane
, l_lane_name
, l_level_parent
from flow_subflows sbfl
where sbfl.sbfl_id = p_parent_subflow;
end if;
-- create the new subflow
insert
into flow_subflows
( sbfl_prcs_id
, sbfl_sbfl_id
, sbfl_process_level
, sbfl_starting_object
, sbfl_route
, sbfl_last_completed
, sbfl_became_current
, sbfl_current
, sbfl_status
, sbfl_last_update
, sbfl_dgrm_id
, sbfl_diagram_level
, sbfl_step_key
, sbfl_calling_sbfl
, sbfl_scope
, sbfl_lane
, sbfl_lane_name
)
values
( p_process_id
, p_parent_subflow
, l_process_level
, p_starting_object
, p_route
, p_last_completed
, systimestamp
, p_current_object
, p_status
, systimestamp
, p_dgrm_id
, l_diagram_level
, flow_engine_util.step_key
, l_level_parent
, l_scope
, l_lane
, l_lane_name
)
returning sbfl_id, sbfl_step_key, sbfl_route, sbfl_scope into l_new_subflow_context
;
if p_new_proc_level then
-- starting new subprocess. Reset sbfl_process_level to new sbfl_id (change on new subProcesss, callActivity)
l_process_level := l_new_subflow_context.sbfl_id;
if p_new_scope then
-- starting new variable scope. Reset sbfl_scope to new sbfl_id. (change on callActivity (maybe others later...iteration, etc.) )
l_new_subflow_context.scope := l_new_subflow_context.sbfl_id;
end if;
if p_new_diagram then
-- starting a new diagram. set the diagram_level to new sbfl_id (change on new callActivity)
l_diagram_level := l_new_subflow_context.sbfl_id;
end if;
update flow_subflows
set sbfl_process_level = l_process_level
, sbfl_scope = l_new_subflow_context.scope
, sbfl_diagram_level = l_diagram_level
where sbfl_id = l_new_subflow_context.sbfl_id;
end if;
apex_debug.info
( p_message => 'New Subflow started. Process: %0 Subflow: %1 Step Key: %2 Scope: %3 Lane: %4 ( %5 ).'
, p0 => p_process_id
, p1 => l_new_subflow_context.sbfl_id
, p2 => l_new_subflow_context.step_key
, p3 => l_new_subflow_context.scope
, p4 => l_lane
, p5 => l_lane_name
);
return l_new_subflow_context;
end subflow_start;
procedure terminate_level
( p_process_id in flow_processes.prcs_id%type
, p_process_level in flow_subflows.sbfl_process_level%type
)
is
begin
apex_debug.enter
( 'terminate_level'
, 'Process', p_process_id
, 'Process Level', p_process_level
);
-- find any running subprocesses with parent at this level
begin
for child_proc_levels in (
select distinct child_sbfl.sbfl_process_level
from flow_subflows parent_sbfl
join flow_subflows child_sbfl
on parent_sbfl.sbfl_current = child_sbfl.sbfl_starting_object
where parent_sbfl.sbfl_status = flow_constants_pkg.gc_sbfl_status_in_subprocess
and parent_sbfl.sbfl_process_level = p_process_level
and parent_sbfl.sbfl_prcs_id = p_process_id
)
loop
terminate_level
( p_process_id => p_process_id
, p_process_level => child_proc_levels.sbfl_process_level);
end loop;
end;
-- end all subflows in the level
delete from flow_subflows
where sbfl_process_level = p_process_level
and sbfl_prcs_id = p_process_id
;
apex_debug.info
( p_message => 'Process %0 : All subflows at process level %1 terminated'
, p0 => p_process_id
, p1 => p_process_level
);
end terminate_level;
procedure subflow_complete
( p_process_id in flow_processes.prcs_id%type
, p_subflow_id in flow_subflows.sbfl_id%type
)
is
l_remaining_subflows number;
l_remaining_siblings number;
l_current_object flow_subflows.sbfl_current%type;
l_current_subflow_status flow_subflows.sbfl_status%type;
l_parent_subflow_id flow_subflows.sbfl_sbfl_id%type;
l_parent_subflow_status flow_subflows.sbfl_status%type;
l_parent_subflow_last_completed flow_subflows.sbfl_last_completed%type;
l_parent_subflow_current flow_subflows.sbfl_current%type;
begin
apex_debug.enter
( 'subflow_complete'
, 'Subflow' , p_subflow_id
);
select sbfl.sbfl_sbfl_id
, sbfl.sbfl_current
, sbfl.sbfl_status
into l_parent_subflow_id
, l_current_object
, l_current_subflow_status
from flow_subflows sbfl
where sbfl.sbfl_id = p_subflow_id
and sbfl.sbfl_prcs_id = p_process_id
;
if l_parent_subflow_id is not null then
-- get parent subflow info
select sbfl.sbfl_status
, sbfl.sbfl_last_completed
, sbfl.sbfl_current
into l_parent_subflow_status
, l_parent_subflow_last_completed
, l_parent_subflow_current
from flow_subflows sbfl
where sbfl.sbfl_id = l_parent_subflow_id
and sbfl.sbfl_prcs_id = p_process_id
;
end if;
-- delete the subflow
delete from flow_subflows
where sbfl_id = p_subflow_id
and sbfl_prcs_id = p_process_id
;
-- handle parallel flows with their own end events. Last one completing needs to clear up the parent 'split' sbfl.
-- if subflow has parent with
-- a) status 'split' (flow_constants_pkg.gc_sbfl_status_split)
-- b) no other children, AND
-- c) is not a merging gateway
-- then we have an ophan parent process to clean up (all opening gateway paths have run to conclusion)
-- need to call this recursively in case you have nested open parallel gateways
if l_parent_subflow_id is not null then
select count(*)
into l_remaining_siblings
from flow_subflows sbfl
where sbfl.sbfl_prcs_id = p_process_id
and sbfl.sbfl_starting_object = l_parent_subflow_last_completed
;
if ( l_remaining_siblings = 0
and l_parent_subflow_status = flow_constants_pkg.gc_sbfl_status_split
and l_current_subflow_status != flow_constants_pkg.gc_sbfl_status_waiting_gateway
)
then
-- call subflow_complete again recursively in case it has orphan grandparent
subflow_complete ( p_process_id => p_process_id
, p_subflow_id => l_parent_subflow_id
);
end if;
end if;
end subflow_complete;
function lock_subflow
( p_subflow_id in flow_subflows.sbfl_id%type
) return boolean
is
l_sbfl_prcs_id flow_subflows.sbfl_prcs_id%type;
begin
apex_debug.enter
( 'lock_subflow'
, 'Subflow', p_subflow_id
);
select sbfl.sbfl_prcs_id
into l_sbfl_prcs_id
from flow_subflows sbfl
where sbfl.sbfl_id = p_subflow_id
for update wait 2
;
return true;
exception
when no_data_found then
return false;
when lock_timeout then
flow_errors.handle_instance_error
( pi_prcs_id => l_sbfl_prcs_id
, pi_sbfl_id => p_subflow_id
, pi_message_key => 'timeout_locking_subflow'
, p0 => p_subflow_id
);
-- $F4AMESSAGE 'timeout_locking_subflow' || 'Unable to lock subflow %0 as currently locked by another user. Try again later.'
return false;
end lock_subflow;
function get_scope
( p_process_id in flow_processes.prcs_id%type
, p_subflow_id in flow_subflows.sbfl_id%type
) return flow_subflows.sbfl_scope%type
is
l_scope flow_subflows.sbfl_scope%type;
begin
select sbfl_scope
into l_scope
from flow_subflows
where sbfl_id = p_subflow_id
and sbfl_prcs_id = p_process_id
;
return l_scope;
exception
when no_data_found then
flow_errors.handle_instance_error
( pi_prcs_id => p_process_id
, pi_sbfl_id => p_subflow_id
, pi_message_key => 'engine-util-sbfl-not-found'
, p0 => p_subflow_id
, p1 => p_process_id
);
-- $F4AMESSAGE 'engine-util-sbfl-not-found' || 'Subflow ID supplied ( %0 ) not found. Check for process events that changed process flow (timeouts, errors, escalations).'
end;
-- initialise step key enforcement parameter
begin
g_step_keys_enforced := ( flow_engine_util.get_config_value
( p_config_key => flow_constants_pkg.gc_config_dup_step_prevention
, p_default_value => flow_constants_pkg.gc_config_default_dup_step_prevention
)
= flow_constants_pkg.gc_config_dup_step_prevention_strict
);
end flow_engine_util;
/
| 33.905363 | 178 | 0.663054 |
a13a468bc592c443a9c422f2cdefe17d9b5e8b6d | 578 | ts | TypeScript | app/config/configuration.ts | davidu2d/api-nodejs-nestjs-cypress | 677ed204bbfe2098f622b40e60d880a3fb44b02a | [
"MIT"
] | null | null | null | app/config/configuration.ts | davidu2d/api-nodejs-nestjs-cypress | 677ed204bbfe2098f622b40e60d880a3fb44b02a | [
"MIT"
] | null | null | null | app/config/configuration.ts | davidu2d/api-nodejs-nestjs-cypress | 677ed204bbfe2098f622b40e60d880a3fb44b02a | [
"MIT"
] | null | null | null | export const configuration = () => ({
/*NODE_ENV: process.env.NODE_ENV,
port: parseInt(process.env.PORT, 10) || 3001,
jwt: {
secret: process.env.JWT_SECRET,
expiresIn: process.env.JWT_EXPIRES_IN,
},*/
database: {
host: process.env.MSSQL_HOST,
port: parseInt(process.env.MSSQL_PORT, 10),
username: process.env.MSSQL_USER,
password: process.env.MSSQL_PASSWORD,
database: process.env.MSSQL_DATABASE,
},
redis: {
host: process.env.REDIS_HOST,
port: process.env.REDIS_PORT,
defaultTtl: process.env.REDIS_TTL,
},
});
| 27.52381 | 49 | 0.66436 |
c9f5022ced7057aa30a3d6c00e96cd04a3d82d1a | 1,850 | ts | TypeScript | src/app/members/members.module.ts | inidaname/ADPWebApp | cefec992b5d3b4c23a047e364ac65fd2e489df5d | [
"MIT"
] | null | null | null | src/app/members/members.module.ts | inidaname/ADPWebApp | cefec992b5d3b4c23a047e364ac65fd2e489df5d | [
"MIT"
] | null | null | null | src/app/members/members.module.ts | inidaname/ADPWebApp | cefec992b5d3b4c23a047e364ac65fd2e489df5d | [
"MIT"
] | null | null | null | import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { AgmCoreModule } from '@agm/core';
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
import { FileUploadModule } from 'ng2-file-upload';
import { CloudinaryModule } from '@cloudinary/angular-5.x';
import * as Cloudinary from 'cloudinary-core';
import { MembersComponent } from './members.component';
import { MemberSideMenuComponent } from './components/member-side-menu/member-side-menu.component';
import { MemberIndexComponent } from './routes/member-index/member-index.component';
import { MemberMessageComponent } from './routes/member-message/member-message.component';
import { MemberSecretariatComponent } from './routes/member-secretariat/member-secretariat.component';
import { MemberCandidatesComponent } from './routes/member-candidates/member-candidates.component';
import { MemberSettingsComponent } from './routes/member-settings/member-settings.component';
import { config } from '../../config';
import { RoutesModule } from 'src/routes/routes.module';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
@NgModule({
imports: [
CommonModule,
RoutesModule,
ReactiveFormsModule,
FormsModule,
AgmCoreModule.forRoot({
apiKey: config.apiKey.google
}),
FontAwesomeModule,
FileUploadModule,
CloudinaryModule.forRoot(Cloudinary, {
cloud_name: config.apiKey.cloudinary,
api_key: config.apiKey.clKey,
api_secret: config.apiKey.clSe,
upload_preset: 'adpnigeria'
})
],
exports: [],
declarations: [
MembersComponent,
MemberSideMenuComponent,
MemberIndexComponent,
MemberMessageComponent,
MemberSecretariatComponent,
MemberCandidatesComponent,
MemberSettingsComponent
]
})
export class MembersModule { }
| 37 | 102 | 0.742703 |
6260910cf19d3c6447fcda3977324a1ae916e07f | 290 | sql | SQL | internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/query.sql | jakoguta/sqlc | 895f4e15db8bd5ff493bc0aa4c94cdc02781801f | [
"MIT"
] | 28 | 2019-07-09T22:48:48.000Z | 2019-08-17T00:20:18.000Z | internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/query.sql | jakoguta/sqlc | 895f4e15db8bd5ff493bc0aa4c94cdc02781801f | [
"MIT"
] | 16 | 2019-07-19T19:53:44.000Z | 2019-08-19T01:57:18.000Z | internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/query.sql | jakoguta/sqlc | 895f4e15db8bd5ff493bc0aa4c94cdc02781801f | [
"MIT"
] | 2 | 2019-07-22T08:10:34.000Z | 2019-08-01T20:30:19.000Z | CREATE SCHEMA myschema;
CREATE TABLE myschema.foo (a text, b integer);
-- name: InsertValues :copyfrom
INSERT INTO myschema.foo (a, b) VALUES ($1, $2);
-- name: InsertSingleValue :exec
INSERT INTO myschema.foo (a) VALUES ($1);
-- name: DeleteValues :execresult
DELETE
FROM myschema.foo;
| 22.307692 | 48 | 0.727586 |
84a8503d3db3fcff69d917b8613aa7658845c6e3 | 11,036 | cs | C# | Libraries/Slf/Ast/Properties/AssemblyInfo.cs | AlexanderMorou/AbstractionProject | 13ed52268973df3ac12e6ccdd13fec88880fa346 | [
"MS-PL"
] | null | null | null | Libraries/Slf/Ast/Properties/AssemblyInfo.cs | AlexanderMorou/AbstractionProject | 13ed52268973df3ac12e6ccdd13fec88880fa346 | [
"MS-PL"
] | null | null | null | Libraries/Slf/Ast/Properties/AssemblyInfo.cs | AlexanderMorou/AbstractionProject | 13ed52268973df3ac12e6ccdd13fec88880fa346 | [
"MS-PL"
] | null | null | null | using AllenCopeland.Abstraction;
using AllenCopeland.Abstraction.Slf.Abstract;
using AllenCopeland.Abstraction.Slf.Ast;
using AllenCopeland.Abstraction.Slf.Ast.Expressions;
using AllenCopeland.Abstraction.Slf.Ast.Expressions.Linq;
using AllenCopeland.Abstraction.Slf.Ast.Members;
using AllenCopeland.Abstraction.Slf.Ast.Statements;
using AllenCopeland.Abstraction.Slf.Transformation;
using System;
using System.Diagnostics.CodeAnalysis;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Abstract Syntax Tree core for the Static Language Framework")]
[assembly: AssemblyDescription("The Abstract Syntax Tree for the Abstraction Project")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("None")]
[assembly: AssemblyProduct("Abstraction - Static Language Framework")]
[assembly: AssemblyCopyright("Copyright © Allen Copeland Jr. 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: CLSCompliant(false)]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
// [assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("54677673-3bcc-41cb-9c5e-4e809f55caee")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.5.0.0")]
[assembly: AssemblyFileVersion("0.5.0.0")]
#if DEBUG
#region IntermediateTreeTransformer
[assembly: VisitorImplementationTarget(
"IntermediateTreeTransformer",
ContextualVisitor = true,
Namespace = "AllenCopeland.Abstraction.Slf.Transformation")]
[assembly: VisitorImplementationInheritance(
"IntermediateTreeTransformer",
ContextualVisitor = true,
YieldingVisitor = true,
TResult = typeof(TransformationImpact),
VisitorBuilderHandler = typeof(IntermediateCodeTransformerCodeImpactHandler),
VisitRefactorName = "CalculateRefactorImpact",
InheritedVisitors = new []
{
"ExpressionVisitor",
"LinqBodyVisitor",
"LinqClauseVisitor",
"PrimitiveVisitor",
"ScopeCoercionVisitor",
"StatementVisitor",
"IntermediateDeclarationVisitor",
"IntermediateMemberVisitor",
"IntermediateTypeVisitor",
})]
[assembly: VisitorImplementationInheritance("IntermediateTreeTransformer",
ContextualVisitor = true,
YieldingVisitor = true,
TResult = typeof(IExpression),
VisitRefactorName = "Transform",
VisitorBuilderHandler = typeof(IntermediateCodeTransformerTransformHandler),
InheritedVisitors = new []
{
"ExpressionVisitor",
})]
[assembly: VisitorImplementationInheritance("IntermediateTreeTransformer",
ContextualVisitor = true,
YieldingVisitor = true,
TResult = typeof(ILinqBody),
VisitRefactorName = "Transform",
VisitorBuilderHandler = typeof(IntermediateCodeTransformerTransformHandler),
InheritedVisitors = new[]
{
"LinqBodyVisitor",
})]
[assembly: VisitorImplementationInheritance("IntermediateTreeTransformer",
ContextualVisitor = true,
YieldingVisitor = true,
TResult = typeof(ILinqClause),
VisitRefactorName = "Transform",
VisitorBuilderHandler = typeof(IntermediateCodeTransformerTransformHandler),
InheritedVisitors = new[]
{
"LinqClauseVisitor",
})]
[assembly: VisitorImplementationInheritance("IntermediateTreeTransformer",
ContextualVisitor = true,
YieldingVisitor = true,
TResult = typeof(IPrimitiveExpression),
VisitRefactorName = "Transform",
VisitorBuilderHandler = typeof(IntermediateCodeTransformerTransformHandler),
InheritedVisitors = new []
{
"PrimitiveVisitor",
})]
[assembly: VisitorImplementationInheritance("IntermediateTreeTransformer",
ContextualVisitor = true,
YieldingVisitor = true,
TResult = typeof(IScopeCoercion),
VisitRefactorName = "Transform",
VisitorBuilderHandler = typeof(IntermediateCodeTransformerTransformHandler),
InheritedVisitors = new []
{
"ScopeCoercionVisitor",
})]
[assembly: VisitorImplementationInheritance("IntermediateTreeTransformer",
ContextualVisitor = true,
YieldingVisitor = true,
TResult = typeof(IStatement),
VisitRefactorName = "Transform",
VisitorBuilderHandler = typeof(IntermediateCodeTransformerTransformHandler),
InheritedVisitors = new []
{
"StatementVisitor",
})]
[assembly: VisitorImplementationInheritance("IntermediateTreeTransformer",
ContextualVisitor = true,
YieldingVisitor = true,
TResult = typeof(IIntermediateDeclaration),
VisitRefactorName = "Transform",
VisitorBuilderHandler = typeof(IntermediateCodeTransformerTransformHandler),
InheritedVisitors = new []
{
"IntermediateDeclarationVisitor",
})]
[assembly: VisitorImplementationInheritance("IntermediateTreeTransformer",
ContextualVisitor = true,
YieldingVisitor = true,
TResult = typeof(IIntermediateMember),
VisitRefactorName = "Transform",
VisitorBuilderHandler = typeof(IntermediateCodeTransformerTransformHandler),
InheritedVisitors = new []
{
"IntermediateMemberVisitor",
})]
[assembly: VisitorImplementationInheritance("IntermediateTreeTransformer",
ContextualVisitor = true,
YieldingVisitor = true,
TResult = typeof(IIntermediateType),
VisitRefactorName = "Transform",
VisitorBuilderHandler = typeof(IntermediateCodeTransformerTransformHandler),
InheritedVisitors = new []
{
"IntermediateTypeVisitor",
})]
#endregion
#region IntermediateCodeTranslatorBase
[assembly: VisitorImplementationTarget(
"IntermediateCodeTranslatorBase",
Namespace = "AllenCopeland.Abstraction.Slf.Translation")]
[assembly: VisitorImplementationInheritance("IntermediateCodeTranslatorBase",
VisitRefactorAbstract = true,
VisitRefactorName = "Translate",
InheritedVisitors = new[] { "IntermediateTreeVisitor" })]
#endregion
#region IntermediateTypeReferenceGatherer
[assembly: VisitorImplementationTarget(
"IntermediateTypeReferenceGatherer",
Namespace = "AllenCopeland.Abstraction.Slf.Translation")]
[assembly: VisitorImplementationActionDetail("IntermediateTypeReferenceGatherer",
typeof(IType),
"CheckType",
"CheckTypes")]
[assembly: VisitorImplementationInheritance("IntermediateTypeReferenceGatherer",
InheritedVisitors = new [] { "IntermediateTreeVisitor" },
VisitorBuilderHandler = typeof(IntermediateTypeReferenceGathererHandler),
VisitRefactorName = "Gather")]
#endregion
[ assembly: InternalsVisibleTo("_abs.slf.languages.vb.net")]
[assembly: InternalsVisibleTo("_abs.slf.languages.csharp")]
[assembly: InternalsVisibleTo("_abs.slf.languages.oilexer")]
[assembly: InternalsVisibleTo("Oilexer")]
[assembly: InternalsVisibleTo("Abstraction.BugTest")]
[assembly: InternalsVisibleTo("_abs.supplementary.cts.test")]
[assembly: InternalsVisibleTo("_abs.slf.cli.ast")]
#else
[assembly: InternalsVisibleTo("Oilexer, PublicKey=00240000048000009400000006020000002400005253413100040000010001009982a9fd0d9f7efc18f1da44cf7a85d43b20fd87abb0e46719ec4bdc1b41acb42ca2c032d667030f4b0ba8db26c3b8952d776743b5f1c23d4b956ccbd80d3200b25c611f4300ad09d361c12ef2801ac5f731c63a2248474cc17c5de83572d8bcd5240e925ac8cf391b2b6cdd18c73ab922ff5ea1871cdcd0917a60b88606a996")]
[assembly: InternalsVisibleTo("_abs.slf.languages.csharp, PublicKey=00240000048000009400000006020000002400005253413100040000010001009982a9fd0d9f7efc18f1da44cf7a85d43b20fd87abb0e46719ec4bdc1b41acb42ca2c032d667030f4b0ba8db26c3b8952d776743b5f1c23d4b956ccbd80d3200b25c611f4300ad09d361c12ef2801ac5f731c63a2248474cc17c5de83572d8bcd5240e925ac8cf391b2b6cdd18c73ab922ff5ea1871cdcd0917a60b88606a996")]
[assembly: InternalsVisibleTo("_abs.slf.languages.oilexer, PublicKey=00240000048000009400000006020000002400005253413100040000010001009982a9fd0d9f7efc18f1da44cf7a85d43b20fd87abb0e46719ec4bdc1b41acb42ca2c032d667030f4b0ba8db26c3b8952d776743b5f1c23d4b956ccbd80d3200b25c611f4300ad09d361c12ef2801ac5f731c63a2248474cc17c5de83572d8bcd5240e925ac8cf391b2b6cdd18c73ab922ff5ea1871cdcd0917a60b88606a996")]
[assembly: InternalsVisibleTo("_abs.slf.languages.vb.net, PublicKey=00240000048000009400000006020000002400005253413100040000010001009982a9fd0d9f7efc18f1da44cf7a85d43b20fd87abb0e46719ec4bdc1b41acb42ca2c032d667030f4b0ba8db26c3b8952d776743b5f1c23d4b956ccbd80d3200b25c611f4300ad09d361c12ef2801ac5f731c63a2248474cc17c5de83572d8bcd5240e925ac8cf391b2b6cdd18c73ab922ff5ea1871cdcd0917a60b88606a996")]
[assembly: InternalsVisibleTo("Abstraction.BugTest, PublicKey=00240000048000009400000006020000002400005253413100040000010001009982a9fd0d9f7efc18f1da44cf7a85d43b20fd87abb0e46719ec4bdc1b41acb42ca2c032d667030f4b0ba8db26c3b8952d776743b5f1c23d4b956ccbd80d3200b25c611f4300ad09d361c12ef2801ac5f731c63a2248474cc17c5de83572d8bcd5240e925ac8cf391b2b6cdd18c73ab922ff5ea1871cdcd0917a60b88606a996")]
[assembly: InternalsVisibleTo("_abs.supplementary.cts.test, PublicKey=00240000048000009400000006020000002400005253413100040000010001009982a9fd0d9f7efc18f1da44cf7a85d43b20fd87abb0e46719ec4bdc1b41acb42ca2c032d667030f4b0ba8db26c3b8952d776743b5f1c23d4b956ccbd80d3200b25c611f4300ad09d361c12ef2801ac5f731c63a2248474cc17c5de83572d8bcd5240e925ac8cf391b2b6cdd18c73ab922ff5ea1871cdcd0917a60b88606a996")]
[assembly: InternalsVisibleTo("_abs.slf.cli.ast, PublicKey=00240000048000009400000006020000002400005253413100040000010001009982a9fd0d9f7efc18f1da44cf7a85d43b20fd87abb0e46719ec4bdc1b41acb42ca2c032d667030f4b0ba8db26c3b8952d776743b5f1c23d4b956ccbd80d3200b25c611f4300ad09d361c12ef2801ac5f731c63a2248474cc17c5de83572d8bcd5240e925ac8cf391b2b6cdd18c73ab922ff5ea1871cdcd0917a60b88606a996")]
#endif
[assembly: ComVisible(false)]
| 53.057692 | 394 | 0.760058 |
a403056b6717dd930ce0604f40b3a9d029cb52ce | 3,946 | sql | SQL | SQL Scripts/BaseTables/DETAILVIEWS_FIELDS.2.sql | mr-bwnz/SplendidAppBuilder | 79ec92d4cb805ccf408ff95103a1a0a78bc765b7 | [
"MIT"
] | 1 | 2022-03-01T10:27:25.000Z | 2022-03-01T10:27:25.000Z | SQL Scripts/BaseTables/DETAILVIEWS_FIELDS.2.sql | mr-bwnz/SplendidAppBuilder | 79ec92d4cb805ccf408ff95103a1a0a78bc765b7 | [
"MIT"
] | null | null | null | SQL Scripts/BaseTables/DETAILVIEWS_FIELDS.2.sql | mr-bwnz/SplendidAppBuilder | 79ec92d4cb805ccf408ff95103a1a0a78bc765b7 | [
"MIT"
] | 3 | 2022-02-21T13:28:37.000Z | 2022-03-18T06:42:07.000Z | /**********************************************************************************************************************
* Copyright (C) 2005-2022 SplendidCRM Software, Inc.
* MIT License
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy,
* modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software
* is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
* IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*********************************************************************************************************************/
-- 07/24/2006 Paul. Increase the DATA_LABEL to 150 to allow a fully-qualified (NAME+MODULE_NAME+LIST_NAME) TERMINOLOGY name.
-- 06/12/2009 Paul. Add TOOL_TIP for help hover.
-- 10/28/2009 Paul. Add UTC date to allow this table to sync.
-- 02/16/2010 Paul. Add MODULE_TYPE so that we can lookup custom field IDs.
-- 06/16/2010 Paul. Increase the size of the URL_FIELD and URL_FORMAT so that we can create an IFrame to a Google map.
-- 08/02/2010 Paul. Increase the size of the URL_FIELD and URL_FORMAT so that we can add a javascript info column.
-- 10/09/2010 Paul. Add PARENT_FIELD so that we can establish dependent listboxes.
-- 10/30/2013 Paul. Increase size of URL_TARGET.
-- 02/25/2015 Paul. Increase size of DATA_FIELD and DATA_FORMAT for OfficeAddin.
if not exists (select * from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'DETAILVIEWS_FIELDS' and TABLE_TYPE = 'BASE TABLE')
begin
print 'Create Table dbo.DETAILVIEWS_FIELDS';
Create Table dbo.DETAILVIEWS_FIELDS
( ID uniqueidentifier not null default(newid()) constraint PK_DETAILVIEWS_FIELDS primary key
, DELETED bit not null default(0)
, CREATED_BY uniqueidentifier null
, DATE_ENTERED datetime not null default(getdate())
, MODIFIED_USER_ID uniqueidentifier null
, DATE_MODIFIED datetime not null default(getdate())
, DATE_MODIFIED_UTC datetime null default(getutcdate())
, DETAIL_NAME nvarchar( 50) not null
, FIELD_INDEX int not null
, FIELD_TYPE nvarchar( 25) not null
, DEFAULT_VIEW bit null default(0)
, DATA_LABEL nvarchar(150) null
, DATA_FIELD nvarchar(1000) null
, DATA_FORMAT nvarchar(max) null
, URL_FIELD nvarchar(max) null
, URL_FORMAT nvarchar(max) null
, URL_TARGET nvarchar( 60) null
, LIST_NAME nvarchar( 50) null
, COLSPAN int null
, MODULE_TYPE nvarchar(25) null
, TOOL_TIP nvarchar(150) null
, PARENT_FIELD nvarchar(30) null
)
create index IDX_DETAILVIEWS_FIELDS_DETAIL_NAME on dbo.DETAILVIEWS_FIELDS (DETAIL_NAME, DELETED)
end
GO
| 64.688525 | 132 | 0.603903 |
ae590034ad02c605b03b3cea8da6a995bda23fa3 | 12,585 | cs | C# | itext/itext.forms/itext/forms/fields/PdfTextFormField.cs | Excalib88/itext7-dotnet | 45a465c558f844510e369016e190529e6dff2d41 | [
"RSA-MD"
] | null | null | null | itext/itext.forms/itext/forms/fields/PdfTextFormField.cs | Excalib88/itext7-dotnet | 45a465c558f844510e369016e190529e6dff2d41 | [
"RSA-MD"
] | null | null | null | itext/itext.forms/itext/forms/fields/PdfTextFormField.cs | Excalib88/itext7-dotnet | 45a465c558f844510e369016e190529e6dff2d41 | [
"RSA-MD"
] | null | null | null | /*
This file is part of the iText (R) project.
Copyright (c) 1998-2019 iText Group NV
Authors: Bruno Lowagie, Paulo Soares, et al.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License version 3
as published by the Free Software Foundation with the addition of the
following permission added to Section 15 as permitted in Section 7(a):
FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
OF THIRD PARTY RIGHTS
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program; if not, see http://www.gnu.org/licenses or write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA, 02110-1301 USA, or download the license from the following URL:
http://itextpdf.com/terms-of-use/
The interactive user interfaces in modified source and object code versions
of this program must display Appropriate Legal Notices, as required under
Section 5 of the GNU Affero General Public License.
In accordance with Section 7(b) of the GNU Affero General Public License,
a covered work must retain the producer line in every PDF that is created
or manipulated using iText.
You can be released from the requirements of the license by purchasing
a commercial license. Buying such a license is mandatory as soon as you
develop commercial activities involving the iText software without
disclosing the source code of your own applications.
These activities include: offering paid services to customers as an ASP,
serving PDFs on the fly in a web application, shipping iText with a closed
source product.
For more information, please contact iText Software Corp. at this
address: [email protected]
*/
using iText.Kernel.Pdf;
using iText.Kernel.Pdf.Annot;
namespace iText.Forms.Fields {
/// <summary>An AcroForm field containing textual data.</summary>
public class PdfTextFormField : PdfFormField {
public static readonly int FF_FILE_SELECT = MakeFieldFlag(21);
public static readonly int FF_DO_NOT_SPELL_CHECK = MakeFieldFlag(23);
public static readonly int FF_DO_NOT_SCROLL = MakeFieldFlag(24);
public static readonly int FF_COMB = MakeFieldFlag(25);
public static readonly int FF_RICH_TEXT = MakeFieldFlag(26);
public PdfTextFormField(PdfDocument pdfDocument)
: base(pdfDocument) {
}
public PdfTextFormField(PdfWidgetAnnotation widget, PdfDocument pdfDocument)
: base(widget, pdfDocument) {
}
public PdfTextFormField(PdfDictionary pdfObject)
: base(pdfObject) {
}
/// <summary>Returns <c>Tx</c>, the form type for textual form fields.</summary>
/// <returns>
/// the form type, as a
/// <see cref="iText.Kernel.Pdf.PdfName"/>
/// </returns>
public override PdfName GetFormType() {
return PdfName.Tx;
}
/// <summary>If true, the field can contain multiple lines of text; if false, the field?s text is restricted to a single line.
/// </summary>
/// <param name="multiline">whether or not the file can contain multiple lines of text</param>
/// <returns>
/// current
/// <see cref="PdfTextFormField"/>
/// </returns>
public virtual iText.Forms.Fields.PdfTextFormField SetMultiline(bool multiline) {
return (iText.Forms.Fields.PdfTextFormField)SetFieldFlag(FF_MULTILINE, multiline);
}
/// <summary>If true, the field is intended for entering a secure password that should not be echoed visibly to the screen.
/// </summary>
/// <remarks>
/// If true, the field is intended for entering a secure password that should not be echoed visibly to the screen.
/// Characters typed from the keyboard should instead be echoed in some unreadable form, such as asterisks or bullet characters.
/// </remarks>
/// <param name="password">whether or not to obscure the typed characters</param>
/// <returns>
/// current
/// <see cref="PdfTextFormField"/>
/// </returns>
public virtual iText.Forms.Fields.PdfTextFormField SetPassword(bool password) {
return (iText.Forms.Fields.PdfTextFormField)SetFieldFlag(FF_PASSWORD, password);
}
/// <summary>
/// If true, the text entered in the field represents the pathname of a file
/// whose contents are to be submitted as the value of the field.
/// </summary>
/// <returns>whether or not this field currently represents a path</returns>
public virtual bool IsFileSelect() {
return GetFieldFlag(FF_FILE_SELECT);
}
/// <summary>
/// If true, the text entered in the field represents the pathname of a file
/// whose contents are to be submitted as the value of the field.
/// </summary>
/// <param name="fileSelect">whether or not this field should represent a path</param>
/// <returns>
/// current
/// <see cref="PdfTextFormField"/>
/// </returns>
public virtual iText.Forms.Fields.PdfTextFormField SetFileSelect(bool fileSelect) {
return (iText.Forms.Fields.PdfTextFormField)SetFieldFlag(FF_FILE_SELECT, fileSelect);
}
/// <summary>If true, text entered in the field is spell-checked.</summary>
/// <returns>whether or not spell-checking is currently enabled</returns>
public virtual bool IsSpellCheck() {
return !GetFieldFlag(FF_DO_NOT_SPELL_CHECK);
}
/// <summary>If true, text entered in the field is spell-checked.</summary>
/// <param name="spellCheck">whether or not to spell-check</param>
/// <returns>
/// current
/// <see cref="PdfTextFormField"/>
/// </returns>
public virtual iText.Forms.Fields.PdfTextFormField SetSpellCheck(bool spellCheck) {
return (iText.Forms.Fields.PdfTextFormField)SetFieldFlag(FF_DO_NOT_SPELL_CHECK, !spellCheck);
}
/// <summary>
/// If true, the field scrolls (horizontally for single-line fields, vertically for multiple-line fields)
/// to accommodate more text than fits within its annotation rectangle.
/// </summary>
/// <remarks>
/// If true, the field scrolls (horizontally for single-line fields, vertically for multiple-line fields)
/// to accommodate more text than fits within its annotation rectangle.
/// Once the field is full, no further text is accepted.
/// </remarks>
/// <returns>whether or not longer texts are currently allowed</returns>
public virtual bool IsScroll() {
return !GetFieldFlag(FF_DO_NOT_SCROLL);
}
/// <summary>
/// If true, the field scrolls (horizontally for single-line fields, vertically for multiple-line fields)
/// to accommodate more text than fits within its annotation rectangle.
/// </summary>
/// <remarks>
/// If true, the field scrolls (horizontally for single-line fields, vertically for multiple-line fields)
/// to accommodate more text than fits within its annotation rectangle.
/// Once the field is full, no further text is accepted.
/// </remarks>
/// <param name="scroll">whether or not to allow longer texts</param>
/// <returns>
/// current
/// <see cref="PdfTextFormField"/>
/// </returns>
public virtual iText.Forms.Fields.PdfTextFormField SetScroll(bool scroll) {
return (iText.Forms.Fields.PdfTextFormField)SetFieldFlag(FF_DO_NOT_SCROLL, !scroll);
}
/// <summary>
/// Meaningful only if the MaxLen entry is present in the text field dictionary
/// and if the Multiline, Password, and FileSelect flags are clear.
/// </summary>
/// <remarks>
/// Meaningful only if the MaxLen entry is present in the text field dictionary
/// and if the Multiline, Password, and FileSelect flags are clear.
/// If true, the field is automatically divided into as many equally spaced positions,
/// or combs, as the value of MaxLen, and the text is laid out into those combs.
/// </remarks>
/// <returns>whether or not combing is enabled</returns>
public virtual bool IsComb() {
return GetFieldFlag(FF_COMB);
}
/// <summary>
/// Meaningful only if the MaxLen entry is present in the text field dictionary
/// and if the Multiline, Password, and FileSelect flags are clear.
/// </summary>
/// <remarks>
/// Meaningful only if the MaxLen entry is present in the text field dictionary
/// and if the Multiline, Password, and FileSelect flags are clear.
/// If true, the field is automatically divided into as many equally spaced positions,
/// or combs, as the value of MaxLen, and the text is laid out into those combs.
/// </remarks>
/// <param name="comb">whether or not to enable combing</param>
/// <returns>
/// current
/// <see cref="PdfTextFormField"/>
/// </returns>
public virtual iText.Forms.Fields.PdfTextFormField SetComb(bool comb) {
return (iText.Forms.Fields.PdfTextFormField)SetFieldFlag(FF_COMB, comb);
}
/// <summary>If true, the value of this field should be represented as a rich text string.</summary>
/// <remarks>
/// If true, the value of this field should be represented as a rich text string.
/// If the field has a value, the RV entry of the field dictionary specifies the rich text string.
/// </remarks>
/// <returns>whether or not text is currently represented as rich text</returns>
public virtual bool IsRichText() {
return GetFieldFlag(FF_RICH_TEXT);
}
/// <summary>If true, the value of this field should be represented as a rich text string.</summary>
/// <remarks>
/// If true, the value of this field should be represented as a rich text string.
/// If the field has a value, the RV entry of the field dictionary specifies the rich text string.
/// </remarks>
/// <param name="richText">whether or not to represent text as rich text</param>
/// <returns>
/// current
/// <see cref="PdfTextFormField"/>
/// </returns>
public virtual iText.Forms.Fields.PdfTextFormField SetRichText(bool richText) {
return (iText.Forms.Fields.PdfTextFormField)SetFieldFlag(FF_RICH_TEXT, richText);
}
/// <summary>Gets the maximum length of the field's text, in characters.</summary>
/// <remarks>
/// Gets the maximum length of the field's text, in characters.
/// This is an optional parameter, so if it is not specified, 0 value will be returned.
/// </remarks>
/// <returns>the current maximum text length</returns>
public virtual int GetMaxLen() {
PdfNumber maxLenEntry = this.GetPdfObject().GetAsNumber(PdfName.MaxLen);
if (maxLenEntry != null) {
return maxLenEntry.IntValue();
}
else {
PdfDictionary parent = GetParent();
// MaxLen is an inherited form field property, therefore we try to recursively extract it from the ancestors
if (parent != null) {
return new iText.Forms.Fields.PdfTextFormField(parent).GetMaxLen();
}
else {
return 0;
}
}
}
/// <summary>Sets the maximum length of the field's text, in characters.</summary>
/// <param name="maxLen">the maximum text length</param>
/// <returns>current</returns>
public virtual iText.Forms.Fields.PdfTextFormField SetMaxLen(int maxLen) {
Put(PdfName.MaxLen, new PdfNumber(maxLen));
if (GetFieldFlag(FF_COMB)) {
RegenerateField();
}
return this;
}
}
}
| 46.611111 | 136 | 0.649344 |
38dd898fd9e47a6318e4080ccfad3fe76f42d128 | 1,563 | php | PHP | tests/test_large_input/test.php | termbox/termbox2 | 00c017b261de809400a789ebadccda3059bdecbc | [
"MIT"
] | 30 | 2021-09-22T14:09:54.000Z | 2022-03-24T09:19:27.000Z | tests/test_large_input/test.php | termbox/termbox2 | 00c017b261de809400a789ebadccda3059bdecbc | [
"MIT"
] | 17 | 2021-11-22T06:16:02.000Z | 2022-02-27T22:41:55.000Z | tests/test_large_input/test.php | termbox/termbox2 | 00c017b261de809400a789ebadccda3059bdecbc | [
"MIT"
] | 8 | 2021-10-02T11:00:29.000Z | 2022-02-06T11:00:10.000Z | <?php
declare(strict_types=1);
// init termbox with a "fake" tty backed by memfds
$libc = FFI::cdef(
'int memfd_create(const char *name, unsigned int flags);' .
'int close(int fd);'
);
$ttyin = $libc->memfd_create('ttyin', 0);
$ttyout = $libc->memfd_create('ttyout', 0);
$test->ffi->tb_init_rwfd($ttyin, $ttyout);
// we're going to send a bunch of up-arrow escape sequences to termbox via our
// fake tty, and then ensure that termbox emits the expected up-arrow events
// via `tb_peek_event`. we will send enough data to fill up the read buffer
// (TB_OPT_READ_BUF).
$up_arrow = "\x1bOA";
$read_buf_size = $test->defines['TB_OPT_READ_BUF'];
$num_up_arrows = (int)ceil($read_buf_size / strlen($up_arrow));
$input_data = str_repeat($up_arrow, $num_up_arrows);
$fttyin = fopen("php://fd/$ttyin", 'w');
$nbytes = fwrite($fttyin, $input_data);
fseek($fttyin, strlen($input_data) * -1, SEEK_CUR);
// count how many up arrow events termbox emits
$up_arrow_count = 0;
$test->ffi->tb_set_input_mode($test->defines['TB_INPUT_ALT']);
$event = $test->ffi->new('struct tb_event');
do {
$rv = $test->ffi->tb_peek_event(FFI::addr($event), 1000);
if ($rv == 0 && $event->key === $test->defines['TB_KEY_ARROW_UP']) {
$up_arrow_count += 1;
}
} while ($rv == 0);
// close fake termbox setup
fclose($fttyin);
$libc->close($ttyin);
$libc->close($ttyout);
$test->ffi->tb_shutdown();
// display up_arrow_count
$test->ffi->tb_init();
$test->ffi->tb_printf(0, 0, 0, 0, "up_arrow_count=%d", $up_arrow_count);
$test->ffi->tb_present();
$test->screencap();
| 33.255319 | 78 | 0.675624 |
7dbd097bfa8edc9aac85e5e8d358d5e4c4b8b9dc | 341 | css | CSS | src/styles/spacing.css | ShaleeQureshi/Personal-Website-V2 | 9d4ee1c6acb43b1101599402bbc65c7b2dc0c0ec | [
"MIT"
] | null | null | null | src/styles/spacing.css | ShaleeQureshi/Personal-Website-V2 | 9d4ee1c6acb43b1101599402bbc65c7b2dc0c0ec | [
"MIT"
] | null | null | null | src/styles/spacing.css | ShaleeQureshi/Personal-Website-V2 | 9d4ee1c6acb43b1101599402bbc65c7b2dc0c0ec | [
"MIT"
] | null | null | null | .center {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
}
.left {
position: absolute;
top: 50%;
left: 30%;
transform: translateX(-30%) translateY(-50%);
}
.margin-bottom {
display: inline-block;
padding-bottom: 2%;
}
.margin-top {
display: inline-block;
padding-top: 2%;
}
| 14.208333 | 47 | 0.621701 |
02863f574abf469cd4bd2879025f5780ccce32cb | 1,034 | rs | Rust | src/models/claim.rs | xorxornop/oidc-rs | 4ac09b43676e93487a1fb0886a0d160892b3542a | [
"Apache-2.0"
] | 5 | 2017-11-03T03:54:36.000Z | 2021-10-20T20:53:59.000Z | src/models/claim.rs | xorxornop/oidc-rs | 4ac09b43676e93487a1fb0886a0d160892b3542a | [
"Apache-2.0"
] | null | null | null | src/models/claim.rs | xorxornop/oidc-rs | 4ac09b43676e93487a1fb0886a0d160892b3542a | [
"Apache-2.0"
] | null | null | null | use std::collections::HashMap;
use std::hash::{Hash, Hasher};
use super::claims_identity::*;
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct Claim {
/// The issuer of the claim
issuer: String,
/// The original issuer of the claim
original_issuer: String,
/// Additional properties associated with this claim.
properties: HashMap<String, String>,
/// The subject of the claim
subject: ClaimsIdentity,
/// The type of the claim
type_: String,
/// The value of the claim
value: String,
/// The value type of the claim
value_type: String
}
impl Hash for Claim {
fn hash<H: Hasher>(&self, state: &mut H) {
self.issuer.hash(state);
self.original_issuer.hash(state);
for (name, value) in &self.properties {
name.hash(state);
value.hash(state);
}
self.subject.hash(state);
self.type_.hash(state);
self.value.hash(state);
self.value_type.hash(state);
}
} | 22.977778 | 62 | 0.617021 |
8e871965dc01f34efdc886c03e6cfe8b68d09748 | 1,133 | rb | Ruby | db/migrate/20110601194123_create_github_contacts.rb | codeforamerica/geek_corps | 17e8ff02f0335674c6e3d43c82108afbc3831d87 | [
"Ruby"
] | null | null | null | db/migrate/20110601194123_create_github_contacts.rb | codeforamerica/geek_corps | 17e8ff02f0335674c6e3d43c82108afbc3831d87 | [
"Ruby"
] | 1 | 2021-04-17T15:41:06.000Z | 2021-04-17T15:41:06.000Z | db/migrate/20110601194123_create_github_contacts.rb | isabella232/geek_corps | 17e8ff02f0335674c6e3d43c82108afbc3831d87 | [
"Ruby"
] | 1 | 2021-04-17T14:58:56.000Z | 2021-04-17T14:58:56.000Z | class CreateGithubContacts < ActiveRecord::Migration
def self.up
create_table :contact_sources do |t|
t.string :name
end
create_table :github_contacts do |t|
t.string :gravatar_id
t.string :company
t.string :name
t.datetime :created_at
t.string :location
t.integer :public_repo_count
t.integer :public_gist_count
t.string :blog
t.integer :following_count
t.string :type
t.integer :followers_count
t.string :login
t.boolean :permission
t.string :email
t.integer :contact_source_id
t.datetime :first_commit
t.datetime :updated_at
end
add_index :github_contacts, :login
add_index :github_contacts, :following_count
add_index :github_contacts, :followers_count
add_index :github_contacts, :public_repo_count
add_index :github_contacts, :public_gist_count
add_index :github_contacts, :created_at
add_index :github_contacts, :contact_source_id
end
def self.down
drop_table :contact_sources
drop_table :github_contacts
end
end
| 26.97619 | 54 | 0.677846 |
5496536a04b742b454267346afe4eb37b8bcbde8 | 3,334 | css | CSS | Virtual Candle Light ( web )/css/mystyle.css | Shubhamrawat5/projects-and-projects | 3bb0be00f9a9553537d0eb8917af9b3e8438c941 | [
"MIT"
] | 10 | 2021-09-30T22:50:54.000Z | 2022-01-10T09:06:36.000Z | Virtual Candle Light ( web )/css/mystyle.css | Shubhamrawat5/projects-and-projects | 3bb0be00f9a9553537d0eb8917af9b3e8438c941 | [
"MIT"
] | 5 | 2021-09-30T23:05:35.000Z | 2021-10-01T16:33:19.000Z | Virtual Candle Light ( web )/css/mystyle.css | Shubhamrawat5/projects-and-projects | 3bb0be00f9a9553537d0eb8917af9b3e8438c941 | [
"MIT"
] | 28 | 2021-09-30T22:50:38.000Z | 2021-10-17T14:14:36.000Z | * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #07252d;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
color: #fff;
}
h4 {
color: #e4e4e4;
margin-top: 40px;
font-weight: 350;
text-align: center;
font-size: 20px;
}
.fas {
color: rgb(255, 58, 58);
}
.name {
font-weight: 640;
}
/* Text effect */
.text-effect {
display: flex;
justify-content: center;
}
h4,
.name {
font-size: 1.1rem;
}
h2 {
position: relative;
font-size: 6rem;
letter-spacing: 15px;
color: #0e3742;
text-transform: uppercase;
width: 100%;
text-align: center;
/* -webkit-box-reflect: below 1px linear-gradient(transparent, #000400); */
outline: none;
animation: animate 5s linear infinite;
}
@keyframes animate {
0%,
18%,
20%,
50.1%,
60%,
65.1%,
80%,
90.1%,
92% {
color: #0e3742;
text-shadow: none;
}
18.1%,
20.1%,
30%,
50%,
60.1%,
65%,
80.1%,
90%,
92.1%,
100% {
color: #fff;
text-shadow: 0 0 10px #03bcf4, 0 0 40px #03bcf4, 0 0 60px #03bcf4,
0 0 80px #03bcf4, 0 0 100px #03bcf4;
}
}
.holder {
margin: 8rem auto 0;
width: 150px;
height: 400px;
position: relative;
}
.holder *,
.holder *:before,
.holder *:after {
position: absolute;
content: "";
}
.candle {
bottom: 0;
width: 150px;
height: 300px;
border-radius: 150px / 40px;
background: #190f02;
background: linear-gradient(#e48825, #e78e0e, #833c03);
}
.candle:before {
width: 100%;
height: 40px;
border-radius: 50%;
border: 1px solid #d47401;
background: #b86409;
}
.candle:after {
width: 33px;
height: 10px;
left: 50%;
transform: translateX(-50%);
border-radius: 50%;
top: 14px;
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}
#btn {
top: -2px;
left: 50%;
background-color: transparent;
border: none;
cursor: pointer;
}
.thread {
width: 6px;
height: 36px;
top: -17px;
left: 50%;
z-index: 1;
border-radius: 40% 40% 0 0;
transform: translateX(-50%);
background: #121212;
}
#flame {
width: 24px;
height: 120px;
left: 50%;
transform-origin: 50% 100%;
transform: translateX(-50%);
bottom: 100%;
border-radius: 50% 50% 20% 20%;
background: linear-gradient(white 80%, transparent);
animation: moveFlame 6s linear infinite, enlargeFlame 5s linear infinite;
}
@keyframes moveFlame {
0%,
100% {
transform: translateX(-50%) rotate(-2deg);
}
50% {
transform: translateX(-50%) rotate(2deg);
}
}
@keyframes enlargeFlame {
0%,
100% {
height: 120px;
}
50% {
height: 140px;
}
}
#glow {
width: 26px;
height: 60px;
border-radius: 50% 50% 35% 35%;
left: 50%;
top: -48px;
transform: translateX(-50%);
background: rgba(0, 133, 255, 0.7);
box-shadow: 0 -40px 30px 0 #dc8a0c, 0 40px 50px 0 #dc8a0c,
inset 3px 0 2px 0 rgba(0, 133, 255, 0.6),
inset -3px 0 2px 0 rgba(0, 133, 255, 0.6);
}
#glow:before {
width: 70%;
height: 60%;
left: 50%;
transform: translateX(-50%);
bottom: 0;
border-radius: 50%;
background: rgba(0, 0, 0, 0.35);
}
#blinking-glow {
width: 100px;
height: 180px;
left: 50%;
top: -55%;
transform: translateX(-50%);
border-radius: 50%;
background: #ff6000;
filter: blur(60px);
animation: blinkIt 0.1s infinite;
}
@keyframes blinkIt {
50% {
opacity: 0.8;
}
}
| 15.579439 | 77 | 0.60048 |
33d0fe5cac9ab0dea36d88bf9b07550cee6e0261 | 55 | sql | SQL | persistence/sql/migrations/sql/20210410175418000063_network.sqlite3.down.sql | radekg/kratos | 1bfd22bd51100453645006f77da3593926844cda | [
"Apache-2.0"
] | 5,207 | 2019-11-06T15:13:30.000Z | 2022-03-31T21:07:46.000Z | persistence/sql/migrations/sql/20210410175418000063_network.sqlite3.down.sql | radekg/kratos | 1bfd22bd51100453645006f77da3593926844cda | [
"Apache-2.0"
] | 1,248 | 2019-11-06T11:36:50.000Z | 2022-03-31T18:49:03.000Z | persistence/sql/migrations/sql/20210410175418000063_network.sqlite3.down.sql | radekg/kratos | 1bfd22bd51100453645006f77da3593926844cda | [
"Apache-2.0"
] | 641 | 2019-11-14T13:05:05.000Z | 2022-03-31T21:04:17.000Z | DROP INDEX IF EXISTS "selfservice_login_flows_nid_idx"; | 55 | 55 | 0.872727 |
bae244708689dd710e7efa7147f038fdb141b1d0 | 504 | sh | Shell | scripts/30-disk.sh | michael-slx/vagrant-arch64-base | 368620b4cf38ace623be25dd549b691468905b2d | [
"Apache-2.0"
] | 2 | 2020-10-24T20:57:37.000Z | 2020-10-24T20:58:02.000Z | scripts/30-disk.sh | michael-slx/vagrant-arch64-base | 368620b4cf38ace623be25dd549b691468905b2d | [
"Apache-2.0"
] | null | null | null | scripts/30-disk.sh | michael-slx/vagrant-arch64-base | 368620b4cf38ace623be25dd549b691468905b2d | [
"Apache-2.0"
] | null | null | null | #!/usr/bin/env bash
set -euo pipefail
SCRIPT_DIR="$1"
FILES_DIR="$2"
echo "[Disk] Partitioning disk"
sfdisk /dev/sda < $FILES_DIR/disk/disk-parts.dump > /dev/null
sync
echo "[Disk] Creating file systems"
mkfs.fat -F32 -n "EFI" /dev/sda1 > /dev/null
mkfs.ext4 -L "ROOT" /dev/sda2 > /dev/null
mkswap -L "SWAP" /dev/sda3 > /dev/null
sync
echo "[Disk] Mounting file systems"
swapon /dev/sda3 > /dev/null
mount /dev/sda2 /mnt > /dev/null
mkdir /mnt/boot > /dev/null
mount /dev/sda1 /mnt/boot > /dev/null
| 21.913043 | 61 | 0.686508 |
e002fcee1555626589e6a8ef6510b2930c131943 | 3,257 | php | PHP | resources/views/reseller/pengiriman.blade.php | zakythr/veggo_sayur | 09eec854d3152c9e736d1dbbea06a3a8e095158f | [
"MIT"
] | null | null | null | resources/views/reseller/pengiriman.blade.php | zakythr/veggo_sayur | 09eec854d3152c9e736d1dbbea06a3a8e095158f | [
"MIT"
] | null | null | null | resources/views/reseller/pengiriman.blade.php | zakythr/veggo_sayur | 09eec854d3152c9e736d1dbbea06a3a8e095158f | [
"MIT"
] | null | null | null | @extends('reseller.layouts.layout')
@section('title')
Paket Akan Dikirim
@endsection
@section('content')
<div class="container-fluid">
<div class="row">
@if($data['transaksi'] != null)
<div class="col-12">
<div class="card">
<div class="card-body">
<h1 class="card-title"><strong>Paket Yang Akan Dikirim</strong></h1>
<hr>
<table class="data-table data-table-feature">
<thead>
<tr>
<th>No</th>
<th>No Invoice</th>
<th>Nama Penerima</th>
<th>Nomor Telefon</th>
<th>Tanggal Pengiriman</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<?php $a=1; ?>
@foreach($data['transaksi'] as $transaksi)
<tr>
<td>{{ $a }}</td>
<td>{{ $transaksi->nomor_invoice }}</td>
<td>{{ $transaksi->name }}</td>
<td>{{ $transaksi->nomor_hp }}</td>
<td>{{ $transaksi->tanggal_pengiriman }}</td>
<td>
<a href="{{ url('Reseller/Pengiriman/Detail/'.$transaksi->transaksi_id) }}" class="btn btn-primary btn-xs mb-1">Detail</a>
@if($transaksi->is_diterima_reseller==1)
<a href="{{ url('Reseller/Pengiriman/KonfirmasiSedangDikirim/'.$transaksi->transaksi_id) }}" class="btn btn-success btn-xs mb-1">Konfirmasi Sampai</a>
@else
@if($transaksi->status==6)
<a href="{{ url('Reseller/Pengiriman/KonfirmasiSelesaiDikirim/'.$transaksi->transaksi_id) }}" class="btn btn-success btn-xs mb-1">Konfirmasi Selesai</a>
@else
@if($transaksi->is_confirm_finish_byuser==0)
<a href="#" class="btn btn-warning btn-xs mb-1">Tunggu Konfirmasi Buyer</a>
@else
<a href="#" class="btn btn-success btn-xs mb-1">Selesai</a>
@endif
@endif
@endif
</td>
</tr>
<?php $a++; ?>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
@else
<div class="col-12">
<div class="alert alert-danger">
Belum ada Paket yang akan dikirim :(
</div>
</div>
@endif
</div>
</div>
@endsection
| 45.236111 | 194 | 0.354007 |
dbca9ca323fb9e0cb01103e16ed7c06314cbd8cb | 94 | swift | Swift | BankWallet/BankWallet/Models/CurrencyValue.swift | akaravind/bank-wallet-ios | 50032b756b3dd490b148c8fb669b1af17358eafc | [
"MIT"
] | 1 | 2022-03-23T19:13:25.000Z | 2022-03-23T19:13:25.000Z | BankWallet/BankWallet/Models/CurrencyValue.swift | cryptobuks/bank-wallet-ios-multiple-coins | 80c5e37d069645e3d0fb1c1383539291753200fd | [
"MIT"
] | null | null | null | BankWallet/BankWallet/Models/CurrencyValue.swift | cryptobuks/bank-wallet-ios-multiple-coins | 80c5e37d069645e3d0fb1c1383539291753200fd | [
"MIT"
] | null | null | null | import Foundation
struct CurrencyValue {
let currency: Currency
let value: Decimal
}
| 13.428571 | 26 | 0.734043 |
2fcaa216027e124c0296f7d075047c948f06e37e | 100 | py | Python | tests/runbook/roles/slow_output/main.py | acoomans/prvsn | af6b313c2e779ae4e3a9cdba0b1c3a1f4b4c085e | [
"BSD-2-Clause"
] | null | null | null | tests/runbook/roles/slow_output/main.py | acoomans/prvsn | af6b313c2e779ae4e3a9cdba0b1c3a1f4b4c085e | [
"BSD-2-Clause"
] | null | null | null | tests/runbook/roles/slow_output/main.py | acoomans/prvsn | af6b313c2e779ae4e3a9cdba0b1c3a1f4b4c085e | [
"BSD-2-Clause"
] | null | null | null |
bash('''
echo "hello"
''')
bash('''
for i in $(seq 1 10);
do
echo $i
sleep 2
done
''')
| 6.25 | 21 | 0.46 |
c548260b8318c74f0c1a2be988488589c278aed6 | 33,926 | css | CSS | app/client/lib/lens/lens.css | bencevans/sciencefair | 15ee3c323f5737fecc20e34b10a1464db74a590b | [
"MIT"
] | 561 | 2016-02-26T08:54:01.000Z | 2019-10-03T11:34:31.000Z | app/client/lib/lens/lens.css | bencevans/sciencefair | 15ee3c323f5737fecc20e34b10a1464db74a590b | [
"MIT"
] | 171 | 2016-02-26T22:30:50.000Z | 2019-07-29T11:49:31.000Z | app/client/lib/lens/lens.css | bencevans/sciencefair | 15ee3c323f5737fecc20e34b10a1464db74a590b | [
"MIT"
] | 70 | 2016-02-28T16:51:44.000Z | 2019-10-14T12:03:54.000Z | @charset "UTF-8";
/* Lens Base styles */
/* Textish Styles
-------------------------------------------------------------------------------*/
.content-node.text .content {
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap; }
/* When rendered in main panel */
.document .content-node.text {
padding: 20px 60px;
padding-left: 100px; }
/* Paragraph Node
-------------------------------------------------------------------------------*/
.content-node.paragraph .content {
min-height: 28px; }
.content-node.paragraph .content-node.text {
padding: 0px;
display: inline;
width: auto; }
.content-node.paragraph .content-node.text.heading {
display: block; }
.content-node.paragraph .content-node.text div {
display: inline;
width: auto; }
.content-node.paragraph .content-node.image div img {
display: inline;
width: 100%; }
.content-node.paragraph .content-node.formula.inline {
display: inline;
padding: 0px; }
/* Heading Node
-------------------------------------------------------------------------------*/
.content-node.heading .content {
min-height: 40px; }
.content-node.heading .label {
display: inline;
padding-right: 10px; }
.content-node.heading .title, .content-node.heading .content .title .content {
display: inline; }
.content-node.heading .content {
color: rgba(0, 0, 0, 0.8);
font-weight: 600;
line-height: 40px; }
.content-node.heading.level-1 .content {
font-size: 24px; }
.content-node.heading.level-2 .content {
font-size: 21px; }
.content-node.heading.level-3 .content {
font-size: 18px; }
/* List Node
-------------------------------------------------------------------------------*/
.content-node.list {
padding: 10px 0px;
padding-top: 0px; }
.content-node .listitem {
padding: 2px 0px;
padding-left: 20px;
position: relative; }
.content-node .listitem .bullet {
position: absolute;
left: 0px;
top: 14px;
width: 4px;
height: 4px;
background: #bbb; }
.content-node.list .content {
min-height: 30px; }
.content-node.list.level-2 .content {
font-size: 20px; }
.content-node.list.level-3 .content {
font-size: 17px; }
/* Image Node
-------------------------------------------------------------------------------*/
.content-node.image .content {
padding: 0px; }
.content-node.image div.image-char {
width: 100%; }
.content-node.image div.selected .overlay {
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
background: rgba(0, 169, 255, 0.25); }
.content-node.image div img {
width: 100%; }
/* Codeblock Node
-------------------------------------------------------------------------------*/
.content-node.codeblock > .content {
border: 1px dashed #ddd;
line-height: 20px;
padding: 10px 10px; }
.content-node.codeblock > .content {
font-family: 'Menlo', monospace;
font-size: 14px;
color: #777;
min-height: 28px; }
.lens-article .content-node.cover {
color: rgba(0, 0, 0, 0.8); }
.lens-article .content-node.cover .breadcrumbs {
font-size: 14px;
margin-top: 30px;
margin-bottom: 20px;
/* Prevent from nasty scrollbars that appear when eLife logo is shown */
overflow: hidden; }
.lens-article .content-node.cover .breadcrumbs a {
margin-right: 20px;
display: block;
float: left;
line-height: 40px;
height: 40px; }
.lens-article .content-node.cover .content {
background: none; }
.lens-article .content-node.cover .title {
font-weight: 600;
line-height: 1.3em;
font-size: 30px;
padding-top: 20px; }
.lens-article .content-node.cover .published-on {
margin-top: 50px;
margin-bottom: 20px;
color: #666; }
.lens-article .content-node.cover .doi {
margin-top: 30px;
margin-bottom: 20px;
color: #666;
font-size: 14px; }
.lens-article .content-node.cover .content .authors {
padding-top: 30px;
color: #1B6685;
overflow: auto; }
.lens-article .content-node.cover .content .links {
margin-top: 20px;
font-size: 15px; }
.lens-article .content-node.cover .content .links a {
padding-left: 4px;
margin-right: 20px; }
/* One para per author */
.lens-article .content-node.cover .authors .text {
float: left;
padding: 0px;
margin: 0px;
font-size: 17px;
margin-right: 10px;
margin-bottom: 8px; }
.lens-article .content-node.cover .authors .text.plain {
color: #777;
padding-left: 1px; }
.lens-article .intro {
font-size: 13px;
background: #FFFEF5;
border: 1px solid #D8D9C1;
color: rgba(0, 0, 0, 0.6);
padding: 0 10px;
line-height: 30px; }
.lens-article .intro .intro-text {
float: left; }
.lens-article .intro .emit-feedback {
float: right;
color: #E40000;
font-weight: bold; }
.lens-article .intro .emit-feedback:hover {
color: #ff0000; }
.content-node.supplement > .content {
padding: 10px 20px; }
.content-node.supplement .content .file {
font-weight: 600;
font-size: 16px; }
.content-node.supplement .content .file a {
font-weight: 600; }
/*
Box
--------------------------------------- */
.content-node.box > .content {
padding: 20px; }
.surface.content .content-node.box {
/*margin-left: 60px;*/
/* padding-left: 100px;
padding-right: 60px;*/
/*padding: 0px;*/
/*background: #ccc;*/ }
.document .content-node.box .content-node.paragraph {
/*padding: 0px;*/
/*padding: 20px 60px 20px 100px;*/ }
.surface.content .content-node.box {
/*background: #ccc;*/ }
.surface.content .content-node.box > .content {
border: 1px dotted #ddd; }
.surface.content .content-node.box .content {
background: #fbfbfb; }
.surface.content .content-node.box > .content > .label {
font-weight: 600;
padding-bottom: 20px; }
/*
Citations
--------------------------------------- */
.lens-article .resources .content-node.citation .resource-header .name {
font-weight: normal;
font-size: 12px;
color: #888; }
.lens-article .content-node.citation .content .title {
font-size: 16px;
font-weight: 600;
margin-bottom: 20px; }
.lens-article .content-node.citation .content .authors {
font-size: 14px; }
.lens-article .content-node.citation .content .source {
/*color: #777;*/ }
.lens-article .content-node.citation .content .citation-urls {
padding-top: 20px; }
.lens-article .content-node.citation .content .citation-urls .url {
padding-right: 20px; }
/*
Definition
--------------------------------------- */
.lens-article .content-node.definition .description {
font-size: 16px; }
/* Figure Node
-------------------------------------------------------------------------------*/
/* When displayed in resource panel */
.resources .nodes > .content-node.figure .label {
display: none; }
.panel.content .nodes > .content-node.figure .label {
color: #777;
padding-bottom: 10px; }
/* Special styles when figure is displayed in document flow */
.panel.content .nodes > .content-node.figure > .content {
padding: 15px;
border: 1px solid #ddd; }
.content-node.figure div.image-wrapper {
text-align: center;
padding-top: 20px;
padding-bottom: 20px; }
.content-node.figure div .image-wrapper img {
width: 100%; }
.lens-article .content-node.html-table > .content {
padding: 20px; }
.lens-article .content-node.html-table > .content img {
width: 100%; }
.lens-article .content-node.html-table .table-wrapper {
width: 100%;
overflow: auto; }
.lens-article .content-node.html-table .caption {
padding-top: 20px; }
.lens-article .content-node.html-table table {
position: relative;
border-collapse: collapse;
border-spacing: 0;
margin-bottom: 20px;
margin: 0 auto; }
.lens-article .content-node.html-table thead tr {
background: #eee; }
.lens-article .content-node.html-table thead td {
font-weight: bold; }
/* Table sub tags */
.lens-article .content-node.html-table table sub {
vertical-align: baseline;
position: relative;
top: 0.4em;
font-size: 11px; }
.lens-article .content-node.html-table table td {
padding: 5px;
font-size: 12px;
border: 1px solid lightgrey;
/* Enable white-space: nowrap; if author controls wrapping (<br> in HTML)
/* white-space: nowrap; */ }
.lens-article .content-node.html-table .footers {
padding: 0 20px;
padding-top: 10px;
font-size: 12px;
background: #fff; }
.resources .content-node.video .video-wrapper {
text-align: center;
margin-bottom: 20px; }
.resources .content-node.video .content video {
/* We use a fix value of 100% now (instead of max-width: 100%), so small videos don't look so ugly; */
width: 100%;
max-height: 500px; }
/* Fullscreen overrides */
.resources .content-node.video.fullscreen .content .video-wrapper {
padding: 50px 0;
text-align: center; }
.lens-article .content-node.caption .caption-title {
font-weight: 600;
font-size: 16px; }
.lens-article .content-node.caption > .content > .content-node.paragraph {
padding-bottom: 10px; }
/*
Contributor
--------------------------------------- */
.lens-article .resources .content-node.contributor .resource-header .name {
font-weight: normal;
font-size: 12px;
color: #888; }
.lens-article .content-node.contributor .affiliation {
margin-top: 10px;
font-size: 14px; }
.lens-article .content-node.contributor .contributor-bio {
padding-top: 30px; }
.lens-article .content-node.contributor .contributor-bio .bio {
font-size: 14px; }
.lens-article .content-node.contributor .contributor-bio .bio .content {
background: transparent; }
.lens-article .content-node.contributor .contributor-bio img {
max-width: 120px;
padding-right: 20px;
padding-bottom: 20px;
display: inline;
float: left;
display: block; }
.lens-article .content-node.contributor .contributor-name {
font-size: 16px;
font-weight: 600;
margin-bottom: 20px; }
.lens-article .content-node.contributor .label {
font-size: 14px;
margin-top: 20px;
color: #999; }
/* Publication Info */
.lens-article .content-node.publication-info {
font-size: 14px;
color: #333; }
.lens-article .content-node.publication-info table {
padding: 10px 0;
border: none;
width: 100%; }
.lens-article .content-node.publication-info .meta-data > .container {
margin-bottom: 10px; }
.lens-article .content-node.publication-info .label {
float: left;
width: 100px;
font-size: 14px;
color: #999; }
.lens-article .content-node.publication-info .value {
margin-left: 140px; }
.lens-article .content-node.publication-info .dates {
/*font-size: 14px;*/ }
.article .resources .nodes > .content-node.publication-info > .content {
border: none;
padding: 20px; }
.article .resources .nodes > .content-node.publication-info .content-node[data-id=articleinfo] {
font-size: 14px; }
.article .resources .nodes > .content-node.publication-info .content-node[data-id=articleinfo] .heading.level-3 {
padding-top: 10px; }
.article .resources .nodes > .content-node.publication-info .content-node[data-id=articleinfo] .heading.level-3 .content {
font-size: 14px;
font-weight: normal;
font-family: "Source Sans Pro";
color: #999; }
.article .resources .nodes > .content-node.publication-info .content-node[data-id=articleinfo] .content-node {
padding-top: 10px; }
/* Surface
-------------------------------------------------------------------------------*/
.surface {
position: relative; }
/* Very important dude */
/* Makes sure .nodes is used as a reference for absolute positioning */
.surface .nodes {
position: relative; }
/* Generic node styles */
.surface .content-node {
position: relative; }
.surface .nodes > .content-node {
/*margin: 0 60px;*/ }
/* Cursor
-------------------------------------------------------------------------------*/
.surface .cursor {
position: absolute;
top: 0px;
height: 20px;
width: 2px;
background: #00ACEA; }
/*
blinking from http://codepen.io/hofweber/pen/vbJHc
thanks patch!
*/
.surface .cursor {
-webkit-animation: blink 1.2s step-end infinite;
-moz-animation: blink 1.2s step-end infinite;
-ms-animation: blink 1.2s step-end infinite;
-o-animation: blink 1.2s step-end infinite;
animation: blink 1.2s step-end infinite; }
@-webkit-keyframes blink {
0% {
background: #00ACEA; }
50% {
background: transparent; } }
@-moz-keyframes blink {
0% {
background: #00ACEA; }
50% {
background: transparent; } }
@-ms-keyframes blink {
0% {
background: #00ACEA; }
50% {
background: transparent; } }
@-o-keyframes blink {
0% {
background: #00ACEA; }
50% {
background: transparent; } }
@keyframes blink {
0% {
background: #00ACEA; }
50% {
background: transparent; } }
/* Fix weird behavior
-------------------------------------------------------------------------------*/
/*
When using event delegation if the parent element has a click handler, when
the user touches anything inside this element, the whole region will gray
out (on iOS 5.1), or flicker (on iOS 6). */
* {
-webkit-tap-highlight-color: transparent; }
/* Clearfix solution */
.container:after {
content: "";
display: table;
clear: both; }
/* Article
-------------------------------------------------------------------------------*/
.article {
height: 100%; }
/* Surface specific styles */
.hidden {
visibility: none; }
.content-node .content {
margin: 0px; }
/* Main content panel
======================================================================= */
.article .document {
line-height: 28.5px;
font-size: 17px;
position: relative;
float: left;
overflow: hidden;
height: 100%;
width: 50%;
border-right: 1px solid #ddd; }
.article .document .surface.content {
position: absolute;
top: 0px;
bottom: 0px;
right: 0px;
left: 0px;
overflow-y: scroll;
overflow-x: hidden;
/*overflow: auto;*/
-webkit-overflow-scrolling: touch; }
.article .document .surface.content .nodes {
min-height: 100%;
padding-left: 20px;
padding-right: 0px;
background: #FFFFFF;
padding-bottom: 50px; }
/* Back Navigation
=======================================================================*/
/* Context Toggles
=======================================================================*/
.article .panel.hidden {
visibility: hidden; }
.menu-bar {
position: absolute;
top: 0px;
height: 40px;
left: 0px;
right: 0px;
overflow: hidden;
/*background: #444;*/
color: #444;
border-bottom: 1px solid #ddd;
z-index: 20000; }
.menu-bar .context-toggles a {
display: block;
float: left;
font-size: 13px;
font-weight: 600;
line-height: 40px;
color: rgba(0, 0, 0, 0.4);
border-right: 1px solid #ddd;
padding-right: 15px;
padding-left: 15px; }
.menu-bar .context-toggles a.context-toggle.hidden {
display: none; }
.menu-bar .context-toggles a:hover {
/*color: #fff;*/
color: rgba(0, 0, 0, 0.5);
background: rgba(0, 0, 0, 0.03); }
.menu-bar .context-toggles a.active {
background: rgba(0, 0, 0, 0.05);
color: #444;
border-bottom: 3px solid #444; }
/* Resources Panel
======================================================================= */
.article .resources {
float: right;
line-height: 25px;
width: 50%;
height: 100%;
padding-left: 50px;
padding-right: 50px;
position: relative; }
/* It's not exactly good to have the overflow-y: scroll for the container AND the surface.
There should be just one overflowing container, if possible
*/
.article .resources .panel {
position: absolute;
top: 40px;
bottom: 0px;
left: 0px;
right: 0px;
/* overflow-y: scroll;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;*/ }
.article .resources .surface {
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
overflow-y: scroll;
overflow-x: hidden;
font-size: 14px;
-webkit-overflow-scrolling: touch; }
.article .nodes {
padding-left: 50px;
padding-right: 50px; }
.article .resources .nodes {
padding-left: 0px;
padding-right: 20px; }
.article .resources .nodes > .content-node {
color: #505050;
position: relative;
background: #fff;
border-bottom: 1px solid #ddd;
border-left: 3px solid transparent;
padding: 0px; }
.article .resources .nodes > .content-node > .content {
border-top: none; }
/* Clickable header */
.article .resources .content-node .resource-header {
padding-top: 15px;
font-weight: 600;
position: relative; }
/* TOC View
----------------------------------------------------------------------- */
.article .resources .panel .toc {
padding-left: 20px;
padding-right: 20px;
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
overflow: auto;
padding-top: 30px;
padding-bottom: 30px; }
/* Info View
----------------------------------------------------------------------- */
/* Related Articles View
----------------------------------------------------------------------- */
/* Consistent Resource Header for figures captions and person cards
----------------------------------------------------------------------- */
.article .resources .resource-header .name {
display: block;
min-height: 30px;
color: #444;
font-size: 16px;
line-height: 21px;
padding: 0px 20px;
padding-right: 200px; }
.article .resources .content-node .reference-count {
font-size: 13px;
position: absolute;
right: 20px;
top: 40px;
text-align: right; }
/* Resource toggles */
.article .resources .content-node .resource-header .toggles {
position: absolute;
top: 0px;
right: 0px;
overflow: auto; }
/* Resource toggle */
.article .resources .content-node .resource-header .toggle {
float: left;
font-size: 12px;
font-weight: 600;
bottom: 0px;
text-align: center;
line-height: 50px;
color: rgba(0, 0, 0, 0.4);
padding: 0px 20px; }
.article .resources .content-node .resource-header .toggle i {
padding-right: 5px; }
.article .resources .figures .content-node.highlighted .resource-header .toggle.toggle-res,
.article .resources .math .content-node.highlighted .resource-header .toggle.toggle-res {
color: #91bb04; }
.article .resources .citations .content-node.highlighted .resource-header .toggle.toggle-res {
color: #0b9dd9; }
.article .resources .info .content-node.highlighted .resource-header .toggle.toggle-res {
color: #5c6570; }
.article .resources .content-node .resource-header .toggle:hover {
color: rgba(0, 0, 0, 0.6); }
#container .article .content-node.highlighted .fa.fa-eye-slash {
display: inline; }
/* Resource Fullscreen Mode
======================================================================= */
/* Styles for fullscreen toggle on resource cards */
.article .resources .figures .content-node.fullscreen .resource-header .toggle.toggle-fullscreen,
.article .resources .math .content-node.fullscreen .resource-header .toggle.toggle-fullscreen {
color: #91bb04; }
#container .article .content-node.fullscreen {
position: fixed;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
z-index: 100000;
margin-bottom: 0px;
margin-right: 0px;
padding: 0px; }
#container .article .content-node.fullscreen > .content {
position: absolute;
top: 80px;
bottom: 0px;
left: 0px;
right: 0px;
overflow: auto; }
/* Info panel overrides
----------------------------------------------------------------------- */
#container .article .surface.info .content-node.caption .content {
padding: 20px; }
/* Annotations
----------------------------------------------------------------------- */
.article span.annotation {
/* -webkit-transition-property: background, color;
-moz-transition-property: background, color;
transition-property: background, color;
-webkit-transition-duration: 0.1s;
-moz-transition-duration: 0.1s;
transition-duration: 0.1s;*/ }
/* Small caps */
span.annotation.sc {
font-variant: small-caps; }
span.annotation.formula_reference, span.publication_reference {
padding-left: 3px;
padding-right: 3px; }
.article span.emphasis, .article em {
font-style: italic; }
.article span.superscript, .article sup {
vertical-align: super;
font-size: 12px; }
.article span.subscript, .article sub {
vertical-align: sub;
font-size: 12px; }
.article .cover span.superscript, .article .cover span.subscript, .article .cover sup, .article .cover sub {
font-size: inherit; }
.article span.strong, .article strong {
font-weight: bold; }
.article span.underline {
text-decoration: underline; }
.article span.label {
vertical-align: baseline;
position: relative;
top: -0.4em;
font-size: 12px;
padding: 5px;
font-weight: bold; }
.content-node .idea {
background-color: rgba(102, 182, 32, 0.3); }
.content-node .question {
background-color: rgba(16, 167, 222, 0.3); }
.content-node .error {
background-color: rgba(237, 96, 48, 0.3); }
.content-node .link {
color: #1B6685;
font-weight: bold; }
.content-node .link:hover, .content-node .link.highlighted {
color: #0b9dd9; }
/* Inline Code Annotations */
.content-node .code {
font-family: Consolas, "Liberation Mono", Courier, monospace;
background: #eee;
font-size: 13px;
padding: 2px 3px;
-webkit-font-smoothing: subpixel-antialiased; }
/* Highlighted states */
.content-node .idea.highlight {
background-color: rgba(102, 182, 32, 0.6); }
.content-node .question.highlight {
background-color: rgba(16, 167, 222, 0.6); }
.content-node .error.highlight {
background-color: rgba(237, 96, 48, 0.6); }
/* Selected states */
.content-node .content span.selected {
background: rgba(0, 0, 0, 0.08); }
.content-node .content .idea.selected {
background-color: rgba(102, 182, 32, 0.4); }
.content-node .content .question.selected {
background-color: rgba(16, 167, 222, 0.4); }
.content-node .content .error.selected {
background-color: rgba(237, 96, 48, 0.4); }
/* Em, Strong, Link */
.content-node .emphasis {
font-style: italic; }
.content-node .strong {
font-weight: bold; }
.content-node .figure_reference {
background: rgba(145, 187, 4, 0.15);
border-bottom: 1px solid rgba(145, 187, 4, 0.6);
color: #495A11;
cursor: pointer; }
.content-node .contributor_reference {
padding: 2px 1px;
cursor: pointer; }
.content-node .citation_reference {
background: rgba(11, 157, 217, 0.075);
color: #1B6685;
border-bottom: 1px solid rgba(11, 157, 217, 0.4);
cursor: pointer;
padding-right: 3px;
padding-left: 3px; }
.content-node .cross_reference {
background: rgba(0, 0, 0, 0.05);
border-bottom: 1px solid rgba(0, 0, 0, 0.25);
cursor: pointer; }
.content-node .definition_reference {
font-style: italic;
background: rgba(0, 0, 0, 0.05);
border-bottom: 1px solid rgba(0, 0, 0, 0.25);
cursor: pointer; }
/* Hover states */
.content-node .figure_reference:hover {
background-color: rgba(145, 187, 4, 0.35); }
.content-node .citation_reference:hover {
background-color: rgba(11, 157, 217, 0.3); }
.content-node .contributor_reference:hover {
background-color: rgba(0, 0, 0, 0.05); }
.content-node .definition_reference:hover {
background-color: rgba(0, 0, 0, 0.1); }
/* Highlighted states */
.content-node .figure_reference.highlighted {
background: rgba(145, 187, 4, 0.7); }
.content-node .citation_reference.highlighted {
background: rgba(11, 157, 217, 0.6); }
.content-node .contributor_reference.highlighted {
background-color: #5c6570;
color: white; }
.content-node .definition_reference.highlighted {
background-color: #5c6570;
color: white; }
/* Cross Reference */
.content-node .cross_reference:hover {
background-color: rgba(0, 0, 0, 0.1); }
/* Reader-specific overrides for content nodes
======================================================================= */
/* For the main content area
----------------------------------------------------------------------- */
.surface.content .nodes > .content-node {
padding-top: 10px;
padding-bottom: 15px;
padding-left: 30px;
padding-right: 30px;
word-wrap: break-word; }
/* Some extra cover spacing */
.surface.content .nodes > .content-node.cover {
padding-top: 20px; }
/* For the resources panel
----------------------------------------------------------------------- */
.resources .content-node.image div img {
width: auto; }
.resources .content-node.paragraph .content-node.image div img {
width: auto; }
/* padding for the content */
.resources .nodes > .content-node > .content {
padding: 20px;
padding-top: 0px; }
/* For the resources panel */
.resources .info .nodes > .content-node.paragraph > .content > .content-node {
padding: 20px 0; }
.article .document .surface.content::-webkit-scrollbar {
width: 0px;
height: 0px; }
.article .document .surface.content::-webkit-scrollbar-thumb {
background-color: transparent; }
.scrollbar-cover {
position: absolute;
top: 0px;
bottom: 0px;
right: 0px;
width: 20px;
overflow: hidden;
background: #fff; }
/* Disable native scrollbar for resources except TOC */
.article .resources .panel::-webkit-scrollbar,
.article .resources .surface::-webkit-scrollbar {
width: 0px;
height: 0px; }
.article .resources .panel::-webkit-scrollbar-thumb,
.article .resources .surface::-webkit-scrollbar-thumb {
background-color: transparent; }
/* Resources Scrollbar */
/* ---------------------------------------*/
/* make it overlay the slider for now */
.surface-scrollbar .overlay {
z-index: 3000; }
.resources .surface-scrollbar {
position: absolute;
top: 0px;
right: 0px;
left: auto;
bottom: 0px; }
#container.touchable .resources .surface-scrollbar {
right: 5px; }
/* Responsiveness */
/* ---------------------------------------*/
/* Hide fullscreen toggle for small screens */
#container.touchable .toggle-fullscreen {
display: none; }
#container.touchable .article .document .surface.content {
right: 20px; }
/* Only hide for IOS devices because of scrolling issues! */
#container.touchable.ios .surface-scrollbar .visible-area {
display: none; }
#container.touchable .surface-scrollbar .node:hover {
opacity: 0.15; }
#container.touchable .surface-scrollbar .arrow {
display: none; }
.content-node.heading .top {
display: none; }
/* Shared styles for selected and mouseover states
----------------------------------------------------------------------- */
/* This shouldn't live in reader.css, but we'll modularize as soon
as we have a plugin concept for functionality / panels */
/* Not... still there is no idea how to 'export' css packages
/* Active resource */
.article .resources .content-node.highlighted .resource-header .name {
/*color: #fff;*/ }
.article .resources .figures .content-node.highlighted {
border-left: 3px solid #91bb04; }
/* active citation */
.article .resources .citations .content-node.highlighted {
border-left: 3px solid #0b9dd9; }
/* active definition */
.article .resources .definitions .content-node.highlighted {
border-left: 3px solid #5c6570; }
/* active contributor */
.article .resources .info .content-node.highlighted {
border-left: 3px solid #5c6570; }
/* Table of contents */
/*
TOC
--------------------------------------- */
.resource-view.toc .heading-ref {
cursor: pointer;
display: block;
color: rgba(0, 0, 0, 0.8);
font-weight: 600;
font-size: 20px;
padding: 4px 10px;
line-height: 20px;
margin-right: 10px;
border: 1px solid transparent; }
.resource-view.toc .heading-ref .label {
display: inline;
padding-right: 10px; }
.resource-view.toc .heading-ref .title, .resource-view.toc .heading .content .title .content {
display: inline; }
.resource-view.toc .heading-ref.active {
color: rgba(0, 0, 0, 0.9);
background: #fff;
border: 1px solid #eee; }
.resource-view.toc .heading-ref.level-2 {
padding-left: 20px;
font-size: 17px; }
.resource-view.toc .heading-ref.level-3 {
padding-left: 40px;
font-size: 14px; }
.resource-view.toc .heading-ref.level-4 {
padding-left: 60px;
font-size: 14px; }
.resource-view.toc .heading-ref.level-5 {
padding-left: 80px;
font-size: 14px; }
.resource-view.toc .heading-ref:hover {
color: black; }
/* Scrollbar
--------------------------------------- */
.surface-scrollbar {
background: #eee;
position: absolute;
left: 0px;
width: 20px;
top: 0px;
bottom: 0px; }
.surface-scrollbar .node.overlay {
position: absolute;
min-height: 2px; }
.surface-scrollbar .visible-area {
position: absolute;
top: 40px;
left: 0px;
right: 0px;
height: 80px;
z-index: 4000;
background-color: rgba(0, 0, 0, 0.2); }
.surface-scrollbar.hidden .visible-area {
display: none; }
.surface-scrollbar:hover .visible-area {
background-color: rgba(0, 0, 0, 0.25); }
.surface-scrollbar .visible-area:hover {
background-color: rgba(0, 0, 0, 0.3); }
.surface-scrollbar .node {
margin: 0 0px;
width: 20px; }
.node.highlighted {
background: #5c6570; }
/* Colors for scroll-bar overlays */
.article .resources .figures .surface-scrollbar .highlighted,
.article .content .surface-scrollbar .highlighted.figure_reference {
background-color: #91bb04; }
.article .resources .citations .surface-scrollbar .highlighted,
.article .content .surface-scrollbar .highlighted.citation_reference {
background-color: #0b9dd9; }
.article .resources .definitions .surface-scrollbar .highlighted,
.article .content .surface-scrollbar .highlighted.definition_reference {
background-color: #5c6570; }
/* new FOCUS handles */
.panel.document .nodes > .content-node > .focus-handle {
display: none;
position: absolute;
top: 0px;
bottom: 2px;
left: 0px;
width: 30px;
background: white;
border-left: 3px solid #ccc;
cursor: pointer; }
.panel.document .nodes > .content-node > .focus-handle:hover {
border-left: 3px solid #bbb; }
/*
Typography / Basics
---------------------------------------------*/
* {
margin: 0; }
body {
padding: 0;
margin: 0;
background-color: white;
/* -moz-transition: background-color 200ms linear;
-o-transition: background-color 200ms linear;
-webkit-transition: background-color 200ms linear;
transition: background-color 200ms linear;*/ }
html {
height: 100%;
-webkit-font-smoothing: antialiased; }
body.reader {
height: 100%;
overflow: hidden;
position: fixed;
left: 0px;
right: 0px;
top: 0px;
bottom: 0px; }
.container::after {
content: "";
/* not "."! */
display: block;
clear: both; }
/*
General Layout
--------------------------------------- */
#container {
position: relative;
margin: 0 auto;
min-width: 800px; }
/* In reader view */
body.reader #container {
/*max-width: 1400px;*/
/* 988px / 16px = 61.75em */
height: 100%; }
body, textarea, p, input {
font-family: 'Source Sans Pro', Helvetica, Arial, Verdana, sans-serif;
color: #505050; }
a {
color: #1B6685;
font-weight: normal;
text-decoration: none;
/* -moz-transition: background-color 100ms linear, color 100ms linear, opacity 100ms linear;
-o-transition: background-color 100ms linear, color 100ms linear, opacity 100ms linear;
-webkit-transition: background-color 100ms linear, color 100ms linear, opacity 100ms linear;
transition: background-color 100ms linear, color 100ms linear, opacity 100ms linear;*/ }
a:hover {
color: #0b9dd9; }
img {
border: none;
padding: 0;
margin: 0; }
strong {
font-weight: 700; }
h1, h2, h3 {
font-weight: 700; }
h1 a {
color: white; }
h1 a:hover {
color: white; }
h2 {
font-size: 1.75em;
padding-bottom: 20px; }
h3, h4, h5, h6 {
margin-bottom: 20px;
font-size: 1em;
font-weight: 700; }
p {
padding-bottom: 20px; }
p:last-child {
padding-bottom: 0; }
.small {
color: #505050;
font-size: .75em;
font-weight: 400; }
/* Use border-box box model */
* {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box; }
/* Article Overrides */
#container .article .resources .info .content-node.active .resource-header {
background: #5c6570; }
.article .resources .nodes > #articleinfo > .content {
border-top: 1px solid #ddd; }
.article span.annotation.author-callout-style1 {
font-weight: bold;
color: #b70e0e; }
.article span.annotation.author-callout-style2 {
font-weight: bold;
color: #00b3ff; }
.article span.annotation.author-callout-style3 {
font-weight: bold;
color: #04c304; }
.article span.annotation.author-callout-style4 {
font-weight: bold;
color: gold; }
/* main
--------------------------------------- */
#main {
position: relative; }
body.reader #main {
height: 100%; }
#container .loading {
position: absolute;
top: 15px;
left: 70px;
right: 0px;
height: 49px;
line-height: 50px;
font-size: 12px; }
/* Loading bar */
.spinner-wrapper {
position: fixed;
display: none;
left: 50%;
margin-left: -75px;
width: 150px;
top: 40%;
z-index: 5000; }
body.loading .spinner-wrapper {
display: block; }
.spinner-wrapper .spinner {
width: 40px;
height: 40px;
margin: 0 auto;
background: #444;
-webkit-animation: rotateplane 1.2s infinite ease-in-out;
animation: rotateplane 1.2s infinite ease-in-out; }
.spinner-wrapper .message {
color: #444;
text-align: center;
font-size: 12px;
padding-top: 20px; }
@-webkit-keyframes rotateplane {
0% {
-webkit-transform: perspective(120px); }
50% {
-webkit-transform: perspective(120px) rotateY(180deg); }
100% {
-webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg); } }
@keyframes rotateplane {
0% {
transform: perspective(120px) rotateX(0deg) rotateY(0deg);
-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg); }
50% {
transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); }
100% {
transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); } }
#MathJax_Message {
display: none; }
.altmetrics-panel .altmetrics {
padding: 20px; }
.content-node.figure div .image-wrapper img {
max-width: 100% !important;
height: auto !important;
width: auto; }
| 24.54848 | 122 | 0.63158 |
0decb6d5711f78e0842f10d7c72e8ea349bdb3cf | 1,021 | cs | C# | sdk/storage/Azure.Storage.Blobs/src/Generated/Models/KeyInfo.cs | gjy5885/azure-sdk-for-net | 5491b723c94176509a91c340485f10009189ac72 | [
"MIT"
] | 3,268 | 2015-01-08T04:21:52.000Z | 2022-03-31T11:10:48.000Z | sdk/storage/Azure.Storage.Blobs/src/Generated/Models/KeyInfo.cs | gjy5885/azure-sdk-for-net | 5491b723c94176509a91c340485f10009189ac72 | [
"MIT"
] | 18,748 | 2015-01-06T00:12:22.000Z | 2022-03-31T23:55:50.000Z | sdk/storage/Azure.Storage.Blobs/src/Generated/Models/KeyInfo.cs | gjy5885/azure-sdk-for-net | 5491b723c94176509a91c340485f10009189ac72 | [
"MIT"
] | 4,179 | 2015-01-07T20:13:22.000Z | 2022-03-31T09:09:02.000Z | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
namespace Azure.Storage.Blobs.Models
{
/// <summary> Key information. </summary>
internal partial class KeyInfo
{
/// <summary> Initializes a new instance of KeyInfo. </summary>
/// <param name="expiry"> The date-time the key expires in ISO 8601 UTC time. </param>
/// <exception cref="ArgumentNullException"> <paramref name="expiry"/> is null. </exception>
public KeyInfo(string expiry)
{
if (expiry == null)
{
throw new ArgumentNullException(nameof(expiry));
}
Expiry = expiry;
}
/// <summary> The date-time the key is active in ISO 8601 UTC time. </summary>
public string Start { get; set; }
/// <summary> The date-time the key expires in ISO 8601 UTC time. </summary>
public string Expiry { get; }
}
}
| 30.029412 | 100 | 0.602351 |
89ff8234c70a65406445f5549f2eed2cebcd8b9a | 1,986 | swift | Swift | i2app/i2app/UI/ViewControllers/NibConfigurable.swift | wl-net/arcusios | 9ab7cfe04555c72212ffb9073c7919d1f910849e | [
"Apache-2.0"
] | null | null | null | i2app/i2app/UI/ViewControllers/NibConfigurable.swift | wl-net/arcusios | 9ab7cfe04555c72212ffb9073c7919d1f910849e | [
"Apache-2.0"
] | 1 | 2020-07-13T01:02:56.000Z | 2020-07-13T01:02:56.000Z | i2app/i2app/UI/ViewControllers/NibConfigurable.swift | t1minator/arcus-smart-home-arcusios | 7d432f6911db74d36f7d19a342f81850b414a6c5 | [
"Apache-2.0"
] | null | null | null | //
// NibConfigurable.swift
// i2app
//
// Created by Arcus Team on 6/7/17.
/*
* Copyright 2019 Arcus Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
//
/**
This protocol is used for views which are meant to be loaded from corresponding Nib prototypes. By setting a
prototype name and calling loadPrototype(), the view should contain the contents of the prototype in the
prototypeView property.
*/
protocol NibConfigurable: class {
/**
The name of the prototype to be loaded.
*/
var prototypeName: String? { get set }
/**
The contents of the currently loaded prototype.
*/
var prototypeView: UIView? { get set }
// MARK: Extended
/**
Attempts to load the Nib prototype of name prototypeName and loads it into prototypeView.
*/
func loadPrototype()
}
extension NibConfigurable where Self: UIView {
func loadPrototype() {
prototypeView?.removeFromSuperview()
prototypeView = nil
guard let prototype = loadViewFromNib() else {
return
}
prototype.frame = bounds
prototype.autoresizingMask = [.flexibleWidth, .flexibleHeight]
addSubview(prototype)
prototypeView = prototype
}
private func loadViewFromNib() -> UIView? {
guard let nibName = prototypeName else { return nil }
let bundle = Bundle(for: type(of: self))
let nib = UINib(nibName: nibName, bundle: bundle)
return nib.instantiate(
withOwner: self,
options: nil).first as? UIView
}
}
| 27.205479 | 110 | 0.703927 |
4aa2609f19b3403f65047952466b01b33e876595 | 3,015 | dart | Dart | lib/widgets/buttons/basf_button.dart | cgutierr-zgz/basf_flutter_components | bb77a8cbd944f566ab57dc607609b87c78c385f5 | [
"BSD-3-Clause"
] | 2 | 2022-01-21T18:41:51.000Z | 2022-01-25T05:33:58.000Z | lib/widgets/buttons/basf_button.dart | BASF-Mobile-Solutions/basf_flutter_components | 2ff6b4df89f6f1dd7c1f50efa45d87ece6ed3b73 | [
"BSD-3-Clause"
] | null | null | null | lib/widgets/buttons/basf_button.dart | BASF-Mobile-Solutions/basf_flutter_components | 2ff6b4df89f6f1dd7c1f50efa45d87ece6ed3b73 | [
"BSD-3-Clause"
] | null | null | null | import 'package:flutter/material.dart';
enum ButtonType { text, outlined }
abstract class BasfButton extends StatelessWidget {
/// Use this to show text on the button directly.
final String? text;
/// Icon on the left
final IconData? leadingIcon;
/// Icon on the right˜
final IconData? trailingIcon;
/// Size of default icons
final double? iconSize;
/// Overrides all widgets (For example to show loader)
final Widget? child;
/// If this function is not set, the appearance of the button might be bad.
final VoidCallback? onPressed;
/// If this function is not set, the appearance of the button might be bad.
final VoidCallback? onLongPress;
/// Custom style different from the theme
final ButtonStyle? style;
/// The minimum width of the button.
final Size? size;
/// Maximizes button size
final bool expanded;
/// Button alignment
final AlignmentGeometry? alignment;
const BasfButton({
Key? key,
this.text,
this.leadingIcon,
this.trailingIcon,
this.iconSize,
this.child,
this.onPressed,
this.onLongPress,
this.style,
this.size,
this.expanded = false,
this.alignment = Alignment.center,
}) : super(key: key);
Widget buttonStandardContent() {
return Row(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisSize: expanded ? MainAxisSize.max : MainAxisSize.min,
children: [
if (leadingIcon != null) icon(leadingIcon!),
if (leadingIcon != null && text != null) const SizedBox(width: 12),
if (text != null) buttonText(),
if (trailingIcon != null && text != null) const SizedBox(width: 12),
if (trailingIcon != null) icon(trailingIcon!),
],
);
}
Widget buttonChildContent() {
if (expanded) {
return SizedBox(
width: double.infinity,
child: Align(child: child!),
);
} else {
return child!;
}
}
Widget buttonText() {
return Flexible(
child: Text(
text!,
maxLines: 1,
overflow: TextOverflow.ellipsis,
textAlign: TextAlign.center,
),
);
}
Widget icon(IconData iconData) {
return Center(
child: Icon(iconData, size: iconSize ?? 19),
);
}
ButtonStyle getStyleWithAdjustments({
required BuildContext context,
required ButtonType buttonType,
}) {
ButtonStyle getButtonStyle() {
switch (buttonType) {
case ButtonType.text:
return Theme.of(context).textButtonTheme.style!;
case ButtonType.outlined:
return Theme.of(context).outlinedButtonTheme.style!;
}
}
ButtonStyle buttonStyle = style ?? getButtonStyle();
MaterialStateProperty<Size>? buttonSize =
size == null ? null : MaterialStateProperty.all<Size>(size!);
return buttonStyle.copyWith(
maximumSize: buttonSize ?? buttonStyle.maximumSize,
minimumSize: buttonSize ?? buttonStyle.minimumSize,
);
}
}
| 25.125 | 77 | 0.649751 |
39274db22b413cc2b26c567ed79759c0478bee0a | 833 | py | Python | matury/2020/zad41.py | bartekpacia/informatyka | 04a290282df2dc052b3e1dff54b556b563fd8cb5 | [
"MIT"
] | 2 | 2021-12-23T21:39:10.000Z | 2022-01-17T17:38:30.000Z | matury/2020/zad41.py | bartekpacia/informatyka | 04a290282df2dc052b3e1dff54b556b563fd8cb5 | [
"MIT"
] | 1 | 2021-07-03T10:23:30.000Z | 2021-07-03T10:23:30.000Z | matury/2020/zad41.py | bartekpacia/informatyka | 04a290282df2dc052b3e1dff54b556b563fd8cb5 | [
"MIT"
] | 1 | 2021-07-02T20:13:06.000Z | 2021-07-02T20:13:06.000Z | pairs = []
with open("dane/pary.txt") as f:
for line in f:
parsed_line = line.strip().split()
num = int(parsed_line[0])
text = parsed_line[1]
pairs.append(tuple([num, text]))
def is_prime(num: int) -> bool:
for i in range(2, num):
if num % i == 0:
return False
return True
def num_to_primes(num: int) -> (int, int):
primes = []
for i in range(2, num):
if is_prime(i) and is_prime(num - i):
primes.append(tuple([i, num - i]))
# para z największą różnicą zawsze będzie pierwsza
return primes[0]
output_file = open("wyniki_4_1.txt", "w")
for pair in pairs:
num = pair[0]
if num % 2 != 0:
continue
primes = num_to_primes(num)
output_file.write(f"{num} {primes[0]} {primes[1]}\n")
output_file.close()
| 20.317073 | 57 | 0.569028 |
2cc27cb992859eb5727ef822e9cba65ff0a0c08d | 1,991 | py | Python | scripts/s02.read_sel.py | nzhang89/Ribomake | 644358adf89532a19fbd597fa3c1bd8d42be6c9f | [
"MIT"
] | 2 | 2021-12-08T09:49:28.000Z | 2021-12-27T12:33:14.000Z | scripts/s02.read_sel.py | nzhang89/Ribomake | 644358adf89532a19fbd597fa3c1bd8d42be6c9f | [
"MIT"
] | null | null | null | scripts/s02.read_sel.py | nzhang89/Ribomake | 644358adf89532a19fbd597fa3c1bd8d42be6c9f | [
"MIT"
] | null | null | null | import gzip
import os, sys
# filter read length
# in_fq should be a text file (*.fastq or *.fq) or gzipped file (*.fastq.gz or *.fq.gz)
# out_fq is always a gzipped file (*.fastq.gz)
def filter_reads(in_fq, min_read_len, max_read_len, out_fq, chunk_size=10000000, n=4):
# support either text or gzip file
try:
fi = gzip.open(in_fq, "rt")
except:
fi = open(in_fq, "rt")
# output is always gzip
fo = gzip.open(out_fq, "wt") # allow append
# use chunk to minimize file write
chunk = []
# store one fastq read
read = []
for line in fi:
read.append(line.rstrip())
if len(read) == n:
if len(read[1]) >= min_read_len and len(read[1]) <= max_read_len:
chunk.append("\n".join(read))
read.clear()
if len(chunk) >= chunk_size:
fo.write("\n".join(chunk))
fo.write("\n")
chunk.clear()
fo.write("\n".join(chunk)) # write remaining reads
# close files
fi.close()
fo.close()
def copy_reads(in_fq, out_fq, chunk_size=10000000, n=4):
# support either text or gzip file
try:
fi = gzip.open(in_fq, "rt")
except:
fi = open(in_fq, "rt")
# output is always gzip
fo = gzip.open(out_fq, "wt") # allow append
# use chunk to minimize file write
chunk = []
# store one fastq read
read = []
for line in fi:
read.append(line.rstrip())
if len(read) == n:
chunk.append("\n".join(read))
read.clear()
if len(chunk) >= chunk_size:
fo.write("\n".join(chunk))
fo.write("\n")
chunk.clear()
fo.write("\n".join(chunk)) # write remaining reads
# close files
fi.close()
fo.close()
if __name__ == "__main__":
in_fq = snakemake.input.fastq
out_fq = snakemake.output.fastq
min_read_len = snakemake.params.min_len
max_read_len = snakemake.params.max_len
seq_type = snakemake.params.seq_type
if seq_type == "ribo":
filter_reads(in_fq, min_read_len, max_read_len, out_fq)
elif seq_type == "rna":
copy_reads(in_fq, out_fq)
else:
sys.exit("Invalid seq_type found: %s. Allowed values are [\"ribo\", \"rna\"]." %(seq_type))
| 22.625 | 93 | 0.660472 |
2db825f1e184753204ff550088bde4dc3443e132 | 5,311 | go | Go | prog/checksum.go | Rrooach/Hyperkaller | dd1e1f73123515be104c153d07fc345ff9c14dad | [
"Apache-2.0"
] | 11 | 2021-09-22T11:55:21.000Z | 2022-03-20T10:16:15.000Z | prog/checksum.go | Rrooach/Hyperkaller | dd1e1f73123515be104c153d07fc345ff9c14dad | [
"Apache-2.0"
] | 2 | 2021-10-01T08:51:13.000Z | 2022-02-15T02:27:58.000Z | prog/checksum.go | Rrooach/Hyperkaller | dd1e1f73123515be104c153d07fc345ff9c14dad | [
"Apache-2.0"
] | 4 | 2021-06-02T06:07:16.000Z | 2022-02-23T07:41:16.000Z | // Copyright 2017 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
package prog
import (
"fmt"
)
type CsumChunkKind int
const (
CsumChunkArg CsumChunkKind = iota
CsumChunkConst
)
type CsumInfo struct {
Kind CsumKind
Chunks []CsumChunk
}
type CsumChunk struct {
Kind CsumChunkKind
Arg Arg // for CsumChunkArg
Value uint64 // for CsumChunkConst
Size uint64 // for CsumChunkConst
}
func calcChecksumsCall(c *Call) (map[Arg]CsumInfo, map[Arg]struct{}) {
var inetCsumFields, pseudoCsumFields []Arg
// Find all csum fields.
ForeachArg(c, func(arg Arg, _ *ArgCtx) {
if typ, ok := arg.Type().(*CsumType); ok {
switch typ.Kind {
case CsumInet:
inetCsumFields = append(inetCsumFields, arg)
case CsumPseudo:
pseudoCsumFields = append(pseudoCsumFields, arg)
default:
panic(fmt.Sprintf("unknown csum kind %v", typ.Kind))
}
}
})
if len(inetCsumFields) == 0 && len(pseudoCsumFields) == 0 {
return nil, nil
}
// Build map of each field to its parent struct.
parentsMap := make(map[Arg]Arg)
ForeachArg(c, func(arg Arg, _ *ArgCtx) {
if _, ok := arg.Type().(*StructType); ok {
for _, field := range arg.(*GroupArg).Inner {
parentsMap[InnerArg(field)] = arg
}
}
})
csumMap := make(map[Arg]CsumInfo)
csumUses := make(map[Arg]struct{})
// Calculate generic inet checksums.
for _, arg := range inetCsumFields {
typ, _ := arg.Type().(*CsumType)
csummedArg := findCsummedArg(arg, typ, parentsMap)
csumUses[csummedArg] = struct{}{}
chunk := CsumChunk{CsumChunkArg, csummedArg, 0, 0}
csumMap[arg] = CsumInfo{Kind: CsumInet, Chunks: []CsumChunk{chunk}}
}
// No need to continue if there are no pseudo csum fields.
if len(pseudoCsumFields) == 0 {
return csumMap, csumUses
}
// Extract ipv4 or ipv6 source and destination addresses.
var ipSrcAddr, ipDstAddr Arg
ForeachArg(c, func(arg Arg, _ *ArgCtx) {
groupArg, ok := arg.(*GroupArg)
if !ok {
return
}
// syz_csum_* structs are used in tests
switch groupArg.Type().TemplateName() {
case "ipv4_header", "syz_csum_ipv4_header":
ipSrcAddr, ipDstAddr = extractHeaderParams(groupArg, 4)
case "ipv6_packet_t", "syz_csum_ipv6_header":
ipSrcAddr, ipDstAddr = extractHeaderParams(groupArg, 16)
}
})
if ipSrcAddr == nil || ipDstAddr == nil {
panic("no ipv4 nor ipv6 header found")
}
// Calculate pseudo checksums.
for _, arg := range pseudoCsumFields {
typ, _ := arg.Type().(*CsumType)
csummedArg := findCsummedArg(arg, typ, parentsMap)
protocol := uint8(typ.Protocol)
var info CsumInfo
if ipSrcAddr.Size() == 4 {
info = composePseudoCsumIPv4(csummedArg, ipSrcAddr, ipDstAddr, protocol)
} else {
info = composePseudoCsumIPv6(csummedArg, ipSrcAddr, ipDstAddr, protocol)
}
csumMap[arg] = info
csumUses[csummedArg] = struct{}{}
csumUses[ipSrcAddr] = struct{}{}
csumUses[ipDstAddr] = struct{}{}
}
return csumMap, csumUses
}
func findCsummedArg(arg Arg, typ *CsumType, parentsMap map[Arg]Arg) Arg {
if typ.Buf == ParentRef {
if csummedArg, ok := parentsMap[arg]; ok {
return csummedArg
}
panic(fmt.Sprintf("%v for %v is not in parents map", ParentRef, typ.Name()))
} else {
for parent := parentsMap[arg]; parent != nil; parent = parentsMap[parent] {
// TODO(dvyukov): support template argument names as in size calculation.
if typ.Buf == parent.Type().Name() {
return parent
}
}
}
panic(fmt.Sprintf("csum field '%v' references non existent field '%v'", typ.FieldName(), typ.Buf))
}
func composePseudoCsumIPv4(tcpPacket, srcAddr, dstAddr Arg, protocol uint8) CsumInfo {
info := CsumInfo{Kind: CsumInet}
info.Chunks = append(info.Chunks, CsumChunk{CsumChunkArg, srcAddr, 0, 0})
info.Chunks = append(info.Chunks, CsumChunk{CsumChunkArg, dstAddr, 0, 0})
info.Chunks = append(info.Chunks, CsumChunk{CsumChunkConst, nil, uint64(swap16(uint16(protocol))), 2})
info.Chunks = append(info.Chunks, CsumChunk{CsumChunkConst, nil, uint64(swap16(uint16(tcpPacket.Size()))), 2})
info.Chunks = append(info.Chunks, CsumChunk{CsumChunkArg, tcpPacket, 0, 0})
return info
}
func composePseudoCsumIPv6(tcpPacket, srcAddr, dstAddr Arg, protocol uint8) CsumInfo {
info := CsumInfo{Kind: CsumInet}
info.Chunks = append(info.Chunks, CsumChunk{CsumChunkArg, srcAddr, 0, 0})
info.Chunks = append(info.Chunks, CsumChunk{CsumChunkArg, dstAddr, 0, 0})
info.Chunks = append(info.Chunks, CsumChunk{CsumChunkConst, nil, uint64(swap32(uint32(tcpPacket.Size()))), 4})
info.Chunks = append(info.Chunks, CsumChunk{CsumChunkConst, nil, uint64(swap32(uint32(protocol))), 4})
info.Chunks = append(info.Chunks, CsumChunk{CsumChunkArg, tcpPacket, 0, 0})
return info
}
func extractHeaderParams(arg *GroupArg, size uint64) (Arg, Arg) {
srcAddr := getFieldByName(arg, "src_ip")
dstAddr := getFieldByName(arg, "dst_ip")
if srcAddr.Size() != size || dstAddr.Size() != size {
panic(fmt.Sprintf("src/dst_ip fields in %v must be %v bytes", arg.Type().Name(), size))
}
return srcAddr, dstAddr
}
func getFieldByName(arg *GroupArg, name string) Arg {
for _, field := range arg.Inner {
if field.Type().FieldName() == name {
return field
}
}
panic(fmt.Sprintf("failed to find %v field in %v", name, arg.Type().Name()))
}
| 31.241176 | 111 | 0.700433 |
a9f7b52553980c39beb991e3735b134c78bb15fb | 1,128 | php | PHP | src/Validation/Rules/DisableIntrospection.php | joonlabs/php-graphql | 91384be84abf56b0243060bbe50b111ea4aeee46 | [
"MIT"
] | 53 | 2021-05-14T15:28:24.000Z | 2022-01-12T15:13:33.000Z | src/Validation/Rules/DisableIntrospection.php | joonlabs/php-graphql | 91384be84abf56b0243060bbe50b111ea4aeee46 | [
"MIT"
] | 3 | 2021-05-14T15:31:16.000Z | 2021-05-18T18:03:43.000Z | src/Validation/Rules/DisableIntrospection.php | joonlabs/php-graphql | 91384be84abf56b0243060bbe50b111ea4aeee46 | [
"MIT"
] | 2 | 2021-06-03T19:06:20.000Z | 2021-07-03T19:05:55.000Z | <?php
namespace GraphQL\Validation\Rules;
use GraphQL\Errors\ValidationError;
use GraphQL\Validation\ValidationContext;
class DisableIntrospection extends ValidationRule
{
/**
* This rule disables the introspection of the graphql api
* @param ValidationContext $validationContext
* @return void
*/
public function validate(ValidationContext $validationContext): void
{
$definitions = $validationContext->getDocument()["definitions"];
foreach ($definitions as $definition) {
if ($definition["kind"] === "OperationDefinition") {
$selections = $definition["selectionSet"]["selections"];
foreach ($selections as $selection) {
if ($selection["name"]["value"] === "__schema") {
$this->addError(
new ValidationError(
"Introspection is disabled in this setup.",
$definition
)
);
}
}
}
}
}
}
| 30.486486 | 75 | 0.523936 |
a457552d5b5fc6386ad8bf9caa751baa47555cd8 | 1,482 | php | PHP | src/Schema/Directives/Fields/EventDirective.php | TGNThump/lighthouse | 74aa1d2369180853a5a8b1b7dfb0b1fe909273d2 | [
"MIT"
] | null | null | null | src/Schema/Directives/Fields/EventDirective.php | TGNThump/lighthouse | 74aa1d2369180853a5a8b1b7dfb0b1fe909273d2 | [
"MIT"
] | null | null | null | src/Schema/Directives/Fields/EventDirective.php | TGNThump/lighthouse | 74aa1d2369180853a5a8b1b7dfb0b1fe909273d2 | [
"MIT"
] | null | null | null | <?php
namespace Nuwave\Lighthouse\Schema\Directives\Fields;
use Closure;
use GraphQL\Language\AST\FieldDefinitionNode;
use Nuwave\Lighthouse\Schema\Values\FieldValue;
use Nuwave\Lighthouse\Support\Contracts\FieldMiddleware;
use Nuwave\Lighthouse\Support\Traits\HandlesDirectives;
class EventDirective implements FieldMiddleware
{
use HandlesDirectives;
/**
* Name of the directive.
*
* @return string
*/
public function name()
{
return 'event';
}
/**
* Resolve the field directive.
*
* @param FieldValue $value
*
* @return Closure
*/
public function handleField(FieldValue $value)
{
$event = $this->getEvent($value->getField());
$resolver = $value->getResolver();
return $value->setResolver(function () use ($resolver, $event) {
$args = func_get_args();
$value = call_user_func_array($resolver, $args);
event(new $event($value));
return $value;
});
}
/**
* Get the event name.
*
* @param FieldDefinitionNode $field
*
* @return mixed
*/
protected function getEvent(FieldDefinitionNode $field)
{
return $this->directiveArgValue(
$this->fieldDirective($field, 'event'),
'fire',
$this->directiveArgValue(
$this->fieldDirective($field, 'event'),
'class'
)
);
}
}
| 22.8 | 72 | 0.580297 |
b2cc851b3c91b0bfab8b98ab23debc90c83df21e | 1,197 | css | CSS | O3656 Sharepoint/O3656-5 SharePoint 2013 Remote Event Receivers/Demos/DebuggingRemoteEvents/RemoteEventsLabWeb/Content/Site.css | patbosc/officedevts2015 | c2d55907886cbf53ed7340e639f6fde808451d46 | [
"MIT"
] | 2 | 2020-11-10T08:37:40.000Z | 2021-08-30T21:20:22.000Z | O3656 Sharepoint/O3656-5 SharePoint 2013 Remote Event Receivers/Demos/DebuggingRemoteEvents/RemoteEventsLabWeb/Content/Site.css | patbosc/officedevts2015 | c2d55907886cbf53ed7340e639f6fde808451d46 | [
"MIT"
] | null | null | null | O3656 Sharepoint/O3656-5 SharePoint 2013 Remote Event Receivers/Demos/DebuggingRemoteEvents/RemoteEventsLabWeb/Content/Site.css | patbosc/officedevts2015 | c2d55907886cbf53ed7340e639f6fde808451d46 | [
"MIT"
] | 2 | 2020-04-17T15:05:11.000Z | 2020-11-17T19:03:44.000Z | body {
padding-top: 0px;
padding-bottom: 0px;
background-color: #DDD;
}
#top_nav {
background-color: #000;
}
#top_nav a:link, #top_nav a:visited, #top_nav a:active, #top_nav a:hover {
text-decoration: none;
color: #FFF;
padding: 2px;
padding-left: 6px;
font-size: 0.7em;
font-weight: bold;
font-family: Arial, sans-serif;
}
#page_width {
background-color: #FFF;
border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
padding-bottom: 40px;
}
#page_header {
background-color: #003300;
font-size: 1.25em;
font-family: 'Arial Rounded MT', 'Arial', 'sans-serif';
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
}
#page_title {
color: #FFFFFF;
margin: 12px;
}
/* Set padding to keep content from hitting the edges */
.body-content {
padding-left: 15px;
padding-right: 15px;
}
/* Override the default bootstrap behavior where horizontal description lists
will truncate terms that are too long to fit in the left column
*/
.dl-horizontal dt {
white-space: normal;
}
/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
max-width: 280px;
}
| 19.306452 | 78 | 0.679198 |
2c839bc6adfb05ffbfb0ba27d42a0b486edec3f3 | 4,970 | py | Python | tests/test_topyn.py | lleites/topyn | 69e2bd100e71bb0323adadb857aea724647f456e | [
"MIT"
] | 10 | 2019-11-21T22:25:34.000Z | 2022-01-13T13:44:54.000Z | tests/test_topyn.py | lleites/topyn | 69e2bd100e71bb0323adadb857aea724647f456e | [
"MIT"
] | null | null | null | tests/test_topyn.py | lleites/topyn | 69e2bd100e71bb0323adadb857aea724647f456e | [
"MIT"
] | null | null | null | from unittest.mock import patch
import py
import pytest
from _pytest.capture import CaptureFixture
from topyn import __version__
from topyn.console import run
def test_version() -> None:
assert __version__ == "0.7.0.dev"
def _run_system_exit(path: str, expected_code: int = 1) -> None:
with pytest.raises(SystemExit) as e:
run([path])
assert e.code == expected_code
def test_wrong_types(capsys: CaptureFixture) -> None:
import topyn.tui
with patch.object(topyn.tui, "failed", wraps=topyn.tui.failed) as mock_out:
_run_system_exit("tests/resources/wrong_types")
mock_out.assert_called_with("types")
captured = capsys.readouterr()
assert "Incompatible return value type" in captured.out
def test_missing_types(capsys: CaptureFixture) -> None:
import topyn.tui
with patch.object(topyn.tui, "failed", wraps=topyn.tui.failed) as mock_out:
_run_system_exit("tests/resources/missing_types")
mock_out.assert_called_with("types")
captured = capsys.readouterr()
assert "missing a return type annotation" in captured.out
def test_bad_rules(capsys: CaptureFixture) -> None:
import topyn.tui
with patch.object(topyn.tui, "failed", wraps=topyn.tui.failed) as mock_out:
_run_system_exit("tests/resources/bad_rules")
mock_out.assert_called_with("rules")
captured = capsys.readouterr()
assert "T001 print found" in captured.out
def test_incorrect_naming(capsys: CaptureFixture) -> None:
import topyn.tui
with patch.object(topyn.tui, "failed", wraps=topyn.tui.failed) as mock_out:
_run_system_exit("tests/resources/incorrect_naming")
mock_out.assert_called_with("rules")
captured = capsys.readouterr()
assert (
"N802 function name 'iLikeCamelCase' should be lowercase"
in captured.out
)
def test_bugbear(capsys: CaptureFixture) -> None:
import topyn.tui
with patch.object(topyn.tui, "failed", wraps=topyn.tui.failed) as mock_out:
_run_system_exit("tests/resources/mutable_default_parameter")
mock_out.assert_called_with("rules")
captured = capsys.readouterr()
assert (
"B006 Do not use mutable data structures for argument defaults"
in captured.out
)
def test_comprehensions(capsys: CaptureFixture) -> None:
import topyn.tui
with patch.object(topyn.tui, "failed", wraps=topyn.tui.failed) as mock_out:
_run_system_exit("tests/resources/unnecesary_list_call")
mock_out.assert_called_with("rules")
captured = capsys.readouterr()
assert "C413 Unnecessary list call around sorted()." in captured.out
def test_wrong_formatting(capsys: CaptureFixture) -> None:
import topyn.tui
with patch.object(topyn.tui, "failed", wraps=topyn.tui.failed) as mock_out:
_run_system_exit("tests/resources/wrong_formatting")
mock_out.assert_called_with("formatting")
captured = capsys.readouterr()
assert "would reformat" in captured.err
def test_ok(capsys: CaptureFixture) -> None:
import topyn.tui
with patch.object(
topyn.tui, "everything_is_ok", wraps=topyn.tui.everything_is_ok
) as mock_out:
run(["tests/resources/ok"])
mock_out.assert_called_once()
assert (
"All done! ✨ 🍰 ✨\n1 file would be left unchanged.\n"
== capsys.readouterr().err
)
def test_fix(tmpdir: py.path.local) -> None:
import topyn.tui
tmp_file = tmpdir.join("file.py")
tmp_file.write("def no_format () -> None :('Format me' )")
with patch.object(topyn.tui, "failed") as mock_out:
_run_system_exit(str(tmpdir))
mock_out.assert_called_with("formatting")
with patch.object(
topyn.tui, "trying_to_fix", wraps=topyn.tui.trying_to_fix
) as mock_out:
run([str(tmpdir), "--fix"])
mock_out.assert_called_once()
with patch.object(topyn.tui, "everything_is_ok") as mock_out:
run([str(tmpdir)])
mock_out.assert_called_once()
def test_fix_rules(tmpdir: py.path.local) -> None:
import topyn.tui
tmp_file = tmpdir.join("file.py")
tmp_file.write("import os\n\nsome_code = 42\n")
with patch.object(topyn.tui, "failed") as mock_out:
_run_system_exit(str(tmpdir))
mock_out.assert_called_with("rules")
with patch.object(
topyn.tui, "trying_to_fix", wraps=topyn.tui.trying_to_fix
) as mock_out:
run([str(tmpdir), "--fix"])
mock_out.assert_called_once()
with patch.object(topyn.tui, "everything_is_ok") as mock_out:
run([str(tmpdir)])
mock_out.assert_called_once()
def test_module_exec() -> None:
import topyn.console
with patch.object(topyn.console, "run") as mock_run:
# noinspection PyUnresolvedReferences
import topyn.__main__
mock_run.assert_called_once()
| 29.583333 | 79 | 0.676258 |
e727a2d53ee67dffdfe74dcba45ad4175ae6143c | 238 | php | PHP | app/Model/ShippingAddress.php | abo3ish/shop-api | 51964a4f172c40118e320de856d7d75a1dc391c6 | [
"MIT"
] | null | null | null | app/Model/ShippingAddress.php | abo3ish/shop-api | 51964a4f172c40118e320de856d7d75a1dc391c6 | [
"MIT"
] | 7 | 2020-09-16T15:59:17.000Z | 2022-03-23T20:37:33.000Z | app/Model/ShippingAddress.php | abo3ish/shop-api | 51964a4f172c40118e320de856d7d75a1dc391c6 | [
"MIT"
] | null | null | null | <?php
namespace App\Model;
use Illuminate\Database\Eloquent\Model;
class ShippingAddress extends Model
{
protected $fillable = [
'user_id', 'address', 'mobile_number', 'city', 'area', 'street', 'building', 'floor'
];
}
| 18.307692 | 92 | 0.659664 |
0fcf71b5a446c10a9f8456800fea4f975a50ffae | 1,384 | go | Go | openstack/autoscaling/v1/instances/results.go | niuzhenguo/golangsdk | bfef50238f46de47826175009cb291c1cd99e530 | [
"Apache-2.0"
] | 5 | 2021-08-31T09:42:20.000Z | 2021-09-03T07:07:42.000Z | openstack/autoscaling/v1/instances/results.go | niuzhenguo/golangsdk | bfef50238f46de47826175009cb291c1cd99e530 | [
"Apache-2.0"
] | 15 | 2021-09-09T02:19:11.000Z | 2022-03-28T03:27:33.000Z | openstack/autoscaling/v1/instances/results.go | niuzhenguo/golangsdk | bfef50238f46de47826175009cb291c1cd99e530 | [
"Apache-2.0"
] | 7 | 2021-08-31T09:50:25.000Z | 2021-09-07T02:45:42.000Z | package instances
import (
"github.com/chnsz/golangsdk"
"github.com/chnsz/golangsdk/pagination"
)
//Instance is a struct which represents all the infromation of a instance
type Instance struct {
ID string `json:"instance_id"`
Name string `json:"instance_name"`
GroupID string `json:"scaling_group_id"`
GroupName string `json:"scaling_group_name"`
LifeCycleStatus string `json:"life_cycle_state"`
HealthStatus string `json:"health_status"`
ConfigurationName string `json:"scaling_configuration_name"`
ConfigurationID string `json:"scaling_configuration_id"`
CreateTime string `json:"create_time"`
}
//InstancePage is a struct which can do the page function
type InstancePage struct {
pagination.SinglePageBase
}
// IsEmpty returns true if a instances number equal to 0.
func (r InstancePage) IsEmpty() (bool, error) {
groups, err := r.Extract()
return len(groups) == 0, err
}
func (r InstancePage) Extract() ([]Instance, error) {
var instances []Instance
err := r.Result.ExtractIntoSlicePtr(&instances, "scaling_group_instances")
return instances, err
}
//DeleteResult is a struct which contains the result of deletion instance
type DeleteResult struct {
golangsdk.ErrResult
}
//BatchResult is a struct which contains the result of batch operations
type BatchResult struct {
golangsdk.ErrResult
}
| 29.446809 | 75 | 0.740607 |
e27457518eeb1a3dc4de45828d6bde4711ddd1d2 | 292 | py | Python | src/stackoverflow/64550935/64550935-b.py | mrdulin/python-codelab | 3d960a14a96b3a673b7dc2277d202069b1f8e778 | [
"MIT"
] | null | null | null | src/stackoverflow/64550935/64550935-b.py | mrdulin/python-codelab | 3d960a14a96b3a673b7dc2277d202069b1f8e778 | [
"MIT"
] | null | null | null | src/stackoverflow/64550935/64550935-b.py | mrdulin/python-codelab | 3d960a14a96b3a673b7dc2277d202069b1f8e778 | [
"MIT"
] | 3 | 2020-02-19T08:02:04.000Z | 2021-06-08T13:27:51.000Z | import time
import unittest
from unittest.mock import patch
class Tests(unittest.TestCase):
def test_sleep(self):
with patch("time.sleep") as sleepMock:
time.sleep(0.01)
sleepMock.assert_called_with(0.01)
if __name__ == '__main__':
unittest.main()
| 19.466667 | 46 | 0.667808 |
ef71ad6b5e3d073b99c2624ad475a396512d0e09 | 261 | dart | Dart | lib/physics2d.dart | fraog/dart-physics2d | 88eb077427329e277315966a23cff1c1d4683a40 | [
"BSD-3-Clause"
] | null | null | null | lib/physics2d.dart | fraog/dart-physics2d | 88eb077427329e277315966a23cff1c1d4683a40 | [
"BSD-3-Clause"
] | null | null | null | lib/physics2d.dart | fraog/dart-physics2d | 88eb077427329e277315966a23cff1c1d4683a40 | [
"BSD-3-Clause"
] | null | null | null | ///The physics2d library simulates simple 2d rigidbody dynamics.
library physics2d;
export 'src/physics2d_base.dart';
export 'src/vector2d.dart';
export 'src/edge2d.dart';
export 'src/rect2d.dart';
export 'src/rigidbody2d.dart';
export 'src/collision2d.dart';
| 26.1 | 64 | 0.777778 |
4f793a435ae714a1c4cc9d977b5fe400acf87b98 | 13,180 | gemspec | Ruby | omokake02/vendor/bundle/ruby/2.6.0/specifications/fastlane-2.134.0.gemspec | kokiTakashiki/omokake | 4d4617e341ccfef8d3406c128c48ca2a0224be7b | [
"MIT"
] | null | null | null | omokake02/vendor/bundle/ruby/2.6.0/specifications/fastlane-2.134.0.gemspec | kokiTakashiki/omokake | 4d4617e341ccfef8d3406c128c48ca2a0224be7b | [
"MIT"
] | 6 | 2021-07-09T12:15:51.000Z | 2021-08-28T14:32:28.000Z | omokake02/vendor/bundle/ruby/2.6.0/specifications/fastlane-2.134.0.gemspec | kokiTakashiki/omokake | 4d4617e341ccfef8d3406c128c48ca2a0224be7b | [
"MIT"
] | null | null | null | # -*- encoding: utf-8 -*-
# stub: fastlane 2.134.0 ruby credentials_manager/lib pem/lib snapshot/lib frameit/lib match/lib fastlane_core/lib deliver/lib scan/lib supply/lib cert/lib fastlane/lib spaceship/lib pilot/lib gym/lib precheck/lib screengrab/lib sigh/lib produce/lib
Gem::Specification.new do |s|
s.name = "fastlane".freeze
s.version = "2.134.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
s.metadata = { "docs_url" => "https://docs.fastlane.tools" } if s.respond_to? :metadata=
s.require_paths = ["credentials_manager/lib".freeze, "pem/lib".freeze, "snapshot/lib".freeze, "frameit/lib".freeze, "match/lib".freeze, "fastlane_core/lib".freeze, "deliver/lib".freeze, "scan/lib".freeze, "supply/lib".freeze, "cert/lib".freeze, "fastlane/lib".freeze, "spaceship/lib".freeze, "pilot/lib".freeze, "gym/lib".freeze, "precheck/lib".freeze, "screengrab/lib".freeze, "sigh/lib".freeze, "produce/lib".freeze]
s.authors = ["Kohki Miki".freeze, "Felix Krause".freeze, "Fumiya Nakamura".freeze, "Danielle Tomlinson".freeze, "Stefan Natchev".freeze, "Helmut Januschka".freeze, "Maksym Grebenets".freeze, "Josh Holtz".freeze, "Manu Wallner".freeze, "Aaron Brager".freeze, "Matthew Ellis".freeze, "J\u00E9r\u00F4me Lacoste".freeze, "Iulian Onofrei".freeze, "Jorge Revuelta H".freeze, "Andrew McBurney".freeze, "Jimmy Dee".freeze, "Olivier Halligon".freeze, "Joshua Liebowitz".freeze, "Luka Mirosevic".freeze, "Jan Piotrowski".freeze]
s.date = "2019-10-14"
s.description = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
s.email = ["[email protected]".freeze]
s.executables = ["bin-proxy".freeze, "fastlane".freeze]
s.files = ["bin/bin-proxy".freeze, "bin/fastlane".freeze]
s.homepage = "https://fastlane.tools".freeze
s.licenses = ["MIT".freeze]
s.required_ruby_version = Gem::Requirement.new(">= 2.0.0".freeze)
s.rubygems_version = "3.0.6".freeze
s.summary = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
s.installed_by_version = "3.0.6" if s.respond_to? :installed_by_version
if s.respond_to? :specification_version then
s.specification_version = 4
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<slack-notifier>.freeze, [">= 2.0.0", "< 3.0.0"])
s.add_runtime_dependency(%q<xcodeproj>.freeze, [">= 1.8.1", "< 2.0.0"])
s.add_runtime_dependency(%q<xcpretty>.freeze, ["~> 0.3.0"])
s.add_runtime_dependency(%q<terminal-notifier>.freeze, [">= 2.0.0", "< 3.0.0"])
s.add_runtime_dependency(%q<terminal-table>.freeze, [">= 1.4.5", "< 2.0.0"])
s.add_runtime_dependency(%q<plist>.freeze, [">= 3.1.0", "< 4.0.0"])
s.add_runtime_dependency(%q<CFPropertyList>.freeze, [">= 2.3", "< 4.0.0"])
s.add_runtime_dependency(%q<addressable>.freeze, [">= 2.3", "< 3.0.0"])
s.add_runtime_dependency(%q<multipart-post>.freeze, ["~> 2.0.0"])
s.add_runtime_dependency(%q<word_wrap>.freeze, ["~> 1.0.0"])
s.add_runtime_dependency(%q<public_suffix>.freeze, ["~> 2.0.0"])
s.add_runtime_dependency(%q<tty-screen>.freeze, [">= 0.6.3", "< 1.0.0"])
s.add_runtime_dependency(%q<tty-spinner>.freeze, [">= 0.8.0", "< 1.0.0"])
s.add_runtime_dependency(%q<babosa>.freeze, [">= 1.0.2", "< 2.0.0"])
s.add_runtime_dependency(%q<colored>.freeze, [">= 0"])
s.add_runtime_dependency(%q<commander-fastlane>.freeze, [">= 4.4.6", "< 5.0.0"])
s.add_runtime_dependency(%q<excon>.freeze, [">= 0.45.0", "< 1.0.0"])
s.add_runtime_dependency(%q<faraday-cookie_jar>.freeze, ["~> 0.0.6"])
s.add_runtime_dependency(%q<faraday>.freeze, ["~> 0.17"])
s.add_runtime_dependency(%q<faraday_middleware>.freeze, ["~> 0.13.1"])
s.add_runtime_dependency(%q<fastimage>.freeze, [">= 2.1.0", "< 3.0.0"])
s.add_runtime_dependency(%q<gh_inspector>.freeze, [">= 1.1.2", "< 2.0.0"])
s.add_runtime_dependency(%q<highline>.freeze, [">= 1.7.2", "< 2.0.0"])
s.add_runtime_dependency(%q<json>.freeze, ["< 3.0.0"])
s.add_runtime_dependency(%q<mini_magick>.freeze, [">= 4.9.4", "< 5.0.0"])
s.add_runtime_dependency(%q<multi_xml>.freeze, ["~> 0.5"])
s.add_runtime_dependency(%q<rubyzip>.freeze, [">= 1.3.0", "< 2.0.0"])
s.add_runtime_dependency(%q<security>.freeze, ["= 0.1.3"])
s.add_runtime_dependency(%q<xcpretty-travis-formatter>.freeze, [">= 0.0.3"])
s.add_runtime_dependency(%q<dotenv>.freeze, [">= 2.1.1", "< 3.0.0"])
s.add_runtime_dependency(%q<bundler>.freeze, [">= 1.12.0", "< 3.0.0"])
s.add_runtime_dependency(%q<simctl>.freeze, ["~> 1.6.3"])
s.add_runtime_dependency(%q<jwt>.freeze, ["~> 2.1.0"])
s.add_runtime_dependency(%q<google-api-client>.freeze, [">= 0.21.2", "< 0.24.0"])
s.add_runtime_dependency(%q<google-cloud-storage>.freeze, [">= 1.15.0", "< 2.0.0"])
s.add_runtime_dependency(%q<emoji_regex>.freeze, [">= 0.1", "< 2.0"])
s.add_development_dependency(%q<rake>.freeze, ["< 12"])
s.add_development_dependency(%q<rspec>.freeze, ["~> 3.5.0"])
s.add_development_dependency(%q<rspec_junit_formatter>.freeze, ["~> 0.2.3"])
s.add_development_dependency(%q<pry>.freeze, [">= 0"])
s.add_development_dependency(%q<pry-byebug>.freeze, [">= 0"])
s.add_development_dependency(%q<pry-rescue>.freeze, [">= 0"])
s.add_development_dependency(%q<pry-stack_explorer>.freeze, [">= 0"])
s.add_development_dependency(%q<yard>.freeze, ["~> 0.9.11"])
s.add_development_dependency(%q<webmock>.freeze, ["~> 2.3.2"])
s.add_development_dependency(%q<coveralls>.freeze, ["~> 0.8.13"])
s.add_development_dependency(%q<rubocop>.freeze, ["= 0.49.1"])
s.add_development_dependency(%q<rubocop-require_tools>.freeze, [">= 0.1.2"])
s.add_development_dependency(%q<rb-readline>.freeze, [">= 0"])
s.add_development_dependency(%q<rest-client>.freeze, [">= 1.8.0"])
s.add_development_dependency(%q<fakefs>.freeze, ["~> 0.8.1"])
s.add_development_dependency(%q<sinatra>.freeze, ["~> 1.4.8"])
s.add_development_dependency(%q<xcov>.freeze, ["~> 1.4.1"])
s.add_development_dependency(%q<climate_control>.freeze, ["~> 0.2.0"])
else
s.add_dependency(%q<slack-notifier>.freeze, [">= 2.0.0", "< 3.0.0"])
s.add_dependency(%q<xcodeproj>.freeze, [">= 1.8.1", "< 2.0.0"])
s.add_dependency(%q<xcpretty>.freeze, ["~> 0.3.0"])
s.add_dependency(%q<terminal-notifier>.freeze, [">= 2.0.0", "< 3.0.0"])
s.add_dependency(%q<terminal-table>.freeze, [">= 1.4.5", "< 2.0.0"])
s.add_dependency(%q<plist>.freeze, [">= 3.1.0", "< 4.0.0"])
s.add_dependency(%q<CFPropertyList>.freeze, [">= 2.3", "< 4.0.0"])
s.add_dependency(%q<addressable>.freeze, [">= 2.3", "< 3.0.0"])
s.add_dependency(%q<multipart-post>.freeze, ["~> 2.0.0"])
s.add_dependency(%q<word_wrap>.freeze, ["~> 1.0.0"])
s.add_dependency(%q<public_suffix>.freeze, ["~> 2.0.0"])
s.add_dependency(%q<tty-screen>.freeze, [">= 0.6.3", "< 1.0.0"])
s.add_dependency(%q<tty-spinner>.freeze, [">= 0.8.0", "< 1.0.0"])
s.add_dependency(%q<babosa>.freeze, [">= 1.0.2", "< 2.0.0"])
s.add_dependency(%q<colored>.freeze, [">= 0"])
s.add_dependency(%q<commander-fastlane>.freeze, [">= 4.4.6", "< 5.0.0"])
s.add_dependency(%q<excon>.freeze, [">= 0.45.0", "< 1.0.0"])
s.add_dependency(%q<faraday-cookie_jar>.freeze, ["~> 0.0.6"])
s.add_dependency(%q<faraday>.freeze, ["~> 0.17"])
s.add_dependency(%q<faraday_middleware>.freeze, ["~> 0.13.1"])
s.add_dependency(%q<fastimage>.freeze, [">= 2.1.0", "< 3.0.0"])
s.add_dependency(%q<gh_inspector>.freeze, [">= 1.1.2", "< 2.0.0"])
s.add_dependency(%q<highline>.freeze, [">= 1.7.2", "< 2.0.0"])
s.add_dependency(%q<json>.freeze, ["< 3.0.0"])
s.add_dependency(%q<mini_magick>.freeze, [">= 4.9.4", "< 5.0.0"])
s.add_dependency(%q<multi_xml>.freeze, ["~> 0.5"])
s.add_dependency(%q<rubyzip>.freeze, [">= 1.3.0", "< 2.0.0"])
s.add_dependency(%q<security>.freeze, ["= 0.1.3"])
s.add_dependency(%q<xcpretty-travis-formatter>.freeze, [">= 0.0.3"])
s.add_dependency(%q<dotenv>.freeze, [">= 2.1.1", "< 3.0.0"])
s.add_dependency(%q<bundler>.freeze, [">= 1.12.0", "< 3.0.0"])
s.add_dependency(%q<simctl>.freeze, ["~> 1.6.3"])
s.add_dependency(%q<jwt>.freeze, ["~> 2.1.0"])
s.add_dependency(%q<google-api-client>.freeze, [">= 0.21.2", "< 0.24.0"])
s.add_dependency(%q<google-cloud-storage>.freeze, [">= 1.15.0", "< 2.0.0"])
s.add_dependency(%q<emoji_regex>.freeze, [">= 0.1", "< 2.0"])
s.add_dependency(%q<rake>.freeze, ["< 12"])
s.add_dependency(%q<rspec>.freeze, ["~> 3.5.0"])
s.add_dependency(%q<rspec_junit_formatter>.freeze, ["~> 0.2.3"])
s.add_dependency(%q<pry>.freeze, [">= 0"])
s.add_dependency(%q<pry-byebug>.freeze, [">= 0"])
s.add_dependency(%q<pry-rescue>.freeze, [">= 0"])
s.add_dependency(%q<pry-stack_explorer>.freeze, [">= 0"])
s.add_dependency(%q<yard>.freeze, ["~> 0.9.11"])
s.add_dependency(%q<webmock>.freeze, ["~> 2.3.2"])
s.add_dependency(%q<coveralls>.freeze, ["~> 0.8.13"])
s.add_dependency(%q<rubocop>.freeze, ["= 0.49.1"])
s.add_dependency(%q<rubocop-require_tools>.freeze, [">= 0.1.2"])
s.add_dependency(%q<rb-readline>.freeze, [">= 0"])
s.add_dependency(%q<rest-client>.freeze, [">= 1.8.0"])
s.add_dependency(%q<fakefs>.freeze, ["~> 0.8.1"])
s.add_dependency(%q<sinatra>.freeze, ["~> 1.4.8"])
s.add_dependency(%q<xcov>.freeze, ["~> 1.4.1"])
s.add_dependency(%q<climate_control>.freeze, ["~> 0.2.0"])
end
else
s.add_dependency(%q<slack-notifier>.freeze, [">= 2.0.0", "< 3.0.0"])
s.add_dependency(%q<xcodeproj>.freeze, [">= 1.8.1", "< 2.0.0"])
s.add_dependency(%q<xcpretty>.freeze, ["~> 0.3.0"])
s.add_dependency(%q<terminal-notifier>.freeze, [">= 2.0.0", "< 3.0.0"])
s.add_dependency(%q<terminal-table>.freeze, [">= 1.4.5", "< 2.0.0"])
s.add_dependency(%q<plist>.freeze, [">= 3.1.0", "< 4.0.0"])
s.add_dependency(%q<CFPropertyList>.freeze, [">= 2.3", "< 4.0.0"])
s.add_dependency(%q<addressable>.freeze, [">= 2.3", "< 3.0.0"])
s.add_dependency(%q<multipart-post>.freeze, ["~> 2.0.0"])
s.add_dependency(%q<word_wrap>.freeze, ["~> 1.0.0"])
s.add_dependency(%q<public_suffix>.freeze, ["~> 2.0.0"])
s.add_dependency(%q<tty-screen>.freeze, [">= 0.6.3", "< 1.0.0"])
s.add_dependency(%q<tty-spinner>.freeze, [">= 0.8.0", "< 1.0.0"])
s.add_dependency(%q<babosa>.freeze, [">= 1.0.2", "< 2.0.0"])
s.add_dependency(%q<colored>.freeze, [">= 0"])
s.add_dependency(%q<commander-fastlane>.freeze, [">= 4.4.6", "< 5.0.0"])
s.add_dependency(%q<excon>.freeze, [">= 0.45.0", "< 1.0.0"])
s.add_dependency(%q<faraday-cookie_jar>.freeze, ["~> 0.0.6"])
s.add_dependency(%q<faraday>.freeze, ["~> 0.17"])
s.add_dependency(%q<faraday_middleware>.freeze, ["~> 0.13.1"])
s.add_dependency(%q<fastimage>.freeze, [">= 2.1.0", "< 3.0.0"])
s.add_dependency(%q<gh_inspector>.freeze, [">= 1.1.2", "< 2.0.0"])
s.add_dependency(%q<highline>.freeze, [">= 1.7.2", "< 2.0.0"])
s.add_dependency(%q<json>.freeze, ["< 3.0.0"])
s.add_dependency(%q<mini_magick>.freeze, [">= 4.9.4", "< 5.0.0"])
s.add_dependency(%q<multi_xml>.freeze, ["~> 0.5"])
s.add_dependency(%q<rubyzip>.freeze, [">= 1.3.0", "< 2.0.0"])
s.add_dependency(%q<security>.freeze, ["= 0.1.3"])
s.add_dependency(%q<xcpretty-travis-formatter>.freeze, [">= 0.0.3"])
s.add_dependency(%q<dotenv>.freeze, [">= 2.1.1", "< 3.0.0"])
s.add_dependency(%q<bundler>.freeze, [">= 1.12.0", "< 3.0.0"])
s.add_dependency(%q<simctl>.freeze, ["~> 1.6.3"])
s.add_dependency(%q<jwt>.freeze, ["~> 2.1.0"])
s.add_dependency(%q<google-api-client>.freeze, [">= 0.21.2", "< 0.24.0"])
s.add_dependency(%q<google-cloud-storage>.freeze, [">= 1.15.0", "< 2.0.0"])
s.add_dependency(%q<emoji_regex>.freeze, [">= 0.1", "< 2.0"])
s.add_dependency(%q<rake>.freeze, ["< 12"])
s.add_dependency(%q<rspec>.freeze, ["~> 3.5.0"])
s.add_dependency(%q<rspec_junit_formatter>.freeze, ["~> 0.2.3"])
s.add_dependency(%q<pry>.freeze, [">= 0"])
s.add_dependency(%q<pry-byebug>.freeze, [">= 0"])
s.add_dependency(%q<pry-rescue>.freeze, [">= 0"])
s.add_dependency(%q<pry-stack_explorer>.freeze, [">= 0"])
s.add_dependency(%q<yard>.freeze, ["~> 0.9.11"])
s.add_dependency(%q<webmock>.freeze, ["~> 2.3.2"])
s.add_dependency(%q<coveralls>.freeze, ["~> 0.8.13"])
s.add_dependency(%q<rubocop>.freeze, ["= 0.49.1"])
s.add_dependency(%q<rubocop-require_tools>.freeze, [">= 0.1.2"])
s.add_dependency(%q<rb-readline>.freeze, [">= 0"])
s.add_dependency(%q<rest-client>.freeze, [">= 1.8.0"])
s.add_dependency(%q<fakefs>.freeze, ["~> 0.8.1"])
s.add_dependency(%q<sinatra>.freeze, ["~> 1.4.8"])
s.add_dependency(%q<xcov>.freeze, ["~> 1.4.1"])
s.add_dependency(%q<climate_control>.freeze, ["~> 0.2.0"])
end
end
| 67.244898 | 520 | 0.61305 |
e71a0dfa77155ffad8ec64469c675bb27bbe9f5c | 2,092 | php | PHP | app/views/user/tutor_search.blade.php | Sukhobok/tutoring | a7f0352ce712493f13d174da28a6f939a69cc3bd | [
"MIT"
] | 1 | 2019-10-20T20:19:22.000Z | 2019-10-20T20:19:22.000Z | app/views/user/tutor_search.blade.php | Sukhobok/tutoring | a7f0352ce712493f13d174da28a6f939a69cc3bd | [
"MIT"
] | null | null | null | app/views/user/tutor_search.blade.php | Sukhobok/tutoring | a7f0352ce712493f13d174da28a6f939a69cc3bd | [
"MIT"
] | null | null | null | <div class="content">
<div class="layout">
<div class="layout-sidebar">
@if (Auth::check())
@include('templates.left_sidebar')
@else
@endif
</div>
<div class="layout-main-ext">
<div class="ss-search-name">
<span class="ss-search-title">ALREADY KNOW SOMEONE?</span>
<input type="text" placeholder="Enter his/her name" class="ss-search" />
</div>
<div class="ss-search-filters">
<div class="ss-search-filters-in">
<div class="ss-search-left">
<span class="ss-search-title">SEARCH BY SUBJECT AND FILTERS</span>
<br />
<br />
<div class="ss-search-price" style="font-weight: 700; margin-bottom: 4px;">
Maximum price/hour:
<span id="ss-search-amount" style="color: #81b201;"></span>
</div>
<div id="ss-search-slider"></div>
</div>
<div class="ss-search-right">
<input type="checkbox" name="ss-search-available-now" class="ss-search-available-now" value="1" /> Available Now
</div>
<div class="clear"></div>
</div>
<div class="ss-search-main-subjects">
@foreach ($main_subjects as $i => $main_subject)
<div class="ss-search-main-subject {{ ($i == 0) ? 'is-selected' : '' }}" data-ss-msid="{{{ $main_subject->id }}}">
{{{ $main_subject->name }}}
</div>
@endforeach
</div>
<div class="ss-search-filters-in">
@foreach ($main_subjects as $i => $main_subject)
<div class="ss-search-subjects {{ ($i != 0) ? 'hide' : '' }}" data-ss-msid="{{{ $main_subject->id }}}">
@foreach ($subjects[$main_subject->id] as $subject)
<div class="ss-search-subject">
<input type="checkbox" data-ss-sid="{{{ $subject->id }}}" /> {{{ $subject->name }}}
</div>
@endforeach
</div>
@endforeach
</div>
</div>
<div class="ss-tutor-search-result" style="display: none;">
</div>
<div class="ss-search-no-results">
<p>NO TUTORS MATCHING YOU CRITERIA!</p>
<p>PLEASE ADD MORE SUBJECTS OR SELECT A NEW PRICE RANGE!</p>
</div>
</div>
</div>
</div>
| 30.318841 | 120 | 0.576004 |
7b332abf8b114acd688276c1b0047de9c55ff995 | 969 | rb | Ruby | lib/string_joiner.rb | Swarzkopf314/string_joiner | 30674239ea70e867452d45ded9ada40e8ea5cec8 | [
"MIT"
] | null | null | null | lib/string_joiner.rb | Swarzkopf314/string_joiner | 30674239ea70e867452d45ded9ada40e8ea5cec8 | [
"MIT"
] | null | null | null | lib/string_joiner.rb | Swarzkopf314/string_joiner | 30674239ea70e867452d45ded9ada40e8ea5cec8 | [
"MIT"
] | null | null | null | require "string_joiner/version"
# does not override String#concat nor String#+
class StringJoiner < String
module BlankToString # disperse with active_support
BLANK_RE = /\A[[:space:]]*\z/
refine String do
def blank?; BLANK_RE === self end
end
end
using BlankToString
def initialize(str = "", separator = ", ", allow_blanks: false, allow_leading_separator: false)
str, separator = str.to_s, separator.to_s # liberal, allow symbols
str = "" if !allow_blanks && str.blank?
super(str)
@separator = separator
@allow_blanks = allow_blanks
@allow_leading_separator = allow_leading_separator
end
def <<(str)
str = str.to_s # liberal, allow symbols
return self if !@allow_blanks && str.blank? # don't add blanks if not allowed
return replace(str) if !@allow_leading_separator && self == "" # don't allow leading comma nor replace with blank if not allowed
super(@separator + str)
end
def to_s
String.new(self)
end
end
| 23.071429 | 130 | 0.708978 |
14cc68bd85d520b35cfe443412d7a11bc9afe731 | 682 | ts | TypeScript | src/auth/auth.service.ts | tannerdak/store-be | 0cac70ccd0431fc5c265484fc94a6a14c2b4680e | [
"MIT"
] | null | null | null | src/auth/auth.service.ts | tannerdak/store-be | 0cac70ccd0431fc5c265484fc94a6a14c2b4680e | [
"MIT"
] | null | null | null | src/auth/auth.service.ts | tannerdak/store-be | 0cac70ccd0431fc5c265484fc94a6a14c2b4680e | [
"MIT"
] | null | null | null | import { Injectable } from '@nestjs/common';
import { ClientService } from 'src/client/client.service';
import { AddClientDto } from 'src/client/dto/add-client.dto';
@Injectable()
export class AuthService {
constructor(private readonly clinetService: ClientService) {}
async ValidateClient(username: string, pass: string): Promise<any> {
const client = await this.clinetService.GetClientByName(username);
if (client && client?.password === pass) {
const { password, ...rest } = client;
return rest;
}
return null;
}
async ClientSignUp(client: AddClientDto): Promise<AddClientDto> {
return await this.clinetService.AddClient(client);
}
}
| 31 | 70 | 0.706745 |
238fb5d11061738dcc9f7b4ca9accb1ea55c5c5a | 3,498 | js | JavaScript | resources/assets/js/pages/home_products.js | PhilipSada/ecommerce-app | 91a6d5fe9f71486ac024e1c86991cc61f398c0df | [
"MIT"
] | null | null | null | resources/assets/js/pages/home_products.js | PhilipSada/ecommerce-app | 91a6d5fe9f71486ac024e1c86991cc61f398c0df | [
"MIT"
] | 4 | 2021-03-10T09:59:13.000Z | 2022-02-27T00:39:54.000Z | resources/assets/js/pages/home_products.js | PhilipSada/ecommerce-app | 91a6d5fe9f71486ac024e1c86991cc61f398c0df | [
"MIT"
] | null | null | null | import Axios from "axios";
(function(){
'use strict';
PHEELFRESH.homeslider.homePageProducts = function(){
var app = new Vue({
el:'#root',
data: {
featured:[],
products:[],
count:0,
loading:false,
featuredGrid:true,
productImg:true,
addCart:true,
productContainer:true,
productText:true
},
methods:{
getFeaturedProducts: function(){
// this.loading = true;
//axios.all is used when we want to process more than one request at the same time
axios.all([
axios.get('/product-picks'), axios.get('/featured')
]).then(axios.spread(function(productsResponse, featuredResponse){
app.featured= featuredResponse.data.featured;
app.products= productsResponse.data.products;
app.count= productsResponse.data.count;
// app.loading = false;
}));
// axios.get('/product-picks').then(function(response){
// featured was the name given in the json_encode in index controller
// the featured data axios get is sent back to the featured:[] for display
// app.featured= response.data.featured;
// app.loading = false;
// });
},
loadMoreProducts: function(){
var token = $('.featured-products').data('token');
this.loading = true;
//to post the mentioned params to the php script
var data = $.param({next:2, token:token, count:app.count});
axios.post('/load-more', data).then(function(response){
//this would basically overide the previous product picks
app.products = response.data.products;
app.count = response.data.count;
app.loading = false;
});
},
stringLimit: function(string, value){
return PHEELFRESH.module.truncateString(string, value);
},
addItemToCart: function(id){
PHEELFRESH.module.addItemsToCart(id, function(message){
$('.notify').css('display', 'block').delay(4000).slideUp(300).html(message);
});
//need to add another function that would make the cart number display in the nav
}
},
created: function(){
this.getFeaturedProducts();
},
//the mounted function is used when vuejs page has already been loaded/displayed
mounted: function(){
//to load more products when the user reaches near the bottom of the page
$(window).scroll(function(){
if($(window).scrollTop() + $(window).height() > $(document).height() - 100){
app.loadMoreProducts();
}
})
}
});
}
})(); | 39.303371 | 102 | 0.45283 |
2c72f62217c42856a54d7fcc7df043a068d1d541 | 5,129 | py | Python | day-13/part-2/youyoun.py | TPXP/adventofcode-2019 | ee653d6bfb510d14f2c2b3efc730d328c16b3f71 | [
"MIT"
] | 8 | 2019-12-01T08:56:46.000Z | 2019-12-05T21:21:12.000Z | day-13/part-2/youyoun.py | TPXP/adventofcode-2019 | ee653d6bfb510d14f2c2b3efc730d328c16b3f71 | [
"MIT"
] | 10 | 2019-11-25T09:56:20.000Z | 2021-05-10T19:57:48.000Z | day-13/part-2/youyoun.py | TPXP/adventofcode-2019 | ee653d6bfb510d14f2c2b3efc730d328c16b3f71 | [
"MIT"
] | 5 | 2019-12-01T08:19:57.000Z | 2020-11-23T09:50:19.000Z | from tool.runners.python import SubmissionPy
from typing import List
from collections import defaultdict
MAX_PARAM_NUM = 3
class Program:
def __init__(self, intcode: List):
self.intcode = defaultdict(int)
for i in range(len(intcode)):
self.intcode[i] = intcode[i]
self.pos = 0
self.opcode = 0
self.input_value = 1
self.outputs = []
self.end = 0
self.pointer_ref = 0
def set_input(self, inp):
self.input_value = inp
self.outputs = []
def clear_output(self):
self.outputs = []
def move_pointer(self):
if self.opcode in [1, 2, 7, 8]:
self.pos += 4
elif self.opcode in [5, 6]:
self.pos += 3
elif self.opcode in [3, 4, 9]:
self.pos += 2
else:
pass
def run_instruction(self):
instruction_code = self.intcode[self.pos]
self.opcode, param_modes = parse_code(instruction_code)
# 1002,4,3,4,33
if self.opcode == 1:
self.intcode[self.param(self.pos + 3, param_modes[2])] = self.intcode[
self.param(self.pos + 1, param_modes[0])] \
+ \
self.intcode[
self.param(self.pos + 2, param_modes[1])]
elif self.opcode == 2:
self.intcode[self.param(self.pos + 3, param_modes[2])] = self.intcode[
self.param(self.pos + 1, param_modes[0])] \
* \
self.intcode[
self.param(self.pos + 2, param_modes[1])]
elif self.opcode == 3:
self.intcode[self.param(self.pos + 1, param_modes[0])] = self.input_value
elif self.opcode == 4:
self.outputs.append(self.intcode[self.param(self.pos + 1, param_modes[0])])
elif self.opcode == 5:
if self.intcode[self.param(self.pos + 1, param_modes[0])] != 0:
self.pos = self.intcode[self.param(self.pos + 2, param_modes[1])]
return # dont run self.move_pointer
elif self.opcode == 6:
if self.intcode[self.param(self.pos + 1, param_modes[0])] == 0:
self.pos = self.intcode[self.param(self.pos + 2, param_modes[1])]
return
elif self.opcode == 7:
self.intcode[self.param(self.pos + 3, param_modes[2])] = int(
self.intcode[self.param(self.pos + 1, param_modes[0])]
< self.intcode[self.param(self.pos + 2, param_modes[1])])
elif self.opcode == 8:
self.intcode[self.param(self.pos + 3, param_modes[2])] = int(
self.intcode[self.param(self.pos + 1, param_modes[0])]
== self.intcode[self.param(self.pos + 2, param_modes[1])])
elif self.opcode == 9:
self.pointer_ref += self.intcode[self.param(self.pos + 1, param_modes[0])]
elif self.opcode == 99:
self.end = 1
else:
raise ValueError("Invalid op code")
self.move_pointer()
return
def param(self, pos, mode):
if mode == 0:
return self.intcode[pos]
elif mode == 1:
return pos
elif mode == 2:
return self.pointer_ref + self.intcode[pos]
else:
raise ValueError("Invalid parameter mode")
def parse_code(opcode):
operation = opcode % 100
all_modes = opcode // 100
param_modes = [0 for _ in range(MAX_PARAM_NUM)]
for i in range(MAX_PARAM_NUM):
param_modes[i] = all_modes % 10
all_modes = all_modes // 10
return operation, param_modes
class YouyounSubmission(SubmissionPy):
def run(self, s):
# :param s: input in string format
# :return: solution flag
# Your code goes here
instructions = [int(x) for x in s.split(",")]
instructions[0] = 2
prog = Program(instructions)
score = 0
ball_pos = 0, 0
paddle_pos = 0, 0
while True:
prog.run_instruction()
if prog.end == 1:
break
if len(prog.outputs) == 3:
x, y, c = prog.outputs
if x == -1 and y == 0:
score = c
else:
if c == 4:
ball_pos = x, y
elif c == 3:
paddle_pos = x, y
prog.clear_output()
if ball_pos[0] < paddle_pos[0]:
prog.set_input(-1)
elif ball_pos[0] > paddle_pos[0]:
prog.set_input(1)
else:
prog.set_input(0)
return score
| 37.713235 | 116 | 0.472997 |
5b9541bca12e407d19cfb6134d2f667a1b20c4d5 | 6,032 | sql | SQL | db/CreateDB.sql | gazinaft/DB-kursach | 46a06e3d02195f0ccb8e28f33bc63e0c89f629b6 | [
"MIT"
] | 1 | 2021-01-11T06:48:09.000Z | 2021-01-11T06:48:09.000Z | db/CreateDB.sql | gazinaft/DB-kursach | 46a06e3d02195f0ccb8e28f33bc63e0c89f629b6 | [
"MIT"
] | null | null | null | db/CreateDB.sql | gazinaft/DB-kursach | 46a06e3d02195f0ccb8e28f33bc63e0c89f629b6 | [
"MIT"
] | null | null | null | CREATE DATABASE MovieRate
GO;
-- CREATING TABLES
CREATE TABLE Genre (
GenreId INT PRIMARY KEY IDENTITY(1, 1),
GenreName NVARCHAR(32) NOT NULL
)
GO;
CREATE TABLE Studio (
StudioId INT PRIMARY KEY IDENTITY(1, 1),
StudioTitle NVARCHAR(128) NOT NULL,
StudioOwner NVARCHAR(128) NOT NULL,
Country NVARCHAR(32) NOT NULL DEFAULT 'USA'
)
GO;
CREATE TABLE Director (
DirectorId INT PRIMARY KEY IDENTITY(1, 1),
DirectorName NVARCHAR(128) NOT NULL
)
GO;
CREATE TABLE Distributor (
DistributorId INT PRIMARY KEY IDENTITY(1, 1),
DistributorTitle NVARCHAR(128) NOT NULL,
DistributorOwner NVARCHAR(128) NOT NULL,
SubscriptionPrice MONEY NOT NULL
)
GO;
CREATE TABLE AwardTitle (
AwardTitleId INT PRIMARY KEY IDENTITY(1, 1),
AwardTirle NVARCHAR(64) NOT NULL
)
GO;
CREATE TABLE Nomination (
NominationId INT PRIMARY KEY IDENTITY(1, 1),
NominationName NVARCHAR(128) NOT NULL
)
GO;
CREATE TABLE Movie (
MovieId INT PRIMARY KEY IDENTITY(1, 1),
MovieTitle NVARCHAR(128) NOT NULL,
GenreId INT FOREIGN KEY REFERENCES Genre(GenreId),
StudioId INT FOREIGN KEY REFERENCES Studio(StudioId),
DirectorId INT FOREIGN KEY REFERENCES Director(DirectorId),
DistributorId INT FOREIGN KEY REFERENCES Distributor(DistributorId)
)
GO;
CREATE TABLE Award (
AwardId INT PRIMARY KEY IDENTITY(1, 1),
MovieId INT FOREIGN KEY REFERENCES Movie(MovieId),
AwardTitleId INT FOREIGN KEY REFERENCES AwardTitle(AwardTitleId),
NominationId INT FOREIGN KEY REFERENCES Nomination(NominationId),
AwardYear INT NOT NULL
)
GO;
CREATE TABLE AppUser (
AppUserId INT PRIMARY KEY IDENTITY(1, 1),
AppLogin NVARCHAR(64) NOT NULL,
AppPassword NVARCHAR(64) NOT NULL,
RegistrationDate DATETIME
)
GO;
-- TRIGGER FOR REGISTERING NEW USER
CREATE TRIGGER RegisterTrigger
ON AppUser
INSTEAD OF INSERT
AS
BEGIN
INSERT AppUser (AppLogin, AppPassword, RegistrationDate)
SELECT AppLogin, AppPassword, GETDATE() FROM inserted
END
GO;
CREATE TABLE Rate (
RateId INT PRIMARY KEY IDENTITY(1, 1),
MovieId INT FOREIGN KEY REFERENCES Movie(MovieId),
AppUserId INT,
Score INT NOT NULL
)
GO;
-- FUNCTION FOR CALCULATING AVERAGE RATE OF THE MOVIE
CREATE FUNCTION AvgRate (@MovieId INT)
RETURNS FLOAT
AS
BEGIN
DECLARE @Res FLOAT;
SET @Res = (SELECT AVG(Score) FROM Rate WHERE MovieId = @MovieId)
RETURN @Res
END
GO;
-- CHECKS WHETHER LOGIN IS OCCUPIED
CREATE FUNCTION Authentify (@UserName NVARCHAR(64))
RETURNS BIT
AS
BEGIN
IF EXISTS(SELECT AppPassword FROM AppUser WHERE AppLogin = @UserName)
BEGIN
RETURN 1
END
RETURN 0
END
GO;
-- CREATES USER
CREATE PROCEDURE CreateUser @UserLogin NVARCHAR(64) , @UserPassword NVARCHAR(64)
AS
BEGIN
IF (dbo.Authentify(@UserLogin) = 0)
BEGIN
INSERT AppUser (AppLogin, AppPassword)
VALUES (@UserLogin, @UserPassword)
END
END
GO;
-- DELETES USER
CREATE PROCEDURE DeleteUser @UserLogin NVARCHAR(64) , @UserPassword NVARCHAR(64)
AS
BEGIN
IF (dbo.Authentify(@UserLogin) = 1)
BEGIN
DELETE FROM AppUser
WHERE AppLogin = @UserLogin
AND AppPassword = @UserPassword
END
END
GO;
-- AGGREGATES ALL INFORMATION ABOUT MOVIES
CREATE VIEW MoviesFullInfo
AS
SELECT MovieId,
MovieTitle,
M.GenreId,
G.GenreName,
S.StudioId,
S.StudioTitle,
S.StudioOwner,
S.Country,
D.DirectorId,
D.DirectorName,
Dis.DistributorId,
Dis.DistributorTitle,
Dis.DistributorOwner,
Dis.SubscriptionPrice,
dbo.AvgRate(MovieId) AS Rate
FROM Movie M
JOIN Genre G ON G.GenreId = M.GenreId
JOIN Studio S ON S.StudioId = M.StudioId
JOIN Director D ON D.DirectorId = M.DirectorId
JOIN Distributor Dis ON Dis.DistributorId = M.DistributorId
GO;
-- GETS SPECIFIC LINE FROM MOVIES FULL INFO
CREATE FUNCTION DefinedMovieInfo (@MovieId INT)
RETURNS TABLE
AS
RETURN
SELECT * FROM MoviesFullInfo
WHERE MovieId = @MovieId
GO;
-- GETS MOVIES WHICH ARE TESTED BY TIME AND CONSIDERED AS CLASSIC OF CINEMATOGRAPHY
CREATE VIEW EthernalClassic
AS
SELECT * FROM dbo.DefinedMovieInfo((SELECT TOP 1 MovieId FROM Movie WHERE DirectorId =
(SELECT TOP 1 DirectorId FROM Director WHERE DirectorName = 'Andrey Tarkovsky')))
UNION
SELECT * FROM dbo.DefinedMovieInfo((SELECT TOP 1 MovieId FROM Movie WHERE DirectorId =
(SELECT TOP 1 DirectorId FROM Director WHERE DirectorName = 'Martin Scorsese')))
GO;
-- AGGREGATES ALL INFORMATION ABOUT AWARDS
CREATE VIEW AwardsInfo
AS
SELECT AwardId,
M.MovieTitle,
ATIT.AwardTirle AS 'AwardTitle',
N.NominationName,
A.AwardYear,
CASE
WHEN ATIT.AwardTirle IN ('Cannes Film Festival', 'Venice Film Festival', 'The Berlin International Film Festival') THEN 'Arthouse'
ELSE 'Mainstream'
END AS 'AwardType'
FROM Award A
JOIN Movie M ON M.MovieId = A.MovieId
JOIN AwardTitle ATIT ON A.AwardCeremonyId = ATIT.AwardTitleId
JOIN Nomination N ON N.NominationId = A.NominationId
GO;
-- POSTS USER REVIEWS
CREATE PROCEDURE PostReview (@Login NVARCHAR(64), @Passwd NVARCHAR(64), @Rate INT, @MovieId INT)
AS
BEGIN
IF EXISTS(SELECT * FROM AppUser WHERE AppLogin = @Login AND AppPassword = @Passwd)
BEGIN
DECLARE @UserId INT;
SET @UserId = (SELECT TOP 1 AppUserId FROM AppUser WHERE AppLogin = @Login)
IF EXISTS (SELECT * FROM Rate WHERE AppUserId = @UserId AND MovieId = @MovieId)
BEGIN
UPDATE Rate
SET Score = @Rate
WHERE AppUserId = @UserId
AND MovieId = @MovieId
END
ELSE
INSERT Rate (MovieId, AppUserId, Score)
VALUES (@MovieId, @UserId, @Rate)
END
END
GO;
EXEC DeleteUser 'keanu', '12345'
select * from Rate
-- DEFINE NEW USER, WHCH WILL BE USED AS A DEFAULT ENTERING POINT FOR USERS
CREATE LOGIN ReviewLogin WITH PASSWORD = 'password12';
CREATE USER ReviewUser FOR LOGIN ReviewLogin
EXEC sp_addrolemember 'db_datareader', ReviewUser
GRANT SELECT(AppLogin) ON AppUser TO ReviewUser
DENY INSERT ON AppUser TO ReviewUser
DENY DELETE TO ReviewUser
GRANT INSERT ON Rate TO ReviewUser
GRANT EXEC ON CreateUser TO ReviewUser
GRANT EXEC ON DeleteUser TO ReviewUser
GRANT EXEC ON PostReview TO ReviewUser
GRANT EXEC ON dbo.Authentify TO ReviewUser
GRANT EXEC ON dbo.AvgRate TO ReviewUser
GRANT SELECT ON EthernalClassic TO ReviewUser
GRANT SELECT ON AwardsInfo TO ReviewUser | 23.936508 | 132 | 0.771054 |
854557c445571e1fb57a123543412c1bbdd2c19f | 799 | cs | C# | VndbSharp/Extensions/StringExtensions.cs | micah686/VndbSharp | f70abc4ae326d2fbcf1e6cc8abc1b5a143e96091 | [
"MIT"
] | 15 | 2016-12-05T02:07:40.000Z | 2021-09-03T07:35:52.000Z | VndbSharp/Extensions/StringExtensions.cs | micah686/VndbSharp | f70abc4ae326d2fbcf1e6cc8abc1b5a143e96091 | [
"MIT"
] | 57 | 2017-01-06T06:10:57.000Z | 2021-05-25T14:29:36.000Z | VndbSharp/Extensions/StringExtensions.cs | micah686/VndbSharp | f70abc4ae326d2fbcf1e6cc8abc1b5a143e96091 | [
"MIT"
] | 8 | 2017-01-06T02:10:17.000Z | 2021-09-04T19:14:29.000Z | using System;
using Newtonsoft.Json;
using VndbSharp.Json;
namespace VndbSharp.Extensions
{
internal static class StringExtensions
{
public static String[] ToVndbResults(this String response)
=> response.Split(new[] { ' ' }, 2, StringSplitOptions.RemoveEmptyEntries); // Ensure we only split the first space
public static String Quote(this String str)
=> $"\"{str}\"";
public static Boolean IsEmpty(this String contents)
=> String.IsNullOrWhiteSpace(contents);
public static T FromJson<T>(this String json)
=> JsonConvert.DeserializeObject<T>(json, new JsonSerializerSettings {ContractResolver = VndbContractResolver.Instance});
// Should likely be in a unique class...but meh
public static String ToJson(this Object obj)
=> JsonConvert.SerializeObject(obj);
}
}
| 30.730769 | 124 | 0.745932 |
aa244b147337b13b9b13348eda54ca199a9a2660 | 246 | rb | Ruby | spec/factories/user_factory.rb | shredder-rull/structor | cc5bb40c4b65030c7d44bff7a1616495aae433ce | [
"MIT"
] | 1 | 2017-05-11T02:47:59.000Z | 2017-05-11T02:47:59.000Z | spec/factories/user_factory.rb | shredder-rull/structor | cc5bb40c4b65030c7d44bff7a1616495aae433ce | [
"MIT"
] | null | null | null | spec/factories/user_factory.rb | shredder-rull/structor | cc5bb40c4b65030c7d44bff7a1616495aae433ce | [
"MIT"
] | null | null | null | FactoryGirl.define do
factory :user do
email { FFaker::Internet.email }
first_name { FFaker::Name.first_name }
last_name { FFaker::Name.last_name }
trait :address do
address{ FactoryGirl.build(:address) }
end
end
end | 24.6 | 44 | 0.678862 |
dfb5441349e13786c91fe67dc08aa80736981c15 | 432 | podspec | Ruby | ZinkSkin.podspec | zinkLin/ZinkSkin | 8b314cc91b1d903f6aae328455633e6e6f92100d | [
"MIT"
] | 1 | 2016-07-26T14:53:30.000Z | 2016-07-26T14:53:30.000Z | ZinkSkin.podspec | zinkLin/ZinkSkin | 8b314cc91b1d903f6aae328455633e6e6f92100d | [
"MIT"
] | null | null | null | ZinkSkin.podspec | zinkLin/ZinkSkin | 8b314cc91b1d903f6aae328455633e6e6f92100d | [
"MIT"
] | null | null | null | Pod::Spec.new do |s|
s.name = 'ZinkSkin'
s.version = '1.0.2'
s.license = 'MIT'
s.summary = '即时皮肤切换'
s.homepage = 'https://github.com/zinkLin'
s.authors = { 'Zink' => '[email protected]' }
s.source = { :git => "https://github.com/zinkLin/ZinkSkin", :tag => "1.0.2"}
s.requires_arc = true
s.ios.deployment_target = '7.0'
s.dependency 'ZinkManager'
s.source_files = "ZinkSkin/**/*", "ZinkSkin/Other/**/*", "ZinkSkin/Category/**/*"
end | 28.8 | 81 | 0.643519 |
8c8a20d8ac3781dc7191c56b74a6b906e24866a0 | 5,079 | lua | Lua | entities/entities/sent_scanner/init.lua | tucono/thestalker | 23519138a06fe876199075cecd38ce157bb12193 | [
"MIT"
] | 1 | 2021-05-29T22:52:13.000Z | 2021-05-29T22:52:13.000Z | entities/entities/sent_scanner/init.lua | nuke-makes-games/thestalker | 23519138a06fe876199075cecd38ce157bb12193 | [
"MIT"
] | null | null | null | entities/entities/sent_scanner/init.lua | nuke-makes-games/thestalker | 23519138a06fe876199075cecd38ce157bb12193 | [
"MIT"
] | 1 | 2021-03-27T13:53:39.000Z | 2021-03-27T13:53:39.000Z |
AddCSLuaFile( "cl_init.lua" )
AddCSLuaFile( "shared.lua" )
include( 'shared.lua' )
ENT.Fly = Sound( "npc/scanner/scanner_alert1.wav" )
ENT.Zap = Sound( "npc/scanner/scanner_electric1.wav" )
ENT.Beep = Sound( "npc/scanner/cbot_servoscared.wav" )
ENT.Explode = { Sound( "npc/scanner/cbot_energyexplosion1.wav" ), Sound( "npc/scanner/scanner_explode_crash2.wav" ) }
function ENT:Initialize()
self.Entity:SetModel( "models/manhack.mdl" )
self.Entity:PhysicsInit( SOLID_VPHYSICS )
self.Entity:SetMoveType( MOVETYPE_VPHYSICS )
self.Entity:SetSolid( SOLID_VPHYSICS )
self.Entity:SetCollisionGroup( COLLISION_GROUP_WEAPON )
local phys = self.Entity:GetPhysicsObject()
if IsValid( phys ) then
phys:Wake()
end
self.Entity:SetCollisionBounds(Vector(-1,-1,-1), Vector(1,1,1))
self.SpawnTime = CurTime()
self.SoundTime = 0
self.ZapSound = 0
self.TargetTime = 0
self.TargetEnt = nil
self.ShadowParams = {}
local seq = self.Entity:LookupSequence( "fly" )
self.Entity:ResetSequence( seq )
self.Entity:StartMotionController()
self.Entity:EmitSound( self.Beep )
end
function ENT:GetShootPos()
return ( self.Entity:GetPos() + self.Entity:GetForward() * 6 + self.Entity:GetUp() * -3 )
end
function ENT:TargetEnemy( enemy )
self.TargetEnt = enemy
self.TargetTime = CurTime() + 3
--[[local col = Color( 255, 0, 0 )
local br = 1.5
local size = 25
local len = 250
self.Entity:CreateLight( col, br, size, len )]]
end
function ENT:Gib()
self.Entity:EmitSound( table.Random( self.Explode ), 100, math.random( 90, 110 ) )
local ed = EffectData()
ed:SetOrigin( self:GetPos() )
ed:SetStart( self:GetPos() )
ed:SetScale( 2 )
ed:SetMagnitude( 10 )
util.Effect( "sparks", ed, true, true )
for i=1, table.Count( GAMEMODE.ScannerGibs ) do
local ed = EffectData()
ed:SetOrigin( self:GetPos() )
ed:SetScale( i )
util.Effect( "scanner_gib", ed, true, true )
end
end
function ENT:Think()
if not IsValid( self.Entity:GetOwner() ) then
self.Entity:Remove()
end
if IsValid( self.FlashlightEnt ) and self.TargetTime < CurTime() then
self.Entity:RemoveLight()
end
if self.SoundTime < CurTime() then
self.SoundTime = CurTime() + 1
sound.Play( self.Fly, self.Entity:GetPos(), 75, 75, 0.05 )
end
end
function ENT:CreateLight( col, bright, size, len )
self.FlashlightEnt = ents.Create( "env_projectedtexture" )
self.FlashlightEnt:SetParent( self )
self.FlashlightEnt:SetLocalPos( Vector(5,0,0) )
self.FlashlightEnt:SetLocalAngles( Angle(0,0,0) )
self.FlashlightEnt:SetKeyValue( "enableshadows", 0 )
self.FlashlightEnt:SetKeyValue( "farz", len )
self.FlashlightEnt:SetKeyValue( "nearz", 12 )
self.FlashlightEnt:SetKeyValue( "lightfov", size )
self.FlashlightEnt:SetKeyValue( "lightcolor", Format( "%i %i %i 255", col.r * bright, col.g * bright, col.b * bright ) )
self.FlashlightEnt:Spawn()
self.FlashlightEnt:Input( "SpotlightTexture", NULL, NULL, "effects/Flashlight001.vmt" )
end
function ENT:RemoveLight()
if IsValid( self.FlashlightEnt ) then
self.FlashlightEnt:Remove()
end
end
function ENT:PhysicsSimulate( phys, deltatime )
if not IsValid( self.Entity:GetOwner() ) then return end
phys:Wake()
local dir = self.Entity:GetOwner():GetAimVector()
dir.z = math.Clamp( dir.z, -0.3, 0.3 )
--[[if self.TargetTime > CurTime() and IsValid( self.TargetEnt ) then
dir = ( ( self.TargetEnt:GetPos() + Vector(0,0,20) ) - self.Entity:GetPos() ):GetNormal()
end]]
self.ShadowParams.secondstoarrive = 0.01
self.ShadowParams.pos = self.Entity:GetOwner():GetShootPos() + Vector( 0, 0, math.sin( ( CurTime() + self.SpawnTime ) * 4 ) * 2 )
self.ShadowParams.angle = dir:Angle()
self.ShadowParams.maxangular = 500000
self.ShadowParams.maxangulardamp = 600000
self.ShadowParams.maxspeed = 500000
self.ShadowParams.maxspeeddamp = 600000
self.ShadowParams.dampfactor = 0.9
self.ShadowParams.teleportdistance = 500
self.ShadowParams.deltatime = deltatime
phys:ComputeShadowControl( self.ShadowParams )
end
function ENT:PhysicsCollide( data, phys )
if ( data.Speed > 250 or ( data.Speed > 100 and data.HitEntity.Tele ) ) and data.DeltaTime > 0.35 then
self.Entity:Gib()
self.Entity:Remove()
end
end
function ENT:OnTakeDamage( dmginfo )
if dmginfo:GetAttacker():IsPlayer() then
if dmginfo:GetAttacker():Team() == TEAM_STALKER then
self.Entity:Gib()
self.Entity:Remove()
elseif self.ZapSound < CurTime() then
self.ZapSound = CurTime() + 1
self.Entity:EmitSound( self.Zap, 100, math.random( 90, 110 ) )
end
end
end
function ENT:OnRemove()
if IsValid( self.Entity:GetOwner() ) and self.Entity:GetOwner():Alive() and self.Entity:GetOwner():Team() == TEAM_SPECTATOR then
self.Entity:GetOwner():Kill()
self.Entity:GetOwner():Spectate( OBS_MODE_ROAMING )
self.Entity:GetOwner():SetMoveType( MOVETYPE_NOCLIP )
self.Entity:GetOwner():SetPos( self.Entity:GetPos() )
end
self.Entity:RemoveLight()
end
function ENT:UpdateTransmitState()
return TRANSMIT_ALWAYS // needed?
end
| 22.878378 | 130 | 0.705257 |
5892bc3141b00cb76a75008e30dc50821b2aeb1e | 18 | css | CSS | Boxes/Boxes_style.css | kahtras/TSQUI | 93aa8858aa9592e81974f7b57b8713cd4f720ef5 | [
"MIT"
] | null | null | null | Boxes/Boxes_style.css | kahtras/TSQUI | 93aa8858aa9592e81974f7b57b8713cd4f720ef5 | [
"MIT"
] | null | null | null | Boxes/Boxes_style.css | kahtras/TSQUI | 93aa8858aa9592e81974f7b57b8713cd4f720ef5 | [
"MIT"
] | null | null | null | div {
float:left
} | 6 | 10 | 0.666667 |
790cb82abf16db29a70d6077e5dddcc36b358337 | 665 | sql | SQL | 30_type_name.sql | aporlov/rpc | f640340614c43d1a3b186b8fce2f4238091f9f06 | [
"MIT"
] | null | null | null | 30_type_name.sql | aporlov/rpc | f640340614c43d1a3b186b8fce2f4238091f9f06 | [
"MIT"
] | 6 | 2018-06-09T05:00:37.000Z | 2018-08-15T05:50:14.000Z | 30_type_name.sql | aporlov/rpc | f640340614c43d1a3b186b8fce2f4238091f9f06 | [
"MIT"
] | 3 | 2018-06-08T12:34:08.000Z | 2019-08-25T22:46:05.000Z | /*
Ф-и, используемые в представлениях
*/
-- -----------------------------------------------------------------------------
CREATE OR REPLACE FUNCTION pg_type_name(a_oid oid) RETURNS TEXT STABLE LANGUAGE 'sql' AS
$_$
-- Ф-я аналогична format_type, но не обрезает схему когда она в пути поиска
-- TODO: сравнить с вариантом `set local search_path=''; select format_type();`
SELECT CASE WHEN nspname = 'pg_catalog' THEN pg_catalog.format_type($1, NULL) ELSE nspname || '.' || typname END
FROM (
SELECT (SELECT nspname FROM pg_namespace WHERE oid = typnamespace) as nspname, typname FROM pg_type WHERE oid = $1
) AS pg_type_name_temp
$_$;
| 47.5 | 120 | 0.627068 |
00b682489925e8efe863a5bd1ca2071c8e0b003e | 496 | sql | SQL | sql/autotask_task.sql | fatdba/oracle-script-lib | efa9f5623bc3f27cea37a815f5bc3766d21b1b19 | [
"MIT"
] | null | null | null | sql/autotask_task.sql | fatdba/oracle-script-lib | efa9f5623bc3f27cea37a815f5bc3766d21b1b19 | [
"MIT"
] | null | null | null | sql/autotask_task.sql | fatdba/oracle-script-lib | efa9f5623bc3f27cea37a815f5bc3766d21b1b19 | [
"MIT"
] | 2 | 2022-01-16T20:34:08.000Z | 2022-02-10T16:45:46.000Z |
@@autotask_sql_setup
select
client_name
, task_name
, task_target_type
, task_target_name
, operation_name
, attributes
, status
, deferred_window_name
, current_job_name
, job_scheduler_status
, retry_count
, last_good_date at time zone sessiontimezone last_good_date
, next_try_date at time zone sessiontimezone next_try_date
, last_try_date at time zone sessiontimezone last_try_date
, last_try_result
from dba_autotask_task
order by client_name, task_name, last_try_date
/
| 19.84 | 61 | 0.814516 |
7fb11ccee9a19eaddf07d677ef4181af0c707693 | 154 | php | PHP | master.php | gautwe/frelsi | 984686143c0593ceaa2039c3092fd0ff08c8de27 | [
"CC0-1.0"
] | null | null | null | master.php | gautwe/frelsi | 984686143c0593ceaa2039c3092fd0ff08c8de27 | [
"CC0-1.0"
] | null | null | null | master.php | gautwe/frelsi | 984686143c0593ceaa2039c3092fd0ff08c8de27 | [
"CC0-1.0"
] | null | null | null | <?php
// Here is the request for the note, the update and others.
if($v_version != $w_version){
exec(update.php);
} else {
// nothing.
}
?>
| 17.111111 | 61 | 0.590909 |
ec592fbcc3054956b44ac9e1d5929acd1397eb27 | 33 | ps1 | PowerShell | Chapter01/6.1.5.ProviderHelpFiles_All.ps1 | wagnerhsu/packt-Mastering-Windows-PowerShell-Scripting-Fourth-Edition | be9f5cad2bf28de7c0a250590c65b72994800aeb | [
"MIT"
] | 27 | 2020-04-21T13:28:29.000Z | 2022-03-09T12:19:24.000Z | Chapter01/6.1.5.ProviderHelpFiles_All.ps1 | wagnerhsu/packt-Mastering-Windows-PowerShell-Scripting-Fourth-Edition | be9f5cad2bf28de7c0a250590c65b72994800aeb | [
"MIT"
] | null | null | null | Chapter01/6.1.5.ProviderHelpFiles_All.ps1 | wagnerhsu/packt-Mastering-Windows-PowerShell-Scripting-Fourth-Edition | be9f5cad2bf28de7c0a250590c65b72994800aeb | [
"MIT"
] | 15 | 2020-05-03T01:24:33.000Z | 2022-01-26T04:57:23.000Z | Get-Help -Name About_*_Provider
| 16.5 | 32 | 0.787879 |
a103927e3e7c78b315ffe22a4d39f3d707a66976 | 1,908 | ts | TypeScript | src/resources/ModifierTemplates/ModifierTemplateInterfaces.ts | tcarrio/platform-client | 8f78a8c8724ffe5845dcb07152df9e3fc5490b93 | [
"Apache-2.0"
] | 15 | 2018-05-17T15:49:28.000Z | 2022-01-11T17:15:11.000Z | src/resources/ModifierTemplates/ModifierTemplateInterfaces.ts | tcarrio/platform-client | 8f78a8c8724ffe5845dcb07152df9e3fc5490b93 | [
"Apache-2.0"
] | 480 | 2018-03-03T01:39:54.000Z | 2022-03-30T20:46:31.000Z | src/resources/ModifierTemplates/ModifierTemplateInterfaces.ts | tcarrio/platform-client | 8f78a8c8724ffe5845dcb07152df9e3fc5490b93 | [
"Apache-2.0"
] | 3 | 2020-12-15T20:04:17.000Z | 2022-02-15T18:58:36.000Z | export interface ModifierModel {
/**
* Unique identifier
*/
id: string;
/**
* English human friendly name
*/
displayName: string;
/**
* Category the modifier belongs to.
* LICENSE and SYSTEM are more for internal use and might need to be filtered out from display
*/
modifierType: ModifierType;
/**
* List of statements contained in the modifier
*/
statements: ModifierStatementModel[];
}
export interface ModifierStatementModel {
/**
* The statement key to apply the value to
*/
key: string;
/**
* The value to set on the key, always a string so "0" or "true" are correct
*/
value: string;
/**
* How the value will be applied if there are other statements on the same key
*/
operation: StatementOperation;
}
export interface ModifierStatementDetailModel {
/**
* The statement key to apply the value to
*/
statementKey: string;
/**
* The license property the statement affects
*/
mapping: string;
/**
* The type of value that should be used in the license when recomputing the properties
*/
valueType: StatementOperation;
/**
* The strategy that will be used to resolve conflicts for statements on the same key
*/
mergeStrategy: MergeStrategy;
}
export enum ModifierType {
system = 'SYSTEM',
license = 'LICENSE',
integration = 'INTEGRATION',
extension = 'EXTENSION',
feature = 'FEATURE',
}
export enum StatementOperation {
set = 'SET',
append = 'APPEND',
remove = 'REMOVE',
}
export enum MergeStrategy {
integerBiggerWins = 'INTEGER_BIGGER_WINS',
integerLowerWins = 'INTEGER_LOWER_WINS',
booleanFalseWins = 'BOOLEAN_FALSE_WINS',
booleanTrueWins = 'BOOLEAN_TRUE_WINS',
specificEnumValueWins = 'SPECIFIC_ENUM_VALUE_WINS',
noMerge = 'NO_MERGE',
}
| 24.779221 | 98 | 0.646226 |
2cc9a79c262288ad95e343d064956ab32acb2b58 | 479 | asm | Assembly | programs/oeis/143/A143538.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/143/A143538.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/143/A143538.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A143538: Triangle read by rows, T(n,k) = 1 if k is prime, 0 otherwise; 1 <= k <= n.
; 0,0,1,0,1,1,0,1,1,0,0,1,1,0,1,0,1,1,0,1,0,0,1,1,0,1,0,1,0,1,1,0,1,0,1,0,0,1,1,0,1,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,0,1,0,1,0,1,1,0,1,0,1,0,0
seq $0,2262 ; Triangle read by rows: T(n,k), 0 <= k <= n, in which row n lists the first n+1 nonnegative integers.
seq $0,10051 ; Characteristic function of primes: 1 if n is prime, else 0.
| 79.833333 | 201 | 0.592902 |
5bd3087688b75a70c61595777cdbceb5ed811ff9 | 117 | css | CSS | src/components/leaderboard.css | tackettnathant/3000_in_30 | 7c80c74649efc9cc720fa3c264cf77d5f1f40798 | [
"MIT"
] | null | null | null | src/components/leaderboard.css | tackettnathant/3000_in_30 | 7c80c74649efc9cc720fa3c264cf77d5f1f40798 | [
"MIT"
] | null | null | null | src/components/leaderboard.css | tackettnathant/3000_in_30 | 7c80c74649efc9cc720fa3c264cf77d5f1f40798 | [
"MIT"
] | null | null | null | table {
background-color:white;
}
thead tr td{
background:#CDD3D5;
color:#343633;
font-weight: bold;
}
| 11.7 | 24 | 0.641026 |
9c77ce52015fbe5219da5eba95356c00caee9e90 | 448 | dart | Dart | clean_architecture/lib/src/config/routes/app_routes.dart | vaughan189/flutter_learning | 15907df65041993a2d0ab0aa93f309276346fdf8 | [
"MIT"
] | 1 | 2021-01-31T17:50:51.000Z | 2021-01-31T17:50:51.000Z | clean_architecture/lib/src/config/routes/app_routes.dart | vaughan189/flutter-learning | 15907df65041993a2d0ab0aa93f309276346fdf8 | [
"MIT"
] | null | null | null | clean_architecture/lib/src/config/routes/app_routes.dart | vaughan189/flutter-learning | 15907df65041993a2d0ab0aa93f309276346fdf8 | [
"MIT"
] | 1 | 2020-12-04T12:56:45.000Z | 2020-12-04T12:56:45.000Z | import 'package:flutter/material.dart';
// ignore: avoid_classes_with_only_static_members
class AppRoutes {
static Route onGenerateRoutes(RouteSettings settings) {
switch (settings.name) {
case '/':
return _materialRoute(const Scaffold());
default:
return _materialRoute(const Scaffold());
}
}
static Route<dynamic> _materialRoute(Widget view) {
return MaterialPageRoute(builder: (_) => view);
}
}
| 24.888889 | 57 | 0.691964 |
05b84f2dd2313aa28b1b72dd19185a178a9a85b1 | 1,195 | rb | Ruby | app/controllers/todo_items_controller.rb | literatesnow/rails-specific-spa | 0a22e2593ea4e9e6fca737436ccc843e9d0ad406 | [
"Unlicense"
] | null | null | null | app/controllers/todo_items_controller.rb | literatesnow/rails-specific-spa | 0a22e2593ea4e9e6fca737436ccc843e9d0ad406 | [
"Unlicense"
] | 10 | 2020-02-25T10:37:13.000Z | 2022-03-30T22:36:49.000Z | app/controllers/todo_items_controller.rb | literatesnow/rails-specific-spa | 0a22e2593ea4e9e6fca737436ccc843e9d0ad406 | [
"Unlicense"
] | null | null | null | class TodoItemsController < ApplicationController
before_action :set_todo_item, only: [:show, :update, :destroy]
# GET /todo_items
def index
@todo_items = TodoItem.order('completed asc, created_at asc')
render json: @todo_items
end
# GET /todo_items/1
def show
render json: @todo_item
end
# POST /todo_items
def create
@todo_item = TodoItem.new(todo_item_params)
if @todo_item.save
render json: @todo_item, status: :created, location: @todo_item
else
render json: @todo_item.errors, status: :unprocessable_entity
end
end
# PATCH/PUT /todo_items/1
def update
if @todo_item.update(todo_item_params)
render json: @todo_item
else
render json: @todo_item.errors, status: :unprocessable_entity
end
end
# DELETE /todo_items/1
def destroy
@todo_item.destroy
end
private
# Use callbacks to share common setup or constraints between actions.
def set_todo_item
@todo_item = TodoItem.find(params[:id])
end
# Only allow a trusted parameter "white list" through.
def todo_item_params
params.require(:todo_item).permit(:title, :text, :due_at, :completed)
end
end
| 22.980769 | 75 | 0.693724 |
dbc4d641781993144caeb4c12e8a54ed226fe543 | 13,351 | php | PHP | application/views/harinas_free.php | rodrigoCastroReyes/Cereales-La-Pradera | b275532c2088730a2b23b1ced7b71fd4577685bd | [
"MIT"
] | null | null | null | application/views/harinas_free.php | rodrigoCastroReyes/Cereales-La-Pradera | b275532c2088730a2b23b1ced7b71fd4577685bd | [
"MIT"
] | null | null | null | application/views/harinas_free.php | rodrigoCastroReyes/Cereales-La-Pradera | b275532c2088730a2b23b1ced7b71fd4577685bd | [
"MIT"
] | null | null | null | <?php
defined('BASEPATH') OR exit('No direct script access allowed');?>
<!DOCTYPE html>
<html>
<head>
<title>La Pradera</title>
<meta charset="UTF-8">
<link rel='shortcut icon' type='image/x-icon' href='<?php echo base_url('assets/images/logo.ico')?>' />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="<?php echo base_url('assets/bootstrap/css/bootstrap.min.css')?>"/>
<link rel="stylesheet" type="text/css" href="<?php echo base_url('assets/css/normalize.css')?>">
<link rel="stylesheet" type="text/css" href="<?php echo base_url('assets/css/flex.css')?>">
<link rel="stylesheet" type="text/css" href="<?php echo base_url('assets/css/fonts.css')?>">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="<?php echo base_url('assets/css/custom_elements.css')?>">
<link rel="stylesheet" type="text/css" href="<?php echo base_url('assets/css/nav_bar.css')?>">
<link rel="stylesheet" type="text/css" href="<?php echo base_url('assets/css/product_lists.css')?>"/>
<link rel="stylesheet" type="text/css" href="<?php echo base_url('assets/css/harinas.css')?>">
<script type="text/javascript" src="<?php echo base_url('assets/lib/jquery-1.11.3.min.js')?>" ></script>
<script type="text/javascript" src="<?php echo base_url('assets/bootstrap/js/bootstrap.min.js')?>"></script>
<script type="text/javascript" src="<?php echo base_url('assets/lib/jquery.scrollUp.min.js')?>" ></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC3GG1bWOb8u2eCEteiCY1yGnaKrqgW6R4&libraries=places"></script>
<script type="text/javascript" src="<?php echo base_url('assets/bootstrap/js/bootstrap.min.js')?>"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/css/bootstrap.min.css" integrity="sha384-AysaV+vQoT3kOAXZkl02PThvDr8HYKPZhNT5h/CXfBThSRXQ6jW5DO2ekP5ViFdi" crossorigin="anonymous">
<script>
$(function () {
$.scrollUp({
animation: 'fade',
activeOverlay: '#00FFFF',
scrollText: 'Ir Arriba'
});
});
$('.link-switch').addClass('active');
</script>
</head>
<body>
<div class="principal-bar">
<div class="location-container col-xs-12 col-sm-4 col-sm-push-4 col-md-4 col-md-push-4 row-flex justify-content-start align-items-center" style="padding: 10px 0px;">
<div class="location-input-container row-flex align-items-center">
<span class="location-icon glyphicon glyphicon-map-marker"></span>
<input id="address" class="location-input" type="text" placeholder="AQUI ESTOY">
<span class="search-icon glyphicon glyphicon glyphicon glyphicon-ok"></span>
</div>
</div>
<div class="social-container col-xs-7 col-sm-4 col-sm-pull-4 col-md-4 col-md-pull-4 row-flex align-items-center justify-content-start">
<a class="a-custom row-flex align-items-center justify-content-center" target="_blank" href="https://www.facebook.com/Cereales-La-Pradera-1386331644719946/?fref=ts">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
<a class="a-custom row-flex align-items-center justify-content-center" target="_blank" href="https://twitter.com/LaPradera_ec">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
<a class="a-custom row-flex align-items-center justify-content-center" target="_blank" href="https://www.instagram.com/lapraderaec/">
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
<a class="a-custom row-flex align-items-center justify-content-center" target="_blank" href="https://www.youtube.com/channel/UCZhZJyjV8yGydRa-gIX-z8w">
<i class="fa fa-youtube" aria-hidden="true"></i>
</a>
<a class="a-custom row-flex align-items-center justify-content-center" href="<?php echo base_url('index.php/home/contacto')?>">
<i class="glyphicon glyphicon-envelope" aria-hidden="true"></i>
</a>
<a class="a-custom row-flex align-items-center justify-content-center" href="<?php echo base_url('index.php/home/index')?>">
<i class="glyphicon glyphicon glyphicon-home" aria-hidden="true"></i>
</a>
</div>
<div class="language-container col-xs-5 col-sm-4 col-md-4 row-flex align-items-center justify-content-end">
<span class="row-flex align-items-end" >Idioma</span>
<span class="row-flex" style="font-size:36px;cursor:pointer;">ESP</span>
<span class="row-flex" style="font-size:36px;cursor:pointer;">ENG</span>
</div>
</div>
<div class="procesados-main hidden-md-up">
<div class="principal-body">
<div class="picture_row">
<div class="principal-body-procesados col-xs-12">
<div class="logo-container"></div>
</div>
</div>
<div id="buttons_bar" class="text-center">
<a class="btn-custom" style="margin-right: 1%" href="<?php echo base_url('index.php/home/harinas')?>">Harinas</a>
<span class="btn-custom" href="<?php echo base_url('index.php/home/harinas_free')?>">Harinas Gluten Free</span>
</div>
<div class="description">
<div id="title_free">Harinas Gluten Free</div>
<div class="description-info"><b>Cereales La Pradera</b>
cuenta con una planta exclusiva para la elaboración de harinas libres de gluten,
a base de cereales que no contienen esta proteína, perjudicial para la salud de los
celíacos. Desde la selección de la materia prima hasta el producto final, el proceso
garantiza el aislamiento de los alimentos para evitar su contaminación y la preservación
de sus beneficios nutricionales.
</div>
</div>
<div class="product-list">
<h1 class="subtitle">Lista de Productos</h1>
<div class="product-description col-xs-11">
<div class="col-xs-12">
<div class="container-image col-xs-6">
<img class="image-pic" src="<?php echo base_url('assets/images/harinas free/Maicena.jpg')?>"/>
<div class="image-title text-center">Maicena</div>
<div class="product-value text-center"><b>PACK X 250 G</b></div>
<div class="product-value text-center"><b>PACK X 500 G</b></div>
</div>
<div class="container-image col-xs-6">
<img class="image-pic" src="<?php echo base_url('assets/images/harinas free/Almidon-de-yuca.jpg')?>"/>
<div class="image-title text-center">Almidón de yuca</div>
<div class="product-value text-center"><b>PACK X 250 G</b></div>
<div class="product-value text-center"><b>PACK X 500 G</b></div>
</div>
</div>
<div class="col-xs-12">
<div class="container-image col-xs-6">
<img class="image-pic" src="<?php echo base_url('assets/images/harinas free/Quinua.jpg')?>"/>
<div class="image-title text-center">Quinua</div>
<div class="product-value text-center"><b>PACK X 250 G</b></div>
<div class="product-value text-center"><b>PACK X 500 G</b></div>
</div>
<div class="container-image col-xs-6">
<img class="image-pic" src="<?php echo base_url('assets/images/harinas free/Harina-de-haba.jpg')?>"/>
<div class="image-title text-center">Harina de haba</div>
<div class="product-value text-center"><b>PACK X 250 G</b></div>
<div class="product-value text-center"><b>PACK X 500 G</b></div>
</div>
</div>
<div class="col-xs-12">
<div class="container-image col-xs-6">
<img class="image-pic" src="<?php echo base_url('assets/images/harinas free/Harina-de-Arveja.jpg')?>"/>
<div class="image-title text-center">Harina de arveja</div>
<div class="product-value text-center"><b>PACK X 250 G</b></div>
<div class="product-value text-center"><b>PACK X 500 G</b></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="procesados-main hidden-sm-down">
<div class="principal-body">
<div class="row banner-container">
<div class="principal-body-procesados-corner-free col-md-4"></div>
<div class="principal-body-procesados col-md-8"></div>
</div>
<div class="row-floating buttons-container column-flex justify-content-center">
<div class="institucional-container column-flex justify-content-space-between ">
<a class="btn-custom row-flex align-items-center justify-content-center" href="<?php echo base_url('index.php/home/harinas')?>">Harinas</a>
</div>
<div class="institucional-container column-flex justify-content-space-between" style="margin-top: 10%">
<span id="harina-free" class="btn-custom row-flex align-items-center justify-content-center">Harinas Gluten Free</span>
</div>
</div>
<div class="logo-container"></div>
<div class="row description-container">
<div class="title">Harinas Gluten Free</div>
<div class="description-info"><b>Cereales La Pradera</b>
cuenta con una planta exclusiva para la elaboración de harinas libres de gluten,
a base de cereales que no contienen esta proteína, perjudicial para la salud de los
celíacos. Desde la selección de la materia prima hasta el producto final, el proceso
garantiza el aislamiento de los alimentos para evitar su contaminación y la preservación
de sus beneficios nutricionales.
</div>
</div>
<div class="row product-container">
<div class="product-list">
<h1 class="subtitle">Lista de Productos</h1>
<div class="product-description col-sm-12 col-md-12">
<div class="container-image col-sm-offset-1 col-md-offset-1 col-sm-2 col-md-2">
<img class="image-pic" src="<?php echo base_url('assets/images/harinas free/Maicena.jpg')?>"/>
<div class="image-title text-center">Maicena</div>
<div class="product-value text-center"><b>PACK X 250 G</b></div>
<div class="product-value text-center"><b>PACK X 500 G</b></div>
</div>
<div class="container-image col-sm-2 col-md-2">
<img class="image-pic" src="<?php echo base_url('assets/images/harinas free/Almidon-de-yuca.jpg')?>"/>
<div class="image-title text-center">Almidón de yuca</div>
<div class="product-value text-center"><b>PACK X 250 G</b></div>
<div class="product-value text-center"><b>PACK X 500 G</b></div>
</div>
<div class="container-image col-sm-2 col-md-2">
<img class="image-pic" src="<?php echo base_url('assets/images/harinas free/Quinua.jpg')?>"/>
<div class="image-title text-center">Quinua</div>
<div class="product-value text-center"><b>PACK X 250 G</b></div>
<div class="product-value text-center"><b>PACK X 500 G</b></div>
</div>
<div class="container-image col-sm-2 col-md-2">
<img class="image-pic" src="<?php echo base_url('assets/images/harinas free/Harina-de-haba.jpg')?>"/>
<div class="image-title text-center">Harina de haba</div>
<div class="product-value text-center"><b>PACK X 250 G</b></div>
<div class="product-value text-center"><b>PACK X 500 G</b></div>
</div>
<div class="container-image col-sm-2 col-md-2">
<img class="image-pic" src="<?php echo base_url('assets/images/harinas free/Harina-de-Arveja.jpg')?>"/>
<div class="image-title text-center">Harina de arveja</div>
<div class="product-value text-center"><b>PACK X 250 G</b></div>
<div class="product-value text-center"><b>PACK X 500 G</b></div>
</div>
</div>
<div id="volver" class="col-sm-11 col-md-11 text-right">
<a href="<?php echo base_url('index.php/home/index')?>">Volver</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html> | 65.446078 | 220 | 0.580181 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.